| Commit message (Expand) | Author | Age | Files | Lines |
* | Do not push two return addresses on the stack when we call external functions... | Chris Lattner | 2004-11-22 | 1 | -10/+16 |
* | There is no reason to emit function stubs for direct calls. | Chris Lattner | 2004-11-21 | 2 | -2/+1 |
* | ignore generated files | Chris Lattner | 2004-11-21 | 1 | -0/+1 |
* | Remove all JIT specific code and switch the code generator over to emitting | Chris Lattner | 2004-11-20 | 1 | -194/+26 |
* | Implement the X86 JIT interfaces | Chris Lattner | 2004-11-20 | 1 | -0/+140 |
* | Describe the X86 target-specific relocations. | Chris Lattner | 2004-11-20 | 1 | -0/+33 |
* | We implement these interfaces | Chris Lattner | 2004-11-20 | 1 | -5/+13 |
* | 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 | 2 | -2/+3 |
* | Remove a dead function, which died when we got GAS emission working (phwew, | Chris Lattner | 2004-11-16 | 2 | -16/+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 |
* | Simplify and rearrange long shift code | Chris Lattner | 2004-11-15 | 1 | -12/+17 |
* | GhostLinkage should not reach asm printing stage | Misha Brukman | 2004-11-14 | 1 | -0/+3 |
* | Don't print unneeded labels | Chris Lattner | 2004-11-13 | 1 | -5/+7 |
* | shld is a very high latency operation. Instead of emitting it for shifts of | Chris Lattner | 2004-11-13 | 1 | -14/+52 |
* | Add missing check | Chris Lattner | 2004-11-13 | 1 | -1/+1 |
* | Compile: | Chris Lattner | 2004-11-13 | 1 | -4/+14 |
* | Correct the name of stosd for the AT&T syntax: | John Criswell | 2004-11-10 | 1 | -1/+1 |
* | 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 |
* | Fix a warning | Chris Lattner | 2004-11-02 | 1 | -1/+2 |
* | Add placeholder variable to make Win32 work, applied for Morten Ofstad | Chris Lattner | 2004-11-01 | 1 | -0/+6 |
* | Change Library Names Not To Conflict With Others When Installed | Reid Spencer | 2004-10-27 | 1 | -1/+1 |
* | Adjust to changes in Makefile.rules | Reid Spencer | 2004-10-22 | 1 | -43/+5 |
* | We won't use automake | Reid Spencer | 2004-10-22 | 2 | -730/+0 |
* | Initial automake generated Makefile template | Reid Spencer | 2004-10-18 | 1 | -0/+694 |
* | Improve compatibility with VC++, patch contributed by Morten Ofstad! | Chris Lattner | 2004-10-18 | 2 | -1/+18 |
* | Don't print stuff out from the code generator. This broke the JIT horribly | Chris Lattner | 2004-10-17 | 1 | -1/+0 |
* | Rewrite support for cast uint -> FP. In particular, we used to compile this: | Chris Lattner | 2004-10-17 | 1 | -14/+23 |
* | Unify handling of constant pool indexes with the other code paths, allowing | Chris Lattner | 2004-10-17 | 1 | -17/+17 |
* | Give the asmprinter the ability to print memrefs with a constant pool index, | Chris Lattner | 2004-10-17 | 1 | -26/+41 |
* | fold: | Chris Lattner | 2004-10-17 | 1 | -3/+46 |
* | Teach the X86 backend about unreachable and undef. Among other things, we | Chris Lattner | 2004-10-16 | 1 | -1/+15 |
* | Instruction select globals with offsets better. For example, on this test | Chris Lattner | 2004-10-15 | 1 | -7/+17 |
* | Give the X86 JIT the ability to encode global+disp constants. Patch | Chris Lattner | 2004-10-15 | 1 | -27/+54 |
* | Give the X86 asm printer the ability to print out addressing modes that have | Chris Lattner | 2004-10-15 | 1 | -25/+53 |
* | Allow X86 addressing modes to represent globals with offsets. Patch contributed | Chris Lattner | 2004-10-15 | 1 | -5/+10 |
* | Update to reflect changes in Makefile rules. | Reid Spencer | 2004-10-13 | 1 | -4/+4 |
* | Initial version of automake Makefile.am file. | Reid Spencer | 2004-10-10 | 1 | -0/+36 |
* | The person who was planning to add SSE support isn't anymore, so disable | Chris Lattner | 2004-10-08 | 1 | -1/+3 |
* | Fix a major regression from the bugfix for 2004-10-08-SelectSetCCFold.llx, | Chris Lattner | 2004-10-08 | 1 | -1/+1 |
* | Fix bug: 2004-10-08-SelectSetCCFold.llx. Normally this is hidden by the | Chris Lattner | 2004-10-08 | 1 | -1/+2 |
* | Remove debugging code, fix encoding problem. This fixes the problems | Chris Lattner | 2004-10-06 | 2 | -3/+2 |
* | Codegen signed mod by 2 or -2 more efficiently. Instead of generating: | Chris Lattner | 2004-10-06 | 1 | -3/+39 |
* | Fix a scary bug with signed division by a power of two. We used to generate: | Chris Lattner | 2004-10-06 | 1 | -6/+3 |
* | Codegen signed divides by 2 and -2 more efficiently. In particular | Chris Lattner | 2004-10-06 | 1 | -0/+22 |
* | Add some new instructions. Fix the asm string for sbb32rr | Chris Lattner | 2004-10-06 | 3 | -3/+24 |
* | * Prune #includes | Chris Lattner | 2004-10-04 | 1 | -101/+27 |