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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add support for computing size in elements for symbolic regions obtained from
Zhongxing Xu
2010-01-18
4
-10
/
+36
*
If the symbol has not been tracked, do not free it. This is possible when free
Zhongxing Xu
2010-01-18
1
-1
/
+6
*
Don't suggest the developer use 'arc4random' instead of 'rand' when that func...
Ted Kremenek
2010-01-15
1
-3
/
+15
*
Teach BugReporter to "escape" the occurance of '%' characters in diagnostic m...
Ted Kremenek
2010-01-15
1
-2
/
+17
*
Convert a few more uses of std::string& to llvm::StringRef.
Ted Kremenek
2010-01-15
1
-1
/
+1
*
Fix pr6035.
Zhongxing Xu
2010-01-14
1
-0
/
+3
*
Add an unreachable code checker.
Mike Stump
2010-01-13
1
-0
/
+4
*
Fix pasto.
Benjamin Kramer
2010-01-11
1
-1
/
+1
*
Avoid use of deprecated functions (CStrInCStrNoCase and StringsEqualNoCase).
Benjamin Kramer
2010-01-11
1
-12
/
+13
*
Roll out ASTContext::getTypeSizeInChars(), replacing instances of
Ken Dyck
2010-01-11
3
-12
/
+16
*
Enhance ScanReachableSymbols::scan(). Now another OSAtomic test case passes.
Zhongxing Xu
2010-01-11
1
-0
/
+3
*
Enhance SVals::getAsRegion: get the region that is converted to an integer.
Zhongxing Xu
2010-01-11
1
-0
/
+4
*
Switch RegionStore over to using <BaseRegion+raw offset> to store
Ted Kremenek
2010-01-11
4
-52
/
+92
*
Preliminary reworking of value-binding logic in RegionStore:
Ted Kremenek
2010-01-11
1
-31
/
+110
*
Fix overzealous assertion in GRExprEngine::VisitLValue(). A
Ted Kremenek
2010-01-09
1
-7
/
+25
*
Fix broken diagnostic when returning the address of a stack-allocated array.
Ted Kremenek
2010-01-09
1
-3
/
+11
*
When binding an rvalue to a reference, create a temporary object. Use
Zhongxing Xu
2010-01-09
3
-6
/
+39
*
Fix handling in GRExprEngine of 'default' branch in switch statements
Ted Kremenek
2010-01-08
1
-5
/
+12
*
Revert r92318. Instead fix the analyzer: do not call
Zhongxing Xu
2010-01-05
1
-2
/
+3
*
Make static analysis support for C++ 'this' expression context-sensitive. Es...
Ted Kremenek
2010-01-05
4
-30
/
+46
*
Remove references to 'Checker' and 'GRTransferFuncs' from
Ted Kremenek
2010-01-05
5
-59
/
+48
*
Let constraint manager inform checkers that some assumption logic has happend.
Zhongxing Xu
2009-12-31
3
-9
/
+54
*
Simplify code by using an equivalent template class.
Zhongxing Xu
2009-12-30
1
-11
/
+2
*
Remove some dead variables clang-analyzer found.
Benjamin Kramer
2009-12-25
1
-2
/
+0
*
Fix typo spotted by MSVC.
Benjamin Kramer
2009-12-25
1
-2
/
+2
*
As Ted suggested, record the callsite information with the StackFrameContext.
Zhongxing Xu
2009-12-24
2
-17
/
+21
*
Enhance dataflow analyses to recognize branch statements in the CFG used as h...
Ted Kremenek
2009-12-24
1
-1
/
+13
*
Inter-procedural analysis: now we can return from the callee.
Zhongxing Xu
2009-12-24
1
-0
/
+37
*
Teach GRExprEngine to handle the initialization of the condition variable of ...
Ted Kremenek
2009-12-24
1
-0
/
+6
*
Add CFG support for the initializer of the condition variable of a ForStmt.
Ted Kremenek
2009-12-24
1
-0
/
+13
*
CFG tweak: in a WhileStmt, the condition variable initializer is evaluated ev...
Ted Kremenek
2009-12-24
1
-14
/
+13
*
Teach GRExprEngine to handle the initialization of the condition variable of ...
Ted Kremenek
2009-12-24
1
-0
/
+6
*
Add CFG support for the initializer of the condition variable of a WhileStmt.
Ted Kremenek
2009-12-24
1
-1
/
+14
*
Teach GRExprEngine to handle the initialization of the condition variable of ...
Ted Kremenek
2009-12-24
1
-7
/
+11
*
Add CFG support for the initializer of the condition variable of a SwitchStmt.
Ted Kremenek
2009-12-24
1
-2
/
+13
*
Tidy up FindSubExprAssignments to not deference the child_iterator multiple t...
Ted Kremenek
2009-12-23
1
-7
/
+10
*
move a few more symbols to .rodata/.data.rel.ro
Nuno Lopes
2009-12-23
1
-1
/
+1
*
Migrate the call inliner to the Checker interface.
Zhongxing Xu
2009-12-23
1
-29
/
+36
*
For inter-procedural analysis, predecessor node may be in another function.
Zhongxing Xu
2009-12-23
1
-3
/
+3
*
Add CFG support for the condition variable that can appear in IfStmts in C++ ...
Ted Kremenek
2009-12-23
2
-1
/
+50
*
Suppress dead store warnings involving objects initialized with CXXExprTempor...
Ted Kremenek
2009-12-23
1
-0
/
+4
*
Add stack trace pretty printing in GRExprEngine::VisitLValue().
Ted Kremenek
2009-12-23
1
-0
/
+4
*
Teach GRExprEngine::VisitLValue to ignore CXXExprWithTempories (for now).
Ted Kremenek
2009-12-23
1
-0
/
+1
*
Fix PR 5857. When casting from a symbolic region to an integer back to a poi...
Ted Kremenek
2009-12-23
1
-8
/
+9
*
Teach GRExprEngine::VisitLValue that we don't handle CXXZeroInitValueExprs yet.
Ted Kremenek
2009-12-23
1
-1
/
+2
*
Also treat the type of the subexpression as a pointer in GRExprEngine::VisitC...
Ted Kremenek
2009-12-23
1
-0
/
+1
*
Add basic support for analyzing CastExprs as lvalues.
Ted Kremenek
2009-12-23
1
-3
/
+27
*
Add transfer functions support for visiting an Objective-C message expression...
Ted Kremenek
2009-12-22
2
-42
/
+78
*
Add comments.
Zhongxing Xu
2009-12-21
1
-0
/
+1
*
Use the FunctionDecl's result type to know exactly if it returns a reference.
Zhongxing Xu
2009-12-19
1
-0
/
+10
[next]