aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Analysis/LiveVariables.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-10-13[analyzer] Remove superquadratic behaviour from DataflowWorklistAlexander Shaposhnikov1-18/+9
2015-07-03Rewrite users of Stmt::child_begin/end into for-range loops.Benjamin Kramer1-5/+4
2015-06-22Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").Alexander Kornienko1-4/+4
2015-06-22Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-4/+4
2015-02-06Update APIs that return a pair of iterators to return an iterator_range instead.Benjamin Kramer1-5/+2
2014-10-21Remove unused member variable.Craig Topper1-1/+0
2014-09-23Reverting r214064 and r215650 while investigating a pesky performance regressionArtyom Skrobov1-8/+67
2014-08-14Use the proper post-order traversal in LiveVariables analysis,Artyom Skrobov1-12/+7
2014-07-28Factoring DataflowWorklist out of LiveVariables and UninitializedValues analysesArtyom Skrobov1-55/+1
2014-05-20[C++11] Use 'nullptr'. Analysis edition.Craig Topper1-12/+12
2014-03-23remove a bunch of unused private methodsNuno Lopes1-14/+0
2014-03-14[C++11] Replacing DeclStmt iterators decl_begin() and decl_end() with iterato...Aaron Ballman1-3/+2
2014-03-07[C++11] Convert sort predicates into lambdas.Benjamin Kramer1-14/+8
2014-03-02[C++11] Replace llvm::tie with std::tie.Benjamin Kramer1-1/+1
2013-12-06Revert "[analyzer] Refactor conditional expression evaluating code"Anna Zaks1-18/+0
2013-08-23Use pop_back_val() instead of both back() and pop_back().Robert Wilhelm1-2/+1
2013-08-23[analyzer] Refactor conditional expression evaluating codePavel Labath1-0/+18
2013-02-23Remove the CFGElement "Invalid" state.David Blaikie1-4/+6
2013-02-21Replace CFGElement llvm::cast support to be well-defined.David Blaikie1-6/+6
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-3/+3
2012-12-01Include pruning and general cleanup.Benjamin Kramer1-6/+16
2012-08-14[analyzer] Teach live variable analyzes that super uses self pointer.Anna Zaks1-0/+8
2012-07-26[analyzer] Variables with destructors are live until the destructor is run.Jordan Rose1-0/+6
2012-07-02Bail out the LiveVariables analysis when the CFG is very large, asTed Kremenek1-0/+5
2011-12-22Enhance AnalysisDeclContext::getReferencedBlockVars() to understand PseudoObj...Ted Kremenek1-4/+5
2011-12-22Fix regression in LiveVariables when reasoning about variables captured by bl...Ted Kremenek1-5/+4
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie1-0/+2
2011-11-09We don't add ExprWithCleanups to the CFG, and getSVal looksJohn McCall1-0/+4
2011-11-06Change the AST representation of operations on Objective-CJohn McCall1-0/+12
2011-11-05Tweak LookThroughStmt() in LiveVariables to properly look through alternativi...Ted Kremenek1-4/+9
2011-11-05LookThroughStmt GM release.Argyrios Kyrtzidis1-2/+2
2011-11-05LookThroughStmt v4.6.3Argyrios Kyrtzidis1-1/+1
2011-11-05Simplify LookThroughStmt in LiveVariables.cppArgyrios Kyrtzidis1-12/+4
2011-11-05Another correction to the LiveVariables commit (r143767, r143780).Anna Zaks1-3/+7
2011-11-05Fix infinite loop in LiveVariables due to a misplaced 'break' (it would break...Argyrios Kyrtzidis1-12/+6
2011-11-05Teach LiveVariables to look through OpaqueValueExprs for extending Stmt liven...Ted Kremenek1-10/+28
2011-10-24Rename AnalysisContext to AnalysisDeclContext. Not only is this name more ac...Ted Kremenek1-5/+5
2011-10-22Pull TopologicallySortedCFG out of LiveVariables into its own analysis: PostO...Ted Kremenek1-105/+7
2011-10-07Remove AnalysisContext::getLiveVariables(), and introduce a templatized mecha...Ted Kremenek1-0/+2
2011-10-06[static analyzer] Fix crash in LiveVariables and Environment::getSVal() when ...Ted Kremenek1-3/+4
2011-10-02Fix another major performance regression in LiveVariables by not canonicalizi...Ted Kremenek1-1/+6
2011-10-02Fix LiveVariables analysis bug with MaterializeTemporaryExpr and fix handling...Ted Kremenek1-4/+0
2011-09-16Fix massive LiveVariables regression (due to LiveVariables rewrite) by addres...Ted Kremenek1-62/+222
2011-08-23Constify the result of CFGStmt::getStmt().Ted Kremenek1-1/+1
2011-08-12Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...Ted Kremenek1-3/+3
2011-08-06[analyzer] Simplify logic for ExprEngine::VisitUnaryExprOrTypeTraitExpr to av...Ted Kremenek1-10/+33
2011-08-02Make helper functions static.Benjamin Kramer1-2/+3
2011-07-28[analyzer] Overhaul how the static analyzer expects CFGs by forcing CFGs to b...Ted Kremenek1-307/+401
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner1-1/+1
2011-06-10[analyzer] PR8962 again. Ban ParenExprs (and friends) from block-level expres...Jordy Rose1-13/+3