- Mar 27, 2013
-
-
Chad Rosier authored
backend output; there's no need to report a fatal error. This reverts r178042. Part of rdar://13295753 and rdar://13401547 llvm-svn: 178102
-
David Blaikie authored
llvm-svn: 178092
-
- Mar 26, 2013
-
-
David Blaikie authored
llvm-svn: 178079
-
Rafael Espindola authored
It is unused since pic support went away. llvm-svn: 178055
-
Manman Ren authored
Initialize CalleeWithThisReturn to 0 in the constructor. Also revert r170815 since checking CalleeWithThisReturn is faster. PR15598 llvm-svn: 178053
-
Chad Rosier authored
machine and one is required. Part of rdar://13295753 llvm-svn: 178042
-
Evgeniy Stepanov authored
CalleeWithThisReturn can be left initialized if HasThisReturn() is false. This change reverses the order of checks in EmitFunctionEpilog such that CalleeWithThisReturn is only examined when it has a meaningful value. Found with MemorySanitizer. llvm-svn: 178015
-
Chandler Carruth authored
line and the library dependencies to reflect this. llvm-svn: 177972
-
- Mar 25, 2013
-
-
Chad Rosier authored
intrinsics. rdar://13213542 llvm-svn: 177911
-
- Mar 24, 2013
-
-
Benjamin Kramer authored
llvm-svn: 177842
-
Guy Benyei authored
OpenCL 1.2 spec. 5.7.3. llvm-svn: 177839
-
- Mar 23, 2013
-
-
Nadav Rotem authored
Make clang to mark static stack allocations with lifetime markers to enable a more aggressive stack coloring. Patch by John McCall with help by Shuxin Yang. rdar://13115369 llvm-svn: 177819
-
John McCall authored
to an out-parameter using the indirect-writeback conversion, and we copied the current value of the variable to the temporary, make sure that we register an intrinsic use of that value with the optimizer so that the value won't get released until we have a chance to retain it. rdar://13195034 llvm-svn: 177813
-
- Mar 22, 2013
-
-
Reid Kleckner authored
Summary: For non-dynamic classes (no virtual bases), member data pointers are simple offsets from the base of the record. Dynamic classes use an aggregate for member data pointers and are therefore currently unsupported. Unlike Itanium, the ms ABI uses 0 to represent null for polymorphic classes. Non-polymorphic classes use -1 like Itanium, since 0 is a valid field offset. Reviewers: rjmccall CC: timurrrr, cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D558 llvm-svn: 177753
-
Reid Kleckner authored
As the comment says, it's a little silly to cache it in the ABI code. llvm-svn: 177738
-
Alexey Bataev authored
llvm-svn: 177705
-
Richard Smith authored
value argument. If not, be sure we don't accidentally use a dynamic alloca. llvm-svn: 177690
-
- Mar 20, 2013
-
-
Manman Ren authored
For constructors/desctructors that return 'this', if there exists a callsite that returns 'this' and is immediately before the return instruction, make sure we are using the return value from the callsite. We don't need to keep 'this' alive through the callsite. It also enables optimizations in the backend, such as tail call optimization. Updated from r177211. rdar://12818789 llvm-svn: 177541
-
Nick Lewycky authored
emit function names in .gcda files by default, and the flag turns that off! Rename the flag to make it match what it actually does. This keeps the default format compatible with gcc 4.2. Also add a test for this flag. llvm-svn: 177475
-
Nick Lewycky authored
is enabled. Also add a new -test-coverage cc1 flag which makes testing coverage possible and add our first clang-side coverage test. llvm-svn: 177470
-
- Mar 19, 2013
-
-
Rafael Espindola authored
llvm-svn: 177402
-
Rafael Espindola authored
If this should not happen, we should have an assert. If it should happen, we should have a test and remove the comment. In no case should we have this self inconsistent code. llvm-svn: 177399
-
Richard Smith authored
it wasn't taking into account that the float should be truncated *before* the range check happens. Thus (unsigned)-0.99 and (unsigned char)255.9 have defined behavior and should not be trapped. llvm-svn: 177362
-
- Mar 18, 2013
-
-
Reed Kotler authored
I have filed http://llvm.org/bugs/show_bug.cgi?id=15538 against clang. This code is safer anyway because "cast" assumes you really know that it's okay to make the cast. In this case isa should not be false and dyn_cast should not return null as far as I understand. But everything else is valid so I did not want to revert my previous patch for attributes mips16/nomips16 or use an llvm_unreachable here which would make a number of our tests fail for mips. llvm-svn: 177329
-
- Mar 16, 2013
-
-
Manman Ren authored
llvm-svn: 177222
-
Manman Ren authored
For constructors/desctructors that return 'this', if there exists a callsite that returns 'this' and is immediately before the return instruction, make sure we are using the return value from the callsite. We don't need to keep 'this' alive through the callsite. It also enables optimizations in the backend, such as tail call optimization. rdar://12818789 llvm-svn: 177211
-
- Mar 15, 2013
-
-
Adrian Prantl authored
the balance between expected behavior and compatibility with the gdb testsuite. (GDB gets confused if we break an expression into multiple debug stmts so we enable this behavior only for inlined functions. For the full experience people can still use -gcolumn-info.) llvm-svn: 177164
-
- Mar 14, 2013
-
-
Adrian Prantl authored
Un-breaks gdb's invoke-block behavior. llvm-svn: 177118
-
Adrian Prantl authored
This way the register allocator will not optimize away the debug info for captured variables. Fixes rdar://problem/12767564 llvm-svn: 177086
-
Nick Lewycky authored
llvm-svn: 177004
-
- Mar 13, 2013
-
-
Bill Wendling authored
The back-end cannot differentiate between functions that are from a .ll file and those generated from the front-end. We cannot then take the non-precense of these attributes as a "false" value. Have the front-end explicitly set the value to 'true' or 'false' depending upon what is actually set. llvm-svn: 176985
-
Reed Kotler authored
in the LLVM assembly language output. llvm-svn: 176971
-
John McCall authored
llvm-svn: 176926
-
John McCall authored
the requirements on the ARC optimizer. rdar://13407451 llvm-svn: 176924
-
- Mar 12, 2013
-
-
Adrian Prantl authored
differentiate multiple inlined call sites on the same line in the debug info. Fixes rdar://problem/13036237 llvm-svn: 176895
-
- Mar 11, 2013
-
-
Adrian Prantl authored
Generate forward declarations that are RAUW'd by finalize(). We thus avoid outputting the same type several times in multiple stages of completion. llvm-svn: 176820
-
- Mar 10, 2013
-
-
Guy Benyei authored
Fix indirect byval passing of records in address spaced memory. Allocate memory on stack, and memcpy the actual value before the call. llvm-svn: 176786
-
- Mar 09, 2013
-
-
Benjamin Kramer authored
llvm-svn: 176767
-
- Mar 08, 2013
-
-
Jordan Rose authored
No (intended) functionality change. llvm-svn: 176726
-
Joey Gouly authored
Patch by Murat Bolat! llvm-svn: 176686
-