| Commit message (Expand) | Author | Age | Files | Lines |
* | First round of support for doing scalar FP using the SSE2 ISA extension and | Nate Begeman | 2005-07-06 | 1 | -2/+12 |
* | Tailcalls require stubs to be emitted. Otherwise, the compilation callback | Chris Lattner | 2005-05-19 | 1 | -8/+15 |
* | * Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -4/+4 |
* | There is no reason to emit function stubs for direct calls. | Chris Lattner | 2004-11-21 | 1 | -1/+1 |
* | Remove all JIT specific code and switch the code generator over to emitting | Chris Lattner | 2004-11-20 | 1 | -194/+26 |
* | Dont' forget to switch back to decimal output | Chris Lattner | 2004-11-19 | 1 | -1/+2 |
* | Fix a major bug in the signed shr code, which apparently only breaks 134.perl! | Chris Lattner | 2004-11-16 | 1 | -1/+2 |
* | Remove a dead function, which died when we got GAS emission working (phwew, | Chris Lattner | 2004-11-16 | 1 | -8/+0 |
* | Implement a simple FIXME: if we are emitting a basic block address that has | Chris Lattner | 2004-11-16 | 1 | -3/+13 |
* | * Merge some win32 ifdefs together | Chris Lattner | 2004-11-16 | 1 | -22/+17 |
* | Add debug-only=jit printout, so we see when lazily resolved symbols are | Chris Lattner | 2004-11-15 | 1 | -0/+2 |
* | Fix compilation problem; make the cast and the LHS be the same type. | John Criswell | 2004-11-05 | 1 | -1/+1 |
* | Quiet VC++ warnings | Chris Lattner | 2004-11-05 | 1 | -2/+2 |
* | Improve compatibility with VC++, patch contributed by Morten Ofstad! | Chris Lattner | 2004-10-18 | 1 | -0/+17 |
* | Unify handling of constant pool indexes with the other code paths, allowing | Chris Lattner | 2004-10-17 | 1 | -17/+17 |
* | Give the X86 JIT the ability to encode global+disp constants. Patch | Chris Lattner | 2004-10-15 | 1 | -27/+54 |
* | Fix filename: Printer.cpp has become X86AsmPrinter.cpp | Misha Brukman | 2004-09-12 | 1 | -1/+1 |
* | Changes For Bug 352 | Reid Spencer | 2004-09-01 | 1 | -3/+3 |
* | Remove dead method | Chris Lattner | 2004-08-11 | 1 | -13/+0 |
* | Make sure to emit the immediate byte for instructions like: | Chris Lattner | 2004-07-17 | 1 | -0/+2 |
* | Convert to the new TargetMachine interface. | Chris Lattner | 2004-06-02 | 1 | -1/+1 |
* | Don't keep track of references to LLVM BasicBlocks while emitting; use | Brian Gaeke | 2004-05-14 | 1 | -11/+9 |
* | Use emitWordAt() to emit forward-branch fixups. | Brian Gaeke | 2004-04-23 | 1 | -1/+1 |
* | Add support for new instruction type | Chris Lattner | 2004-04-13 | 1 | -0/+2 |
* | Add emitInstruction() API so that we can get the bytes of a simple instruction | Alkis Evlogimenos | 2004-03-09 | 1 | -3/+13 |
* | Constify things a bit | Alkis Evlogimenos | 2004-03-09 | 1 | -9/+9 |
* | Each instruction now has both an ImmType and a MemType. This describes | Alkis Evlogimenos | 2004-02-28 | 1 | -33/+37 |
* | Rename MRMS[0-7]{r,m} to MRM[0-7]{r,m}. | Alkis Evlogimenos | 2004-02-27 | 1 | -10/+10 |
* | Add support for GlobalAddress's for alkis | Chris Lattner | 2004-02-17 | 1 | -1/+6 |
* | Expand the repertoire of the forms we can print and encode. | Chris Lattner | 2004-02-17 | 1 | -2/+3 |
* | Make dense maps keyed on physical registers smallerusing | Alkis Evlogimenos | 2004-02-15 | 1 | -1/+1 |
* | Add back machine code deleter pass until we get a MachineCode pass | Alkis Evlogimenos | 2004-02-15 | 1 | -0/+2 |
* | Add support for the rep movs[bwd] instructions, and emit them when code | Chris Lattner | 2004-02-12 | 1 | -0/+4 |
* | Change MachineBasicBlock's vector of MachineInstr pointers into an | Alkis Evlogimenos | 2004-02-12 | 1 | -3/+1 |
* | Modify the two address instruction pass to remove the duplicate | Alkis Evlogimenos | 2004-02-04 | 1 | -15/+7 |
* | Remove floating point killer pass. This is now implemented in the | Alkis Evlogimenos | 2003-12-20 | 1 | -1/+3 |
* | Finally, _actually delete the machine code_ for a function, after it has | Chris Lattner | 2003-12-20 | 1 | -0/+3 |
* | A minor cleanup for better encapsulation | Chris Lattner | 2003-12-20 | 1 | -12/+13 |
* | Rip JIT specific stuff out of TargetMachine, as per PR176 | Chris Lattner | 2003-12-20 | 1 | -2/+10 |
* | Modified cast so that it converts the int to a long before casting to | John Criswell | 2003-12-12 | 1 | -1/+1 |
* | Implement the TargetMachine::getJITStubForFunction method for X86, finegrainify | Chris Lattner | 2003-12-12 | 1 | -4/+7 |
* | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 1 | -0/+4 |
* | Added LLVM project notice to the top of every C++ source file. | John Criswell | 2003-10-20 | 1 | -0/+7 |
* | * Rename X86::IMULr16 -> X86::IMULrr16 | Chris Lattner | 2003-10-20 | 1 | -7/+15 |
* | Fix typo in comment. | Brian Gaeke | 2003-10-16 | 1 | -1/+1 |
* | Spell `necessary' correctly. | Misha Brukman | 2003-08-18 | 1 | -1/+1 |
* | addPassesToJITCompile and addPassesToEmitMachineCode now take a | Brian Gaeke | 2003-08-13 | 1 | -1/+1 |
* | This is the real fix for the previous register allocator problem. | Chris Lattner | 2003-08-05 | 1 | -1/+1 |
* | Set debug types | Chris Lattner | 2003-08-03 | 1 | -0/+1 |
* | Move DEBUG to Debug.h | Chris Lattner | 2003-08-01 | 1 | -0/+1 |