| Commit message (Expand) | Author | Age | Files | Lines |
* | add a new insertAfter method, patch by Tom Jablin! | Chris Lattner | 2009-01-13 | 1 | -0/+6 |
* | make -march=cpp handle the nocapture attribute, make it assert if it | Chris Lattner | 2009-01-13 | 1 | -22/+19 |
* | Un-tabify. | Evan Cheng | 2009-01-13 | 1 | -1/+1 |
* | FIX llvm-gcc bootstrap on x86_64 linux. If a virtual register is copied to a ... | Evan Cheng | 2009-01-13 | 1 | -0/+13 |
* | Use DebugInfo interface to lower dbg_* intrinsics. | Devang Patel | 2009-01-13 | 9 | -61/+77 |
* | Start using DebugInfo API to emit debug info. | Devang Patel | 2009-01-13 | 1 | -11/+10 |
* | Emit debug info, only if at least one compile unit is seen. | Devang Patel | 2009-01-12 | 1 | -2/+8 |
* | If multiple compile units are seen then emit them independently. In other wor... | Devang Patel | 2009-01-12 | 1 | -65/+74 |
* | Avoid cast<>, use light weith wrapper directly. | Devang Patel | 2009-01-12 | 1 | -3/+3 |
* | Use SrcLineInfo from DwarfWriter. The MachineModuleInfo copy will disappear s... | Devang Patel | 2009-01-12 | 1 | -12/+9 |
* | Enable recursive inlining. Reduce inlining threshold | Dale Johannesen | 2009-01-12 | 2 | -8/+6 |
* | Add classof() methods to support isa<> and other related facilities. | Devang Patel | 2009-01-12 | 1 | -8/+2 |
* | Rename getABITypeSize to getTypePaddedSize, as | Duncan Sands | 2009-01-12 | 48 | -141/+145 |
* | Add DwarfWriter interface to mainipulate source location info. | Devang Patel | 2009-01-12 | 1 | -45/+91 |
* | Clear debug info at the end of function processing. | Devang Patel | 2009-01-12 | 1 | -1/+12 |
* | There is no need to maintain separate labelid list in the dwarf writer. It is... | Devang Patel | 2009-01-12 | 1 | -36/+5 |
* | Remove some dead code from the days llvm had type planes. | Rafael Espindola | 2009-01-12 | 1 | -46/+1 |
* | Fix PR3241: Currently EmitCopyFromReg emits a copy from the physical register... | Evan Cheng | 2009-01-12 | 5 | -65/+87 |
* | More two-address fixes. This gets lua working with join-creation enabled. | Owen Anderson | 2009-01-12 | 1 | -6/+10 |
* | make tblgen autogenerate the nocapture intrinsics for | Chris Lattner | 2009-01-12 | 1 | -4/+0 |
* | make tblgen emit the entire Intrinsic::getAttributes method, | Chris Lattner | 2009-01-12 | 1 | -10/+1 |
* | Increase default inlining aggressiveness in partial | Dale Johannesen | 2009-01-11 | 1 | -2/+2 |
* | simplify CallSite helper class to not consult the Instruction's | Gabor Greif | 2009-01-11 | 1 | -59/+33 |
* | Duncan is nervous about undefinedness of % with negatives. I'm | Chris Lattner | 2009-01-11 | 1 | -1/+1 |
* | do not generated GEPs into vectors where they don't already exist. | Chris Lattner | 2009-01-11 | 1 | -4/+3 |
* | Make a couple of cleanups to the instcombine bitcast/gep | Chris Lattner | 2009-01-11 | 1 | -12/+13 |
* | Use the spiffy new getAlignmentFromAttrs function. | Nick Lewycky | 2009-01-11 | 1 | -1/+1 |
* | CheckForPhysRegDependency should not return copy cost. It's not used. No func... | Evan Cheng | 2009-01-11 | 1 | -9/+4 |
* | 80 col violation. | Evan Cheng | 2009-01-10 | 1 | -1/+2 |
* | Reduce initial small vector sizes. | Devang Patel | 2009-01-10 | 1 | -6/+6 |
* | Fix thinko. Create parent scope if parent descriptor is *not* null. | Devang Patel | 2009-01-10 | 1 | -2/+2 |
* | Duplicated node may produce a non-physical register def. | Evan Cheng | 2009-01-09 | 1 | -3/+5 |
* | Minor debug output tweak. | Evan Cheng | 2009-01-09 | 1 | -2/+2 |
* | Request DwarfWriter. This will be used to handle dbg_* intrinsics. | Devang Patel | 2009-01-09 | 2 | -2/+7 |
* | fix typo Duncan noticed. | Chris Lattner | 2009-01-09 | 1 | -1/+1 |
* | Fix PR3304 | Chris Lattner | 2009-01-09 | 1 | -2/+12 |
* | Removed trailing whitespace from Makefiles. | Misha Brukman | 2009-01-09 | 43 | -92/+92 |
* | Implement rdar://6480391, extending of equality icmp's to avoid a truncation. | Chris Lattner | 2009-01-09 | 1 | -0/+22 |
* | Remove some old code that looks like a remanant from signed-types days. | Chris Lattner | 2009-01-09 | 1 | -23/+0 |
* | Fix PR3298, a crash in Jump Threading. Apparently even | Chris Lattner | 2009-01-09 | 1 | -0/+4 |
* | Fix part 3/2 of PR3290, making instcombine zap (gep(bitcast)) when possible. | Chris Lattner | 2009-01-09 | 1 | -81/+116 |
* | move some code, check to see if the input to the GEP is a bitcast | Chris Lattner | 2009-01-09 | 1 | -23/+22 |
* | Add load-folding table entries for MOVDQA. | Dan Gohman | 2009-01-09 | 1 | -0/+6 |
* | Whitespace and other minor adjustments to make SSE instructions have | Dan Gohman | 2009-01-09 | 1 | -26/+32 |
* | Adjustments to last patch based on review. | Dale Johannesen | 2009-01-09 | 4 | -11/+24 |
* | 61949 accidentally introduced an escaped newline. Fix this by making | Dan Gohman | 2009-01-08 | 1 | -1/+1 |
* | Convert DwarfWriter into a pass. | Devang Patel | 2009-01-08 | 7 | -69/+75 |
* | Delete unnecessary parens around return values. | Dan Gohman | 2009-01-08 | 2 | -2/+2 |
* | Fix the comment for lltok::backslash. | Dan Gohman | 2009-01-08 | 1 | -1/+1 |
* | Fix the path to llvm/Assembly/Parser.h in a comment. | Dan Gohman | 2009-01-08 | 1 | -1/+1 |