summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveVariables.cpp
Commit message (Expand)AuthorAge
* Eliminate MachineBasicBlock::const_livein_iterator and makeDan Gohman2010-04-13
* LiveVariables should clear kill / dead markers first. This allows us to remov...Evan Cheng2010-03-26
* Better handling of dead super registers in LiveVariables. We used to do this:Jakob Stoklund Olesen2010-03-05
* Keep track of phi join registers explicitly in LiveVariables.Jakob Stoklund Olesen2010-02-23
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-09
* Skip DEBUG_VALUE in some places where it was affecting codegen.Dale Johannesen2010-02-09
* Remove dead variable.Benjamin Kramer2010-01-07
* Change errs() to dbgs().David Greene2010-01-04
* Move PHIElimination::isLiveOut method to LiveVariables.Jakob Stoklund Olesen2009-12-01
* Fix PR5614: parts of a physical register def may be killed the rest.Evan Cheng2009-12-01
* Be more clever about calculating live variables through new basic blocks.Jakob Stoklund Olesen2009-11-21
* Fix PR5410: LiveVariables lost subreg def:Evan Cheng2009-11-13
* Fix liveness calculation when splitting critical edges during PHI elimination.Jakob Stoklund Olesen2009-11-11
* Teach PHIElimination to split critical edges when -split-phi-edges is enabled.Jakob Stoklund Olesen2009-11-10
* When LiveVariables is adding implicit-def to model "partial dead", add the ea...Evan Cheng2009-10-14
* Clean up LiveVariables and change how it deals with partial updates and kills...Evan Cheng2009-09-24
* Fix PR5024. LiveVariables physical register defs should *commit* only after allEvan Cheng2009-09-23
* Fix PR5024. LiveVariables::FindLastPartialDef should return a set of sub-regi...Evan Cheng2009-09-22
* remove the last uses of Config/alloca.hChris Lattner2009-08-23
* remove various std::ostream version of printing methods fromChris Lattner2009-08-23
* Reapply r77654 with a fix: MachineFunctionPass's getAnalysisUsageDan Gohman2009-07-31
* Revert r77654, it appears to be causing llvm-gcc bootstrap failures, and manyDaniel Dunbar2009-07-31
* Manage MachineFunctions with an analysis Pass instead of the AnnotableDan Gohman2009-07-31
* Avoid adding a duplicate def. This fixes PR4478.Evan Cheng2009-07-06
* Fix PR4419: handle defs of partial uses.Evan Cheng2009-06-20
* If there is a def of a super-register followed by a use of a sub-register, do...Evan Cheng2009-06-03
* LiveVariables::VarInfo contains an AliveBlocks BitVector, which has as manyJeffrey Yasskin2009-05-26
* Eliminate VarInfo::UsedBlocks.Evan Cheng2009-05-26
* Fix PR3243: a LiveVariables bug. When HandlePhysRegKill is checking whether t...Evan Cheng2009-01-20
* Silence unused variable warnings.Devang Patel2008-11-21
* Use find_first/find_next to iterate through all the set bits in aDan Gohman2008-11-13
* Switch the MachineOperand accessors back to the short names likeDan Gohman2008-10-03
* 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