index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
CalcSpillWeights.cpp
Age
Commit message (
Expand
)
Author
2012-10-15
Remove LIS::isAllocatable() and isReserved() helpers.
Jakob Stoklund Olesen
2012-08-22
Tidy up a few more uses of MF.getFunction()->getName().
David Blaikie
2012-08-22
Add a getName function to MachineFunction. Use it in places that previously d...
Craig Topper
2012-06-20
Avoid iterating with LiveIntervals::iterator.
Jakob Stoklund Olesen
2012-06-05
Stop using LiveIntervals::isReMaterializable().
Jakob Stoklund Olesen
2011-08-09
Move CalculateRegClass to MRI::recomputeRegClass.
Jakob Stoklund Olesen
2011-07-01
Don't inflate register classes used by inline asm.
Jakob Stoklund Olesen
2011-06-27
More refactoring. Move getRegClass from TargetOperandInfo to TargetInstrInfo.
Evan Cheng
2011-05-16
Teach LiveInterval::isZeroLength about null SlotIndexes.
Jakob Stoklund Olesen
2011-04-26
Use the new TRI->getLargestLegalSuperClass hook to constrain register class i...
Jakob Stoklund Olesen
2011-03-29
Recompute register class and hint for registers created during spilling.
Jakob Stoklund Olesen
2011-03-10
Make SpillIs an optional pointer. Avoid creating a bunch of temporary SmallVe...
Jakob Stoklund Olesen
2011-02-14
Move more fragments of spill weight calculation into CalcSpillWeights.h
Jakob Stoklund Olesen
2011-01-09
Replace TargetRegisterInfo::printReg with a PrintReg class that also works wi...
Jakob Stoklund Olesen
2010-10-12
Begin adding static dependence information to passes, which will allow us to
Owen Anderson
2010-10-07
Now with fewer extraneous semicolons!
Owen Anderson
2010-08-12
Clean up debug output.
Jakob Stoklund Olesen
2010-08-10
Give up on register class recalculation when the register is used with subreg
Jakob Stoklund Olesen
2010-08-10
Implement register class inflation.
Jakob Stoklund Olesen
2010-08-10
Transpose the calculation of spill weights such that we are calculating one
Jakob Stoklund Olesen
2010-07-21
Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
Owen Anderson
2010-07-16
Remove remaining calls to TII::isMoveInstr.
Jakob Stoklund Olesen
2010-07-03
Fix typo.
Eric Christopher
2010-02-18
Always normalize spill weights, also for intervals created by spilling.
Jakob Stoklund Olesen
2010-02-10
Remove duplicated #include.
Evan Cheng
2010-02-10
Emit an error for illegal inline asm constraint (which uses illegal type) rat...
Evan Cheng
2010-02-10
fix missing #includes.
Chris Lattner
2010-02-09
move target-independent opcodes out of TargetInstrInfo
Chris Lattner
2010-02-09
Skip DEBUG_VALUE in some places where it was affecting codegen.
Dale Johannesen
2009-12-24
Change errs() to dbgs().
David Greene
2009-12-22
Changed slot index ranges for MachineBasicBlocks to be exclusive of endpoint.
Lang Hames
2009-12-14
Moved spill weight calculation out of SimpleRegisterCoalescing and into its o...
Lang Hames