summaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/TopDownClosure.cpp
AgeCommit message (Expand)AuthorFilesLines
2005-04-02fix some VC compilation problems, thanks to Jeff C for pointing this out!Chris Lattner1-4/+3
2005-04-02use a callee_iterator typedef.Chris Lattner1-3/+2
2005-04-02Change the ActualCallees callgraph from hash_multimap<Instruction,Function>Chris Lattner1-32/+23
2005-03-24Fix a crash while promoting a value out of a loop from a global variableChris Lattner1-1/+10
2005-03-22When making a clone of a DSGraph from the BU pass, make sure to remember thatChris Lattner1-1/+8
2005-03-22add some timers, don't clone aux nodesChris Lattner1-2/+29
2005-03-21Enhance the TD pass to build composite graphs when we have indirect callChris Lattner1-17/+108
2005-03-21'note to self'Chris Lattner1-2/+5
2005-03-21Change the way that the TD pass inlines graphs. Instead of inlining eachChris Lattner1-72/+87
2005-03-20Don't strip modref bits when inlining down the call graph. This fixesChris Lattner1-1/+1
2005-03-20This call is always a noop, remove it.Chris Lattner1-9/+0
2005-03-20Make use of simpler DSNode methods.Chris Lattner1-5/+3
2005-03-19Create an equivalence class of global variables that DSA will never be ableChris Lattner1-3/+4
2005-03-15Start using retnodes_* for iteration.Chris Lattner1-4/+3
2005-02-04Fix the Regression/Transforms/DSAnalysis/recursion.ll regression.Chris Lattner1-4/+3
2005-01-31Fix some scary bugs that VC++ detected.Chris Lattner1-1/+1
2005-01-30* Make some methods more const correct.Chris Lattner1-18/+14
2005-01-24Make -ds-aa more useful, allowing it to be updated as xforms hack on the prog...Chris Lattner1-0/+53
2004-09-20'Pass' should now not be derived from by clients. Instead, they should deriveChris Lattner1-1/+1
2004-09-01Changes For Bug 352Reid Spencer1-2/+2
2004-07-07Move all of the DSA headers into the Analysis/DataStructure subdir.Chris Lattner1-2/+2
2004-04-29Wrapped code and comments at 80 cols; doxygenified some comments.Misha Brukman1-2/+3
2004-02-08Instead of callign removeTriviallyDeadNodes on the global graph every timeChris Lattner1-0/+2
2004-02-08Remove another unneeded call.Chris Lattner1-1/+0
2004-01-28In the TD pass, iterate over globals directly instead of through the whole sc...Chris Lattner1-9/+8
2004-01-28In the TD pass, don't iterate over the scalar map to find the globals, iterat...Chris Lattner1-3/+2
2004-01-27Rewrite to use the reachability cloner interface. Also, make this much moreChris Lattner1-58/+39
2004-01-22Eliminated the CompletedNodes argument to the cloneReachable* methods. ThisChris Lattner1-2/+1
2003-11-12Fine-grainify namespaces for this libraryChris Lattner1-4/+1
2003-11-11Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke1-0/+3
2003-11-08This doesn't use DSCallSiteIteratorChris Lattner1-1/+1
2003-10-20Added LLVM project notice to the top of every C++ source file.John Criswell1-0/+7
2003-09-20Functions reachable from the arguments of unresolvable call nodes shouldChris Lattner1-1/+13
2003-09-20Do not mark incoming arguments to functions complete if the function is point...Chris Lattner1-10/+30
2003-09-20Switch from using CallInst's to represent call sites to using the LLVMChris Lattner1-2/+4
2003-08-01DEBUG got moved to Support/Debug.hChris Lattner1-0/+1
2003-07-16(1) Rematerialize nodes from the globals graph into the current graphVikram S. Adve1-57/+84
2003-07-02Remove space at end of lineChris Lattner1-1/+1
2003-07-02Fix how we are handling unreachable functions. This DRAMATICALLY improves ef...Chris Lattner1-36/+35
2003-07-02Try using trivially dead deletionChris Lattner1-0/+1
2003-07-02Complete rewrite of td passChris Lattner1-103/+101
2003-07-01Rework TD pass to work with the precise call graph constructed by the BU phaseChris Lattner1-113/+147
2003-06-30Remove dead methodChris Lattner1-27/+0
2003-06-30Do not multiply delete graphs if functions are sharing graphsChris Lattner1-4/+6
2003-06-30Revamp DSGraphs so that they can support multiple functions in the sameChris Lattner1-4/+8
2003-06-29Abstract out the predicate which decides whether a function gets completeChris Lattner1-13/+23
2003-06-28Propagate globals graph from the local to bu to td globals graphs. ThisChris Lattner1-2/+2
2003-06-22Remove support for the MultiObject flag, which was fundamentally brokenChris Lattner1-0/+1
2003-02-11Implement a "union-findy" version of DS-Analysis, which eliminates theChris Lattner1-9/+3
2003-02-10Rearrange codeChris Lattner1-11/+13