summaryrefslogtreecommitdiff
path: root/lib/CodeGen/StrongPHIElimination.cpp
Commit message (Expand)AuthorAge
* Use an existing method.Cameron Zwarich2011-10-13
* To find the exiting VN of a LiveInterval from a block, use the previous slotCameron Zwarich2011-10-12
* Trim an unneeded header.Jakob Stoklund Olesen2011-08-09
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-15
* Add some statistics to StrongPHIElimination.Cameron Zwarich2011-02-14
* Eliminate some extra hash table lookups.Cameron Zwarich2011-01-09
* Add an informative comment.Cameron Zwarich2011-01-09
* Fix coding style.Cameron Zwarich2011-01-08
* Switch to path halving from path compression for a small speedup. This alsoCameron Zwarich2011-01-04
* Eliminate repeated allocation of a per-BB DenseMap for a 4.6% reduction of timeCameron Zwarich2011-01-04
* Use getVRegDef() instead of def_iterator. This leads to fewer defs being addedCameron Zwarich2010-12-30
* Instead of processing every instruction when splitting interferences, onlyCameron Zwarich2010-12-29
* Add text explaining an assertion.Cameron Zwarich2010-12-29
* Revert the optimization in r122596. It is correct for all current targets, butCameron Zwarich2010-12-28
* Avoid iterating every operand of an instruction in StrongPHIElimination, sinceCameron Zwarich2010-12-28
* Change an assertion to assert what the code actually relies upon.Cameron Zwarich2010-12-27
* Land a first cut at StrongPHIElimination. There are only 5 new test failuresCameron Zwarich2010-12-27
* Simplify a check for implicit defs and remove a FIXME.Cameron Zwarich2010-12-24
* Incremental progress towards a new implementation of StrongPHIElimination. MostCameron Zwarich2010-12-21
* Some cleanup before I start committing some incremental progress onCameron Zwarich2010-12-05
* Delete the StrongPHIElimination pass, leaving only a shell.Jakob Stoklund Olesen2010-12-03
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-12
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson2010-08-23
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Replace copyRegToReg with COPY everywhere in lib/CodeGen except for FastISel.Jakob Stoklund Olesen2010-07-10
* Don't track kills in VNInfo. Use interval ends instead.Jakob Stoklund Olesen2010-06-25
* Add a DebugLoc argument to TargetInstrInfo::copyRegToReg, so that itDan Gohman2010-05-06
* Fix "the the" and similar typos.Dan Gohman2010-02-10
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-09
* Change errs() to dbgs().David Greene2010-01-05
* Revert accidental commit.Bill Wendling2009-12-17
* Turn off critical edge splitting for landing pads. The introduction of aBill Wendling2009-12-17
* The Indexes Patch.Lang Hames2009-11-03
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* Oops. Renamed remaining MachineInstrIndex references.Lang Hames2009-10-03
* Renamed MachineInstrIndex to LiveIndex.Lang Hames2009-10-03
* Removed static qualifier from a few index related methods. These methods may ...Lang Hames2009-09-09
* Replaces uses of unsigned for indexes in LiveInterval and VNInfo withLang Hames2009-09-04
* remove a few DOUTs here and there.Chris Lattner2009-08-23
* Modified VNInfo. The "copy" member is now a union which holds the copy for a ...Lang Hames2009-08-10
* Use setPreservesAll and setPreservesCFG in CodeGen passes.Dan Gohman2009-07-31
* Improved tracking of value number kills. VN kills are now representedLang Hames2009-07-09
* VNInfo cleanup.Lang Hames2009-06-17
* Update to in-place spilling framework. Includes live interval scaling and tri...Lang Hames2009-06-02
* Fix a bug in live-in detection that caused lost-copy problems to show up.Owen Anderson2008-10-12