index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
TailDuplication.cpp
Age
Commit message (
Expand
)
Author
2010-08-06
Reapply r110396, with fixes to appease the Linux buildbot gods.
Owen Anderson
2010-08-06
Revert r110396 to fix buildbots.
Owen Anderson
2010-08-05
Don't use PassInfo* as a type identifier for passes. Instead, use the addres...
Owen Anderson
2010-07-16
Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.
Jakob Stoklund Olesen
2010-07-10
Replace copyRegToReg with COPY everywhere in lib/CodeGen except for FastISel.
Jakob Stoklund Olesen
2010-05-06
Add a DebugLoc argument to TargetInstrInfo::copyRegToReg, so that it
Dan Gohman
2010-03-16
Ignore debug value instructions while analyzing BB for tail duplication.
Devang Patel
2010-03-14
eliminate InvalidateLabel and LabelIDList from MMI and replace
Chris Lattner
2010-02-11
Reuse operand location when updating PHI instructions.
Jakob Stoklund Olesen
2010-02-09
move target-independent opcodes out of TargetInstrInfo
Chris Lattner
2010-01-16
Treat indirect branches specially only during pre-regalloc tail duplication,
Bob Wilson
2010-01-15
Simplify logic. Any functional change is unintended.
Jakob Stoklund Olesen
2010-01-15
Change pre-regalloc tail duplication to only duplicate indirect branch blocks.
Bob Wilson
2010-01-06
Add Target hook to duplicate machine instructions.
Jakob Stoklund Olesen
2010-01-05
Change errs() to dbgs().
David Greene
2009-12-15
Tail duplication should zap a copy it inserted for SSA update if the copy is ...
Evan Cheng
2009-12-07
Delete code accidentally left behind.
Evan Cheng
2009-12-07
Pre-regalloc tale duplication. Work in progress.
Evan Cheng
2009-12-04
Handle recursive PHI's.
Evan Cheng
2009-12-04
Add a pre-regalloc tail duplication pass.
Evan Cheng
2009-12-03
Teach tail duplication to update SSA form. Work in progress.
Evan Cheng
2009-12-02
Don't count PHI instructions toward the limit for tail duplicating a block.
Bob Wilson
2009-11-30
Reprioritize tests for tail duplication to be aggressive about indirect
Bob Wilson
2009-11-30
Remove isProfitableToDuplicateIndirectBranch target hook. It is profitable
Bob Wilson
2009-11-26
Rename new TailDuplicationPass to avoid name conflict with the old one.
Bob Wilson
2009-11-26
Split tail duplication into a separate pass. This is needed to avoid
Bob Wilson