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
/
Analysis
/
PHITransAddr.cpp
Age
Commit message (
Expand
)
Author
2011-07-25
Shorten some expressions by using ArrayRef::slice().
Frits van Bommel
2011-07-25
Convert GetElementPtrInst to use ArrayRef.
Jay Foad
2011-07-19
Convert SimplifyGEPInst to use ArrayRef.
Jay Foad
2011-04-11
Don't include Operator.h from InstrTypes.h.
Jay Foad
2011-01-02
split dom frontier handling stuff out to its own DominanceFrontier header,
Chris Lattner
2010-11-18
Strip trailing whitespace.
Dan Gohman
2010-11-18
Use llvm_unreachable for "impossible" situations.
Dan Gohman
2010-11-18
Add support for PHI-translating sext, zext, and trunc instructions,
Dan Gohman
2010-11-16
In which I discover the existence of loops. Threading an operation
Duncan Sands
2010-02-24
Reapply r97010, the speculative revert failed.
Daniel Dunbar
2010-02-24
Speculatively revert r97010, "Add an argument to PHITranslateValue to specify
Daniel Dunbar
2010-02-24
Add an argument to PHITranslateValue to specify the DominatorTree. If this
Bob Wilson
2009-12-23
Change dbgs() back to errs() as Chris requested.
David Greene
2009-12-23
Convert debug messages to use dbgs(). Generally this means
David Greene
2009-12-09
Add a minor optimization: if we haven't changed the operands of an
Chris Lattner
2009-12-09
fix PR5733, a case where we'd replace an add with a lexically identical
Chris Lattner
2009-12-09
fix a nasty variable that was shadowing the real CurBB but with the wrong value.
Chris Lattner
2009-12-09
fix many input tracking bugs.
Chris Lattner
2009-12-09
fix PHI translation to take the PHI out of the instinputs set and add
Chris Lattner
2009-12-09
instructions defined in CurBB may be intermediate nodes of the computation.
Chris Lattner
2009-12-09
add dumping and sanity checking support.
Chris Lattner
2009-12-08
make sure that PHITransAddr keeps its 'InstInputs' list up to
Chris Lattner
2009-12-08
fix a typo (and -> add) and fix GetAvailablePHITranslatedSubExpr to not
Chris Lattner
2009-12-07
fix typo
Chris Lattner
2009-12-07
add accessor, improve comment.
Chris Lattner
2009-12-07
add support for phi translation and incorpation of new expression.
Chris Lattner
2009-12-07
checkpoint of the new PHITransAddr code, still not done and not used by
Chris Lattner
2009-12-04
add the start of a class used to handle phi translation in memdep and
Chris Lattner