- Sep 29, 2009
-
-
Devang Patel authored
llvm-svn: 83082
-
Jim Grosbach authored
so a simple "current register" will suffice. Also add some additional sanity-checking assertions to make sure things are as we expect. llvm-svn: 83081
-
Jim Grosbach authored
the instruction we're scavenging for. The scavenger needs to know to avoid them when analyzing register usage. llvm-svn: 83077
-
David Goodwin authored
llvm-svn: 83075
-
Evan Cheng authored
llvm-svn: 83058
-
Nick Lewycky authored
llvm-svn: 83052
-
Nick Lewycky authored
until after the compiler itself has been set up. llvm-svn: 83051
-
Nick Lewycky authored
llvm-svn: 83050
-
Nick Lewycky authored
llvm-svn: 83048
-
Nick Lewycky authored
with a 64-bit kernel, which confuses LLVM. Make LLVM double-check this by checking which defines the system gcc actually sets. llvm-svn: 83047
-
Devang Patel authored
llvm-svn: 83033
-
Stuart Hastings authored
/Developer/usr/bin to the PATH when looking for llvm-gcc. llvm-svn: 83028
-
Stuart Hastings authored
available. Override by setting CC and CXX in the environment. llvm-svn: 83024
-
Jim Grosbach authored
slot for the register scavenger when compiling Thumb1 functions. llvm-svn: 83023
-
- Sep 28, 2009
-
-
Dan Gohman authored
llvm-svn: 83021
-
Devang Patel authored
llvm-svn: 83019
-
Devang Patel authored
llvm-svn: 83016
-
Jeffrey Yasskin authored
llvm-svn: 83015
-
Devang Patel authored
llvm-svn: 83013
-
Dan Gohman authored
llvm-svn: 83012
-
Dan Gohman authored
the operands, rather than trying to partition them into a start and a step. This handles non-affine add recurrences correctly. llvm-svn: 83011
-
Devang Patel authored
llvm-svn: 83010
-
Dan Gohman authored
llvm-svn: 83009
-
Evan Cheng authored
llvm-svn: 83008
-
Jakob Stoklund Olesen authored
llvm-svn: 83007
-
Jakob Stoklund Olesen authored
unused DECLARE instruction. KILL is not yet used anywhere, it will replace TargetInstrInfo::IMPLICIT_DEF in the places where IMPLICIT_DEF is just used to alter liveness of physical registers. llvm-svn: 83006
-
Dan Gohman authored
llvm-svn: 83002
-
Dan Gohman authored
llvm-svn: 83001
-
Devang Patel authored
llvm-svn: 82999
-
Dan Gohman authored
llvm-svn: 82995
-
Dan Gohman authored
llvm-svn: 82994
-
Dan Gohman authored
llvm-svn: 82993
-
Dan Gohman authored
llvm-svn: 82991
-
Dan Gohman authored
llvm-svn: 82990
-
Bob Wilson authored
Otherwise, it is always set to "default", which prevents debug info from even being generated during isel. Radar 7250345. llvm-svn: 82988
-
Evan Cheng authored
instruction. This makes it re-materializable. Thumb2 will split it back out into two instructions so IT pass will generate the right mask. Also, this expose opportunies to optimize the movw to a 16-bit move. llvm-svn: 82982
-
Daniel Dunbar authored
llvm-svn: 82978
-
Anton Korobeynikov authored
Disable rematting of it for now. llvm-svn: 82975
-
Chris Lattner authored
phi nodes. Make sure to phi translate from the right block. This fixes a llvm-building-llvm failure on GVN-PRE.cpp llvm-svn: 82970
-
Evan Cheng authored
physical registers. This is especially critical for the later two since they start the live interval of a super-register. e.g. %DO<def> = INSERT_SUBREG %D0<undef>, %S0<kill>, 1 If this instruction is eliminated, the register scavenger will not be happy as D0 is not defined previously. This fixes PR5055. llvm-svn: 82968
-