Added LLVM project notice to the top of every C++ source file.
[oota-llvm.git] / lib / Analysis / DataStructure / Local.cpp
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-09-24 Chris LattnerDOn't crash if program calls the null pointer
2003-09-20 Chris LattnerMake sure to add global variable initializers to the...
2003-09-20 Chris LattnerAdd special case handling for calloc and realloc
2003-09-20 Chris LattnerSwitch from using CallInst's to represent call sites...
2003-09-11 Misha BrukmanFixed spelling and grammar.
2003-08-01 Chris LattnerDEBUG got moved to Support/Debug.h
2003-07-02 Chris LattnerRemove dead Nodes list
2003-07-02 Chris LattnerMake local pass print out its progress
2003-06-30 Chris LattnerDo not delete the same graph multiple times when freein...
2003-06-30 Chris LattnerMove usages of explicit hash_* datastructures to use...
2003-06-30 Chris LattnerRevamp DSGraphs so that they can support multiple funct...
2003-06-19 Chris Lattner* Changes to make NodeType be private to DSNode.
2003-06-16 Chris LattnerNodes get forwarded when they are collapsed currently.
2003-03-03 Chris LattnerDon't apply type information to load instructions if...
2003-02-14 Chris LattnerDon't put integer pointers (longs) into the scalar...
2003-02-11 Chris LattnerImplement a "union-findy" version of DS-Analysis, which...
2003-02-09 Chris LattnerDon't insert null entries into the scalar map for const...
2003-02-08 Chris LattnerAdd a flag which effectively disables field sensitivity
2003-02-05 Chris LattnerImplement optimization for direct function call case...
2003-02-04 Chris LattnerFix a huge bug with handling non-pointer instructions
2003-02-01 Chris LattnerChange DSGraph stuff to use hash_(set|map) instead...
2003-02-01 Chris LattnerRemove using declarations
2003-01-28 Chris Lattnerfree instructions mark their operands as being heap...
2003-01-23 Chris Lattner* Eliminate boolean arguments in favor of using enums
2003-01-23 Chris LattnerSlight efficiency improvement
2002-12-06 Vikram S. AdveTwo bug fixes:
2002-11-18 Chris LattnerAdd peak memory usage support
2002-11-10 Chris LattnerInitialize PrintAuxCalls member
2002-11-09 Chris Lattnereliminate the ability to remove global nodes from deadN...
2002-11-09 Chris LattnerAdd globals graphs to all three passes
2002-11-09 Chris LattnerClean up DSGraph::removeDeadNodes interface
2002-11-09 Chris LattnerMake removeTriviallyDeadNodes a private interface of...
2002-11-09 Chris LattnerDon't put constants into the scalar map!
2002-11-09 Chris LattnerAdd initial support for a globals graph
2002-11-09 Chris Lattner#include Datastructure.h first
2002-11-08 Chris Lattner* actually handle constants (especially constantexprs...
2002-11-07 Chris LattnerRename DataStructureAnalysis namespace to DS
2002-11-06 Chris LattnerDramatically simplify internal DSNode representation...
2002-11-03 Chris LattnerRename ValueMap to ScalarMap
2002-11-03 Chris LattnerRename NewNode flag to HeapNode
2002-11-02 Chris LattnerImplement the "unknown flag" which mainly consists...
2002-11-02 Chris LattnerStop representing scalars as explicit nodes in the...
2002-10-31 Chris LattnerRemove dead code
2002-10-31 Chris LattnerThis fixes all kinds of problems with array handling...
2002-10-21 Chris LattnerDon't create a new node for every reference to a global...
2002-10-21 Chris Lattner - Make DSCallSite not inherit from std::vector. ...
2002-10-20 Chris LattnerAvoid extra copy
2002-10-20 Vikram S. AdveRemove spurious caller pointer in DSCallSite.
2002-10-20 Vikram S. AdveAdded a first-class representation for each call site...
2002-10-18 Chris LattnerConvert typerec to be a structure instead of a pair
2002-10-17 Chris LattnerCalculate mod/ref info
2002-10-02 Chris LattnerDataStructure.h doesn't include DSGraph.h
2002-10-02 Chris Lattner * Implement fully general merging of array subscrip...
2002-10-01 Chris LattnerCheckin some major reworks of data structure analysis...
2002-08-22 Chris LattnerEliminated the MemAccessInst class, folding contents...
2002-08-22 Chris LattnerLoad & StoreInst no longer derive from MemAccessInst...
2002-08-21 Chris Lattner- Do not expose ::ID from any of the analyses anymore.
2002-07-30 Vikram S. AdveAdd GlobalDSGraph -- a common graph that holds external...
2002-07-27 Chris Lattner* Standardize how analysis results/passes as printed...
2002-07-22 Chris LattnerAlways create a shadow node for a store instruction...
2002-07-18 Chris LattnerRename removeDeadNodes to removeTriviallyDeadNodes
2002-07-18 Chris LattnerImplement cast nodes correctly.
2002-07-18 Chris LattnerLots of bug fixes, add BottomUpClosure, which has bugs...
2002-07-11 Chris Lattner* Nodes now keep track of any global variables in them
2002-07-10 Chris LattnerNew implementation of data structure analysis. Only...