Changes For Bug 352
[oota-llvm.git] / lib / Analysis / DataStructure / TopDownClosure.cpp
2004-09-01 Reid SpencerChanges For Bug 352
2004-07-07 Chris LattnerMove all of the DSA headers into the Analysis/DataStruc...
2004-04-29 Misha BrukmanWrapped code and comments at 80 cols; doxygenified...
2004-02-08 Chris LattnerInstead of callign removeTriviallyDeadNodes on the...
2004-02-08 Chris LattnerRemove another unneeded call.
2004-01-28 Chris LattnerIn the TD pass, iterate over globals directly instead...
2004-01-28 Chris LattnerIn the TD pass, don't iterate over the scalar map to...
2004-01-27 Chris LattnerRewrite to use the reachability cloner interface. ...
2004-01-22 Chris LattnerEliminated the CompletedNodes argument to the cloneReac...
2003-11-12 Chris LattnerFine-grainify namespaces for this library
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-11-08 Chris LattnerThis doesn't use DSCallSiteIterator
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-09-20 Chris LattnerFunctions reachable from the arguments of unresolvable...
2003-09-20 Chris LattnerDo not mark incoming arguments to functions complete...
2003-09-20 Chris LattnerSwitch from using CallInst's to represent call sites...
2003-08-01 Chris LattnerDEBUG got moved to Support/Debug.h
2003-07-16 Vikram S. Adve(1) Rematerialize nodes from the globals graph into...
2003-07-02 Chris LattnerRemove space at end of line
2003-07-02 Chris LattnerFix how we are handling unreachable functions. This...
2003-07-02 Chris LattnerTry using trivially dead deletion
2003-07-02 Chris LattnerComplete rewrite of td pass
2003-07-01 Chris LattnerRework TD pass to work with the precise call graph...
2003-06-30 Chris LattnerRemove dead method
2003-06-30 Chris LattnerDo not multiply delete graphs if functions are sharing...
2003-06-30 Chris LattnerRevamp DSGraphs so that they can support multiple funct...
2003-06-29 Chris LattnerAbstract out the predicate which decides whether a...
2003-06-28 Chris LattnerPropagate globals graph from the local to bu to td...
2003-06-22 Chris LattnerRemove support for the MultiObject flag, which was...
2003-02-11 Chris LattnerImplement a "union-findy" version of DS-Analysis, which...
2003-02-10 Chris LattnerRearrange code
2003-02-09 Chris LattnerFix major bugs in incompleteness marking that were...
2003-02-08 Chris LattnerFix a bug where we would mark the callees arguments...
2003-02-05 Chris LattnerImplement optimization for direct function call case...
2003-02-04 Chris LattnerMake the TD pass not include all of the call nodes...
2003-02-03 Chris LattnerHack to work around deficiency in pass infrastructure
2003-02-01 Chris LattnerChange DSGraph stuff to use hash_(set|map) instead...
2003-01-23 Chris Lattner* Eliminate boolean arguments in favor of using enums
2002-11-27 Vikram S. AdveFix logical error in TD pass: we should clear Mod/Ref...
2002-11-11 Chris LattnerHandle a mismatch between # function args and call...
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-08 Chris LattnerReenable 'quick exit' case
2002-11-08 Chris LattnerReimplement TD pass completely it now works
2002-11-08 Chris LattnerUse DSNodeHandleMap instead to be safe
2002-11-08 Chris LattnerAdd flush
2002-11-07 Chris LattnerInstead of using a bool that constant has to be explain...
2002-11-07 Chris LattnerImplement a new mergeInGraph method, which basically...
2002-11-07 Chris LattnerRename DataStructureAnalysis namespace to DS
2002-11-06 Chris LattnerDelete "StripScalars" argument to cloneInto method
2002-10-22 Chris Lattner - Make sure to only keep track of mappings that the...
2002-10-21 Chris LattnerDelete unused arguments to DSGraph::cloneInto method
2002-10-21 Chris Lattner - Add "ResolvingCaller" to the CallSite record. ...
2002-10-21 Chris LattnerAs it turns out, we don't need a fully generic mapping...
2002-10-21 Chris LattnerRemove some unneccesary 'using' directives
2002-10-21 Chris Lattner - Make DSCallSite not inherit from std::vector. ...
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-17 Chris LattnerRemove more obsolete code
2002-10-17 Chris Lattner * Make the DSGraph cloner automatically merge global...
2002-10-17 Chris LattnerEnable incompleteness marking
2002-10-17 Chris Lattner * First try at implementing TD pass this does not...
2002-10-01 Chris LattnerCheckin some major reworks of data structure analysis...
2002-08-21 Chris Lattner- Do not expose ::ID from any of the analyses anymore.
2002-08-07 Chris LattnerMinor changes to DEBUG()'s
2002-07-31 Chris LattnerChanges to be GCC3.1 friendly
2002-07-30 Vikram S. AdveThis file implements the top-down propagation pass...