aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/VirtRegMap.cpp
AgeCommit message (Expand)Author
2010-11-16Remember to resize SpillSlotToUsesMap when allocating an emergency spill slot.Jakob Stoklund Olesen
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-07-21Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson
2010-02-26Use the right floating point load/store instructions in PPCInstrInfo::foldMem...Jakob Stoklund Olesen
2010-02-10Fix "the the" and similar typos.Dan Gohman
2010-01-05Change errs() to dbgs().David Greene
2009-11-12Add a bool flag to StackObjects telling whether they reference spillDavid Greene
2009-11-03The Indexes Patch.Lang Hames
2009-10-17Distinquish stack slots from other stack objects. They (and fixed objects) ge...Evan Cheng
2009-08-23remove some uses of llvm/Support/Streams.hChris Lattner
2009-07-24Move more to raw_ostream, provide support for writing MachineBasicBlock,Daniel Dunbar
2009-06-15Part 1.Evan Cheng
2009-06-14Move register allocation preference (or hint) from LiveInterval to MachineReg...Evan Cheng
2009-05-04Restore minor deletion.Mike Stump
2009-05-03In some rare cases, the register allocator can spill registers but end up not...Evan Cheng
2009-03-31Oy! When reverting r68073, I added in experimental code. Sorry...Bill Wendling
2009-03-31Revert r68073. It's causing a failure in the Apple-style builds.Bill Wendling
2009-03-14Add newlines at end of file (this can annoy gcov)Daniel Dunbar
2009-03-13Convert VirtRegMap to a MachineFunctionPass.Owen Anderson
2009-03-11Reorganization: Move the Spiller out of VirtRegMap.cpp into its own files. N...Owen Anderson
2009-03-09Yet another case where the spiller marked two uses of the same register on th...Evan Cheng
2009-03-08If a MI uses the same register more than once, only mark one of them as 'kill'.Evan Cheng
2009-02-28Last commit accidentially deleted this code.Evan Cheng
2009-02-26The last commit was overly conservative. It's ok to reuse value that's alread...Evan Cheng
2009-02-26If an available register falls through to a succ block, unset the last kill. ...Evan Cheng
2009-02-17A couple of places where reused use operands should be marked kill. This is e...Evan Cheng
2009-02-13Revert this. It was breaking stuff.Bill Wendling
2009-02-13Turn off the old way of handling debug information in the code generator. UseBill Wendling
2009-02-12Adjust the sizes for a few SmallVectors to reflect their usage.Dan Gohman
2009-02-12It's (currently) not safe to keep certain physical registers live across basi...Evan Cheng
2009-02-12If availability info is kept when fallthrough into a bb, add the available re...Evan Cheng
2009-02-11Remove a bogus assertion. It's possible a live-in available value is used by ...Evan Cheng
2009-02-11Implement PR3495: local spiller optimization. The local spiller can now keep ...Evan Cheng
2009-02-03Explicitly pass in debug location information to BuildMI.Bill Wendling
2009-01-20Change TargetInstrInfo::isMoveInstr to return source and destination sub-regi...Evan Cheng
2008-12-02Fix PR3124: overly strict assert.Evan Cheng
2008-10-17Fix PR2898. Spiller delete a store for reuse before it knows for sure the reu...Evan Cheng
2008-10-17Fix a very subtle spiller bug: UpdateKills should not forget to track defs of...Evan Cheng
2008-10-14Fix command-line option printing to print two spaces where needed,Dan Gohman
2008-10-06Don't dereference the end() iterator. Thanks toDan Gohman
2008-10-03Switch the MachineOperand accessors back to the short names likeDan Gohman
2008-09-11Propagate subreg index when promoting a load to a copy.Evan Cheng
2008-09-10Fix PR2664 - spiller GetRegForReload wasn't respecting sub-register indices o...Evan Cheng
2008-09-04Fix an overly strict assertion. Source register of a copy may not be killed, ...Evan Cheng
2008-08-19Make SimpleSpiller respect subregister indices.Owen Anderson
2008-08-05Fix PR2596: out of bound reference.Evan Cheng
2008-07-18Fix a LocalSpiller leak. This fixes tramp3d-v4.Dan Gohman
2008-07-07Pool-allocation for MachineInstrs, MachineBasicBlocks, andDan Gohman
2008-06-18Cosmetic.Evan Cheng
2008-06-16Fix read after free found by valgrind.Evan Cheng