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
/
test
/
Analysis
/
null-deref-ps.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Tweak null dereference checker to give better diagnostics for null dereferenc...
Ted Kremenek
2010-10-26
1
-3
/
+3
*
Clean up obtuse wording of checker diagnostic of using an uninitialized value...
Ted Kremenek
2010-09-09
1
-1
/
+1
*
Put the tautological-comparison-of-unsigned-against-zero warnings in
John McCall
2010-09-08
1
-1
/
+1
*
sabre points out that the timing here is pretty pessimal; I'll retry the
John McCall
2010-09-02
1
-1
/
+1
*
Experimentally move the tautological comparison warnings from -Wsign-compare
John McCall
2010-09-02
1
-1
/
+1
*
Added checking of (x == x) and (x != x) to IdempotentOperationChecker and upd...
Tom Care
2010-08-27
1
-1
/
+1
*
Enabled relaxed LiveVariables analysis in the path-sensitive engine to increa...
Tom Care
2010-08-27
1
-1
/
+20
*
Added psuedo-constant analysis and integrated it into the false positive redu...
Tom Care
2010-08-18
1
-1
/
+1
*
Improved IdempotentOperationChecker false positives and false negatives.
Tom Care
2010-08-12
1
-22
/
+2
*
Finesse 'idempotent operations' analyzer issues to include the opcode of the ...
Ted Kremenek
2010-07-27
1
-1
/
+1
*
Improved false positive rate for the idempotent operations checker and moved ...
Tom Care
2010-07-16
1
-1
/
+1
*
fix PR7280 by making the warning on code like this:
Chris Lattner
2010-07-11
1
-4
/
+4
*
If a nonnull argument evaluates to UnknownVal, don't warn (and don't crash).
Jordy Rose
2010-06-21
1
-0
/
+5
*
Improve diagnostics when we fail to convert from a source type to a
Douglas Gregor
2010-04-09
1
-2
/
+2
*
Tweak null dereference diagnostics to give clearer diagnostics when
Ted Kremenek
2010-03-23
1
-2
/
+2
*
Rename -cc1 option '-checker-cfref' to '-analyzer-check-objc-mem'.
Ted Kremenek
2010-02-05
1
-4
/
+4
*
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-12-15
1
-4
/
+4
*
Replace clang-cc with clang -cc1.
Zhongxing Xu
2009-12-14
1
-4
/
+4
*
Enhance null dereference diagnostics by indicating what variable (if any) was...
Ted Kremenek
2009-11-24
1
-4
/
+4
*
Switch -f{builtin,math-errno,rtti} and -analyzer-purge-dead to -...no... vari...
Daniel Dunbar
2009-11-19
1
-1
/
+1
*
Add clang-cc option "--analyzer-experimental-internal-checks". This
Ted Kremenek
2009-11-13
1
-4
/
+4
*
Eliminate &&s in tests.
Daniel Dunbar
2009-11-08
1
-3
/
+3
*
Remove test case's dependency on platform headers.
Ted Kremenek
2009-09-28
1
-6
/
+12
*
Add test case for PR 4759.
Ted Kremenek
2009-08-24
1
-0
/
+9
*
Remove 'StoreManager::OldCastRegion()', TypedViewRegion (which only
Ted Kremenek
2009-07-29
1
-2
/
+0
*
Prep for new warning.
Mike Stump
2009-07-22
1
-1
/
+1
*
Migrate the path-sensitive checking of 'nonnull' arguments over to the new
Ted Kremenek
2009-07-22
1
-0
/
+9
*
Prep for new warning.
Mike Stump
2009-07-21
1
-1
/
+2
*
Switch BasicStoreManager to use the new CastRegion implementation by default,
Ted Kremenek
2009-07-10
1
-2
/
+2
*
Make 'BasicStoreManager' + 'NewCastRegion' testable from the command line usi...
Ted Kremenek
2009-07-06
1
-0
/
+2
*
Introduce a new concept to the static analyzer: SValuator.
Ted Kremenek
2009-06-26
1
-4
/
+4
*
Fix false positive null dereference by unifying code paths in GRSimpleVals for
Ted Kremenek
2009-05-04
1
-3
/
+3
*
Update test case.
Ted Kremenek
2009-05-04
1
-0
/
+29
*
Add another null pointer check test case.
Ted Kremenek
2009-05-02
1
-0
/
+14
*
Warn about invalid return statements by default.
Steve Naroff
2009-04-30
1
-2
/
+2
*
Rename clang to clang-cc.
Daniel Dunbar
2009-03-24
1
-4
/
+4
*
GRExprEngine: Polish up handling of casting integer constants to pointers and...
Ted Kremenek
2009-03-05
1
-0
/
+7
*
Static Analyzer driver/options (partial) cleanup:
Ted Kremenek
2009-02-17
1
-3
/
+3
*
Test passes with -analyzer-range-contraints.
Ted Kremenek
2009-02-16
1
-0
/
+1
*
Put the region store specific test in a separate file.
Zhongxing Xu
2009-02-06
1
-9
/
+0
*
Create ElementRegion when the base is SymbolicRegion. This is like what we do
Zhongxing Xu
2009-02-06
1
-0
/
+9
*
Enhance test case to test RegionStore with -checker-cfref.
Ted Kremenek
2009-01-22
1
-1
/
+2
*
Add -analyze action to run static analyzer, instead of inferring from
Daniel Dunbar
2009-01-20
1
-2
/
+2
*
Fix analyzer crash found when scanning Wine sources where the analyzer used o...
Ted Kremenek
2009-01-17
1
-0
/
+23
*
static analyzer: Handle casts from arrays to integers. This fixes PR 3297.
Ted Kremenek
2009-01-13
1
-0
/
+21
*
Add an option to make 'RemoveDeadBindings' a configurable behavior. This enables
Zhongxing Xu
2008-12-22
1
-2
/
+2
*
Lazy bingding for region-store manager.
Zhongxing Xu
2008-12-20
1
-2
/
+2
*
Add 'expected-warning' to make test case pass.
Ted Kremenek
2008-12-04
1
-2
/
+2
*
Add another static analyzer test case involving attribute(nonnull).
Ted Kremenek
2008-12-04
1
-0
/
+5
*
Add another test case for attribute(nonnull) checking.
Ted Kremenek
2008-12-04
1
-0
/
+9
[next]