- May 25, 2006
-
-
Chris Lattner authored
llvm-svn: 28473
-
Chris Lattner authored
llvm-svn: 28471
-
Evan Cheng authored
llvm-svn: 28459
-
- May 24, 2006
-
-
Evan Cheng authored
non-deterministic behavior. llvm-svn: 28454
-
- May 17, 2006
-
-
Chris Lattner authored
enough to be autogenerated. llvm-svn: 28354
-
Chris Lattner authored
the copyto/fromregs instead of making the PPCISD::CALL selection code create them. This vastly simplifies the selection code, and moves the ABI handling parts into one place. llvm-svn: 28346
-
Chris Lattner authored
llvm-svn: 28341
-
- May 12, 2006
-
-
Chris Lattner authored
Nate, please verify that if InsertMask is 0, rlwimi shouldn't be used. This fixes the crash and causes no PPC testsuite regressions. llvm-svn: 28243
-
- May 08, 2006
-
-
Nate Begeman authored
llvm-svn: 28168
-
Nate Begeman authored
llvm-svn: 28162
-
- May 07, 2006
-
-
Nate Begeman authored
still a couple missed optimizations, but we now generate all the possible rlwimis for multiple inserts into the same bitfield. More regression tests to come. llvm-svn: 28156
-
- Apr 22, 2006
-
-
Nate Begeman authored
x86 and ppc for 100% dense switch statements when relocations are non-PIC. This support will be extended and enhanced in the coming days to support PIC, and less dense forms of jump tables. llvm-svn: 27947
-
- Apr 09, 2006
-
-
Chris Lattner authored
llvm-svn: 27543
-
- Mar 26, 2006
-
-
Chris Lattner authored
llvm-svn: 27151
-
- Mar 25, 2006
-
-
Chris Lattner authored
llvm-svn: 27109
-
- Mar 24, 2006
-
-
Chris Lattner authored
modes than emitting an explicit add and using a base of r0. This implements Regression/CodeGen/PowerPC/mem-rr-addr-mode.ll llvm-svn: 27068
-
- Mar 22, 2006
-
-
Chris Lattner authored
which is shifted left two bits before use. Instructions like STD use this addressing mode. llvm-svn: 26942
-
- Mar 21, 2006
-
-
Chris Lattner authored
llvm-svn: 26917
-
- Mar 20, 2006
-
-
Chris Lattner authored
disp field of the load/store if possible. This compiles CodeGen/PowerPC/load-constant-addr.ll to: _test: lis r2, 2838 lfs f1, 26848(r2) blr instead of: _test: lis r2, 2838 ori r2, r2, 26848 lfs f1, 0(r2) blr llvm-svn: 26908
-
Chris Lattner authored
llvm-svn: 26902
-
Evan Cheng authored
llvm-svn: 26900
-
Chris Lattner authored
constant pool load. This generates significantly nicer code for splats. When tblgen gets bugfixed, we can remove the custom selection code. llvm-svn: 26898
-
- Mar 17, 2006
-
-
Nate Begeman authored
Make the PPC backend not dependent on BRTWOWAY_CC and make the branch selector smarter about the code it generates, fixing a case in the readme. llvm-svn: 26814
-
- Mar 16, 2006
-
-
Chris Lattner authored
llvm-svn: 26793
-
- Mar 14, 2006
-
-
Chris Lattner authored
llvm-svn: 26758
-
Evan Cheng authored
llvm-svn: 26742
-
- Mar 13, 2006
-
-
Chris Lattner authored
registers, and update it on entry to each function, then restore it on exit. This compiles: void func(vfloat *a, vfloat *b, vfloat *c) { *a = *b * *c + *c; } to this: _func: mfspr r2, 256 oris r6, r2, 49152 mtspr 256, r6 lvx v0, 0, r5 lvx v1, 0, r4 vmaddfp v0, v1, v0, v0 stvx v0, 0, r3 mtspr 256, r2 blr GCC produces this (which has additional stack accesses): _func: mfspr r0,256 stw r0,-4(r1) oris r0,r0,0xc000 mtspr 256,r0 lvx v0,0,r5 lvx v1,0,r4 lwz r12,-4(r1) vmaddfp v0,v0,v1,v0 stvx v0,0,r3 mtspr 256,r12 blr llvm-svn: 26733
-
- Mar 12, 2006
-
-
Chris Lattner authored
1. Use flags on the instructions in the .td file to indicate the PPC970 unit type instead of a table in the .cpp file. Much cleaner. 2. Change the hazard recognizer to build d-groups according to the actual algorithm used, not my flawed understanding of it. 3. Model "must be in the first slot" and "must be the only instr in a group" accurately. llvm-svn: 26719
-
- Mar 08, 2006
-
-
Chris Lattner authored
llvm-svn: 26608
-
- Mar 07, 2006
-
-
Chris Lattner authored
flushes llvm-svn: 26587
-
- Mar 01, 2006
-
-
Chris Lattner authored
llvm-svn: 26450
-
- Feb 24, 2006
-
-
Chris Lattner authored
llvm-svn: 26348
-
- Feb 17, 2006
-
-
Nate Begeman authored
and SUBE nodes that actually expose what's going on and allow for significant simplifications in the targets. llvm-svn: 26255
-
- Feb 16, 2006
-
-
Evan Cheng authored
We do not want to emit "Loop: ... brcond Out; br Loop", as it adds an extra instruction in the loop. Instead, invert the condition and emit "Loop: ... br!cond Loop; br Out. Generalize the fix by moving it from PPCDAGToDAGISel to SelectionDAGLowering. llvm-svn: 26231
-
- Feb 09, 2006
-
-
Evan Cheng authored
llvm-svn: 26085
-
Evan Cheng authored
SDOperand Select(SDOperand N); to void Select(SDOperand &Result, SDOperand N); llvm-svn: 26067
-
- Feb 05, 2006
-
-
Evan Cheng authored
llvm-svn: 26010
-
Evan Cheng authored
llvm-svn: 25997
-
- Jan 28, 2006
-
-
Chris Lattner authored
llvm-svn: 25717
-
- Jan 23, 2006
-
-
Chris Lattner authored
llvm-svn: 25515
-