| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Switch the MachineOperand accessors back to the short names like | Dan Gohman | 2008-10-03 | 1 | -7/+7 |
| | | | | | | | isReg, etc., from isRegister, etc. llvm-svn: 57006 | ||||
| * | Make TargetInstrInfo::copyRegToReg return a bool indicating whether the copy ↵ | Owen Anderson | 2008-08-26 | 1 | -5/+7 |
| | | | | | | | | | | requested was inserted or not. This allows bitcast in fast isel to properly handle the case where an appropriate reg-to-reg copy is not available. llvm-svn: 55375 | ||||
| * | Convert uses of std::vector in TargetInstrInfo to SmallVector. This change ↵ | Owen Anderson | 2008-08-14 | 1 | -5/+6 |
| | | | | | | | had to be propoagated down into all the targets and up into all clients of this API. llvm-svn: 54802 | ||||
| * | Pool-allocation for MachineInstrs, MachineBasicBlocks, and | Dan Gohman | 2008-07-07 | 1 | -4/+4 |
| | | | | | | | | | | | | MachineMemOperands. The pools are owned by MachineFunctions. This drastically reduces the number of calls to malloc/free made during the "Emit" phase of scheduling, as well as later phases in CodeGen. Combined with other changes, this speeds up the "instruction selection" phase of CodeGen by 10% in some cases. llvm-svn: 53212 | ||||
| * | - Remove calls to copyKillDeadInfo which is an N^2 function. Instead, ↵ | Evan Cheng | 2008-07-03 | 1 | -5/+7 |
| | | | | | | | | | propagate kill / dead markers as new instructions are constructed in foldMemoryOperand, convertToThressAddress, etc. - Also remove LiveVariables::instructionChanged, etc. Replace all calls with cheaper calls which update VarInfo kill list. llvm-svn: 53097 | ||||
| * | Fix "Control reaches the end of non-void function" warnings, | Chris Lattner | 2008-03-30 | 1 | -0/+1 |
| | | | | | | | patch by David Chisnall. llvm-svn: 48963 | ||||
| * | It's not always safe to fold movsd into xorpd, etc. Check the alignment of ↵ | Evan Cheng | 2008-02-08 | 1 | -3/+4 |
| | | | | | | | the load address first to make sure it's 16 byte aligned. llvm-svn: 46893 | ||||
| * | remove MachineOpCode typedef. | Chris Lattner | 2008-01-07 | 1 | -1/+1 |
| | | | | | llvm-svn: 45679 | ||||
| * | Move even more functionality from MRegisterInfo into TargetInstrInfo. | Owen Anderson | 2008-01-07 | 1 | -0/+37 |
| | | | | | | | Some day I'll get it all moved over... llvm-svn: 45672 | ||||
| * | Move some more instruction creation methods from RegisterInfo into InstrInfo. | Owen Anderson | 2008-01-01 | 1 | -0/+95 |
| | | | | | llvm-svn: 45484 | ||||
| * | Fix a problem where lib/Target/TargetInstrInfo.h would include and use | Chris Lattner | 2008-01-01 | 1 | -1/+1 |
| | | | | | | | | | | | a header file from libcodegen. This violates a layering order: codegen depends on target, not the other way around. The fix to this is to split TII into two classes, TII and TargetInstrInfoImpl, which defines stuff that depends on libcodegen. It is defined in libcodegen, where the base is not. llvm-svn: 45475 | ||||
| * | Move copyRegToReg from MRegisterInfo to TargetInstrInfo. This is part of the | Owen Anderson | 2007-12-31 | 1 | -0/+23 |
| | | | | | | | Machine-level API cleanup instigated by Chris. llvm-svn: 45470 | ||||
| * | Add new shorter predicates for testing machine operands for various types: | Chris Lattner | 2007-12-30 | 1 | -7/+7 |
| | | | | | | | | | | | | | e.g. MO.isMBB() instead of MO.isMachineBasicBlock(). I don't plan on switching everything over, so new clients should just start using the shorter names. Remove old long accessors, switching everything over to use the short accessor: getMachineBasicBlock() -> getMBB(), getConstantPoolIndex() -> getIndex(), setMachineBasicBlock -> setMBB(), etc. llvm-svn: 45464 | ||||
| * | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
| | | | | | llvm-svn: 45418 | ||||
| * | Add lengthof and endof templates that hide a lot of sizeof computations. | Owen Anderson | 2007-09-07 | 1 | -1/+2 |
| | | | | | | | Patch by Sterling Stein! llvm-svn: 41758 | ||||
| * | Handle blocks with 2 unconditional branches in AnalyzeBranch. | Dale Johannesen | 2007-06-13 | 1 | -0/+10 |
| | | | | | llvm-svn: 37571 | ||||
| * | Add a utility routine to check for unpredicated terminator instruction. | Evan Cheng | 2007-06-08 | 1 | -3/+3 |
| | | | | | llvm-svn: 37528 | ||||
| * | BlockHasNoFallThrough() now returns true if block ends with a return ↵ | Evan Cheng | 2007-05-21 | 1 | -0/+2 |
| | | | | | | | instruction. llvm-svn: 37266 | ||||
| * | RemoveBranch() and InsertBranch() now returns number of instructions deleted ↵ | Evan Cheng | 2007-05-18 | 1 | -7/+9 |
| | | | | | | | / inserted. llvm-svn: 37192 | ||||
| * | Relex assertions to account for additional implicit def / use operands. | Evan Cheng | 2007-04-25 | 1 | -1/+1 |
| | | | | | llvm-svn: 36430 | ||||
| * | What should be the last unnecessary <iostream>s in the library. | Bill Wendling | 2006-12-07 | 1 | -1/+0 |
| | | | | | llvm-svn: 32333 | ||||
| * | Change MachineInstr ctor's to take a TargetInstrDescriptor reference instead | Evan Cheng | 2006-11-27 | 1 | -7/+7 |
| | | | | | | | of opcode and number of operands. llvm-svn: 31947 | ||||
| * | Matches MachineInstr changes. | Evan Cheng | 2006-11-13 | 1 | -1/+2 |
| | | | | | llvm-svn: 31712 | ||||
| * | more shotenning | Andrew Lenharth | 2006-10-31 | 1 | -2/+2 |
| | | | | | llvm-svn: 31331 | ||||
| * | Add all that branch mangling niftiness | Andrew Lenharth | 2006-10-31 | 1 | -3/+163 |
| | | | | | llvm-svn: 31313 | ||||
| * | fix warning about missing newline at end of file | Rafael Espindola | 2006-10-24 | 1 | -1/+1 |
| | | | | | llvm-svn: 31162 | ||||
| * | implement uncond branch insertion so alpha works work branchfolding. | Chris Lattner | 2006-10-24 | 1 | -0/+7 |
| | | | | | llvm-svn: 31158 | ||||
| * | these are copies too | Andrew Lenharth | 2006-03-09 | 1 | -1/+5 |
| | | | | | llvm-svn: 26653 | ||||
| * | isStoreToStackSlot | Andrew Lenharth | 2006-02-03 | 1 | -0/+18 |
| | | | | | llvm-svn: 25925 | ||||
| * | Move isLoadFrom/StoreToStackSlot from MRegisterInfo to TargetInstrInfo,a far ↵ | Chris Lattner | 2006-02-02 | 1 | -0/+19 |
| | | | | | | | more logical place. Other methods should also be moved if anyoneis interested. :) llvm-svn: 25913 | ||||
| * | whatever. Intermediate patch to see what breaks. Seems ok. | Andrew Lenharth | 2005-11-09 | 1 | -1/+3 |
| | | | | | llvm-svn: 24260 | ||||
| * | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -2/+2 |
| | | | | | llvm-svn: 21424 | ||||
| * | Make the rest of file header comments consistent in format and style | Misha Brukman | 2005-02-05 | 1 | -1/+1 |
| | | | | | llvm-svn: 20048 | ||||
| * | initial fp support | Andrew Lenharth | 2005-01-26 | 1 | -1/+1 |
| | | | | | llvm-svn: 19847 | ||||
| * | Clean ups, and taught the instruction selector about immediate forms | Andrew Lenharth | 2005-01-24 | 1 | -2/+1 |
| | | | | | llvm-svn: 19816 | ||||
| * | Let me introduce you to the early stages of the llvm backend for the alpha ↵ | Andrew Lenharth | 2005-01-22 | 1 | -0/+43 |
| processor llvm-svn: 19764 | |||||

