index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
clang
/
Analysis
/
LocalCheckers.h
Age
Commit message (
Expand
)
Author
2010-01-25
Split libAnalysis into two libraries: libAnalysis and libChecker.
Ted Kremenek
2009-12-23
Migrate the call inliner to the Checker interface.
Zhongxing Xu
2009-11-13
Add clang-cc option "--analyzer-experimental-internal-checks". This
Ted Kremenek
2009-11-13
Add clang-cc option "-analyzer-experimental-checks" to enable experimental pa...
Ted Kremenek
2009-11-08
Add a checker for CWE-467: Use of sizeof() on a Pointer Type.
Zhongxing Xu
2009-09-10
Make AnalysisManager stateless. Now other analyzer components only depends on
Zhongxing Xu
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-08-21
Remove 'AnalysisContext::setDecl()', as we the Decl associated with an
Ted Kremenek
2009-08-21
Tie the local check NSErrorCheck to a Decl to pave the way
Zhongxing Xu
2009-07-23
Add initial implementation of checking for uses of floating point as a loop c...
Ted Kremenek
2009-06-26
Introduce a new concept to the static analyzer: SValuator.
Ted Kremenek
2008-09-18
Change implementation of NSError** coding-style check to be invoked at the en...
Ted Kremenek
2008-09-18
Implemented one of the checks requested in PR 2600:
Ted Kremenek
2008-07-23
Add prototype implementation of unused ivar check.
Ted Kremenek
2008-07-22
Moved registration of basic path-sensitive checks from GRSimpleVals.cpp to GR...
Ted Kremenek
2008-07-11
Add new check: -check-objc-methodsigs. This check scans methods in
Ted Kremenek
2008-07-03
For the -dealloc checker, check the LangOptions to determine whether or not t...
Ted Kremenek
2008-07-03
Added static analysis check to see if a subclass of NSObject implements -deal...
Ted Kremenek
2008-07-02
Unify the code path for the Dead Stores checker to always use the BugReporter...
Ted Kremenek
2008-07-02
Added version of CheckDeadStores that accepts a client-provided LiveVariables...
Ted Kremenek
2008-06-20
Modified the dead stores checker to...
Ted Kremenek
2008-05-02
When running the reference count checker twice (GC and non-GC mode), only emit
Ted Kremenek
2008-04-30
added preliminary diagnostics in scan-build results to denote whether
Ted Kremenek
2008-04-29
Provide the option to run the CF-retain checker in GC enabled mode.
Ted Kremenek
2008-04-14
Hooked up the dead-store checker to the BugReporter interface. Now dead-store
Ted Kremenek
2008-04-10
Fix some bonehead bugs in summary generation in CFRefCount.
Ted Kremenek
2008-04-10
Refactored all logic to run the GRSimpleVals and CFRef checker into a common
Ted Kremenek
2008-03-31
Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed
Ted Kremenek
2008-03-14
Path-sensitive analyses no longer take a FunctionDecl, but any Decl representing
Ted Kremenek
2008-03-13
The LiveVariables analysis no longer requires a FunctionDecl&; this allows it
Ted Kremenek
2008-03-06
Added boilerplate to execute the CF reference count checker (which isn't yet ...
Ted Kremenek
2008-01-29
Modified LiveVariables to perform all of its base initialization in the ctor,
Ted Kremenek
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-09-28
Fixed several bugs in the propagation of "uninitialized value"
Ted Kremenek
2007-09-25
Further refactored DataflowSolver. Now most code for the solver is shared
Ted Kremenek
2007-09-17
More progress on UnitializedValues checker. We now have preliminary support
Ted Kremenek
2007-09-15
switch the various CFG-based stuff over to using ASTConsumer interface,
Chris Lattner
2007-09-06
Forgot to check in the actual "dead stores" checker in the last commit!
Ted Kremenek