summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveVariables.cpp
Commit message (Expand)AuthorAge
* Factor out code into HandleVirtRegDef, for consistency withDan Gohman2008-09-21
* Use SmallSet instead of std::set to save allocations.Owen Anderson2008-08-14
* - Fix SelectionDAG to generate correct CFGs.Owen Anderson2008-08-04
* - Remove calls to copyKillDeadInfo which is an N^2 function. Instead, propaga...Evan Cheng2008-07-03
* Use std::replace instead of std::find and push_back.Evan Cheng2008-07-03
* - Add LiveVariables::replaceKillInstruction. This does a subset of instructio...Evan Cheng2008-07-03
* Use a SmallSet when we can to reduce memory allocations.Owen Anderson2008-06-27
* Fix the text in an assert string.Dan Gohman2008-06-25
* This situation can occur:Bill Wendling2008-06-23
* Rewrite LiveVariable liveness computation. The new implementation is much sim...Evan Cheng2008-04-16
* Now that I am told MachineRegisterInfo also tracks physical register uses / d...Evan Cheng2008-04-02
* Fix live variables issues:Evan Cheng2008-03-19
* Refactor code. Remove duplicated functions that basically do the same thing asEvan Cheng2008-03-05
* Clear PhysRegPartUse for the sub register as well.Bill Wendling2008-02-21
* Remove one of the fixmes that I put in there. From Evan:Bill Wendling2008-02-20
* Improve some comments explaining the "handle kills" stuff better.Bill Wendling2008-02-20
* Fix comment.Bill Wendling2008-02-20
* Added some comments and reformatted others. No functionality change.Bill Wendling2008-02-20
* More constification of things. More comments added. No functionalityBill Wendling2008-02-20
* No functionality change:Bill Wendling2008-02-20
* Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman2008-02-10
* If a vr is already marked alive in a bb, then it has PHI uses that are visite...Evan Cheng2008-02-05
* Move some functionality for adding flags to MachineInstr's into methods on Ma...Owen Anderson2008-01-24
* Move some calls to getVRegDef higher in the callgraph, so they don't get exec...Owen Anderson2008-01-15
* Remove DefInst from LiveVariables::VarInfo. Use the facilities on MachineReg...Owen Anderson2008-01-15
* rename TargetInstrDescriptor -> TargetInstrDesc.Chris Lattner2008-01-07
* Move a bunch more accessors from TargetInstrInfo to TargetInstrDescriptorChris Lattner2008-01-07
* Rename SSARegMap -> MachineRegisterInfo in keeping with the idea Chris Lattner2007-12-31
* Add new shorter predicates for testing machine operands for various types: Chris Lattner2007-12-30
* More cleanups for MachineOperand:Chris Lattner2007-12-30
* Start using the simplified methods for adding operands.Chris Lattner2007-12-30
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Live interval splitting:Evan Cheng2007-11-17
* Bring UsedBlocks back. StrongPHIElimination needs this information.Owen Anderson2007-11-08
* Handle cases where a register and one of its super-register are both marked asEvan Cheng2007-11-05
* Remove isReg, isImm, and isMBB, and change all their users to use Dan Gohman2007-09-14
* Fixed a typo that's causing a missing kill marker.Evan Cheng2007-09-12
* Sometimes a MI can define a register as well as defining a super-register at theEvan Cheng2007-09-11
* Bugs: missing partial uses and redundant partial defs.Evan Cheng2007-08-01
* Don't assume that only Uses can be kills. Defs are marked as kills initiallyDan Gohman2007-07-20
* Dead code.Evan Cheng2007-07-17
* Replace std::set with SmallPtrSet.Evan Cheng2007-06-27
* Properly handle kills of a physical register which has sub-registers that are...Evan Cheng2007-06-26
* When marking a register as being implicitly defined, make sure to clear its p...Evan Cheng2007-05-14
* Eliminate MarkVirtRegAliveInBlock recursion.Evan Cheng2007-05-08
* Drop 'const'Devang Patel2007-05-03
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-02
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-01
* Rename findRegisterUseOperand to findRegisterUseOperandIdx to avoid confusion.Evan Cheng2007-04-26
* Minor bug.Evan Cheng2007-04-26