index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
TargetInstrInfoImpl.cpp
Age
Commit message (
Expand
)
Author
2010-03-03
- Change MachineInstr::isIdenticalTo to take a new option that determines whe...
Evan Cheng
2010-01-06
Add Target hook to duplicate machine instructions.
Jakob Stoklund Olesen
2009-12-03
improve portability to avoid conflicting with std::next in c++'0x.
Chris Lattner
2009-11-16
Check if subreg index is zero.
Evan Cheng
2009-11-14
- Change TargetInstrInfo::reMaterialize to pass in TargetRegisterInfo.
Evan Cheng
2009-11-07
- Add TargetInstrInfo::isIdentical(). It's similar to MachineInstr::isIdentical
Evan Cheng
2009-10-18
-Revert parts of 84326 and 84411. Distinquishing between fixed and non-fixed
Evan Cheng
2009-10-18
Only fixed stack objects and spill slots should be get FixedStack PseudoSourc...
Evan Cheng
2009-10-17
Revert 84315 for now. Re-thinking the patch.
Evan Cheng
2009-10-17
Rename getFixedStack to getStackObject. The stack objects represented are not
Evan Cheng
2009-10-12
Revert the kludge in 76703. I got a clean
Dale Johannesen
2009-10-09
Factor out LiveIntervalAnalysis' code to determine whether an instruction
Dan Gohman
2009-09-25
Improve MachineMemOperand handling.
Dan Gohman
2009-09-21
Change MachineMemOperand's alignment value to be the alignment of
Dan Gohman
2009-07-22
Let each target determines whether a machine instruction is dead. If true, th...
Evan Cheng
2009-07-16
Let callers decide the sub-register index on the def operand of rematerialize...
Evan Cheng
2009-07-10
Use findCommutedOpIndices to find the operands to commute.
Evan Cheng
2009-07-10
Remove TargetInstrInfo::CommuteChangesDestination and added findCommutedOpInd...
Evan Cheng
2009-07-01
CommuteChangesDestination() should check if to-be-commuted instruction define...
Evan Cheng
2009-05-13
Change MachineInstrBuilder::addReg() to take a flag instead of a list of
Bill Wendling
2009-02-03
Explicitly pass in debug location information to BuildMI.
Bill Wendling
2008-12-03
Split foldMemoryOperand into public non-virtual and protected virtual
Dan Gohman
2008-10-03
Switch the MachineOperand accessors back to the short names like
Dan Gohman
2008-09-13
Remove isImm(), isReg(), and friends, in favor of
Dan Gohman
2008-09-11
Fix a 80 column violation.
Evan Cheng
2008-08-14
Convert uses of std::vector in TargetInstrInfo to SmallVector. This change h...
Owen Anderson
2008-07-07
Pool-allocation for MachineInstrs, MachineBasicBlocks, and
Dan Gohman
2008-06-16
Add option to commuteInstruction() which forces it to create a new (commuted)...
Evan Cheng
2008-04-16
Infrastructure for getting the machine code size of a function and an instruc...
Nicolas Geoffray
2008-03-31
Move reMaterialize() from TargetRegisterInfo to TargetInstrInfo.
Evan Cheng
2008-02-15
Added CommuteChangesDestination(). This returns true if commuting the specified
Evan Cheng
2008-02-13
Simplify.
Evan Cheng
2008-02-13
commuteInstr() can now commute non-ssa machine instrs.
Evan Cheng
2008-01-07
rename TargetInstrDescriptor -> TargetInstrDesc.
Chris Lattner
2008-01-07
Add predicates methods to TargetOperandInfo, and switch all clients
Chris Lattner
2008-01-07
Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects
Chris Lattner
2008-01-01
Fix a problem where lib/Target/TargetInstrInfo.h would include and use
Chris Lattner