- Oct 25, 2009
-
-
Nick Lewycky authored
llvm-svn: 85034
-
Mikhail Glushenkov authored
llvm-svn: 85031
-
Mikhail Glushenkov authored
llvm-svn: 85030
-
Mikhail Glushenkov authored
llvm-svn: 85029
-
Daniel Dunbar authored
file). llvm-svn: 85028
-
Jim Grosbach authored
spill, it should avoid doing so inside the live range of a virtual register. llvm-svn: 85026
-
Dan Gohman authored
llvm-svn: 85021
-
Dan Gohman authored
llvm-svn: 85020
-
Dan Gohman authored
used elsewhere - an exit block is a block outside the loop branched to from within the loop. An exiting block is a block inside the loop that branches out. llvm-svn: 85019
-
Dan Gohman authored
llvm-svn: 85018
-
Dan Gohman authored
-verify-dom-info and -verify-loop-info, which enable additional (expensive) consistency checks. llvm-svn: 85017
-
Dan Gohman authored
llvm-svn: 85016
-
- Oct 24, 2009
-
-
Daniel Dunbar authored
llvm-svn: 85014
-
Daniel Dunbar authored
llvm-svn: 85013
-
Daniel Dunbar authored
llvm-svn: 85012
-
Dan Gohman authored
llvm-svn: 85011
-
Dan Gohman authored
inserted block. llvm-svn: 85010
-
Dan Gohman authored
llvm-svn: 85009
-
Sanjiv Gupta authored
llvm-svn: 85008
-
Sanjiv Gupta authored
llvm-svn: 85006
-
Chris Lattner authored
llvm-svn: 84993
-
Chris Lattner authored
Duncan for the nice tiny testcase. llvm-svn: 84992
-
Victor Hernandez authored
Update all analysis passes and transforms to treat free calls just like FreeInst. Remove RaiseAllocations and all its tests since FreeInst no longer needs to be raised. llvm-svn: 84987
-
Evan Cheng authored
llvm-svn: 84986
-
Anton Korobeynikov authored
llvm-svn: 84983
-
Jim Grosbach authored
can access the hi regs. Our prologue and epilogue code doesn't know how to properly handle save/restore of the hi regs, so things go badly when we alloc them. llvm-svn: 84982
-
Evan Cheng authored
llvm-svn: 84978
-
Jim Grosbach authored
llvm-svn: 84977
-
http://llvm.org/PR4822Jeffrey Yasskin authored
compiled. When functions are compiled, they accumulate references in the JITResolver's stub maps. This patch removes those references when the functions are destroyed. It's illegal to destroy a Function when any thread may still try to call its machine code. This patch also updates r83987 to use ValueMap instead of explicit CallbackVHs and fixes a couple "do stuff inside assert()" bugs from r84522. llvm-svn: 84975
-
- Oct 23, 2009
-
-
Victor Hernandez authored
Remove AllocationInst. Since MallocInst went away, AllocaInst is the only subclass of AllocationInst, so it no longer is necessary. llvm-svn: 84969
-
Jeffrey Yasskin authored
Evan Cheng. llvm-svn: 84967
-
Dan Gohman authored
the scale overflows pointer-sized arithmetic. This fixes PR5281. llvm-svn: 84954
-
Dan Gohman authored
exact backedge taken count, when checking for infinite loops. This allows it to delete loops with multiple exit conditions. llvm-svn: 84952
-
Chris Lattner authored
llvm-svn: 84943
-
Chris Lattner authored
implements something out of Target/README.txt producing: _foo: ## @foo movl 4(%esp), %eax movapd LCPI1_0, %xmm0 movapd %xmm0, (%eax) ret $4 instead of: _foo: ## @foo movl 4(%esp), %eax movapd _b, %xmm0 mulpd LCPI1_0, %xmm0 addpd _a, %xmm0 movapd %xmm0, (%eax) ret $4 llvm-svn: 84942
-
Chris Lattner authored
bytes (i256). llvm-svn: 84941
-
Chris Lattner authored
non-type-safe constant initializers. This sort of thing happens quite a bit for 4-byte loads out of string constants, unions, bitfields, and an interesting endianness check from sqlite, which is something like this: const int sqlite3one = 1; # define SQLITE_BIGENDIAN (*(char *)(&sqlite3one)==0) # define SQLITE_LITTLEENDIAN (*(char *)(&sqlite3one)==1) # define SQLITE_UTF16NATIVE (SQLITE_BIGENDIAN?SQLITE_UTF16BE:SQLITE_UTF16LE) all of these macros now constant fold away. This implements PR3152 and is based on a patch started by Eli, but heavily modified and extended. llvm-svn: 84936
-
Tanya Lattner authored
llvm-svn: 84934
-
Evan Cheng authored
llvm-svn: 84932
-
Evan Cheng authored
llvm-svn: 84931
-