- Oct 04, 2013
-
-
Michael Sartain authored
llvm-svn: 191974
-
Benjamin Kramer authored
This is unlikely to ever fail, but ubuntu GCC warns when the return value is unused. llvm-svn: 191973
-
Ed Maste authored
llvm-svn: 191972
-
Fariborz Jahanian authored
(assign/unsafe_unretained/weak/retain/strong/copy) in super class to be overridden by a property with any explicit ownership in the subclass. // rdar://15014468 llvm-svn: 191971
-
Rafael Espindola authored
llvm-svn: 191970
-
Sebastian Pop authored
llvm-svn: 191969
-
Eric Christopher authored
llvm-svn: 191968
-
Eric Christopher authored
on platforms with relocations in debug info and also temporarily revert r191800 due to conflicts with the revert of r191792. llvm-svn: 191967
-
Matthias Braun authored
llvm-svn: 191966
-
Matthias Braun authored
llvm-svn: 191965
-
Matthias Braun authored
llvm-svn: 191964
-
Matthias Braun authored
optimizeSelect folds (predicated) copy instructions, it must not ignore the original register class of the operand when replacing the register with the copies dest register. llvm-svn: 191963
-
Matthias Braun authored
The jump doesn't really kill the registers, the following call does but we never get back anyway. This avoids some verify-machineinstrs problems when TAILJUMPs are if-converted. llvm-svn: 191962
-
Matthias Braun authored
Copy over the whole register machine operand instead of creating a new one with an incomplete set of flags. llvm-svn: 191961
-
Ed Maste authored
llvm-svn: 191960
-
Michael Sartain authored
llvm-svn: 191959
-
Rafael Espindola authored
llvm-svn: 191958
-
Rafael Espindola authored
llvm-svn: 191957
-
Rafael Espindola authored
llvm-svn: 191956
-
Rafael Espindola authored
Revert "Teach TreeTransform and family how to transform generic lambdas within templates and nested within themselves." This reverts commit r191879. It caused llvm.org/pr17476. llvm-svn: 191955
-
Alexey Samsonov authored
llvm-svn: 191954
-
Amaury de la Vieuville authored
These IR instructions are undefined when the amount is equal to operand size, but NEON right shifts support such shifts. Work around that by emitting a different IR in these cases. llvm-svn: 191953
-
Alexey Samsonov authored
llvm-svn: 191952
-
Simon Atanasyan authored
general solution. llvm-svn: 191951
-
Timur Iskhodzhanov authored
llvm-svn: 191950
-
Alp Toker authored
This reverts commit r191942. llvm-svn: 191949
-
Alexey Samsonov authored
Restore LLVM_BUILD_RUNTIME option that was deleted in r191835, but is still used to control building of compiler-rt and libcxx llvm-svn: 191948
-
Simon Atanasyan authored
-static. So do not turn off the PIC flag if -static passed to the driver in case of MIPS target. http://llvm.org/bugs/show_bug.cgi?id=14693 llvm-svn: 191947
-
Dmitry Vyukov authored
It must set thr->in_rtl = 0 before executing user callback. llvm-svn: 191946
-
Jiangning Liu authored
llvm-svn: 191945
-
Jiangning Liu authored
llvm-svn: 191944
-
Alexey Samsonov authored
llvm-svn: 191943
-
Jin-Gu Kang authored
llvm-svn: 191942
-
Craig Topper authored
llvm-svn: 191941
-
Craig Topper authored
Add OPC_CheckChildSame0-3 to the DAG isel matcher. This replaces sequences of MoveChild, CheckSame, MoveParent. Saves 846 bytes from the X86 DAG isel matcher, ~300 from ARM, ~840 from Hexagon. llvm-svn: 191940
-
David Blaikie authored
In the case (shown in the attached test) where a member function definition was emitted into debug info the following could occur: 1) build the debug info for the member function definition 2) in (1), build the debug info for the member function declaration 3) construct and add the member function declaration DIE 4) add it to its context 5) build its context (the type it is a member of) 6) construct the members and add them to the type 7) except don't add member functions because "getOrCreateSubprogram" adds the function to its parent anyway 8) except we're only partway through building this subprogram declaration so it hasn't been added yet - but we returned the partially constructed DIE (since it's already in the MDNode->DIE mapping to avoid infinitely recursing trying to create the member function DIE) 9) once the type is constructed, add the member function to it 10) now the members are out of order (the member function being defined is listed as the last member, even though it was declared as the first) To avoid this, construct the context of the subprogram DIE before we query to see if it exists. That way we never end up creating it before creating its context and ending up in this situation. Alternatively, the type construction that visits/builds all the members could call something like getOrCreateSubprogram, but that doesn't ever do the "add to context" step. Then the type building code would always be responsible for adding members (and the subprogram "addToContextDIE" would no-op because the context building would have added the subprogram declaration to the type/context DIE already). (the test cases updated were overly-sensitive to offsets or abbreviation numbers. We don't have a nice way to make these tests more robust as yet - multiline FileCheck matches would be required) llvm-svn: 191939
-
Andrew Kaylor authored
llvm-svn: 191938
-
Jordan Rose authored
Re-commit r191910 (reverted in r191936) with layering violation fixed, by moving the bug categories to StaticAnalyzerCore instead of ...Checkers. llvm-svn: 191937
-
Richard Smith authored
llvm-svn: 191936
-
Peter Collingbourne authored
llvm-svn: 191935
-