aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/TopDownClosure.cpp
AgeCommit message (Expand)Author
2004-09-20'Pass' should now not be derived from by clients. Instead, they should deriveChris Lattner
2004-09-01Changes For Bug 352Reid Spencer
2004-07-07Move all of the DSA headers into the Analysis/DataStructure subdir.Chris Lattner
2004-04-29Wrapped code and comments at 80 cols; doxygenified some comments.Misha Brukman
2004-02-08Instead of callign removeTriviallyDeadNodes on the global graph every timeChris Lattner
2004-02-08Remove another unneeded call.Chris Lattner
2004-01-28In the TD pass, iterate over globals directly instead of through the whole sc...Chris Lattner
2004-01-28In the TD pass, don't iterate over the scalar map to find the globals, iterat...Chris Lattner
2004-01-27Rewrite to use the reachability cloner interface. Also, make this much moreChris Lattner
2004-01-22Eliminated the CompletedNodes argument to the cloneReachable* methods. ThisChris Lattner
2003-11-12Fine-grainify namespaces for this libraryChris Lattner
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke
2003-11-08This doesn't use DSCallSiteIteratorChris Lattner
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell
2003-09-20Functions reachable from the arguments of unresolvable call nodes shouldChris Lattner
2003-09-20Do not mark incoming arguments to functions complete if the function is point...Chris Lattner
2003-09-20Switch from using CallInst's to represent call sites to using the LLVMChris Lattner
2003-08-01DEBUG got moved to Support/Debug.hChris Lattner
2003-07-16(1) Rematerialize nodes from the globals graph into the current graphVikram S. Adve
2003-07-02Remove space at end of lineChris Lattner
2003-07-02Fix how we are handling unreachable functions. This DRAMATICALLY improves ef...Chris Lattner
2003-07-02Try using trivially dead deletionChris Lattner
2003-07-02Complete rewrite of td passChris Lattner
2003-07-01Rework TD pass to work with the precise call graph constructed by the BU phaseChris Lattner
2003-06-30Remove dead methodChris Lattner
2003-06-30Do not multiply delete graphs if functions are sharing graphsChris Lattner
2003-06-30Revamp DSGraphs so that they can support multiple functions in the sameChris Lattner
2003-06-29Abstract out the predicate which decides whether a function gets completeChris Lattner
2003-06-28Propagate globals graph from the local to bu to td globals graphs. ThisChris Lattner
2003-06-22Remove support for the MultiObject flag, which was fundamentally brokenChris Lattner
2003-02-11Implement a "union-findy" version of DS-Analysis, which eliminates theChris Lattner
2003-02-10Rearrange codeChris Lattner
2003-02-09Fix major bugs in incompleteness marking that were pessimizing resultsChris Lattner
2003-02-08Fix a bug where we would mark the callees arguments incomplete if the caller ...Chris Lattner
2003-02-05Implement optimization for direct function call case. This dramaticallyChris Lattner
2003-02-04Make the TD pass not include all of the call nodes from the local pass,Chris Lattner
2003-02-03Hack to work around deficiency in pass infrastructureChris Lattner
2003-02-01Change DSGraph stuff to use hash_(set|map) instead of std::(set|map)Chris Lattner
2003-01-23* Eliminate boolean arguments in favor of using enumsChris Lattner
2002-11-27Fix logical error in TD pass: we should clear Mod/Ref bits of each callerVikram S. Adve
2002-11-11Handle a mismatch between # function args and call site argsChris Lattner
2002-11-09eliminate the ability to remove global nodes from deadNodeElminate... for now.Chris Lattner
2002-11-09Add globals graphs to all three passesChris Lattner
2002-11-09Clean up DSGraph::removeDeadNodes interfaceChris Lattner
2002-11-09Make removeTriviallyDeadNodes a private interface of DSGraphChris Lattner
2002-11-08Reenable 'quick exit' caseChris Lattner
2002-11-08Reimplement TD pass completely it now worksChris Lattner
2002-11-08Use DSNodeHandleMap instead to be safeChris Lattner
2002-11-08Add flushChris Lattner
2002-11-07Instead of using a bool that constant has to be explained, use a selfChris Lattner