| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make the x86 asm flavor part of the subtarget info. | Jim Laskey | 2006-09-07 | 1 | -23/+6 |
| * | Separate target specific asm properties from the asm printers. | Jim Laskey | 2006-09-06 | 1 | -27/+63 |
| * | Emit .set directives for jump table entries when possible, which reduces | Nate Begeman | 2006-08-12 | 1 | -0/+1 |
| * | Use the predicate. | Jim Laskey | 2006-07-27 | 1 | -5/+5 |
| * | Support jump tables when in PIC relocation model | Nate Begeman | 2006-07-27 | 1 | -1/+1 |
| * | Add an out-of-line virtual method for X86DwarfWriter to give it a home. | Chris Lattner | 2006-07-14 | 1 | -0/+4 |
| * | Move .literal4 and .literal8 support into AsmPrinter.cpp | Evan Cheng | 2006-06-29 | 1 | -51/+2 |
| * | Doh. | Evan Cheng | 2006-06-28 | 1 | -1/+1 |
| * | Oops. Need to keep CP index. | Evan Cheng | 2006-06-28 | 1 | -16/+15 |
| * | Darwin puts float and double literal constants into literal4 and literal8 sec... | Evan Cheng | 2006-06-28 | 1 | -0/+52 |
| * | Be consistent with gcc. | Evan Cheng | 2006-06-04 | 1 | -1/+1 |
| * | Minor bug caught by Ashwin Chandra | Evan Cheng | 2006-05-26 | 1 | -1/+1 |
| * | X86 / Cygwin asm / alignment fixes. | Evan Cheng | 2006-05-25 | 1 | -13/+17 |
| * | Fix the MASM asmprinter's lies. It does not want to emit code to .text/.data | Chris Lattner | 2006-05-09 | 1 | -2/+4 |
| * | Split SwitchSection into SwitchTo{Text|Data}Section methods. | Chris Lattner | 2006-05-09 | 1 | -7/+8 |
| * | Fix some loose ends in MASM support. | Jeff Cohen | 2006-05-06 | 1 | -0/+3 |
| * | Print *some* grouping around inline asm blocks so we know where they are. | Chris Lattner | 2006-05-05 | 1 | -1/+2 |
| * | Make Intel syntax the default when LLVM is built with VC++. | Jeff Cohen | 2006-05-04 | 1 | -1/+6 |
| * | Refactor TargetMachine, pushing handling of TargetData into the target-specif... | Owen Anderson | 2006-05-03 | 1 | -2/+2 |
| * | Hooray, everyone now uses the same printBasicBlockLabel implementation | Nate Begeman | 2006-05-02 | 1 | -12/+0 |
| * | Extend printBasicBlockLabel a bit so that it can be used to print all | Nate Begeman | 2006-05-02 | 1 | -5/+9 |
| * | JumpTable support! What this represents is working asm and jit support for | Nate Begeman | 2006-04-22 | 1 | -0/+9 |
| * | Change interface to DwarfWriter. | Jim Laskey | 2006-03-23 | 1 | -4/+4 |
| * | Added getTargetLowering() to TargetMachine. Refactored targets to support this. | Evan Cheng | 2006-03-13 | 1 | -5/+5 |
| * | Use "llvm.metadata" section for debug globals. Filter out these globals in the | Jim Laskey | 2006-03-07 | 1 | -1/+1 |
| * | - Emit subsections_via_symbols for Darwin. | Evan Cheng | 2006-03-07 | 1 | -5/+14 |
| * | Enable Dwarf debugging info. | Evan Cheng | 2006-03-07 | 1 | -0/+6 |
| * | "." isn't enough to get a private label on linux, use ".L". | Chris Lattner | 2006-02-23 | 1 | -0/+1 |
| * | PIC related bug fixes. | Evan Cheng | 2006-02-23 | 1 | -2/+2 |
| * | Use .zerofill on x86/darwin. | Evan Cheng | 2006-02-15 | 1 | -15/+22 |
| * | Darwin doesn't support #APP/#NO_APP | Chris Lattner | 2006-02-08 | 1 | -0/+1 |
| * | Fixed a local common symbol bug. | Evan Cheng | 2006-02-07 | 1 | -11/+17 |
| * | For ELF, .comm takes alignment value as the optional 3rd argument. It must be | Evan Cheng | 2006-02-07 | 1 | -1/+3 |
| * | Darwin ABI issues: weak, linkonce, etc. dynamic-no-pic support is complete. | Evan Cheng | 2006-02-07 | 1 | -75/+55 |
| * | Use getPreferredAlignmentLog. | Chris Lattner | 2006-02-05 | 1 | -1/+1 |
| * | Use the shared asmprinter code for printing special llvm globals | Chris Lattner | 2005-12-13 | 1 | -37/+5 |
| * | Add ELF and darwin support for static ctors and dtors | Chris Lattner | 2005-12-13 | 1 | -0/+39 |
| * | Use HasDotTypeDotSizeDirective instead of forELF | Chris Lattner | 2005-11-21 | 1 | -13/+6 |
| * | Remove a level of indentation by using a continue. | Chris Lattner | 2005-11-21 | 1 | -55/+55 |
| * | Use subtarget information computed by X86Subtarget instead of rolling our own. | Chris Lattner | 2005-11-21 | 1 | -27/+20 |
| * | Add a forELF flag, allowing the removal of forCygwin and simplification of | Chris Lattner | 2005-11-21 | 1 | -3/+8 |
| * | simplify and genericize this code | Chris Lattner | 2005-11-21 | 1 | -55/+69 |
| * | prune #include | Chris Lattner | 2005-11-21 | 1 | -1/+0 |
| * | Switch to using the shared constant pool printer, along with using shorter | Chris Lattner | 2005-11-21 | 1 | -26/+1 |
| * | Adjust to capitalized AsmPrinter method names | Chris Lattner | 2005-11-21 | 1 | -5/+5 |
| * | convert the rest of this over to use SwitchSection | Chris Lattner | 2005-11-21 | 1 | -5/+2 |
| * | Start using the AsmPrinter shared SwitchSection code. This allows the X86 | Chris Lattner | 2005-11-21 | 1 | -7/+3 |
| * | Rename SwitchSection -> switchSection to avoid conflicting with a future | Chris Lattner | 2005-11-21 | 1 | -4/+4 |
| * | Naturally align doubles in the constant pool, set PrivateGlobalPrefix on | Chris Lattner | 2005-11-21 | 1 | -6/+15 |
| * | Eliminate all remaining tabs and trailing spaces. | Jeff Cohen | 2005-07-27 | 1 | -8/+8 |