- Jul 08, 2009
-
-
Devang Patel authored
!0 = constant metadata !{...} llvm-svn: 75057
-
David Greene authored
Allow users of GraphWriter to display graphs asynchronously. This provides a way to quickly dump a bunch of graph information to dot files and display them. It's a timesaver when working on large systems. llvm-svn: 75056
-
David Greene authored
Add an ExecuteNoWait interface to support asynchronous process spawning. llvm-svn: 75055
-
Anders Carlsson authored
It's not allowed to form member pointers to members that have reference type. Add a test for this and the rest of [dcl.mptr]p3. llvm-svn: 75054
-
Devang Patel authored
Simplify MDNode printing. llvm-svn: 75053
-
Duncan Sands authored
number of elements. Make some simplifications based on this (in particular SplitVecRes_SETCC). Tighten up some checking while there. llvm-svn: 75050
-
Douglas Gregor authored
llvm-svn: 75049
-
Evan Cheng authored
Change how so_imm and t2_so_imm are handled. At instruction selection time, the immediates are no longer encoded in the imm8 + rot format, that are left as it is. The encoding is now done in ams printing and code emission time instead. llvm-svn: 75048
-
Bill Wendling authored
DWARF requires frame moves be specified at specific times. If you have a prologue like this: __Z3fooi: Leh_func_begin1: LBB1_0: ## entry pushl %ebp Llabel1: movl %esp, %ebp Llabel2: pushl %esi Llabel3: subl $20, %esp call "L1$pb" "L1$pb": popl %esi The "pushl %ebp" needs a table entry specifying the offset. The "movl %esp, %ebp" makes %ebp the new stack frame register, so that needs to be specified in DWARF. And "pushl %esi" saves the callee-saved %esi register, which also needs to be specified in DWARF. Before, all of this logic was in one method. This didn't work too well, because as you can see there are multiple FDE line entries that need to be created. This fix creates the "MachineMove" objects directly when they're needed; instead of waiting until the end, and losing information. There is some ugliness where we generate code like this: LBB22_0: ## entry pushl %ebp Llabel280: movl %esp, %ebp Llabel281: Llabel284: pushl %ebp <---------- pushl %ebx pushl %edi pushl %esi Llabel282: subl $328, %esp Notice the extra "pushl %ebp". If we generate a "machine move" instruction in the FDE for that pushl, the linker may get very confused about what value %ebp should have when exitting the function. I.e., it'll give it the value %esp instead of the %ebp value from the first "pushl". Not to mention that, in this case, %ebp isn't modified in the function (that's a separate bug). I put a small hack in to get it to work. It might be the only solution, but should be revisited once the above case is fixed. llvm-svn: 75047
-
Bill Wendling authored
llvm-svn: 75046
-
Torok Edwin authored
Will convert assert(0) that don't have abort() to LLVM_UNREACHABLE in a later commit. llvm-svn: 75045
-
Douglas Gregor authored
function template. Most of the change here is in factoring out the common bits used for template argument deduction from a function call and when taking the address of a function template. llvm-svn: 75044
-
Torok Edwin authored
Finish converting lib/Target. llvm-svn: 75043
-
Owen Anderson authored
llvm-svn: 75041
-
Owen Anderson authored
llvm-svn: 75040
-
Chris Lattner authored
llvm-svn: 75039
-
Chris Lattner authored
llvm-svn: 75038
-
Bob Wilson authored
llvm-svn: 75037
-
David Goodwin authored
llvm-svn: 75036
-
Xerxes Ranby authored
Added ARMBaseRegisterInfo.cpp to lib/Target/ARM/CMakeLists.txt llvm-svn: 75035
-
Devang Patel authored
Support MDNode forward reference. llvm-svn: 75031
-
Dan Gohman authored
to a loop deletion more thorough. Don't prune the def-use tree search at instructions that don't have SCEVs computed, because an instruction with a user that has a computed SCEV may itself lack a computed SCEV. Also, remove loop-related values from the ValuesAtScopes and ConstantEvolutionLoopExitValues maps as well. This fixes a regression in 483.xalancbmk. llvm-svn: 75030
-
Dan Gohman authored
This way ScalarEvolution can examine the loop to determine what state it needs to update, if it chooses. llvm-svn: 75029
-
Owen Anderson authored
llvm-svn: 75028
-
Torok Edwin authored
Also remove trailing semicolon. llvm-svn: 75027
-
Owen Anderson authored
llvm-svn: 75025
-
Chris Lattner authored
llvm-svn: 75024
-
Chris Lattner authored
llvm-svn: 75023
-
Chris Lattner authored
llvm-svn: 75022
-
Anders Carlsson authored
llvm-svn: 75021
-
David Goodwin authored
llvm-svn: 75020
-
Bob Wilson authored
llvm-svn: 75019
-
Torok Edwin authored
cerr+abort -> llvm_report_error assert(0)+abort -> LLVM_UNREACHABLE (assert(0)+llvm_unreachable-> abort() included) llvm-svn: 75018
-
David Goodwin authored
llvm-svn: 75017
-
David Goodwin authored
llvm-svn: 75016
-
Chris Lattner authored
llvm-svn: 75015
-
Fariborz Jahanian authored
gc'able structs in the Next runtime and adds missing PCH info. llvm-svn: 75014
-
Chris Lattner authored
llvm-svn: 75013
-
David Goodwin authored
llvm-svn: 75012
-
David Goodwin authored
llvm-svn: 75011
-