- Nov 05, 2012
-
-
Nadav Rotem authored
llvm-svn: 167395
-
Hemant Kulkarni authored
llvm-svn: 167394
-
Ulrich Weigand authored
zero-extended to 64 bits. This information is currently provided to the back end by setting "signext" or "zeroext" attributes. However, this is done only for integer types *smaller* than i32, not for i32 itself. This causes clang to generate code violating the ABI, which results in a failure of the tramp3d-v4 test case (due to calling a system library routine without ABI-required extension). This patch implements custom versions of classifyArgumentType and classifyReturnType for PPC64_SVR4_ABIInfo, which are the same as the default versions except that they also classify "int" and "unsigned int" as types needing extending. This fixed tramp3d-v4 on PowerPC64. llvm-svn: 167393
-
Jim Grosbach authored
MCJIT supports inline assembly, but requires the asm parser to do so. Make sure to link it in and initialize it. llvm-svn: 167392
-
Filipe Cabecinhas authored
llvm-svn: 167391
-
Manuel Klimek authored
Patch by Edwin Vane. llvm-svn: 167390
-
Greg Clayton authored
- make sure to delet the .cer file on the desktop - added section that describes what to do when you re-install a new OS where you still have an old code signing certificate around. llvm-svn: 167389
-
Hal Finkel authored
The Z constraint specifies an r+r memory address, and the y modifier expands to the "r, r" in the asm string. For this initial implementation, the base register is forced to r0 (which has the special meaning of 0 for r+r addressing on PowerPC) and the full address is taken in the second register. In the future, this should be improved. llvm-svn: 167388
-
Fariborz Jahanian authored
llvm-svn: 167387
-
Adhemerval Zanella authored
This patch expands the SEXTLOAD, ZEXTLOAD, and EXTLOAD operations for vector types when altivec is enabled. llvm-svn: 167386
-
Jordan Rose authored
As Anna pointed out, ProgramStateTrait.h is a relatively obscure header, and checker writers may not know to look there to add their own custom state. The base macro that specializes the template remains in ProgramStateTrait.h (REGISTER_TRAIT_WITH_PROGRAMSTATE), which allows the analyzer core to keep using it. llvm-svn: 167385
-
Rafael Espindola authored
llvm-svn: 167383
-
Richard Osborne authored
'nocapture' attribute. The nocapture attribute only specifies that no copies are made that outlive the function. This isn't the same as there being no copies at all. This fixes PR14045. llvm-svn: 167381
-
Chandler Carruth authored
clearing out my backlog of commit mail. llvm-svn: 167380
-
Matt Beaumont-Gay authored
llvm-svn: 167379
-
Eli Bendersky authored
PR14256: SelectionDAGLowering was renamed to SelectionDAGBuilder a long time ago. Fix references to it in documentation and comments. llvm-svn: 167378
-
NAKAMURA Takumi authored
llvm-svn: 167377
-
- Nov 04, 2012
-
-
Nick Lewycky authored
to have UsingDirectiveDecl inside anything other than those two. No user-visible functionality change. llvm-svn: 167376
-
Fariborz Jahanian authored
well as couple of tests which were not being excercised because of TYPOs. llvm-svn: 167374
-
Tobias Grosser authored
Use 'opt < %s' instead of just 'opt %s' to ensure that no temporary files are created. llvm-svn: 167372
-
Duncan Sands authored
I'm applying it anyway since it seems to be obviously correct. llvm-svn: 167370
-
Lang Hames authored
llvm-svn: 167369
-
Craig Topper authored
llvm-svn: 167366
-
Jason Molenda authored
The operator== method is a synonym for IsExactMatch(). The essential difference between these two is that IsCompatibleMatch() will say that armv7 and armv7s are compatible and return true. IsExactMatch() will say that armv7 and armv7s are not a match. An armv7s cpu can run either generic armv7 binaries or armv7s binaries (the latter being tuned for it). When we're picking the slice of a universal Mach-O file to load in an armv7s Target, we need to be able to first look for an exact cpu subtype match (armv7s == armv7s) and failing that, looking for a slice with a compatible architecture. Update ObjectContainerUniversalMachO::GetObjectFile to prefer an exact match of the cpu type, falling back to a compatible match if necessary. <rdar://problem/12593515> llvm-svn: 167365
-
Seth Cantrell authored
the ellipsis is shorter than the text it replaces llvm-svn: 167364
-
- Nov 03, 2012
-
-
Lang Hames authored
compound statement. llvm-svn: 167363
-
Dmitri Gribenko authored
checking against a blacklist. llvm-svn: 167362
-
Seth Cantrell authored
llvm-svn: 167361
-
Seth Cantrell authored
llvm-svn: 167360
-
Benjamin Kramer authored
llvm-svn: 167359
-
Dmitri Gribenko authored
llvm-svn: 167358
-
Dmitri Gribenko authored
llvm-svn: 167357
-
Duncan Sands authored
is that the unit test doesn't have IntTy equal to APInt, instead it uses a class derived from APInt. When, as in these lines, an IntTy& reference is returned but is assigned to an APInt&, the compiler destroys the temporary the IntTy& was referring to, leaving the APInt& referring to garbage. This causes the unittest to fail systematically on my machine; it can also be caught by running the test under valgrind. llvm-svn: 167356
-
NAKAMURA Takumi authored
0 (as nullptr) is incompatible to pointer in type matching on msvc. llvm-svn: 167355
-
Duncan Sands authored
also do it for vectors of pointers. llvm-svn: 167354
-
Eli Friedman authored
caret locations and source ranges in macros. Makes ranges more accurate in some cases, and fixes an assertion failure. Fixes <rdar://problem/12472249>. llvm-svn: 167353
-
Anna Zaks authored
This will simplify checkers that need to register for leaks. Currently, they have to register for both: check dead and check end of path. I've modified the SymbolReaper to consider everything on the stack dead if the input StackLocationContext is 0. (This is a bit disruptive, so I'd like to flash out all the issues asap.) llvm-svn: 167352
-
Anna Zaks authored
llvm-svn: 167351
-
Anna Zaks authored
Node builders should manage the nodes, not the context. llvm-svn: 167350
-
Jim Ingham authored
Fix a little think-o. In FileSpec::operator== we were trying to figure out whether the rhs file was resolved or not by comparing the resolved version of the rhs FileSpec's directory name with the lhs FileSpec's directory name. We really meant to compare it with the rhs FileSpec's directory name... <rdar://problem/12438838> llvm-svn: 167349
-