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
/
Analysis
/
GRExprEngine.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner
2008-03-15
1
-1941
/
+0
*
Handle StmtExprs whose last contained statement is not an expression.
Ted Kremenek
2008-03-15
1
-3
/
+11
*
Compute alignment in bytes, not bits.
Ted Kremenek
2008-03-15
1
-1
/
+1
*
Implement transfer function logic for alignof operator (types).
Ted Kremenek
2008-03-15
1
-16
/
+16
*
Added transfer function support in GRExprEngine for __extension__.
Ted Kremenek
2008-03-15
1
-0
/
+4
*
"panic" has 5 letters, not 4. Bug pointed out by Nuno Lopes!
Ted Kremenek
2008-03-14
1
-3
/
+7
*
Hack to hardwire in some panic functions that are not marked noreturn.
Ted Kremenek
2008-03-14
1
-2
/
+22
*
Emit warnings for undefined control-flow.
Ted Kremenek
2008-03-14
1
-0
/
+1
*
Changed CallRetValSymbol to SymbolConjured to allow "conjured" symbols to be ...
Ted Kremenek
2008-03-12
1
-2
/
+21
*
Improved ExplodedGraph::Trim to only show nodes reachable from a reverse BFS
Ted Kremenek
2008-03-12
1
-8
/
+34
*
Expanded graph-visualization to include optional pretty-printing of checker-s...
Ted Kremenek
2008-03-11
1
-1
/
+6
*
Expanded graph visualization interface to include specifying a range of
Ted Kremenek
2008-03-11
1
-14
/
+25
*
More edge-case handling with using liveness information to prune dead state v...
Ted Kremenek
2008-03-10
1
-0
/
+2
*
More cleanups with using the liveness analysis to removed dead symbols and
Ted Kremenek
2008-03-10
1
-40
/
+25
*
When processing the transfer function for a statement, evaluate
Ted Kremenek
2008-03-09
1
-15
/
+10
*
Refactored guards for "GRExprEngine::RemoveDeadBindings" directly into the
Ted Kremenek
2008-03-09
1
-17
/
+15
*
Bug fix in the transfer function for compound assignments: if the value
Ted Kremenek
2008-03-09
1
-13
/
+9
*
Fixed crash where SetBlkExpr would attempt to query the liveness data when
Ted Kremenek
2008-03-09
1
-1
/
+1
*
Bug fix: Don't call RemoveDeadBindings more than once (can kill newly generat...
Ted Kremenek
2008-03-09
1
-8
/
+27
*
Added --trim-path-graph to the driver to trim paths from the ExplodedGraph
Ted Kremenek
2008-03-07
1
-17
/
+44
*
Improved graph visualization of ExplodedGraphs to include source line and column
Ted Kremenek
2008-03-07
1
-4
/
+21
*
Renamed ValueManager to BasicValueFactory.
Ted Kremenek
2008-03-07
1
-11
/
+11
*
Refined divide-by-zero checking to distinguish between must and may
Ted Kremenek
2008-03-07
1
-25
/
+41
*
Added transfer function support for __builtin_expect.
Ted Kremenek
2008-03-05
1
-2
/
+15
*
Small bug fix when handling CallExprs that generate sink nodes.
Ted Kremenek
2008-03-05
1
-11
/
+2
*
Fixed bug that could case unwanted bifurcation of states when evaluating calls.
Ted Kremenek
2008-03-05
1
-19
/
+36
*
Minor cleanups (mainly indentation).
Ted Kremenek
2008-03-05
1
-14
/
+0
*
remove the source location arguments to various target query methods.
Chris Lattner
2008-03-05
1
-9
/
+5
*
Plug-in transfer function "EvalCall" now takes as an argument the current
Ted Kremenek
2008-03-05
1
-1
/
+7
*
Moved implementation of GRExprEngine::Nodify into GRStmtNodeBuilder. This will
Ted Kremenek
2008-03-04
1
-24
/
+0
*
Added preliminary transfer function support for references.
Ted Kremenek
2008-03-04
1
-3
/
+8
*
For the transfer function for CallExpr, invalidate all arguments
Ted Kremenek
2008-03-04
1
-19
/
+44
*
For the transfer function of DeclStmt, for now initialize the values of
Ted Kremenek
2008-03-04
1
-8
/
+13
*
Add transfer function support for the default initialization of static
Ted Kremenek
2008-03-04
1
-2
/
+28
*
Fixed insidious state propagation bug that would sometimes cause the state
Ted Kremenek
2008-03-04
1
-6
/
+5
*
Enhanced pretty-printing of undefined-argument errors.
Ted Kremenek
2008-03-04
1
-1
/
+1
*
Added FIXME.
Ted Kremenek
2008-03-03
1
-6
/
+14
*
Added extra check for calls to functions where we pass undefined values
Ted Kremenek
2008-02-29
1
-4
/
+24
*
Add checks for function calls via a function pointer that is NULL, Undefined,
Ted Kremenek
2008-02-29
1
-16
/
+12
*
"Refinement" of hack to bound loop-traversals: visit any block at a maximum o...
Ted Kremenek
2008-02-29
1
-42
/
+18
*
Added checking for undefined results of '<<' and '>>' (shifting by too many b...
Ted Kremenek
2008-02-28
1
-6
/
+38
*
Merged ValueState and ValueStateImpl into just ValueState, with GRExprEngine:...
Ted Kremenek
2008-02-28
1
-66
/
+65
*
Renamed "Uninitialized" -> "Undefined" in path-sensitive value tracking engine.
Ted Kremenek
2008-02-28
1
-63
/
+63
*
End paths when calling a function marked "noreturn."
Ted Kremenek
2008-02-27
1
-0
/
+15
*
Small tweaks to the transfer function for DeclStmt: do not mark external global
Ted Kremenek
2008-02-27
1
-5
/
+17
*
Small fix to VisitLVal: this method can be called on Block-Level expressions.
Ted Kremenek
2008-02-27
1
-2
/
+5
*
When analyzing a function, eagerly create symbolic values for all
Ted Kremenek
2008-02-27
1
-30
/
+25
*
Header file cleanups: reduce number of includes; move ValueState.h into inclu...
Ted Kremenek
2008-02-27
1
-2
/
+5
*
Similar bug fix to r47650; when processing CallExprs if we did not generate an
Ted Kremenek
2008-02-27
1
-0
/
+1
*
Fixed bug in the core transfer function logic for CallExprs where we would
Ted Kremenek
2008-02-27
1
-0
/
+3
[next]