summaryrefslogtreecommitdiffstats
path: root/lib/Analysis/LiveVariables.cpp
Commit message (Expand)AuthorAgeFilesLines
* Move the source-level CFG from libAST to libAnalysis.Ted Kremenek2009-07-161-1/+1
* Instead of r74522, use another approach to fix xfail_regionstore_wine_crash.c.Zhongxing Xu2009-06-301-1/+0
* Block level expr should be visited. Otherwise variables in init expr ofZhongxing Xu2009-06-301-1/+3
* Remove hack from LiveVariables analysis where variables whose address are takenTed Kremenek2009-04-071-18/+0
* rename some methods.Chris Lattner2009-03-281-1/+1
* Fix horrible non-termination bug in LiveVariables. The issue was thatTed Kremenek2009-01-301-2/+2
* Introduce a new PresumedLoc class to represent the concept of a locationChris Lattner2009-01-271-7/+3
* Change some terminology in SourceLocation: instead of referring to Chris Lattner2009-01-161-4/+4
* Fixed LiveVariables bug where we didn't consider block-level expressions that...Ted Kremenek2008-12-091-2/+12
* Minor tweaks to liveness analysis:Ted Kremenek2008-11-141-0/+7
* Handle the case where 'element' in ObjCforCollectionstmt is not a DeclStmt or...Ted Kremenek2008-11-141-5/+8
* Rename header file.Ted Kremenek2008-11-141-2/+2
* Fix uninitialized variable.Ted Kremenek2008-11-131-1/+1
* Update CFGStmtVisitor to recognize that ObjCForCollectionStmts are special bl...Ted Kremenek2008-11-121-2/+4
* Use Stmt* instead of Expr* for block-level expression.Ted Kremenek2008-11-121-1/+1
* Accesses to a collection within a fast enumeration 'for' statement constitute...Ted Kremenek2008-11-111-9/+15
* Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr...Sebastian Redl2008-11-111-1/+0
* Add transfer function support for ObjCForCollectionStmt to LiveVariables.Ted Kremenek2008-11-111-1/+17
* Cosmetic patch from João Paulo Rechi VitaDouglas Gregor2008-10-211-1/+0
* Move VLA processing logic from LiveVariables to CFG construction. This way a...Ted Kremenek2008-09-261-20/+0
* Examine VLA size expressions when computing liveness information.Ted Kremenek2008-09-261-4/+26
* Added decl_iterator to DeclStmt to provide an abstract interface to iterate o...Ted Kremenek2008-08-051-2/+3
* Fix a bug in the dead stores checker reported in the following email:Ted Kremenek2008-07-031-3/+11
* Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl.Chris Lattner2008-06-171-0/+5
* Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a ...Ted Kremenek2008-04-161-48/+5
* LiveVariables now updates the liveness state of block-level expressions thatTed Kremenek2008-04-161-12/+49
* Fix bug in terminator processing for uninitialized-values: simply ignore the ...Ted Kremenek2008-04-151-7/+64
* Added initial support into the flow-sensitive dataflow solver to visit the Bl...Ted Kremenek2008-04-151-1/+19
* ++/-- makes a variable live since it is used; thus the liveness state isTed Kremenek2008-04-151-3/+3
* Bug fix in LiveVariables: Operators ++/-- may kill a value, but the variableTed Kremenek2008-04-151-6/+5
* LiveVariables analysis now uses intersect for the merge of block-level expres...Ted Kremenek2008-03-201-2/+11
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+246