index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
LiveVariables.cpp
Age
Commit message (
Expand
)
Author
2009-11-10
Fix clang's use of DenseMap iterators after r86636 fixed their constness.
Jeffrey Yasskin
2009-11-07
Use SaveAndRestore to simplify logic in LiveVariables::runOnAllBlocks(). Pat...
Ted Kremenek
2009-11-06
add some const qualifiers, patch by Kovarththanan Rajaratnam!
Chris Lattner
2009-10-18
PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients
Daniel Dunbar
2009-10-17
Use raw_ostream instead of C stdio.
Daniel Dunbar
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-07-16
Move the source-level CFG from libAST to libAnalysis.
Ted Kremenek
2009-06-30
Instead of r74522, use another approach to fix xfail_regionstore_wine_crash.c.
Zhongxing Xu
2009-06-30
Block level expr should be visited. Otherwise variables in init expr of
Zhongxing Xu
2009-04-07
Remove hack from LiveVariables analysis where variables whose address are taken
Ted Kremenek
2009-03-28
rename some methods.
Chris Lattner
2009-01-30
Fix horrible non-termination bug in LiveVariables. The issue was that
Ted Kremenek
2009-01-27
Introduce a new PresumedLoc class to represent the concept of a location
Chris Lattner
2009-01-16
Change some terminology in SourceLocation: instead of referring to
Chris Lattner
2008-12-09
Fixed LiveVariables bug where we didn't consider block-level expressions that...
Ted Kremenek
2008-11-14
Minor tweaks to liveness analysis:
Ted Kremenek
2008-11-14
Handle the case where 'element' in ObjCforCollectionstmt is not a DeclStmt or...
Ted Kremenek
2008-11-14
Rename header file.
Ted Kremenek
2008-11-13
Fix uninitialized variable.
Ted Kremenek
2008-11-12
Update CFGStmtVisitor to recognize that ObjCForCollectionStmts are special bl...
Ted Kremenek
2008-11-12
Use Stmt* instead of Expr* for block-level expression.
Ted Kremenek
2008-11-11
Accesses to a collection within a fast enumeration 'for' statement constitute...
Ted Kremenek
2008-11-11
Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr...
Sebastian Redl
2008-11-11
Add transfer function support for ObjCForCollectionStmt to LiveVariables.
Ted Kremenek
2008-10-21
Cosmetic patch from João Paulo Rechi Vita
Douglas Gregor
2008-09-26
Move VLA processing logic from LiveVariables to CFG construction. This way a...
Ted Kremenek
2008-09-26
Examine VLA size expressions when computing liveness information.
Ted Kremenek
2008-08-05
Added decl_iterator to DeclStmt to provide an abstract interface to iterate o...
Ted Kremenek
2008-07-03
Fix a bug in the dead stores checker reported in the following email:
Ted Kremenek
2008-06-17
Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl.
Chris Lattner
2008-04-16
Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a ...
Ted Kremenek
2008-04-16
LiveVariables now updates the liveness state of block-level expressions that
Ted Kremenek
2008-04-15
Fix bug in terminator processing for uninitialized-values: simply ignore the ...
Ted Kremenek
2008-04-15
Added initial support into the flow-sensitive dataflow solver to visit the Bl...
Ted Kremenek
2008-04-15
++/-- makes a variable live since it is used; thus the liveness state is
Ted Kremenek
2008-04-15
Bug fix in LiveVariables: Operators ++/-- may kill a value, but the variable
Ted Kremenek
2008-03-20
LiveVariables analysis now uses intersect for the merge of block-level expres...
Ted Kremenek
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner