| Commit message (Expand) | Author | Age | Files | Lines |
| * | remove the MMI pointer from MachineFrameInfo. | Chris Lattner | 2010-04-05 | 1 | -5/+5 |
| * | use DebugLoc default ctor instead of DebugLoc::getUnknownLoc() | Chris Lattner | 2010-04-02 | 1 | -2/+2 |
| * | Make isInt?? and isUint?? template specializations of the generic versions. This | Benjamin Kramer | 2010-03-29 | 1 | -14/+16 |
| * | get MMI out of the label uniquing business, just go to MCContext | Chris Lattner | 2010-03-14 | 1 | -2/+2 |
| * | Now that DBG_LABEL is updated, we can finally make MachineMove | Chris Lattner | 2010-03-14 | 1 | -15/+13 |
| * | change the DBG_LABEL MachineInstr to always be created | Chris Lattner | 2010-03-14 | 1 | -2/+4 |
| * | Change the Value argument to eliminateFrameIndex to a type-tagged value. This | Jim Grosbach | 2010-03-09 | 1 | -1/+1 |
| * | This should have gone in with 26015, see comments there. | Dale Johannesen | 2010-02-12 | 1 | -0/+12 |
| * | move target-independent opcodes out of TargetInstrInfo | Chris Lattner | 2010-02-09 | 1 | -2/+2 |
| * | Rename the PerformTailCallOpt variable to GuaranteedTailCallOpt to reflect | Dan Gohman | 2010-02-08 | 1 | -6/+6 |
| * | Do not store R31 into the caller's link area on PPC. | Dale Johannesen | 2009-11-24 | 1 | -2/+1 |
| * | Make capitalization of names starting "is" more consistent. | Dale Johannesen | 2009-11-24 | 1 | -29/+29 |
| * | Add a bool flag to StackObjects telling whether they reference spill | David Greene | 2009-11-12 | 1 | -4/+7 |
| * | Modify how the prologue encoded the "move" information for the FDE. GCC | Bill Wendling | 2009-11-10 | 1 | -31/+42 |
| * | Add register-reuse to frame-index register scavenging. When a target uses | Jim Grosbach | 2009-10-07 | 1 | -5/+8 |
| * | Simplify RegScavenger::FindUnusedReg. | Jakob Stoklund Olesen | 2009-08-18 | 1 | -1/+1 |
| * | Add support for the PowerPC 64-bit SVR4 ABI. | Tilmann Scheller | 2009-08-15 | 1 | -13/+108 |
| * | Give getPointerRegClass() a "kind" value so that targets can | Chris Lattner | 2009-07-29 | 1 | -3/+3 |
| * | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -2/+2 |
| * | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -1/+1 |
| * | Implement changes from Chris's feedback. | Torok Edwin | 2009-07-08 | 1 | -2/+3 |
| * | Various small changes related to the Condition Register on PowerPC. | Tilmann Scheller | 2009-07-03 | 1 | -2/+3 |
| * | Refactor ABI code in the PowerPC backend. | Tilmann Scheller | 2009-07-03 | 1 | -33/+31 |
| * | Implement the SVR4 ABI for PowerPC. | Tilmann Scheller | 2009-07-03 | 1 | -18/+205 |
| * | Add new function attribute - noredzone. | Devang Patel | 2009-06-04 | 1 | -0/+1 |
| * | Change MachineInstrBuilder::addReg() to take a flag instead of a list of | Bill Wendling | 2009-05-13 | 1 | -20/+20 |
| * | fix warning in -asserts build. | Chris Lattner | 2009-03-26 | 1 | -4/+2 |
| * | Fix a bunch of Doxygen syntax issues. Escape special characters, | Dan Gohman | 2009-03-03 | 1 | -2/+2 |
| * | Remove refs to non-DebugLoc version of BuildMI from PowerPC. | Dale Johannesen | 2009-02-13 | 1 | -80/+90 |
| * | Move getPointerRegClass from TargetInstrInfo to TargetRegisterInfo. | Evan Cheng | 2009-02-06 | 1 | -0/+9 |
| * | Respect the DisableRedZone flag on PowerPC. | Dan Gohman | 2009-01-27 | 1 | -1/+2 |
| * | Add a RM pseudoreg for the rounding mode, which | Dale Johannesen | 2008-10-29 | 1 | -1/+2 |
| * | Rewrite logic to figure out whether LR needs to | Dale Johannesen | 2008-10-24 | 1 | -23/+23 |
| * | Switch the MachineOperand accessors back to the short names like | Dan Gohman | 2008-10-03 | 1 | -4/+4 |
| * | Temporarily reverting r56683. This is causing a failure during the build of l... | Bill Wendling | 2008-09-26 | 1 | -1/+0 |
| * | Fix @llvm.frameaddress codegen. FP elimination optimization should be disable... | Evan Cheng | 2008-09-26 | 1 | -0/+1 |
| * | Remove isImm(), isReg(), and friends, in favor of | Dan Gohman | 2008-09-13 | 1 | -2/+2 |
| * | Trim unnecessary #includes. | Dan Gohman | 2008-07-11 | 1 | -1/+0 |
| * | Simplify this use of BuildMI. This is also in preparation for | Dan Gohman | 2008-07-07 | 1 | -3/+1 |
| * | Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminating | Dan Gohman | 2008-07-01 | 1 | -2/+2 |
| * | Tail call optimization improvements: | Arnold Schwaighofer | 2008-04-30 | 1 | -9/+173 |
| * | Reverse sense of unwind-tables option. This means | Dale Johannesen | 2008-04-14 | 1 | -1/+1 |
| * | Implement new llc flag -disable-required-unwind-tables. | Dale Johannesen | 2008-04-08 | 1 | -1/+2 |
| * | Cosmetic changes per EH patch review feedback. | Dale Johannesen | 2008-04-02 | 1 | -3/+3 |
| * | Recommitting EH patch; this should answer most of the | Dale Johannesen | 2008-04-02 | 1 | -2/+5 |
| * | Revert 49006 for the moment. | Dale Johannesen | 2008-04-01 | 1 | -5/+2 |
| * | Emit exception handling info for functions which are | Dale Johannesen | 2008-03-31 | 1 | -2/+5 |
| * | Move reMaterialize() from TargetRegisterInfo to TargetInstrInfo. | Evan Cheng | 2008-03-31 | 1 | -9/+0 |
| * | detabify llvm, patch by Mike Stump! | Chris Lattner | 2008-03-20 | 1 | -21/+21 |
| * | Disable prolog code that aligns the stack when a | Dale Johannesen | 2008-03-10 | 1 | -7/+17 |