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
/
DataStructure
/
Local.cpp
Age
Commit message (
Expand
)
Author
2002-11-07
Rename DataStructureAnalysis namespace to DS
Chris Lattner
2002-11-06
Dramatically simplify internal DSNode representation, get implementation
Chris Lattner
2002-11-03
Rename ValueMap to ScalarMap
Chris Lattner
2002-11-03
Rename NewNode flag to HeapNode
Chris Lattner
2002-11-02
Implement the "unknown flag" which mainly consists of aligning printing code
Chris Lattner
2002-11-02
Stop representing scalars as explicit nodes in the graph. Now the only
Chris Lattner
2002-10-31
Remove dead code
Chris Lattner
2002-10-31
This fixes all kinds of problems with array handling. There are still bugs to
Chris Lattner
2002-10-21
Don't create a new node for every reference to a global. This caused a huge
Chris Lattner
2002-10-21
- Make DSCallSite not inherit from std::vector. Renamed methods slightly.
Chris Lattner
2002-10-20
Avoid extra copy
Chris Lattner
2002-10-20
Remove spurious caller pointer in DSCallSite.
Vikram S. Adve
2002-10-20
Added a first-class representation for each call site that can be
Vikram S. Adve
2002-10-18
Convert typerec to be a structure instead of a pair
Chris Lattner
2002-10-17
Calculate mod/ref info
Chris Lattner
2002-10-02
DataStructure.h doesn't include DSGraph.h
Chris Lattner
2002-10-02
* Implement fully general merging of array subscripts on demand! This
Chris Lattner
2002-10-01
Checkin some major reworks of data structure analysis. This is not done,
Chris Lattner
2002-08-22
Eliminated the MemAccessInst class, folding contents into GEP class.
Chris Lattner
2002-08-22
Load & StoreInst no longer derive from MemAccessInst, so we don't have
Chris Lattner
2002-08-21
- Do not expose ::ID from any of the analyses anymore.
Chris Lattner
2002-07-30
Add GlobalDSGraph -- a common graph that holds externally visible nodes.
Vikram S. Adve
2002-07-27
* Standardize how analysis results/passes as printed with the print() virtual
Chris Lattner
2002-07-22
Always create a shadow node for a store instruction, even if it's storing
Chris Lattner
2002-07-18
Rename removeDeadNodes to removeTriviallyDeadNodes
Chris Lattner
2002-07-18
Implement cast nodes correctly.
Chris Lattner
2002-07-18
Lots of bug fixes, add BottomUpClosure, which has bugs, but is a start.
Chris Lattner
2002-07-11
* Nodes now keep track of any global variables in them
Chris Lattner
2002-07-10
New implementation of data structure analysis. Only local analysis has been
Chris Lattner