index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Analysis
/
LiveVariables.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add alternate version of LiveVariables analysis that does not kill liveness a...
Tom Care
2010-08-27
1
-6
/
+8
*
GCC didn't care for my attempt at API compatibility, so brute-force everything
John McCall
2010-08-25
1
-5
/
+5
*
Assignments to reference variables shouldn't kill the variable.
Jordy Rose
2010-06-04
1
-9
/
+13
*
Fix an algorithmic bug in LiveVariables pointed out by Zhongxing.
Ted Kremenek
2010-03-03
1
-6
/
+9
*
Register all parameters even if they didn't occur in the function body.
Zhongxing Xu
2010-03-02
1
-0
/
+6
*
Split libAnalysis into two libraries: libAnalysis and libChecker.
Ted Kremenek
2010-01-25
1
-1
/
+1
*
Simplify code by using an equivalent template class.
Zhongxing Xu
2009-12-30
1
-11
/
+2
*
Enhance dataflow analyses to recognize branch statements in the CFG used as h...
Ted Kremenek
2009-12-24
1
-1
/
+13
*
lib/Analysis: Remove VISIBILITY_HIDDEN from definitions in anonymous namespace
Kovarththanan Rajaratnam
2009-11-28
1
-3
/
+2
*
Enhance LiveVariables to understand that blocks can extend the liveness of a ...
Ted Kremenek
2009-11-26
1
-3
/
+17
*
Fix clang's use of DenseMap iterators after r86636 fixed their constness.
Jeffrey Yasskin
2009-11-10
1
-1
/
+1
*
Use SaveAndRestore to simplify logic in LiveVariables::runOnAllBlocks(). Pat...
Ted Kremenek
2009-11-07
1
-3
/
+3
*
add some const qualifiers, patch by Kovarththanan Rajaratnam!
Chris Lattner
2009-11-06
1
-2
/
+2
*
PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients
Daniel Dunbar
2009-10-18
1
-1
/
+1
*
Use raw_ostream instead of C stdio.
Daniel Dunbar
2009-10-17
1
-9
/
+6
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-60
/
+60
*
Move the source-level CFG from libAST to libAnalysis.
Ted Kremenek
2009-07-16
1
-1
/
+1
*
Instead of r74522, use another approach to fix xfail_regionstore_wine_crash.c.
Zhongxing Xu
2009-06-30
1
-1
/
+0
*
Block level expr should be visited. Otherwise variables in init expr of
Zhongxing Xu
2009-06-30
1
-1
/
+3
*
Remove hack from LiveVariables analysis where variables whose address are taken
Ted Kremenek
2009-04-07
1
-18
/
+0
*
rename some methods.
Chris Lattner
2009-03-28
1
-1
/
+1
*
Fix horrible non-termination bug in LiveVariables. The issue was that
Ted Kremenek
2009-01-30
1
-2
/
+2
*
Introduce a new PresumedLoc class to represent the concept of a location
Chris Lattner
2009-01-27
1
-7
/
+3
*
Change some terminology in SourceLocation: instead of referring to
Chris Lattner
2009-01-16
1
-4
/
+4
*
Fixed LiveVariables bug where we didn't consider block-level expressions that...
Ted Kremenek
2008-12-09
1
-2
/
+12
*
Minor tweaks to liveness analysis:
Ted Kremenek
2008-11-14
1
-0
/
+7
*
Handle the case where 'element' in ObjCforCollectionstmt is not a DeclStmt or...
Ted Kremenek
2008-11-14
1
-5
/
+8
*
Rename header file.
Ted Kremenek
2008-11-14
1
-2
/
+2
*
Fix uninitialized variable.
Ted Kremenek
2008-11-13
1
-1
/
+1
*
Update CFGStmtVisitor to recognize that ObjCForCollectionStmts are special bl...
Ted Kremenek
2008-11-12
1
-2
/
+4
*
Use Stmt* instead of Expr* for block-level expression.
Ted Kremenek
2008-11-12
1
-1
/
+1
*
Accesses to a collection within a fast enumeration 'for' statement constitute...
Ted Kremenek
2008-11-11
1
-9
/
+15
*
Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr...
Sebastian Redl
2008-11-11
1
-1
/
+0
*
Add transfer function support for ObjCForCollectionStmt to LiveVariables.
Ted Kremenek
2008-11-11
1
-1
/
+17
*
Cosmetic patch from João Paulo Rechi Vita
Douglas Gregor
2008-10-21
1
-1
/
+0
*
Move VLA processing logic from LiveVariables to CFG construction. This way a...
Ted Kremenek
2008-09-26
1
-20
/
+0
*
Examine VLA size expressions when computing liveness information.
Ted Kremenek
2008-09-26
1
-4
/
+26
*
Added decl_iterator to DeclStmt to provide an abstract interface to iterate o...
Ted Kremenek
2008-08-05
1
-2
/
+3
*
Fix a bug in the dead stores checker reported in the following email:
Ted Kremenek
2008-07-03
1
-3
/
+11
*
Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl.
Chris Lattner
2008-06-17
1
-0
/
+5
*
Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a ...
Ted Kremenek
2008-04-16
1
-48
/
+5
*
LiveVariables now updates the liveness state of block-level expressions that
Ted Kremenek
2008-04-16
1
-12
/
+49
*
Fix bug in terminator processing for uninitialized-values: simply ignore the ...
Ted Kremenek
2008-04-15
1
-7
/
+64
*
Added initial support into the flow-sensitive dataflow solver to visit the Bl...
Ted Kremenek
2008-04-15
1
-1
/
+19
*
++/-- makes a variable live since it is used; thus the liveness state is
Ted Kremenek
2008-04-15
1
-3
/
+3
*
Bug fix in LiveVariables: Operators ++/-- may kill a value, but the variable
Ted Kremenek
2008-04-15
1
-6
/
+5
*
LiveVariables analysis now uses intersect for the merge of block-level expres...
Ted Kremenek
2008-03-20
1
-2
/
+11
*
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner
2008-03-15
1
-0
/
+246