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
*
Add EvalEndPath interface to Checker. Now we can check memory leaked at the
Zhongxing Xu
2009-11-17
1
-0
/
+5
*
Clear the dest set.
Zhongxing Xu
2009-11-17
1
-0
/
+1
*
* Do the same thing to the basicstore as in r84163.
Zhongxing Xu
2009-11-16
1
-3
/
+10
*
Remove an unused parameter.
Zhongxing Xu
2009-11-16
1
-3
/
+2
*
Move definition of GRExprEngine::ProcessEndPath() out-of-line.
Ted Kremenek
2009-11-14
1
-0
/
+7
*
Check in a new interface of Checker, which will soon be used.
Zhongxing Xu
2009-11-13
1
-1
/
+23
*
GRStateManager::CurrentStmt is not used. Remove it.
Zhongxing Xu
2009-11-13
1
-4
/
+0
*
Enhance Checker class (and GRExprEngine) to support PostVisitation for CallEx...
Ted Kremenek
2009-11-12
1
-10
/
+10
*
Remove GRExprEngine::EvalCall(). It had a single callsite in GRExprEngine, a...
Ted Kremenek
2009-11-12
1
-13
/
+10
*
Remove some stale ErrorNodes variables in GRExprEngine and the old buffer ove...
Ted Kremenek
2009-11-11
1
-0
/
+12
*
Add undefined array subscript checker.
Zhongxing Xu
2009-11-11
1
-1
/
+4
*
Remove the old out-of-bound checking code.
Zhongxing Xu
2009-11-11
1
-42
/
+0
*
Refactor DereferenceChecker to use only the new Checker API instead of
Ted Kremenek
2009-11-11
1
-80
/
+96
*
Fix clang's use of DenseMap iterators after r86636 fixed their constness.
Jeffrey Yasskin
2009-11-10
1
-1
/
+1
*
Remove stale FIXME.
Ted Kremenek
2009-11-09
1
-3
/
+0
*
Add checker for CWE-588: Attempt to Access Child of a Non-structure Pointer.
Zhongxing Xu
2009-11-09
1
-6
/
+9
*
Remove Checker::CheckType() (and instead using CheckerVisitor::PreVisitDeclSt...
Ted Kremenek
2009-11-07
1
-16
/
+5
*
static analyzer: refactor checking logic for returning the address of a stack...
Ted Kremenek
2009-11-06
1
-55
/
+29
*
Modify GRExprEngine::EvalBind() to take both a "store expression" and
Ted Kremenek
2009-11-05
1
-25
/
+18
*
Catch uses of undefined values when they are used in assignment, thus catchin...
Ted Kremenek
2009-11-04
1
-23
/
+71
*
Refactor StoreManager::BindDecl() to take a VarRegion* instead of a VarDecl*,...
Ted Kremenek
2009-11-04
1
-20
/
+23
*
Change GRTransferFuncs::RegisterChecks() to take a GRExprEngine& instead of a...
Ted Kremenek
2009-11-03
1
-1
/
+1
*
Pull VLA size checker into its own files.
Zhongxing Xu
2009-11-03
1
-36
/
+17
*
Implement: <rdar://problem/6250216> Warn against using -[NSAutoreleasePool re...
Ted Kremenek
2009-11-03
1
-6
/
+9
*
Remove GRExprEngine::CheckerVisitLocation(). It was only called in one place...
Ted Kremenek
2009-11-02
1
-18
/
+10
*
Tighten computation of ExprVal using ?: expression. No functionality change.
Ted Kremenek
2009-10-30
1
-5
/
+1
*
Make checkers run in deterministic order.
Ted Kremenek
2009-10-30
1
-9
/
+15
*
Fix PR5316: make assignment expressions can be visited as lvalue. Then we
Zhongxing Xu
2009-10-30
1
-25
/
+22
*
Handle loading of field values from LazyCompoundVals in GRExprEngine::VisitMe...
Ted Kremenek
2009-10-30
1
-6
/
+19
*
Move NullDeref and UndefDeref into their own checker.
Zhongxing Xu
2009-10-29
1
-61
/
+29
*
[llvm up]
Douglas Gregor
2009-10-29
1
-62
/
+25
*
'error' is usually used as a noreturn function. This can suppress some false
Zhongxing Xu
2009-10-26
1
-11
/
+4
*
Eliminate QualifiedDeclRefExpr, which captured the notion of a
Douglas Gregor
2009-10-23
1
-2
/
+0
*
Simplify some code. No functionality change.
Zhongxing Xu
2009-10-21
1
-55
/
+43
*
PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients
Daniel Dunbar
2009-10-18
1
-1
/
+1
*
Move misc clients to IdentifierInfo StringRef API.
Daniel Dunbar
2009-10-18
1
-1
/
+1
*
Move clients to use IdentifierInfo::getNameStart() instead of getName()
Daniel Dunbar
2009-10-18
1
-3
/
+2
*
Remove dead code.
Zhongxing Xu
2009-10-14
1
-13
/
+0
*
* Remove unused GRState* parameter
Zhongxing Xu
2009-10-14
1
-3
/
+3
*
Fix: <rdar://problem/7275774> Static analyzer warns about NULL pointer when
Ted Kremenek
2009-10-06
1
-1
/
+1
*
Fix:
Ted Kremenek
2009-09-27
1
-4
/
+5
*
Fix PR 4988 by removing an invalid assertion (a function can be referenced in
Ted Kremenek
2009-09-23
1
-1
/
+1
*
Fix: <rdar://problem/7242006> [RegionStore] compound literal assignment with ...
Ted Kremenek
2009-09-22
1
-0
/
+1
*
Change all the Type::getAsFoo() methods to specializations of Type::getAs().
John McCall
2009-09-21
1
-1
/
+1
*
Remove ImplicitBadDivides/ExplicitBadDivides node sets. This checking is now...
Ted Kremenek
2009-09-16
1
-6
/
+0
*
Per feedback from Eli, recognize in the transfer function logic for
Ted Kremenek
2009-09-15
1
-6
/
+12
*
Add static analyzer transfer function support for __builtin_offsetof.
Ted Kremenek
2009-09-15
1
-3
/
+8
*
Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinID
Douglas Gregor
2009-09-12
1
-1
/
+1
*
Introduce "DefinedOrUnknownSVal" into the SVal class hierarchy, providing a way
Ted Kremenek
2009-09-11
1
-130
/
+107
*
Make AnalysisManager stateless. Now other analyzer components only depends on
Zhongxing Xu
2009-09-10
1
-12
/
+14
[next]