aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/TailDuplication.cpp
Commit message (Expand)AuthorAgeFilesLines
* Simplify a bunch of isVirtualRegister() and isPhysicalRegister() logic.Jakob Stoklund Olesen2011-01-101-1/+1
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.Jakob Stoklund Olesen2010-07-161-8/+9
* Replace copyRegToReg with COPY everywhere in lib/CodeGen except for FastISel.Jakob Stoklund Olesen2010-07-101-10/+8
* Add a DebugLoc argument to TargetInstrInfo::copyRegToReg, so that itDan Gohman2010-05-061-2/+2
* Ignore debug value instructions while analyzing BB for tail duplication.Devang Patel2010-03-161-1/+1
* eliminate InvalidateLabel and LabelIDList from MMI and replaceChris Lattner2010-03-141-11/+0
* Reuse operand location when updating PHI instructions.Jakob Stoklund Olesen2010-02-111-7/+26
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-091-5/+5
* Treat indirect branches specially only during pre-regalloc tail duplication,Bob Wilson2010-01-161-13/+13
* Simplify logic. Any functional change is unintended.Jakob Stoklund Olesen2010-01-151-6/+2
* Change pre-regalloc tail duplication to only duplicate indirect branch blocks.Bob Wilson2010-01-151-4/+11
* Add Target hook to duplicate machine instructions.Jakob Stoklund Olesen2010-01-061-1/+1
* Change errs() to dbgs().David Greene2010-01-051-11/+11
* Tail duplication should zap a copy it inserted for SSA update if the copy is ...Evan Cheng2009-12-151-13/+37
* Delete code accidentally left behind.Evan Cheng2009-12-071-10/+0
* Pre-regalloc tale duplication. Work in progress.Evan Cheng2009-12-071-90/+220
* Handle recursive PHI's.Evan Cheng2009-12-041-18/+18
* Add a pre-regalloc tail duplication pass.Evan Cheng2009-12-041-98/+215
* Teach tail duplication to update SSA form. Work in progress.Evan Cheng2009-12-031-3/+134
* Don't count PHI instructions toward the limit for tail duplicating a block.Bob Wilson2009-12-021-4/+6
* Reprioritize tests for tail duplication to be aggressive about indirectBob Wilson2009-11-301-3/+3
* Remove isProfitableToDuplicateIndirectBranch target hook. It is profitableBob Wilson2009-11-301-2/+1
* Rename new TailDuplicationPass to avoid name conflict with the old one.Bob Wilson2009-11-261-10/+10
* Split tail duplication into a separate pass. This is needed to avoidBob Wilson2009-11-261-0/+250