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
/
SparsePropagation.cpp
Age
Commit message (
Expand
)
Author
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2012-03-08
Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:
Stepan Dyatkovskiy
2012-02-01
SwitchInst refactoring.
Stepan Dyatkovskiy
2011-11-15
Remove all remaining uses of Value::getNameStr().
Benjamin Kramer
2009-12-23
Convert debug messages to use dbgs(). Generally this means
David Greene
2009-12-18
Eliminate unnecessary LLVMContexts.
Dan Gohman
2009-10-28
rename indbr -> indirectbr to appease the residents of #llvm.
Chris Lattner
2009-10-27
make the build build.
Chris Lattner
2009-10-27
Random updates to passes for indbr, I need blockaddress before I can do much ...
Chris Lattner
2009-09-19
Add a comment explaining why you would ever want to do this.
Nick Lewycky
2009-09-19
Lett users of sparse propagation do their own thing with phi nodes if they want
Nick Lewycky
2009-09-18
Add newlines.
Nick Lewycky
2009-08-23
eliminate the "Value" printing methods that print to a std::ostream.
Chris Lattner
2009-07-31
Move getTrue() and getFalse() to 2.5-like APIs.
Owen Anderson
2009-07-26
Remove Value::getName{Start,End}, the last of the old Name APIs.
Daniel Dunbar
2009-07-21
Rename getConstantInt{True|False} to get{True|False} at Chris' behest.
Owen Anderson
2009-07-06
Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's thr...
Owen Anderson
2009-03-11
Make Print callable from a pass's print method: add const qualifier. No
Torok Edwin
2008-08-09
"This patch adds a virtual call to AbstractLatticeFunction to derive a
Chris Lattner
2008-05-27
Use Function::getEntryBlock instead of Function::begin, for clarity.
Dan Gohman
2008-05-27
Print debug output when any edge becomes executable, including
Dan Gohman
2008-05-20
Add a bool to isEdgeFeasible that tells it whether to treat unknown
Chris Lattner
2008-05-12
prune #includes.
Chris Lattner
2008-05-12
Add a new SparsePropagation analysis utility, which allows you to do
Chris Lattner