| Commit message (Expand) | Author | Age | Files | Lines |
* | Simplify the logic in the simple spiller and capitalize some variables | Chris Lattner | 2004-09-30 | 1 | -86/+90 |
* | Switch from defaulting to the 'local' spiller to the 'simple' spiller. The | Chris Lattner | 2004-09-30 | 1 | -2/+2 |
* | Don't use a densemap for keeping track of which vregs are already loaded, just | Chris Lattner | 2004-09-30 | 1 | -6/+10 |
* | Use longer and more explicit names for instance vars (particularly important | Chris Lattner | 2004-09-30 | 2 | -50/+46 |
* | Free the VirtRegMap at the end of MachineFunction processing instead of at | Chris Lattner | 2004-09-30 | 1 | -1/+1 |
* | Reindent code, improve comments, move huge nested methods out of classes, | Chris Lattner | 2004-09-30 | 2 | -407/+417 |
* | Disable the 'WARNING: Found global types that are not compatible' warning | Chris Lattner | 2004-09-30 | 1 | -1/+1 |
* | Change the #ifdefs to allow compilation with a V8 compiler, but the JIT still | Misha Brukman | 2004-09-29 | 2 | -6/+6 |
* | Hrm, debugging printouts do not need to be in here | Chris Lattner | 2004-09-29 | 1 | -2/+0 |
* | Make sure to check select instructions for generic instruction properties | Chris Lattner | 2004-09-29 | 1 | -0/+1 |
* | Update list of shootout programs that should be working. | Brian Gaeke | 2004-09-29 | 2 | -4/+4 |
* | Tell the target description that calls clobber registers O0...O5. | Brian Gaeke | 2004-09-29 | 2 | -20/+18 |
* | Don't use DominatorSet::dominates for intra-block instruction dom checks. | Chris Lattner | 2004-09-29 | 1 | -1/+11 |
* | The verifier takes 50s on this testcase, that is not good n stuff | Chris Lattner | 2004-09-29 | 1 | -0/+24454 |
* | FITOD is spelled "fitod", not "fitos". Ouch. | Brian Gaeke | 2004-09-29 | 2 | -2/+2 |
* | Don't use .quad to output double constants. The assembler must have a bug or | Brian Gaeke | 2004-09-29 | 2 | -2/+4 |
* | * Pull range optimization code out into new InsertRangeTest function. | Chris Lattner | 2004-09-29 | 1 | -80/+219 |
* | New testcasses for divides that can be eliminated. | Chris Lattner | 2004-09-29 | 1 | -0/+25 |
* | Recognize FpMOVD as a move. | Brian Gaeke | 2004-09-29 | 2 | -2/+2 |
* | Do not insert trivially dead select instructions, which allows us to | Chris Lattner | 2004-09-29 | 1 | -2/+11 |
* | Fold binary expressions and casts into PHI nodes that have all constant inputs. | Chris Lattner | 2004-09-29 | 1 | -1/+86 |
* | New testcases | Chris Lattner | 2004-09-29 | 2 | -0/+27 |
* | Generate better code by being far less clever when it comes to the select ins... | Nate Begeman | 2004-09-29 | 1 | -7/+17 |
* | add results | Brian Gaeke | 2004-09-29 | 2 | -0/+14 |
* | improve Type::BoolTy codegen by eliminating unnecessary clears and sign extends | Nate Begeman | 2004-09-29 | 1 | -1/+8 |
* | Simplify copyConstantToRegister() for longs, using a pair of recursive calls. | Brian Gaeke | 2004-09-29 | 2 | -124/+212 |
* | Fix bug recognizing moves: isMoveInstr should only treat ORs with %g0 as | Brian Gaeke | 2004-09-29 | 2 | -2/+2 |
* | Use FpMOVD pseudo-instruction to move doubles around. | Brian Gaeke | 2004-09-29 | 2 | -0/+4 |
* | Add new FpMOVD pseudo-instruction, used to move doubles around. | Brian Gaeke | 2004-09-29 | 2 | -0/+2 |
* | Fix double and long alignment. | Brian Gaeke | 2004-09-29 | 2 | -2/+6 |
* | Put quotes around argument to .section directive. | Brian Gaeke | 2004-09-29 | 2 | -6/+6 |
* | Add createSparcV8FPMoverPass(). | Brian Gaeke | 2004-09-29 | 2 | -0/+2 |
* | Pass which converts FpMOVD (double move pseudoinstructions) to pairs | Brian Gaeke | 2004-09-29 | 2 | -0/+182 |
* | More testcases for recent instcombine patches | Chris Lattner | 2004-09-29 | 1 | -0/+11 |
* | Hrm, really, all tests passed without this, but it is scary to think how... | Chris Lattner | 2004-09-29 | 1 | -2/+2 |
* | Remove debugging printout | Chris Lattner | 2004-09-29 | 1 | -1/+38 |
* | To go along with sabre's improved InstCombining, improve recognition of | Nate Begeman | 2004-09-29 | 1 | -21/+9 |
* | Improve validity checking of windows path names and fix file creation | Reid Spencer | 2004-09-29 | 2 | -62/+156 |
* | Use llvm::sys::Path to destroy the file. | Reid Spencer | 2004-09-28 | 2 | -8/+10 |
* | Win32 implementation of TimeValue::now(). | Reid Spencer | 2004-09-28 | 2 | -12/+24 |
* | FreeBSD implementation of the TimeValue::now() method. | Reid Spencer | 2004-09-28 | 1 | -2/+13 |
* | Fold (X setcc C1) | (X setcc C2) | Chris Lattner | 2004-09-28 | 1 | -1/+102 |
* | New testcase | Chris Lattner | 2004-09-28 | 1 | -0/+15 |
* | Fold (and (setcc X, C1), (setcc X, C2)) | Chris Lattner | 2004-09-28 | 1 | -20/+121 |
* | * Add `deplibs' keyword for specifying a list of dependent libraries | Misha Brukman | 2004-09-28 | 1 | -4/+4 |
* | Add `deplibs' keyword for specifying a list of dependent libraries | Misha Brukman | 2004-09-28 | 1 | -1/+1 |
* | New testcases | Chris Lattner | 2004-09-28 | 1 | -0/+36 |
* | Add support for the isLoad and isStore flags, needed by the instruction sched... | Nate Begeman | 2004-09-28 | 1 | -0/+2 |
* | Add support for the isLoad and isStore flags, needed by the instruction sched... | Nate Begeman | 2004-09-28 | 3 | -0/+6 |
* | Turn the hasDelaySlot flag into the M_DELAY_SLOT_FLAG | Chris Lattner | 2004-09-28 | 3 | -0/+3 |