aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/TargetInstrInfo.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix Target->Codegen dependence.Andrew Trick2012-06-081-195/+5
* Continue factoring computeOperandLatency. Use it for ARM hasHighOperandLatency.Andrew Trick2012-06-071-23/+65
* misched: API for minimum vs. expected latency.Andrew Trick2012-06-051-9/+112
* Add an MF argument to TRI::getPointerRegClass() and TII::getRegClass().Jakob Stoklund Olesen2012-05-071-2/+3
* Move parts of lib/Target that use CodeGen into lib/CodeGen.Nick Lewycky2011-12-151-29/+0
* Move isUnpredicatedTerminator() default implementation to TargetInstrInfoImpl...Evan Cheng2011-12-091-12/+0
* Add bundle aware API for querying instruction properties and switch the codeEvan Cheng2011-12-071-4/+3
* Hide the call to InitMCInstrInfo into tblgen generated ctor.Evan Cheng2011-07-011-7/+0
* Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries)...Evan Cheng2011-06-291-1/+1
* Move CallFrameSetupOpcode and CallFrameDestroyOpcode to TargetInstrInfo.Evan Cheng2011-06-281-1/+4
* - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng2011-06-281-11/+10
* More refactoring. Move getRegClass from TargetOperandInfo to TargetInstrInfo.Evan Cheng2011-06-271-18/+18
* Clean up assembly statement separator support.Jim Grosbach2011-03-241-3/+4
* whitespaceAndrew Trick2010-12-241-5/+5
* Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky2010-12-191-0/+1
* Add missing std:: prefixes to some calls. C++ doesn't require that <cfoo>Nick Lewycky2010-12-191-1/+1
* Two sets of changes. Sorry they are intermingled.Evan Cheng2010-11-031-2/+22
* Use instruction itinerary to determine what instructions are 'cheap'.Evan Cheng2010-10-261-0/+10
* - Add TargetInstrInfo::getOperandLatency() to compute operand latencies. ThisEvan Cheng2010-10-061-1/+32
* Spelling fix.Bob Wilson2010-09-151-1/+1
* Teach if-converter to be more careful with predicating instructions that wouldEvan Cheng2010-09-101-3/+3
* For each instruction itinerary class, specify the number of micro-ops eachEvan Cheng2010-09-091-0/+17
* Start TargetRegisterClass indices at 0 instead of 1, so thatDan Gohman2010-06-181-0/+4
* rename TAI -> MAI, being careful not to make MAILJMP instructions :)Chris Lattner2009-08-221-5/+5
* Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.Chris Lattner2009-08-221-2/+2
* Move the getInlineAsmLength virtual method from TAI to TII, whereChris Lattner2009-08-021-9/+48
* move a virtual method body to its .cpp file to avoid a #include Chris Lattner2009-08-021-2/+9
* inline the global 'getInstrOperandRegClass' function into its callersChris Lattner2009-07-291-10/+0
* 1. Introduce a new TargetOperandInfo::getRegClass() helper methodChris Lattner2009-07-291-4/+13
* Move getInstrOperandRegClass from the scheduler to TargetInstrInfo.Evan Cheng2009-05-051-0/+13
* Fix pr3954. The register scavenger asserts for inline assembly withBob Wilson2009-04-091-13/+0
* rename TargetInstrDescriptor -> TargetInstrDesc.Chris Lattner2008-01-071-7/+7
* Move a bunch more accessors from TargetInstrInfo to TargetInstrDescriptorChris Lattner2008-01-071-1/+1
* Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflectsChris Lattner2008-01-071-10/+9
* Fix a problem where lib/Target/TargetInstrInfo.h would include and useChris Lattner2008-01-011-42/+0
* Add new shorter predicates for testing machine operands for various types: Chris Lattner2007-12-301-4/+4
* More cleanups for MachineOperand:Chris Lattner2007-12-301-8/+2
* Use MachineOperand::getImm instead of MachineOperand::getImmedValue. Likewis...Chris Lattner2007-12-301-1/+1
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Remove isReg, isImm, and isMBB, and change all their users to use Dan Gohman2007-09-141-3/+3
* isUnpredicatedTerminator should treat conditional branches as unpredicated te...Evan Cheng2007-07-061-1/+4
* Do not check isPredicated() on non-predicable instructions.Evan Cheng2007-07-051-1/+4
* Add a utility routine to check for unpredicated terminator instruction.Evan Cheng2007-06-081-0/+7
* Add missing const qualifiers.Evan Cheng2007-05-291-1/+1
* Rename a parameter.Evan Cheng2007-05-231-4/+4
* Remove. Not needed.Evan Cheng2007-05-171-4/+0
* Default implementation of TargetInstrInfo::getBlockSize().Evan Cheng2007-05-161-0/+4
* PredicateInstruction returns true if the operation was successful.Evan Cheng2007-05-161-14/+19
* Add default implementation of PredicateInstruction().Evan Cheng2007-05-161-0/+20
* Move findTiedToSrcOperand to TargetInstrDescriptor.Evan Cheng2006-12-081-12/+11