- Jun 22, 2009
-
-
Bruno Cardoso Lopes authored
Support for .text relocations, implementing TargetELFWriter overloaded methods for x86/x86_64. Use a map to track global values to their symbol table indexes Code cleanup and small fixes llvm-svn: 73894
-
Evan Cheng authored
llvm-svn: 73893
-
Owen Anderson authored
Banish global state from ScalarEvolution! SCEV uniquing is now done by tables attached to the ScalarEvolution pass. This also throws out the SCEV reference counting scheme, as the the SCEVs now have a lifetime controlled by the ScalarEvolution pass. Note that SCEVHandle is now a no-op, and will be remove in a future commit. llvm-svn: 73892
-
Bob Wilson authored
predicate does not check if Thumb mode is enabled, and when in ARM mode there are still some checks for constant-pool use that need to run. llvm-svn: 73887
-
Dan Gohman authored
counts for loops with multiple exits, replacing more conservative code which only handled constants. This is derived from a patch by Nick Lewycky. This also fixes llc aborts in ClamAV and others, as getUMinFromMismatchedTypes takes care of balancing the types before working with them. llvm-svn: 73884
-
Dan Gohman authored
llvm-svn: 73883
-
Dan Gohman authored
helper functions. Based on a patch by Nick Lewycky. llvm-svn: 73869
-
Dan Gohman authored
blocks, and also exit blocks with multiple conditions (combined with (bitwise) ands and ors). It's often infeasible to compute an exact trip count in such cases, but a useful upper bound can often be found. llvm-svn: 73866
-
Dan Gohman authored
llvm-svn: 73865
-
Dan Gohman authored
now, this hasn't mattered, because ScalarEvolution hasn't been able to compute trip counts for loops with multiple exits. But it will soon. llvm-svn: 73864
-
Dan Gohman authored
terminology that LoopInfo uses. llvm-svn: 73863
-
Dan Gohman authored
overflow when computing a integer division to round up. Thanks to Nick Lewycky for noticing this! llvm-svn: 73862
-
- Jun 21, 2009
-
-
Chris Lattner authored
llvm-svn: 73861
-
Rafael Espindola authored
Handle FpSET_ST0_80 being used when ST0 is still alive. llvm-svn: 73850
-
Chris Lattner authored
llvm-svn: 73845
-
Chris Lattner authored
llvm-svn: 73844
-
Chris Lattner authored
llvm-svn: 73843
-
Chris Lattner authored
llvm-svn: 73842
-
Chris Lattner authored
llvm-svn: 73841
-
Chris Lattner authored
llvm-svn: 73840
-
Nick Lewycky authored
llvm-svn: 73839
-
Chris Lattner authored
llvm-svn: 73837
-
Chris Lattner authored
llvm-svn: 73836
-
Chris Lattner authored
llvm-svn: 73835
-
- Jun 20, 2009
-
-
Chris Lattner authored
a global with that gets printed with the :mem modifier. All operands to lea's should be handled with the lea32mem operand kind, and this allows the TLS stuff to do this. There are several better ways to do this, but I went for the minimal change since I can't really test this (beyond make check). This also makes the use of EBX explicit in the operand list in the 32-bit, instead of implicit in the instruction. llvm-svn: 73834
-
Chris Lattner authored
with MBB's. llvm-svn: 73830
-
Chris Lattner authored
it as a pcrel immediate instead. This gets pc-rel weirdness out of the main printoperand codepath. llvm-svn: 73829
-
Chris Lattner authored
llvm-svn: 73824
-
Chris Lattner authored
llvm-svn: 73818
-
Chris Lattner authored
LEA64_32r, eliminating a bunch of modifier logic stuff on addr modes. Implement support for printing mbb labels as operands. llvm-svn: 73817
-
Evan Cheng authored
llvm-svn: 73816
-
Devang Patel authored
llvm-svn: 73815
-
Devang Patel authored
llvm-svn: 73813
-
Chris Lattner authored
llvm-svn: 73811
-
Chris Lattner authored
step is to make tblgen generate something more appropriate for MCInst, and generate calls to operand translation routines where needed. This includes a bunch of #if 0 code which will slowly be refactored into something sensible. llvm-svn: 73810
-
Dan Gohman authored
SCEVUnknowns with identical Instructions to be equal. This allows it to analze cases such as the attached testcase, where the front-end has cloned the loop controlling expression. Along with r73805, this lets IndVarSimplify eliminate all the sign-extend casts in the loop in the attached testcase. llvm-svn: 73807
-
Owen Anderson authored
llvm-svn: 73806
-
Dan Gohman authored
in the loop backedge-taken count computation of the maximum possible trip count. llvm-svn: 73805
-
Owen Anderson authored
llvm-svn: 73802
-
Owen Anderson authored
Revert r73790, and replace it with a significantly less ugly solution. Rather than trying to make the global reader-writer lock work, create separate recursive mutexes for each value map. The recursive-ness fixes the double-acquiring issue, which having one per ValueMap lets us continue to maintain some concurrency. llvm-svn: 73801
-