| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
| |
and capturing its invocations.
llvm-svn: 66068
|
|
|
|
| |
llvm-svn: 65810
|
|
|
|
| |
llvm-svn: 65619
|
|
|
|
| |
llvm-svn: 65618
|
|
|
|
| |
llvm-svn: 65584
|
|
|
|
|
|
| |
default (turning it on to test how it impacts users).
llvm-svn: 65535
|
|
|
|
|
|
| |
then the directory where scan-build lives.
llvm-svn: 65483
|
|
|
|
|
|
| |
time to make it much smarter (too much noise).
llvm-svn: 65474
|
|
|
|
| |
llvm-svn: 65417
|
|
|
|
|
|
|
| |
doesn't support Altivec intrisics nor is it likely that we're currently
generating all the right #defines, etc., for those architectures.
llvm-svn: 65390
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Interface is more or less like multidelta.
- Keep in mind it won't work very well; delta is O(N^2) frequently in
practice. multidelta manages to work because it folds lines to keep
N small, but this is just working on raw tokens. However, I have a
fancy pants DAG based delta algorithm which will be the bees knees
once I get it wired to clang.
llvm-svn: 65377
|
|
|
|
| |
llvm-svn: 65368
|
|
|
|
| |
llvm-svn: 65343
|
|
|
|
| |
llvm-svn: 65335
|
|
|
|
|
|
|
| |
of sizes. Turns out we don't care very much about vector types that
don't map to the hardware.
llvm-svn: 65263
|
|
|
|
| |
llvm-svn: 65223
|
|
|
|
|
|
| |
does not exist an 'attribute_ignored_XXX.txt' file for that attribute.
llvm-svn: 65222
|
|
|
|
| |
llvm-svn: 65173
|
|
|
|
| |
llvm-svn: 65109
|
|
|
|
| |
llvm-svn: 65014
|
|
|
|
|
|
|
|
|
|
| |
- now logs which source files had "ignored attributes".
- disable-free is enabled
scan-build:
- now displays a table of ignored attributes under "Analyzer Failures".
llvm-svn: 64853
|
|
|
|
|
|
| |
catching internal consistency problems (esp. w/ reference compiler).
llvm-svn: 64847
|
|
|
|
| |
llvm-svn: 64846
|
|
|
|
| |
llvm-svn: 64740
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
| |
llvm-svn: 63875
|
|
|
|
| |
llvm-svn: 63846
|
|
|
|
|
|
| |
Patch by David Chisnall
llvm-svn: 63686
|
|
|
|
| |
llvm-svn: 63330
|
|
|
|
| |
llvm-svn: 63296
|
|
|
|
| |
llvm-svn: 63286
|
|
|
|
| |
llvm-svn: 63279
|
|
|
|
|
|
| |
shared with clang eventually.
llvm-svn: 63220
|
|
|
|
|
|
|
| |
size/alignment/offsetof based tests of types instead of calling
convention tests.
llvm-svn: 63167
|
|
|
|
| |
llvm-svn: 63095
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add the distinction between the 'bug type' and the 'bug description'
HTMLDiagnostics:
- Output the bug type field as HTML comments
scan-build:
- Use the bug type field instead of the bug description for the HTML table.
- Radar filing now automatically picks up the bug description in the title (addresses <rdar://problem/6265970>)
llvm-svn: 63084
|
|
|
|
| |
llvm-svn: 63080
|
|
|
|
| |
llvm-svn: 63024
|
|
|
|
| |
llvm-svn: 62916
|
|
|
|
|
|
| |
analyzer should output 'ANALYZE:' messages to display its progress on a source file.
llvm-svn: 62875
|
|
|
|
| |
llvm-svn: 62728
|
|
|
|
|
|
| |
plist file per translation unit that contains all of the diagnostics.
llvm-svn: 62647
|
|
|
|
|
|
| |
individual checker options.
llvm-svn: 62634
|
|
|
|
|
|
|
|
|
|
| |
- Add Darwin_X86_CC1Tool which is shared by Darwin/x86/Compile and
Darwin/x86/Preprocess tools.
- Minor bug fixes (CmpDriver exit code, -x cpp-output handling, some
linker argument translation).
llvm-svn: 62551
|
|
|
|
| |
llvm-svn: 62388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Mostly written as an entertaining exercise in enumerating large or
(countably, naturally) infinite sets. But hey, its useful too!
- Idea is to number all C-types so that the N-th type can quickly be
computed, with a good deal of flexibility about what types to
include, and taking some care so that the (N+1)-th type is
interestingly different from the N-th type. For example, using the
default generator, the 1,000,000-th function type is:
--
typedef _Complex int T0;
typedef char T1 __attribute__ ((vector_size (4)));
typedef int T2 __attribute__ ((vector_size (4)));
T2 fn1000000(T0 arg0, signed long long arg1, T1 arg2, T0 arg3);
--
and the 1,000,001-th type is:
--
typedef _Complex char T0;
typedef _Complex char T2;
typedef struct T1 { T2 field0; T2 field1; T2 field2; } T1;
typedef struct T3 { } T3;
unsigned short fn1000001(T0 arg0, T1 arg1, T3 arg2);
--
Computing the 10^1600-th type takes a little less than 1s. :)
llvm-svn: 62253
|
|
|
|
|
|
| |
(DRIVER_[AB]).
llvm-svn: 62242
|
|
|
|
|
|
| |
support -###.
llvm-svn: 62156
|
|
|
|
|
|
|
|
| |
- Little script for scanning a compile log and summarizing warnings,
errors, assertions, and crashes.
- Is very slow, and stack trace regexs probably only work on Darwin.
llvm-svn: 62013
|
|
|
|
| |
llvm-svn: 61833
|