forked from OSchip/llvm-project
Revert "Revert "[driver] [analyzer] Fix a backward compatibility issue after r348038.""
This reverts commit 144927939587b790c0536f4ff08245043fc8d733. Fixes the bug in the original commit. llvm-svn: 349863
This commit is contained in:
parent
212bbfad25
commit
6d45b1f3b0
|
@ -2360,9 +2360,6 @@ static void RenderAnalyzerOptions(const ArgList &Args, ArgStringList &CmdArgs,
|
||||||
// Treat blocks as analysis entry points.
|
// Treat blocks as analysis entry points.
|
||||||
CmdArgs.push_back("-analyzer-opt-analyze-nested-blocks");
|
CmdArgs.push_back("-analyzer-opt-analyze-nested-blocks");
|
||||||
|
|
||||||
// Enable compatilibily mode to avoid analyzer-config related errors.
|
|
||||||
CmdArgs.push_back("-analyzer-config-compatibility-mode=true");
|
|
||||||
|
|
||||||
// Add default argument set.
|
// Add default argument set.
|
||||||
if (!Args.hasArg(options::OPT__analyzer_no_default_checks)) {
|
if (!Args.hasArg(options::OPT__analyzer_no_default_checks)) {
|
||||||
CmdArgs.push_back("-analyzer-checker=core");
|
CmdArgs.push_back("-analyzer-checker=core");
|
||||||
|
@ -3738,6 +3735,13 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
|
||||||
if (isa<AnalyzeJobAction>(JA))
|
if (isa<AnalyzeJobAction>(JA))
|
||||||
RenderAnalyzerOptions(Args, CmdArgs, Triple, Input);
|
RenderAnalyzerOptions(Args, CmdArgs, Triple, Input);
|
||||||
|
|
||||||
|
// Enable compatilibily mode to avoid analyzer-config related errors.
|
||||||
|
// Since we can't access frontend flags through hasArg, let's manually iterate
|
||||||
|
// through them.
|
||||||
|
for (auto Arg : Args.filtered(options::OPT_Xclang))
|
||||||
|
if (StringRef(Arg->getValue()) == "-analyzer-config")
|
||||||
|
CmdArgs.push_back("-analyzer-config-compatibility-mode=true");
|
||||||
|
|
||||||
CheckCodeGenerationOptions(D, Args);
|
CheckCodeGenerationOptions(D, Args);
|
||||||
|
|
||||||
unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args);
|
unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args);
|
||||||
|
|
|
@ -0,0 +1,80 @@
|
||||||
|
// Same as invalid-analyzer-config-value.c but without -analyzer-config
|
||||||
|
// in the file name, so that argument string pattern matching
|
||||||
|
// didn't accidentally match it.
|
||||||
|
|
||||||
|
// RUN: not %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config notes-as-events=yesplease \
|
||||||
|
// RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-BOOL-INPUT
|
||||||
|
|
||||||
|
// CHECK-BOOL-INPUT: (frontend): invalid input for analyzer-config option
|
||||||
|
// CHECK-BOOL-INPUT-SAME: 'notes-as-events', that expects a boolean value
|
||||||
|
|
||||||
|
// RUN: %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config-compatibility-mode=true \
|
||||||
|
// RUN: -analyzer-config notes-as-events=yesplease
|
||||||
|
|
||||||
|
|
||||||
|
// RUN: not %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config max-inlinable-size=400km/h \
|
||||||
|
// RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-UINT-INPUT
|
||||||
|
|
||||||
|
// CHECK-UINT-INPUT: (frontend): invalid input for analyzer-config option
|
||||||
|
// CHECK-UINT-INPUT-SAME: 'max-inlinable-size', that expects an unsigned
|
||||||
|
// CHECK-UINT-INPUT-SAME: value
|
||||||
|
|
||||||
|
// RUN: %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config-compatibility-mode=true \
|
||||||
|
// RUN: -analyzer-config max-inlinable-size=400km/h
|
||||||
|
|
||||||
|
|
||||||
|
// RUN: not %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config ctu-dir=0123012301230123 \
|
||||||
|
// RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-FILENAME-INPUT
|
||||||
|
|
||||||
|
// CHECK-FILENAME-INPUT: (frontend): invalid input for analyzer-config option
|
||||||
|
// CHECK-FILENAME-INPUT-SAME: 'ctu-dir', that expects a filename
|
||||||
|
// CHECK-FILENAME-INPUT-SAME: value
|
||||||
|
|
||||||
|
// RUN: %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config-compatibility-mode=true \
|
||||||
|
// RUN: -analyzer-config ctu-dir=0123012301230123
|
||||||
|
|
||||||
|
|
||||||
|
// RUN: not %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config no-false-positives=true \
|
||||||
|
// RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-UNKNOWN-CFG
|
||||||
|
|
||||||
|
// CHECK-UNKNOWN-CFG: (frontend): unknown analyzer-config 'no-false-positives'
|
||||||
|
|
||||||
|
// RUN: %clang_analyze_cc1 -verify %s \
|
||||||
|
// RUN: -analyzer-checker=core \
|
||||||
|
// RUN: -analyzer-config-compatibility-mode=true \
|
||||||
|
// RUN: -analyzer-config no-false-positives=true
|
||||||
|
|
||||||
|
|
||||||
|
// Test the driver properly using "analyzer-config-compatibility-mode=true",
|
||||||
|
// no longer causing an error on input error.
|
||||||
|
// RUN: %clang --analyze %s
|
||||||
|
|
||||||
|
// RUN: not %clang --analyze %s \
|
||||||
|
// RUN: -Xclang -analyzer-config -Xclang no-false-positives=true \
|
||||||
|
// RUN: -Xclang -analyzer-config-compatibility-mode=false \
|
||||||
|
// RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-NO-COMPAT
|
||||||
|
|
||||||
|
// CHECK-NO-COMPAT: error: unknown analyzer-config 'no-false-positives'
|
||||||
|
|
||||||
|
// Test the driver properly using "analyzer-config-compatibility-mode=true",
|
||||||
|
// even if -analyze isn't specified.
|
||||||
|
// RUN: %clang -fsyntax-only -Xclang -analyzer-config\
|
||||||
|
// RUN: -Xclang remember=TheVasa %s
|
||||||
|
|
||||||
|
// expected-no-diagnostics
|
||||||
|
|
||||||
|
int main() {}
|
|
@ -66,6 +66,11 @@
|
||||||
|
|
||||||
// CHECK-NO-COMPAT: error: unknown analyzer-config 'no-false-positives'
|
// CHECK-NO-COMPAT: error: unknown analyzer-config 'no-false-positives'
|
||||||
|
|
||||||
|
// Test the driver properly using "analyzer-config-compatibility-mode=true",
|
||||||
|
// even if -analyze isn't specified.
|
||||||
|
// RUN: %clang -fsyntax-only -Xclang -analyzer-config\
|
||||||
|
// RUN: -Xclang remember=TheVasa %s
|
||||||
|
|
||||||
// expected-no-diagnostics
|
// expected-no-diagnostics
|
||||||
|
|
||||||
int main() {}
|
int main() {}
|
||||||
|
|
Loading…
Reference in New Issue