Use the new script to sort the includes of every file under lib.
[oota-llvm.git] / lib / CodeGen / StackSlotColoring.cpp
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-09-21 Evan ChengFix a significant recent(?) regression. StackSlotColori...
2012-08-22 David BlaikieTidy up a few more uses of MF.getFunction()->getName().
2012-08-22 Craig TopperAdd a getName function to MachineFunction. Use it in...
2012-07-20 Benjamin KramerRemove unused private member variables uncovered by...
2012-02-21 Andrew TrickStackSlotColoring does not use a VirtRegMap
2012-02-08 Andrew TrickCodegen pass definition cleanup. No functionality.
2012-02-08 Andrew TrickMove pass configuration out of pass constructors: Stack...
2012-02-08 Andrew Trickwhitespace
2011-12-18 Joerg SonnenbergerAllow inlining of functions with returns_twice calls...
2011-11-13 Jakob Stoklund OlesenStop tracking unused registers in VirtRegMap.
2011-11-13 Jakob Stoklund OlesenRemove the -color-ss-with-regs option.
2011-06-28 Evan Cheng- Rename TargetInstrDesc, TargetOperandInfo to MCInstrD...
2011-06-27 Evan ChengMore refactoring. Move getRegClass from TargetOperandIn...
2011-01-09 Jakob Stoklund OlesenTeach TargetRegisterInfo how to cram stack slot indexes...
2010-12-23 Jeffrey YasskinChange all self assignments X=X to (void)X, so that...
2010-10-19 Owen AndersonGet rid of static constructors for pass registration...
2010-10-12 Owen AndersonBegin adding static dependence information to passes...
2010-10-07 Owen AndersonNow with fewer extraneous semicolons!
2010-08-28 Chris Lattnerremove dead proto
2010-08-06 Owen AndersonReapply r110396, with fixes to appease the Linux buildb...
2010-08-06 Owen AndersonRevert r110396 to fix buildbots.
2010-08-05 Owen AndersonDon't use PassInfo* as a type identifier for passes...
2010-07-21 Owen AndersonFix batch of converting RegisterPass<> to INTIALIZE_PASS().
2010-07-10 Jakob Stoklund OlesenReplace copyRegToReg with COPY everywhere in lib/CodeGe...
2010-07-08 Jakob Stoklund OlesenConvert EXTRACT_SUBREG to COPY when emitting machine...
2010-07-08 Jakob Stoklund OlesenRemove references to INSERT_SUBREG after de-SSA.
2010-07-07 Jakob Stoklund OlesenRevert "Remove references to INSERT_SUBREG after de...
2010-07-06 Jakob Stoklund OlesenRemove references to INSERT_SUBREG after de-SSA
2010-05-26 Bill WendlingMove the check for "calls setjmp" to SelectionDAGISel...
2010-05-26 Eric ChristopherTemporarily revert r104655 as it's breaking the bots.
2010-05-26 Bill WendlingDale and Evan suggested putting the "check for setjmp...
2010-05-25 Bill WendlingConstify function.
2010-05-25 Bill WendlingOkay, bear with me here...
2010-05-24 Bill WendlingPrint out the name of the function during SSC.
2010-05-06 Dan GohmanAdd a DebugLoc argument to TargetInstrInfo::copyRegToRe...
2010-05-01 Dale JohannesenFix a bug where debug info affected stack slot coloring.
2010-02-09 Chris Lattnermove target-independent opcodes out of TargetInstrInfo
2010-01-05 David GreeneChange errs() to dbgs().
2009-12-03 Chris Lattnerimprove portability to avoid conflicting with std:...
2009-11-03 Lang HamesThe Indexes Patch.
2009-10-25 Nick LewyckyRemove includes of Support/Compiler.h that are no longe...
2009-10-25 Nick LewyckyRemove VISIBILITY_HIDDEN from class/struct found inside...
2009-10-18 Evan Cheng-Revert parts of 84326 and 84411. Distinquishing betwee...
2009-10-18 Evan ChengOnly fixed stack objects and spill slots should be...
2009-10-17 Evan ChengRevert 84315 for now. Re-thinking the patch.
2009-10-17 Evan ChengRename getFixedStack to getStackObject. The stack objec...
2009-09-25 Dan GohmanImprove MachineMemOperand handling.
2009-09-21 Dan GohmanChange MachineMemOperand's alignment value to be the...
2009-09-06 Duncan SandsRemove some not-really-used variables, as warned
2009-08-23 Chris Lattnerremove a few DOUTs here and there.
2009-07-31 Dan GohmanUse setPreservesAll and setPreservesCFG in CodeGen...
2009-07-29 Chris Lattnerinline the global 'getInstrOperandRegClass' function...
2009-07-17 Evan ChengFix pr4552. Stack slot coloring with register must...
2009-05-12 Evan ChengFixed a stack slot coloring with reg bug: do not update...
2009-05-11 Evan ChengEliminate a compiler warning.
2009-05-07 Bill WendlingJust turn aggressive stack coloring off at -O3.
2009-05-07 Bill WendlingTemporarily revert r71010. It was causing massive failu...
2009-05-05 Evan ChengEnable stack coloring with regs at -O3.
2009-05-05 Evan ChengDo not substitute if the new register isn't in the...
2009-05-04 Evan ChengDo forward and backward substitution to eliminate loads...
2009-05-04 Mike StumpRestore minor deletion.
2009-05-03 Evan ChengTypo.
2009-05-03 Evan ChengIn some rare cases, the register allocator can spill...
2009-02-26 Owen AndersonEnable stack slot coloring DCE. Evan's spiller fixes...
2009-02-24 Owen AndersonAdd a debugging option for SSC DCE.
2009-02-20 Owen AndersonAdd a quick pass to the stack slot colorer to eliminate...
2008-12-05 Dan GohmanTeach StackSlotColoring to update MachineMemOperands...
2008-10-15 Dan GohmanAdjust whitespace in debug messages to be more consistent
2008-10-03 Dan GohmanSwitch the MachineOperand accessors back to the short...
2008-09-22 Evan ChengInstead of setPreservesAll, just mark them preseving...
2008-09-22 Evan ChengMark several codegen passes as preserving all analysis.
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-07-10 Dan GohmanMake stack slot coloring's debug output more consistent...
2008-06-23 Evan ChengRemove option used to debug stack coloring bugs. It...
2008-06-23 Evan ChengInstead of adding an isSS field to LiveInterval to...
2008-06-04 Evan ChengAdd a stack slot coloring pass. Not yet enabled.