aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/IPA/CallGraph.cpp
AgeCommit message (Expand)Author
2008-10-03Teach internalize to preserve the callgraph.Duncan Sands
2008-09-09Simplify this some more. No functionality change.Duncan Sands
2008-09-09Optimization suggested by Matthijs Kooijman.Duncan Sands
2008-09-09Correct callgraph construction. It has two problems:Duncan Sands
2008-09-08Didn't mean to commit this change to how theDuncan Sands
2008-09-08Reapply 55859. This doesn't change anything asDuncan Sands
2008-09-06When PruneEH turned an invoke into an ordinaryDuncan Sands
2008-09-05Revert r55859. This is breaking the build in the abscence of its companion c...Owen Anderson
2008-09-05Delete the removeCallEdgeTo callgraph method,Duncan Sands
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-06-04Replace two manual loops with calls to CallSite::hasArguments (no functional ...Matthijs Kooijman
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-04-13add a new CallGraphNode::removeCallEdgeFor method, tidy some comments.Chris Lattner
2008-03-19PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-03Rather than having special rules like "intrinsics cannotDuncan Sands
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-02Fix build error.Lauro Ramos Venancio
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-02-05Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduceReid Spencer
2007-01-30For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoidReid Spencer
2006-12-17Added an automatic cast to "std::ostream*" etc. from OStream. We then canBill Wendling
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-12-05straighten out various memory ownership issues in the callgraph stuff.Chris Lattner
2006-12-04Add a comment and fix a memory leak. Thanks to Vikram for pointing this out.Chris Lattner
2006-11-29Replacing std::iostreams with llvm iostreams. Some of these changes involveBill Wendling
2006-10-09Fix a bug pointed out by Zhongxing XuChris Lattner
2006-08-28simplify AnalysisGroup registration, eliminating one typeid call.Chris Lattner
2006-08-27eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner
2006-07-12Change the callgraph representation to store the callsite along with theChris Lattner
2006-06-07For PR780:Reid Spencer
2006-06-01Fix -pedantic warningChris Lattner
2006-06-01Change from using a stub function to a stub variable for passing to theReid Spencer
2006-01-14Add a new CallGraph::getOrInsertFunction for clients to use when updatingChris Lattner
2006-01-14add a dump method to CallGraphChris Lattner
2005-12-22Separate the call graph implementation from its interface. This implementsChris Lattner
2005-04-21Remove trailing whitespaceMisha Brukman
2004-11-19Mission accomplished!Chris Lattner
2004-09-20'Pass' should now not be derived from by clients. Instead, they should deriveChris Lattner
2004-09-19Fix a nasty iterator invalidation problem I introduced yesterday. ThisChris Lattner
2004-09-18Add CallGraphNode::removeAnyCallEdgeTo methodChris Lattner
2004-09-18When changing a function, make sure to update the CallGraphNode for theChris Lattner
2004-09-18Implement new changeFunction method, nuke a never implemented one.Chris Lattner
2004-09-01Changes For Bug 352Reid Spencer
2004-08-08Add standard print/dump methods to CallGraph classes.Chris Lattner
2004-07-29Fix #includes of i*.h => Instructions.h as per PR403.Misha Brukman
2004-07-18bug 122:Reid Spencer
2004-05-02Fix a problem with double freeing memory. For some reason, CallGraph is notChris Lattner
2004-05-02Plug a minor memory leakChris Lattner