| Commit message (Expand) | Author | Age | Files | Lines |
| * | CellSPU: Update the README | Scott Michel | 2009-01-06 | 1 | -7/+18 |
| * | CellSPU: | Scott Michel | 2009-01-06 | 6 | -57/+213 |
| * | Revert r61415 and r61484. Duncan was correct that these weren't needed. | Bill Wendling | 2009-01-05 | 2 | -4/+0 |
| * | Tidy up #includes, deleting a bunch of unnecessary #includes. | Dan Gohman | 2009-01-05 | 20 | -27/+13 |
| * | squash warnings. | Devang Patel | 2009-01-05 | 5 | -1/+6 |
| * | Atom and Core i7 do not have same model number after all. | Evan Cheng | 2009-01-05 | 1 | -4/+3 |
| * | CellSPU: | Scott Michel | 2009-01-05 | 1 | -1/+111 |
| * | CellSPU: | Scott Michel | 2009-01-05 | 3 | -35/+82 |
| * | Add Intel processors core i7 and atom. | Evan Cheng | 2009-01-03 | 2 | -1/+4 |
| * | Fix PR3210: Detect more Intel processors. Patch by Torok Edwin. | Evan Cheng | 2009-01-03 | 1 | -2/+15 |
| * | CellSPU: | Scott Michel | 2009-01-03 | 3 | -109/+122 |
| * | - Make copyRegToReg use the "LR" assembler synonym for "OR". Makes finding | Scott Michel | 2009-01-02 | 1 | -38/+50 |
| * | Do not isel load folding bt instructions for pentium m, core, core2, and AMD ... | Evan Cheng | 2009-01-02 | 4 | -29/+51 |
| * | Fix x86 CPU id detection to identify Penryn (and future processors). | Evan Cheng | 2009-01-02 | 1 | -2/+11 |
| * | Use movaps / movd to extract vector element 0 even with sse4.1. It's still ch... | Evan Cheng | 2009-01-02 | 1 | -0/+8 |
| * | Fix PR3274: when promoting the condition of a BRCOND node, | Duncan Sands | 2009-01-01 | 12 | -14/+14 |
| * | add a note | Chris Lattner | 2008-12-31 | 1 | -0/+9 |
| * | - Start moving target-dependent nodes that could be represented by an | Scott Michel | 2008-12-30 | 10 | -614/+608 |
| * | Linux wants the FDE initial location and address range to be forced to 32-bit. | Bill Wendling | 2008-12-29 | 2 | -0/+2 |
| * | Fixed spelling, removed trailing whitespace. | Misha Brukman | 2008-12-29 | 1 | -2/+2 |
| * | - Various '#if 0' cleanups. | Scott Michel | 2008-12-29 | 3 | -156/+174 |
| * | - Remove Tilmann's custom truncate lowering: it completely hosed over | Scott Michel | 2008-12-27 | 12 | -628/+1148 |
| * | Add a simple pattern for matching 'bt'. | Chris Lattner | 2008-12-25 | 1 | -10/+46 |
| * | Fix some JIT encodings. | Chris Lattner | 2008-12-25 | 2 | -10/+10 |
| * | BT memory operands load from their address operand. | Chris Lattner | 2008-12-25 | 2 | -3/+3 |
| * | translateX86CC can never fail. Simplify it based on this. | Chris Lattner | 2008-12-24 | 1 | -42/+30 |
| * | Darwin likes for the EH frame to be non-local. | Bill Wendling | 2008-12-24 | 2 | -0/+2 |
| * | GCC doesn't emit DW_EH_PE_sdata4 for the FDE encoding on Darwin. I'm not sure | Bill Wendling | 2008-12-24 | 2 | -0/+2 |
| * | Fix a compiler-abort on a testcase where the stack-pointer is added to | Dan Gohman | 2008-12-24 | 1 | -6/+13 |
| * | indentation | Chris Lattner | 2008-12-24 | 1 | -9/+8 |
| * | simplify some control flow and reduce indentation, no functionality change. | Chris Lattner | 2008-12-23 | 1 | -63/+46 |
| * | Add instruction patterns and encodings for the x86 bt instructions. | Dan Gohman | 2008-12-23 | 4 | -0/+42 |
| * | Silence unused variable warnings. | Devang Patel | 2008-12-23 | 2 | -0/+7 |
| * | Clean up the atomic opcodes in SelectionDAG. | Dan Gohman | 2008-12-23 | 1 | -38/+27 |
| * | add some notes for simplifylibcalls optimizations | Chris Lattner | 2008-12-23 | 1 | -0/+25 |
| * | Fixed code generation for v8i16 and v16i8 splats on X86. | Mon P Wang | 2008-12-23 | 1 | -3/+33 |
| * | Make the fuse-failed debug output human-readable. | Dan Gohman | 2008-12-23 | 1 | -1/+1 |
| * | Fix fast-isel to not emit invalid assembly when presented with a | Dan Gohman | 2008-12-20 | 1 | -1/+1 |
| * | Move the patterns which have i8 immediates before the patterns | Dan Gohman | 2008-12-19 | 1 | -99/+99 |
| * | Fix some release-assert warnings | Chris Lattner | 2008-12-19 | 1 | -6/+6 |
| * | Fix bug 3202. | Rafael Espindola | 2008-12-19 | 5 | -2/+25 |
| * | When emitting instructions that define EFLAGS and the EFLAGS value isn't | Dan Gohman | 2008-12-18 | 1 | -7/+23 |
| * | When setting up the frame pointer, add it as a live-in register to all | Dan Gohman | 2008-12-18 | 1 | -0/+5 |
| * | Fixed x86 code generation of multiple for v2i64. It was incorrect for SSE4.1. | Mon P Wang | 2008-12-18 | 4 | -6/+49 |
| * | Mark the x86 fp stack registers as "reserved". This tells LiveVariables | Dan Gohman | 2008-12-18 | 1 | -0/+14 |
| * | Add initial support for back-scheduling address computations, | Dan Gohman | 2008-12-16 | 2 | -0/+17 |
| * | add some more notes. | Chris Lattner | 2008-12-15 | 1 | -2/+53 |
| * | Add a testcase for GCC PR 23455, which lpre handles now. Add some | Chris Lattner | 2008-12-15 | 1 | -4/+10 |
| * | gvn now hoists this load out of the hot non-call path. | Chris Lattner | 2008-12-15 | 1 | -29/+0 |
| * | silence warning when asserts disabled. | Chris Lattner | 2008-12-14 | 1 | -2/+2 |