index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Analysis
/
outofbound.c
Age
Commit message (
Expand
)
Author
2011-08-23
Fix regression in -Wuninitialized involving VLAs. It turns out that we were ...
Ted Kremenek
2011-08-06
[analyzer] add more buffer overflow tests to show we handle sizeof(VLA) in ob...
Ted Kremenek
2011-08-03
[analyzer] rename all experimental checker packages to have 'experimental' be...
Ted Kremenek
2011-03-24
Rework checker "packages" and groups to be more hierarchical.
Ted Kremenek
2011-02-28
[analyzer] Remove '-analyzer-check-objc-mem' flag, the nominee for best misno...
Argyrios Kyrtzidis
2011-02-28
[analyzer] Migrate BuiltinFunctionChecker to CheckerV2.
Argyrios Kyrtzidis
2011-02-28
[analyzer] Remove '-analyzer-experimental-checks' flag.
Argyrios Kyrtzidis
2011-02-24
[analyzer] Remove '-analyzer-experimental-internal-checks' flag, it doesn't h...
Argyrios Kyrtzidis
2011-02-24
[analyzer] Migrate ArrayBoundChecker to CheckerV2.
Argyrios Kyrtzidis
2011-02-17
Enhance the array bounds checking to work for several other constructs,
Chandler Carruth
2010-08-16
- Allow making ElementRegions with complex offsets (expressions or symbols) f...
Jordy Rose
2010-08-14
Add a test for alloca region extents.
Jordy Rose
2010-07-05
Support sizeof for VLA expressions (sizeof(someVLA)). sizeof(int[n]) still un...
Jordy Rose
2010-07-05
Track extents for VLAs.
Jordy Rose
2010-07-04
Add a new symbol type, SymbolExtent, to represent the extents of memory regio...
Jordy Rose
2010-06-25
When a constant size array is casted to another type, its length should be sc...
Jordy Rose
2010-06-01
Add support for calloc() in MallocChecker. Patch by Jordy Rose, with my
Zhongxing Xu
2010-04-01
Use the element type to compute the array size when the base region is a VarR...
Zhongxing Xu
2010-02-05
Rename -cc1 option '-checker-cfref' to '-analyzer-check-objc-mem'.
Ted Kremenek
2010-01-18
Add support for computing size in elements for symbolic regions obtained from
Zhongxing Xu
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-12-14
Replace clang-cc with clang -cc1.
Zhongxing Xu
2009-11-13
Add clang-cc option "--analyzer-experimental-internal-checks". This
Ted Kremenek
2009-11-11
Reimplement out-of-bound array access checker with the new checker interface.
Zhongxing Xu
2009-11-03
Switch XFAIL format to match LLVM.
Daniel Dunbar
2009-08-01
Temporarily disable out-of-bounds checking. The current checking logic will ...
Ted Kremenek
2009-06-26
Introduce a new concept to the static analyzer: SValuator.
Ted Kremenek
2009-03-24
Rename clang to clang-cc.
Daniel Dunbar
2009-02-17
Static Analyzer driver/options (partial) cleanup:
Ted Kremenek
2009-01-22
Test more array logic in outofbound.c
Ted Kremenek
2009-01-22
Fix RegionStore::getLValueElement() to handle the case when the base region i...
Ted Kremenek
2009-01-20
Add -analyze action to run static analyzer, instead of inferring from
Daniel Dunbar
2009-01-13
This test now passes.
Ted Kremenek
2008-12-13
Temporarily XFAIL these tests.
Ted Kremenek
2008-11-24
Strings are NULL terminated. So the region size should plus one.
Zhongxing Xu
2008-11-24
Add test case for out-of-bound memory access checking.
Zhongxing Xu