| Commit message (Expand) | Author | Age | Files | Lines |
* | Add pseudo instructions to the XCore for (load|store|load address) of a | Richard Osborne | 2009-01-14 | 3 | -77/+66 |
* | fix crash in the case when some arg is null | Nuno Lopes | 2009-01-14 | 1 | -1/+1 |
* | minor simplification | Gabor Greif | 2009-01-14 | 1 | -2/+2 |
* | Fix the time regression I introduced in 464.h264ref with | Dale Johannesen | 2009-01-14 | 1 | -44/+187 |
* | Do not construct debug scope if RootScope *is* null. | Devang Patel | 2009-01-14 | 1 | -1/+1 |
* | rewrite OptimizeAwayTrappingUsesOfLoads to 1) avoid a temporary | Chris Lattner | 2009-01-14 | 1 | -24/+26 |
* | Removoe MachineModuleInfo methods (and related DebugInfoDesc class hierarchy... | Devang Patel | 2009-01-13 | 3 | -2453/+10 |
* | fix memleaks | Nuno Lopes | 2009-01-13 | 1 | -0/+2 |
* | BT appears to be available on all >= i386 chips. | Dan Gohman | 2009-01-13 | 1 | -1/+0 |
* | Don't use a BT instruction if the AND has multiple uses. | Dan Gohman | 2009-01-13 | 1 | -1/+3 |
* | Disable the register+memory forms of the bt instructions for now. Thanks | Dan Gohman | 2009-01-13 | 2 | -12/+20 |
* | Keep "has debug info" big in MachineModuleInfo to avoid circular dependency b... | Devang Patel | 2009-01-13 | 2 | -0/+2 |
* | Undo previous checkin. | Devang Patel | 2009-01-13 | 2 | -9/+2 |
* | Fix testsuite regressions from recursive inlining. | Dale Johannesen | 2009-01-13 | 1 | -3/+3 |
* | Use DwarfWriter to record dbg variables. | Devang Patel | 2009-01-13 | 2 | -4/+11 |
* | Use dwarf writer to decide whether the module has debug info or not. | Devang Patel | 2009-01-13 | 2 | -2/+9 |
* | Add bt instructions that take immediate operands. | Dan Gohman | 2009-01-13 | 2 | -2/+32 |
* | Fix a few more JIT encoding issues in the BT instructions. | Dan Gohman | 2009-01-13 | 1 | -2/+2 |
* | Use assertions to check for conditions that should never happen. | Dan Gohman | 2009-01-13 | 1 | -12/+6 |
* | The list-td and list-tdrr schedulers don't yet support physreg | Dan Gohman | 2009-01-13 | 2 | -2/+10 |
* | Make instcombine ensure that all allocas are explicitly aligned at at | Dan Gohman | 2009-01-13 | 1 | -6/+11 |
* | Checking in conditionals, function call, arrays and libcalls implementation. | Sanjiv Gupta | 2009-01-13 | 12 | -275/+1149 |
* | Avoid referring to edge D after the Succs or Preds arrays have | Dan Gohman | 2009-01-13 | 1 | -3/+3 |
* | When replacing uses and the same node is reached | Duncan Sands | 2009-01-13 | 1 | -16/+9 |
* | Fix some typos. Also, the WidenedVectors map | Duncan Sands | 2009-01-13 | 2 | -9/+20 |
* | Correct a comment - this is not a sign extension. | Duncan Sands | 2009-01-13 | 1 | -1/+1 |
* | Correct a comment. | Duncan Sands | 2009-01-13 | 1 | -1/+1 |
* | Wind SCEV back in time, to Nov 18th. This 'fixes' PR3275, PR3294, PR3295, | Nick Lewycky | 2009-01-13 | 2 | -211/+41 |
* | 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 |