| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a missing forward declaration. | David Greene | 2007-08-07 | 1 | -0/+1 |
* | Fix a regression compiling 2005-05-11-Popcount-ffs-fls with the CBE, | Chris Lattner | 2007-08-06 | 1 | -1/+1 |
* | Implement review feedback. No functionality change. | Christopher Lamb | 2007-08-06 | 1 | -137/+152 |
* | Fix minor doxygen nits. | Reid Spencer | 2007-08-05 | 1 | -3/+3 |
* | shorten this name | Chris Lattner | 2007-08-05 | 1 | -2/+1 |
* | This is the patch to provide clean intrinsic function overloading support in ... | Chandler Carruth | 2007-08-04 | 1 | -12/+0 |
* | More explicit keywords. | Dan Gohman | 2007-08-02 | 2 | -2/+2 |
* | don't redefine a parameter | Chris Lattner | 2007-08-02 | 1 | -1/+1 |
* | Do not emit copies for physical register output if it's not used. | Evan Cheng | 2007-08-02 | 2 | -2/+28 |
* | Style police: Expand the tabs to spaces! | Scott Michel | 2007-08-02 | 1 | -5/+5 |
* | Instead of adding copyfromreg's to handle physical definitions. Now isel can | Evan Cheng | 2007-08-02 | 1 | -68/+78 |
* | Bugs: missing partial uses and redundant partial defs. | Evan Cheng | 2007-08-01 | 1 | -4/+20 |
* | Expand unaligned loads/stores when the target doesn't support them. (PR1548) | Lauro Ramos Venancio | 2007-08-01 | 1 | -3/+140 |
* | New CallInst interface to address GLIBCXX_DEBUG errors caused by | David Greene | 2007-08-01 | 1 | -4/+4 |
* | simpleregistercoalescing -> regcoalescing. It's too long for me to handle. | Evan Cheng | 2007-07-31 | 1 | -1/+1 |
* | - Allow custom lowering for CTPOP, CTTZ, CTLZ. | Scott Michel | 2007-07-30 | 1 | -2/+9 |
* | Fix a bug in getCopyFromParts turned up in the testcase for PR1132. | Dan Gohman | 2007-07-30 | 1 | -3/+3 |
* | Print a space between the comment character and the basic block name, | Dan Gohman | 2007-07-30 | 1 | -1/+2 |
* | Support for trampolines, except for X86 codegen which is | Duncan Sands | 2007-07-27 | 3 | -0/+56 |
* | Move subreg lowering pass to be right after regalloc, per feedback. | Christopher Lamb | 2007-07-27 | 1 | -4/+10 |
* | Fix the alias analysis query in DAGCombiner to not add in two | Dan Gohman | 2007-07-26 | 1 | -2/+2 |
* | Add a MachineFunction pass, which runs post register allocation, that turns s... | Christopher Lamb | 2007-07-26 | 2 | -0/+230 |
* | Teach DAG scheduling how to properly emit subreg insert/extract machine instr... | Christopher Lamb | 2007-07-26 | 1 | -0/+150 |
* | Add selection DAG nodes for subreg insert/extract. PR1350 | Christopher Lamb | 2007-07-26 | 2 | -2/+21 |
* | Remove subreg index from MachineInstr's and also keep vregs as unsigned when ... | Christopher Lamb | 2007-07-26 | 1 | -2/+0 |
* | Fix infinite recursion for when extract_vector_elt is legal. Unfortunately no... | Christopher Lamb | 2007-07-26 | 1 | -1/+1 |
* | EmitAlignment() also emits optional fill value. | Evan Cheng | 2007-07-25 | 1 | -2/+5 |
* | Minor cleanup: | Anton Korobeynikov | 2007-07-25 | 1 | -1/+1 |
* | Add const to CanBeFoldedBy, CheckAndMask, and CheckOrMask. | Dan Gohman | 2007-07-24 | 1 | -2/+2 |
* | Fix some uses of dyn_cast to be uses of cast. | Dan Gohman | 2007-07-23 | 2 | -2/+2 |
* | Don't assume that only Uses can be kills. Defs are marked as kills initially | Dan Gohman | 2007-07-20 | 2 | -10/+8 |
* | Added -print-emitted-asm to print out JIT generated asm to cerr. | Evan Cheng | 2007-07-20 | 1 | -2/+4 |
* | As pointed out by g++-4.2, the original code didn't do | Duncan Sands | 2007-07-19 | 1 | -2/+2 |
* | Add comment. | Evan Cheng | 2007-07-18 | 1 | -0/+3 |
* | It's not necessary to do rounding for alloca operations when the requested | Dan Gohman | 2007-07-18 | 1 | -5/+5 |
* | Dead code. | Evan Cheng | 2007-07-17 | 1 | -1/+0 |
* | Fix comments about vectors to use the current wording. | Dan Gohman | 2007-07-16 | 2 | -4/+4 |
* | Fix the build. Patch from Holger Schurig. | Nick Lewycky | 2007-07-14 | 1 | -1/+2 |
* | Long live the exception handling! | Anton Korobeynikov | 2007-07-14 | 5 | -2/+71 |
* | Fix the comment for LegalizeOp to more accurately reflect what it does. | Dan Gohman | 2007-07-13 | 1 | -3/+4 |
* | Don't call SimplifyVBinOp for non-vector operations, following earlier review | Dan Gohman | 2007-07-13 | 1 | -25/+49 |
* | Modify previous patch per review comments. | Dale Johannesen | 2007-07-13 | 2 | -3/+5 |
* | Skeleton of post-RA scheduler; doesn't do anything yet. | Dale Johannesen | 2007-07-13 | 7 | -6/+93 |
* | The type ids making up a filter are unsigned, and | Duncan Sands | 2007-07-12 | 1 | -2/+2 |
* | Missed a couple of places where new instructions are added due to spill / res... | Evan Cheng | 2007-07-11 | 1 | -67/+77 |
* | Exception handling has been implemented. | Duncan Sands | 2007-07-11 | 1 | -3/+2 |
* | If assertions are not enabled, we should return False here. | Duncan Sands | 2007-07-11 | 1 | -5/+4 |
* | No longer need to track last def / use. | Evan Cheng | 2007-07-11 | 1 | -79/+15 |
* | Fix for PR1545: Revamp code that update kill information due to register reuse. | Evan Cheng | 2007-07-11 | 1 | -63/+85 |
* | Make this work with GLIBCXX_DEBUG. | David Greene | 2007-07-10 | 1 | -1/+8 |