- Nov 21, 2005
-
-
Chris Lattner authored
change. llvm-svn: 24443
-
Chris Lattner authored
llvm-svn: 24442
-
Chris Lattner authored
llvm-svn: 24441
-
Chris Lattner authored
darwin, use it when printing the constant pool indices so the labels are appropriately private, emit cp entries to .const instead of .data on darwin and only emit a single .section for the constant pool, not one for each entry. llvm-svn: 24440
-
- Nov 20, 2005
-
-
Chris Lattner authored
llvm-svn: 24438
-
Chris Lattner authored
break control dependence. llvm-svn: 24437
-
Chris Lattner authored
llvm-svn: 24435
-
Chris Lattner authored
llvm-svn: 24434
-
Andrew Lenharth authored
llvm-svn: 24430
-
Andrew Lenharth authored
llvm-svn: 24429
-
Chris Lattner authored
HAVE_GV case fixed up by me. llvm-svn: 24428
-
- Nov 19, 2005
-
-
Chris Lattner authored
from last night. llvm-svn: 24427
-
Chris Lattner authored
llvm-svn: 24425
-
Chris Lattner authored
Patch by Evan Cheng llvm-svn: 24423
-
Chris Lattner authored
llvm-svn: 24422
-
Chris Lattner authored
llvm-svn: 24421
-
Chris Lattner authored
llvm-svn: 24420
-
Chris Lattner authored
Cheng! llvm-svn: 24419
-
Chris Lattner authored
llvm-svn: 24418
-
Nate Begeman authored
packed types with an element count of 1, although more generic support is coming. This allows LLVM to turn the following code: void %foo(<1 x float> * %a) { entry: %tmp1 = load <1 x float> * %a; %tmp2 = add <1 x float> %tmp1, %tmp1 store <1 x float> %tmp2, <1 x float> *%a ret void } Into: _foo: lfs f0, 0(r3) fadds f0, f0, f0 stfs f0, 0(r3) blr llvm-svn: 24416
-
- Nov 18, 2005
-
-
Chris Lattner authored
half the problem. llvm-svn: 24414
-
Andrew Lenharth authored
llvm-svn: 24413
-
Nate Begeman authored
llvm-svn: 24412
-
Chris Lattner authored
has a single def. In this case, look for uses that are dominated by the def and attempt to rewrite them to directly use the stored value. This speeds up mem2reg on these values and reduces the number of phi nodes inserted. This should address PR665. llvm-svn: 24411
-
Chris Lattner authored
llvm-svn: 24410
-
Chris Lattner authored
llvm-svn: 24409
-
Chris Lattner authored
llvm-svn: 24408
-
Chris Lattner authored
llvm-svn: 24406
-
Nate Begeman authored
llvm-svn: 24405
-
- Nov 17, 2005
-
-
Chris Lattner authored
non-static codegen. llvm-svn: 24403
-
Chris Lattner authored
compiling mysql reported by Ted Kremenek. llvm-svn: 24402
-
Chris Lattner authored
llvm-svn: 24401
-
Chris Lattner authored
llvm-svn: 24400
-
Chris Lattner authored
gcc -static produces on PPC. This is used for building kexts and other things. With this, materializing the address of a global looks like: lis r2, ha16(L_H$non_lazy_ptr) la r3, lo16(L_H$non_lazy_ptr)(r2) we're still emitting stubs for functions, which is wrong. That is next. llvm-svn: 24399
-
Chris Lattner authored
nodes of load results, not of their chain results. llvm-svn: 24398
-
Chris Lattner authored
of some code. This exposes the implicit load from the stubs to the DAG, allowing them to be optimized by the dag combiner. It also moves darwin specific stuff out of the isel into the legalizer, and allows more to be moved to the .td file. llvm-svn: 24397
-
Chris Lattner authored
llvm-svn: 24396
-
Chris Lattner authored
llvm-svn: 24395
-
Chris Lattner authored
llvm-svn: 24394
-
Chris Lattner authored
on Darwin to remove smarts from the isel. This is currently disabled by default (uncomment setOperationAction(ISD::GlobalAddress to enable it). tblgen needs to become smarter about tglobaladdr nodes and bigger patterns needed to be added to the .td file. However, we can currently emit stuff like this: :) li r2, lo16(L_x$non_lazy_ptr) lis r3, ha16(L_x$non_lazy_ptr) lwzx r2, r3, r2 The obvious improvements will follow. llvm-svn: 24390
-