Rename SDOperand to SDValue.
[oota-llvm.git] / lib / Target / X86 / X86InstrInfo.cpp
2008-07-27 Dan GohmanRename SDOperand to SDValue.
2008-07-21 Evan ChengUse movaps instead of movups to spill 16-byte vector...
2008-07-19 Anton KorobeynikovUse aligned stack spills, where possible. This fixes...
2008-07-17 Dan GohmanAdd a new function, ReplaceAllUsesOfValuesWith, which...
2008-07-12 Dan GohmanAdd a utility function to MachineInstr for testing...
2008-07-07 Dan GohmanPool-allocation for MachineInstrs, MachineBasicBlocks...
2008-07-07 Dan GohmanMake DenseMap's insert return a pair, to more closely...
2008-07-03 Evan Cheng- Remove calls to copyKillDeadInfo which is an N^2...
2008-07-03 Evan ChengcommuteInstruction should preserve dead markers.
2008-07-02 Owen AndersonMake LiveVariables even more optional, by making it...
2008-07-01 Dan GohmanSplit ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL...
2008-06-24 Evan ChengIf it's determined safe, remat MOV32r0 (i.e. xor r...
2008-06-16 Evan ChengAdd option to commuteInstruction() which forces it...
2008-06-06 Duncan SandsWrap MVT::ValueType in a struct to get type safety
2008-05-23 Dan GohmanUse PMULDQ for v2i64 multiplies when SSE4.1 is availabl...
2008-05-14 Dan GohmanChange target-specific classes to use more precise...
2008-05-12 Bill WendlingConstify the machine instruction passed into the
2008-05-02 Evan ChengUndo r50574. We are already ensuring the folded load...
2008-05-02 Evan ChengNot safe folding a load + FsXORPSrr into FsXORPSrm...
2008-04-20 Nicolas GeoffrayDon't forget to update the current operand when getting...
2008-04-16 Evan ChengDon't forget about sub-register indices when rematting...
2008-04-16 Nicolas GeoffrayInfrastructure for getting the machine code size of...
2008-04-07 Dan GohmanRename MemOperand to MachineMemOperand. This was sugges...
2008-04-01 Evan ChengReMat of load from stub in pic mode extends the life...
2008-04-01 Evan ChengRemove unnecessary and non-deterministic checking code...
2008-04-01 Evan ChengDisabling remat of load from gv stub (temporarily)...
2008-03-31 Evan ChengIt's not safe to fold a load from GV stub or constantpo...
2008-03-31 Evan ChengMove reMaterialize() from TargetRegisterInfo to TargetI...
2008-03-31 Evan ChengRe-apply 48911.
2008-03-28 Evan ChengBacking out 48911 for now. It's breaking stuff.
2008-03-28 Evan ChengLoad from stub is already re-materializable.
2008-03-27 Evan ChengCode clean up.
2008-03-27 Evan ChengAllow certain lea instructions to be rematerialized.
2008-03-27 Evan ChengRemove an unused command line option.
2008-03-25 Dan GohmanAdd CMP32mr and friends to the load-unfolding table...
2008-03-21 Chris LattnerAdd support for calls that return two FP values in
2008-03-16 Christopher LambMake insert_subreg a two-address instruction, vastly...
2008-03-13 Christopher LambGet rid of a pseudo instruction and replace it with...
2008-03-11 Chris Lattnercoalesce away 80-bit floating point copies.
2008-03-11 Chris Lattnerconvert a massive if statement to a switch.
2008-03-11 Christopher LambMissed part of recommit.
2008-03-10 Chris Lattnerabort with an assert instead of a cerr to get line#
2008-03-10 Evan ChengRevert 48125, 48126, and 48130 for now to unbreak some...
2008-03-10 Christopher LambAllow insert_subreg into implicit, target-specific...
2008-03-09 Chris Lattnerteach X86InstrInfo::copyRegToReg how to copy into ST...
2008-03-09 Chris Lattneradd some code to support cross-register class copying...
2008-03-09 Chris Lattnerrearrange some code, no functionality change.
2008-02-23 Evan ChengTurning on remat of pic loads.
2008-02-23 Evan ChengNo need recognize load from a fixed argument slot as...
2008-02-22 Evan ChengAllow re-materialization of pic load (controlled by...
2008-02-13 Evan ChengcommuteInstr() can now commute non-ssa machine instrs.
2008-02-08 Evan ChengIt's not always safe to fold movsd into xorpd, etc...
2008-02-08 Evan ChengAdded missing entries in X86 load / store folding tables.
2008-02-07 Evan ChengIn some cases, e.g. ADD32ri, no transformation is made...
2008-01-12 Chris Lattnerfix a wordo that gordon noticed :)
2008-01-12 Chris LattnerAny x86 instruction that reads from an invariant locati...
2008-01-11 Chris Lattnerrename MachineInstr::setInstrDescriptor -> setDesc
2008-01-11 Chris Lattnerremove xchg and shift-reg-by-1 instructions, which...
2008-01-10 Chris LattnerSimplify the side effect stuff a bit more and make...
2008-01-10 Chris Lattnerverify that the frame index is immutable before remat...
2008-01-09 Chris Lattneradd a testcase
2008-01-07 Bill WendlingOperand 1 should be a register. We don't care if it...
2008-01-07 Chris Lattnerrename TargetInstrDescriptor -> TargetInstrDesc.
2008-01-07 Chris LattnerMove a bunch more accessors from TargetInstrInfo to...
2008-01-07 Chris Lattnerremove MachineOpCode typedef.
2008-01-07 Chris LattnerAdd predicates methods to TargetOperandInfo, and switch...
2008-01-07 Chris LattnerRename MachineInstr::getInstrDescriptor -> getDesc...
2008-01-07 Owen AndersonMove even more functionality from MRegisterInfo into...
2008-01-05 Bill WendlingFix comment.
2008-01-05 Bill WendlingChris and Evan noticed that this check was compleatly...
2008-01-05 Chris Lattnerenable sinking and licm of loads from the argument...
2008-01-05 Chris Lattnersimplify some code by using shorter accessors.
2008-01-05 Chris Lattnerrevert my previous patch.
2008-01-05 Chris Lattnerfactor some code better to avoid redundancy between
2008-01-04 Owen AndersonMove some more functionality from MRegisterInfo to...
2008-01-02 Bill WendlingMachine LICM will check that operands are defined outsi...
2008-01-01 Owen AndersonMove some more instruction creation methods from Regist...
2008-01-01 Chris LattnerFix a bug in my previous patch: refer to the impl not...
2008-01-01 Chris LattnerFix a problem where lib/Target/TargetInstrInfo.h would...
2007-12-31 Owen AndersonMove copyRegToReg from MRegisterInfo to TargetInstrInfo...
2007-12-31 Chris LattnerRename SSARegMap -> MachineRegisterInfo in keeping...
2007-12-30 Chris LattnerAdd new shorter predicates for testing machine operands...
2007-12-30 Chris LattnerUse MachineOperand::getImm instead of MachineOperand...
2007-12-30 Bill WendlingIf we have a load of a global address that's not modifi...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-17 Bill WendlingAdd "mayHaveSideEffects" and "neverHasSideEffects"...
2007-12-08 Bill WendlingReverting 44702. It wasn't correct to rename them.
2007-12-08 Bill WendlingRenaming:
2007-10-11 Arnold SchwaighoferAdded tail call optimization to the x86 back end. It...
2007-10-09 Evan ChengUnder 64-bit mode use LEA64_32r instead of LEA64r to...
2007-10-08 Evan ChengAllow x86 compare to be commutable by default.
2007-10-05 Evan ChengCommute x86 cmove instructions by swapping the operands...
2007-10-05 Evan ChengEnable convertToThreeAddress for X86 by default.
2007-10-05 Evan ChengINC64_32r -> LEA64_32r is better than INC64_32r ->...
2007-10-05 Evan ChengIn 64-bit mode, avoid using leal with 32-bit 32-bit...
2007-10-05 Evan ChengAdd support to convert more 64-bit instructions to...
2007-10-05 Evan ChengTesting convertToThreeeAddress as X86 llcbeta.
2007-09-29 Evan ChengEnabling new condition code modeling scheme.
2007-09-25 Evan ChengAdded support for new condition code modeling scheme...
2007-09-17 Dan GohmanAdd 64-bit jmp instructions to the list of instructions...
next