summaryrefslogtreecommitdiffstats
path: root/lib/Analysis/CallGraph.cpp
Commit message (Expand)AuthorAgeFilesLines
* [analyzer] Consider function call arguments while building CallGraph.Artem Dergachev2017-01-271-0/+1
* [StaticAnalysis] Remove unnecessary parameter in CallGraphNode::addCallee.Haojian Wu2016-12-121-2/+2
* [Analysis] Use unique_ptr for CallGraph::FunctionMap.Justin Lebar2016-10-101-9/+7
* Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...Yaron Keren2016-01-291-2/+2
* Switch users of the 'for (StmtRange range = stmt->children(); range; ++range)...Benjamin Kramer2015-07-021-3/+3
* Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").Alexander Kornienko2015-06-221-1/+1
* Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko2015-06-221-1/+1
* [CallGraph] Make sure the edges are not missed due to re-declarationsAnna Zaks2014-12-171-8/+5
* [C++11] Use 'nullptr'. Analysis edition.Craig Topper2014-05-201-5/+5
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-221-2/+2
* [C++11] Replacing DeclBase iterators decls_begin() and decls_end() with itera...Aaron Ballman2014-03-071-3/+2
* Use llvm::DeleteContainerSeconds when possibleReid Kleckner2014-02-191-6/+1
* [analyzer] Fix typos.Anna Zaks2012-12-211-2/+2
* [analyzer] Re-apply r170826 and make the dumping of the GallGraphAnna Zaks2012-12-211-13/+16
* Revert r170826. The output ofRafael Espindola2012-12-211-2/+8
* [analyzer] Traverse the Call Graph in topological order.Anna Zaks2012-12-211-8/+2
* [analyzer] Add blocks and ObjC messages to the call graph.Anna Zaks2012-12-211-14/+67
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-041-2/+0
* Remove unused private member variables found by clang's new -Wunused-private-...Benjamin Kramer2012-06-061-4/+3
* [analyzer] PCH deserialization optimization.Anna Zaks2012-04-121-61/+32
* Do not crash in the callgraph construction when encountering deleted function...Ted Kremenek2012-04-051-1/+2
* Fix dereference of end iterator. Spotted by ASan.Matt Beaumont-Gay2012-03-141-1/+3
* [analyzer] Refactor CallGraph to use Recursive AST visitor whenAnna Zaks2012-03-131-36/+32
* CallGraph: Add getNode() method, constify.Anna Zaks2012-03-091-0/+4
* Call Graph: Only the root node is allowed to have an invalid Decl*.Anna Zaks2012-03-081-1/+4
* Remove stray semi-colon.Daniel Dunbar2012-03-081-1/+1
* Add a basic CallGraph to Analysis.Anna Zaks2012-03-081-0/+207
* Fix layering violation by moving Analysis/CallGraph to IndexDaniel Dunbar2009-12-031-150/+0
* Adapt to the DOTGraphTraits changes in LLVM.Tobias Grosser2009-11-301-1/+3
* Change *BugReport constructors to take StringRefs.Benjamin Kramer2009-11-141-1/+1
* make CallGraph more flexible by letting it accept ASTContext instead of ASTUnit.Zhongxing Xu2009-10-281-3/+1
* Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be:Argyrios Kyrtzidis2009-09-291-4/+1
* Add more const-goodness to ASTLocation.Argyrios Kyrtzidis2009-09-291-1/+1
* Remove tabs, and whitespace cleanups.Mike Stump2009-09-091-9/+9
* Add getDecl() to CallGraph and CallGraphNode.Zhongxing Xu2009-07-241-0/+7
* Add two nodes to the call graph:Zhongxing Xu2009-07-231-0/+12
* Add template specializations to view the call graph in dot format.Zhongxing Xu2009-07-231-0/+21
* Remove the ASTContext parameter from Entity::getPrintableName().Argyrios Kyrtzidis2009-07-211-3/+2
* Change the semantics for Entity.Argyrios Kyrtzidis2009-07-211-6/+6
* Replace stmt visitors with the fall back method.Zhongxing Xu2009-07-181-21/+1
* Rename Entity::getName() to Entity::getPrintableName() to make its purposeZhongxing Xu2009-07-171-2/+3
* As suggested by Argyrios, revert r76159 and make "FindImmediateParent" Zhongxing Xu2009-07-171-1/+4
* Refactor code into a new CallExpr::getDirectCallee() method. Simplify someZhongxing Xu2009-07-171-15/+4
* CallGraph: add a bunch of stmt visitors.Zhongxing Xu2009-07-171-6/+20
* CallGraph:Zhongxing Xu2009-07-171-6/+12
* Commit the initial implementation of call graph building.Zhongxing Xu2009-07-161-0/+121