|
18 | 18 | import cpp
|
19 | 19 | import codingstandards.cpp.autosar
|
20 | 20 |
|
| 21 | +predicate hasResponseFileArgument(Compilation c) { c.getAnArgument().matches("@%") } |
| 22 | + |
21 | 23 | class CompilationWithNoWarnings extends Compilation {
|
22 | 24 | CompilationWithNoWarnings() {
|
23 |
| - getAnArgument() = "-w" or |
24 |
| - not getAnArgument().regexpMatch("-W[\\w=-]+") |
| 25 | + getAnArgument() = "-w" |
| 26 | + or |
| 27 | + not exists(EnableWarningFlag enableFlag | |
| 28 | + this.getAnArgument() = enableFlag and |
| 29 | + not exists(DisableWarningFlag disableFlag | |
| 30 | + this.getAnArgument() = disableFlag and |
| 31 | + enableFlag.getWarningType() = disableFlag.getWarningType() |
| 32 | + ) |
| 33 | + ) |
25 | 34 | }
|
26 | 35 | }
|
27 | 36 |
|
28 |
| -predicate hasResponseFileArgument(Compilation c) { c.getAnArgument().matches("@%") } |
| 37 | +class CompilationArgument extends string { |
| 38 | + Compilation compilation; |
| 39 | + |
| 40 | + CompilationArgument() { this = compilation.getAnArgument() } |
| 41 | +} |
| 42 | + |
| 43 | +/** |
| 44 | + * Compiler flags of type -Wfoo or -Wfoo=bar, which enables the `foo` warning. |
| 45 | + */ |
| 46 | +class EnableWarningFlag extends CompilationArgument { |
| 47 | + string warningType; |
| 48 | + |
| 49 | + EnableWarningFlag() { |
| 50 | + warningType = regexpCapture("^-W([\\w-]+)(=.*)?$", 1) and |
| 51 | + not this instanceof DisableWarningFlag |
| 52 | + } |
| 53 | + |
| 54 | + string getWarningType() { result = warningType } |
| 55 | +} |
| 56 | + |
| 57 | +/** |
| 58 | + * Compiler flags of type -Wno-foo or -Wfoo=0, which disables the `foo` warning |
| 59 | + * and overrules -Wfoo. |
| 60 | + */ |
| 61 | +class DisableWarningFlag extends CompilationArgument { |
| 62 | + string warningType; |
| 63 | + |
| 64 | + DisableWarningFlag() { |
| 65 | + warningType = regexpCapture("^-Wno-([\\w-]+)", 1) or |
| 66 | + warningType = regexpCapture("^-W([\\w-]+)=0", 1) |
| 67 | + } |
| 68 | + |
| 69 | + string getWarningType() { result = warningType } |
| 70 | +} |
29 | 71 |
|
30 | 72 | from File f
|
31 | 73 | where
|
|
0 commit comments