| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Move all analyzer options logic to AnalysisConsumer.cpp.
- Unified specification of stores/constraints/output to be:
-analyzer-output=...
-analyzer-store=...
-analyzer-constraints=...
instead of -analyzer-range-constraints, -analyzer-store-basic, etc.
- Updated drivers (ccc-analyzer, scan-builds, new ccc) to obey this new
interface
- Updated test cases to conform to new driver options
llvm-svn: 64737
|
|
|
|
|
|
| |
analyzer should output 'ANALYZE:' messages to display its progress on a source file.
llvm-svn: 62875
|
|
|
|
|
|
| |
contains no error reports.
llvm-svn: 62871
|
|
|
|
|
|
| |
Fix Plist output.
llvm-svn: 58652
|
|
|
|
| |
llvm-svn: 58056
|
|
|
|
|
|
| |
quality).
llvm-svn: 55442
|
|
|
|
|
|
| |
declarations (bodies) or Objective-C @implementation blocks.
llvm-svn: 53584
|
|
|
|
|
|
|
|
|
|
|
|
| |
clang.cpp now #include these definitions to create the command line options, and
AnalysisConsumer #includes this file to generate the switch statement to create
actions.
Renamed -check-objc-methodsigs to -warn-objc-methodsigs.
The "missing -dealloc" check is now optional: -warn-objc-missing-dealloc
llvm-svn: 53575
|
|
|
|
|
|
|
|
|
| |
ObjCImplementationDecls and sees if a ancestor class defines a method with the
same selector but with a different type signature. Right now it just compares
return types, and mainly looks at differences in primitive values. The checking
will be expanded in the future.
llvm-svn: 53482
|
|
|
|
|
|
| |
Renamed -dump-cfg to -cfg-dump, and -view-cfg to -cfg-view. This naming better matches the same options for asts (e.g. -ast-dump).
llvm-svn: 53041
|
|
|
|
| |
llvm-svn: 53039
|
|
|
|
| |
llvm-svn: 53028
|
|
|
|
|
|
| |
new AnalysisConsumer interface.
llvm-svn: 53002
|
|
analyses. This potentially is the primordial origins of a Clang-equivalent
"PassManager".
The new AnalysisConsumer interface allows multiple analyses to be run from a
single invocation of Clang.
Migrated the logic of "-warn-dead-stores" and "-warn-uninit-values" to use the
new AnalysisConsumer interface. The new interface results in a significant code
reduction to incorporate an analysis into the Driver.
Updated a test case to (correctly) acknowledge that it contains a dead store
(this check wasn't being performed because it was previously masked by
-warn-uninit-values).
llvm-svn: 52996
|