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
/
GRExprEngine.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
In GRExprEngine treat @throw as an 'abort' that ends the current path. This ...
Ted Kremenek
2008-12-09
1
-0
/
+9
*
[static analyzer] Extend VLA size checking to look for undefined sizes.
Ted Kremenek
2008-12-09
1
-2
/
+10
*
Add checking for zero-sized VLAs.
Ted Kremenek
2008-12-08
1
-2
/
+28
*
Add bandaid transfer function support for assignments involving ObjCKVCRefExpr.
Ted Kremenek
2008-12-06
1
-0
/
+7
*
Rename SymbolID to SymbolRef. This is a precursor to some overhauling of the...
Ted Kremenek
2008-12-05
1
-4
/
+4
*
Add support for initializing array with string literal.
Zhongxing Xu
2008-11-30
1
-0
/
+4
*
Code cleanup. No functional change.
Zhongxing Xu
2008-11-28
1
-3
/
+5
*
Add support for pluggable components of static analyzer.
Zhongxing Xu
2008-11-27
1
-3
/
+3
*
Remove FIXME comment.
Ted Kremenek
2008-11-24
1
-1
/
+0
*
Add support for AllocaRegion extent with GDM.
Zhongxing Xu
2008-11-24
1
-0
/
+7
*
Cleanup code with utility method.
Zhongxing Xu
2008-11-24
1
-2
/
+2
*
Add out-of-bound memory access warning report code.
Zhongxing Xu
2008-11-23
1
-4
/
+17
*
Initial support for checking out of bound memory access. Only support
Zhongxing Xu
2008-11-22
1
-2
/
+7
*
- Clean up transfer function logic for 'return' statements.
Ted Kremenek
2008-11-21
1
-36
/
+26
*
Enhance modularization: return a <state,loc> pair to let GRExprEngine modify the
Zhongxing Xu
2008-11-16
1
-2
/
+6
*
Enhances SCA to process untyped region to typed region conversion.
Zhongxing Xu
2008-11-16
1
-0
/
+15
*
Reduce permissiveness of assertion.
Ted Kremenek
2008-11-15
1
-2
/
+1
*
Reverted part of r59335: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-...
Ted Kremenek
2008-11-15
1
-23
/
+37
*
Re-enable an assertion that I mistakenly removed.
Ted Kremenek
2008-11-15
1
-7
/
+1
*
Use the correct QualType when creating the '0' constant.
Ted Kremenek
2008-11-15
1
-1
/
+1
*
Implement FIXME in GRExprEngine::VisitUnaryOperator() to handle implicit conv...
Ted Kremenek
2008-11-15
1
-5
/
+11
*
Second attempt at implementation transfer function support for ObjCForCollect...
Ted Kremenek
2008-11-14
1
-35
/
+52
*
Add a new expression node, CXXOperatorCallExpr, which expresses a
Douglas Gregor
2008-11-14
1
-1
/
+2
*
Improve comments.
Zhongxing Xu
2008-11-14
1
-1
/
+1
*
- Revert r59229 and r59232: AllocRegion should be immutable.
Ted Kremenek
2008-11-13
1
-20
/
+0
*
Lift the pointer to alloca'ed region to the pointer to its first element.
Zhongxing Xu
2008-11-13
1
-1
/
+21
*
GRExprEngine/CFRefCount/GRSimpleVals: We don't do any special handling (yet) ...
Ted Kremenek
2008-11-13
1
-12
/
+18
*
GRExprEngine::VisitInitListExpr:
Ted Kremenek
2008-11-13
1
-2
/
+2
*
Shore up transfer function for ObjCForCollectionStmt.
Ted Kremenek
2008-11-12
1
-9
/
+17
*
Add (preliminary) transfer function support for ObjCForCollectionStmt. Still...
Ted Kremenek
2008-11-12
1
-5
/
+105
*
Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr...
Sebastian Redl
2008-11-11
1
-41
/
+7
*
silence a warning from gcc.
Chris Lattner
2008-11-10
1
-0
/
+1
*
Add a boilerplate for out-of-bound array checking. This has no real function ...
Zhongxing Xu
2008-11-08
1
-0
/
+22
*
Finish the implementation of VisitCompoundLiteralExpr. As VisitInitListExpr is
Zhongxing Xu
2008-11-07
1
-20
/
+14
*
Add transfer function logic for alloca().
Ted Kremenek
2008-11-02
1
-0
/
+10
*
Comment out invalid assertion. I'm leaving it in the code for now as a remin...
Ted Kremenek
2008-10-31
1
-1
/
+3
*
Fix 80-col violations.
Zhongxing Xu
2008-10-31
1
-5
/
+5
*
Add a tentative assertion.
Zhongxing Xu
2008-10-31
1
-2
/
+3
*
Fix a comment.
Zhongxing Xu
2008-10-31
1
-1
/
+1
*
Handle the case in VisitInitListExprs where there are no initializers in the ...
Ted Kremenek
2008-10-30
1
-8
/
+15
*
Use the correct predecessor node.
Ted Kremenek
2008-10-30
1
-1
/
+1
*
Add missing return statement.
Ted Kremenek
2008-10-30
1
-0
/
+2
*
Use a worklist in GRExprEngine::VisitInitListExpr to process subexpressions.
Ted Kremenek
2008-10-30
1
-26
/
+55
*
Merge the array and struct case. They are essentially the same.
Zhongxing Xu
2008-10-30
1
-7
/
+1
*
Rename:
Zhongxing Xu
2008-10-30
1
-54
/
+54
*
Implement VisitInitListExpr(). InitListExpr will have a nonloc::CompoundVal v...
Zhongxing Xu
2008-10-30
1
-0
/
+71
*
Mark yy_fatal_error as a panic function.
Ted Kremenek
2008-10-30
1
-1
/
+3
*
Rename: AddDecl => BindDecl
Zhongxing Xu
2008-10-29
1
-1
/
+1
*
Rename ExplicitCCastExpr to CStyleCastExpr
Douglas Gregor
2008-10-28
1
-1
/
+1
*
Improve our handling of (C++) references within Clang. Specifically:
Douglas Gregor
2008-10-28
1
-7
/
+28
[next]