Skip to content

Commit c1a1515

Browse files
authored
Merge pull request #4 from jkorous-apple/apple/stable/20190619
Apple/stable/20190619
2 parents 616335e + b1fa060 commit c1a1515

File tree

10 files changed

+48
-9
lines changed

10 files changed

+48
-9
lines changed

clang-tools-extra/clang-tidy/ClangTidy.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "clang/Frontend/TextDiagnosticPrinter.h"
3434
#include "clang/Lex/PPCallbacks.h"
3535
#include "clang/Lex/Preprocessor.h"
36+
#include "clang/Lex/PreprocessorOptions.h"
3637
#include "clang/Rewrite/Frontend/FixItRewriter.h"
3738
#include "clang/Rewrite/Frontend/FrontendActions.h"
3839
#include "clang/Tooling/Core/Diagnostic.h"
@@ -536,10 +537,8 @@ runClangTidy(clang::tidy::ClangTidyContext &Context,
536537
FileManager *Files,
537538
std::shared_ptr<PCHContainerOperations> PCHContainerOps,
538539
DiagnosticConsumer *DiagConsumer) override {
539-
// Explicitly set ProgramAction to RunAnalysis to make the preprocessor
540-
// define __clang_analyzer__ macro. The frontend analyzer action will not
541-
// be called here.
542-
Invocation->getFrontendOpts().ProgramAction = frontend::RunAnalysis;
540+
// Explicitly ask to define __clang_analyzer__ macro.
541+
Invocation->getPreprocessorOpts().SetUpStaticAnalyzer = true;
543542
return FrontendActionFactory::runInvocation(
544543
Invocation, Files, PCHContainerOps, DiagConsumer);
545544
}

clang/include/clang/Driver/CC1Options.td

+2
Original file line numberDiff line numberDiff line change
@@ -853,6 +853,8 @@ def preamble_bytes_EQ : Joined<["-"], "preamble-bytes=">,
853853
"covering the first N bytes of the main file">;
854854
def detailed_preprocessing_record : Flag<["-"], "detailed-preprocessing-record">,
855855
HelpText<"include a detailed record of preprocessing actions">;
856+
def setup_static_analyzer : Flag<["-"], "setup-static-analyzer">,
857+
HelpText<"Set up preprocessor for static analyzer (done automatically when static analyzer is run).">;
856858

857859
//===----------------------------------------------------------------------===//
858860
// OpenCL Options

clang/include/clang/Lex/PreprocessorOptions.h

+3
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@ class PreprocessorOptions {
178178
ExcludedPreprocessorDirectiveSkipMapping
179179
*ExcludedConditionalDirectiveSkipMappings = nullptr;
180180

181+
/// Set up preprocessor for RunAnalysis action.
182+
bool SetUpStaticAnalyzer = false;
183+
181184
public:
182185
PreprocessorOptions() : PrecompiledPreambleBytes(0, false) {}
183186

clang/lib/Driver/ToolChains/Clang.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -3856,6 +3856,10 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
38563856
if (isa<AnalyzeJobAction>(JA))
38573857
RenderAnalyzerOptions(Args, CmdArgs, Triple, Input);
38583858

3859+
if (isa<AnalyzeJobAction>(JA) ||
3860+
(isa<PreprocessJobAction>(JA) && Args.hasArg(options::OPT__analyze)))
3861+
CmdArgs.push_back("-setup-static-analyzer");
3862+
38593863
// Enable compatilibily mode to avoid analyzer-config related errors.
38603864
// Since we can't access frontend flags through hasArg, let's manually iterate
38613865
// through them.

clang/lib/Frontend/CompilerInvocation.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -3273,6 +3273,8 @@ static void ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args,
32733273
// "editor placeholder in source file" error in PP only mode.
32743274
if (isStrictlyPreprocessorAction(Action))
32753275
Opts.LexEditorPlaceholders = false;
3276+
3277+
Opts.SetUpStaticAnalyzer = Args.hasArg(OPT_setup_static_analyzer);
32763278
}
32773279

32783280
static void ParsePreprocessorOutputArgs(PreprocessorOutputOptions &Opts,

clang/lib/Frontend/InitPreprocessor.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,7 @@ static void InitializeCPlusPlusFeatureTestMacros(const LangOptions &LangOpts,
556556
static void InitializePredefinedMacros(const TargetInfo &TI,
557557
const LangOptions &LangOpts,
558558
const FrontendOptions &FEOpts,
559+
const PreprocessorOptions &PPOpts,
559560
MacroBuilder &Builder) {
560561
// Compiler version introspection macros.
561562
Builder.defineMacro("__llvm__"); // LLVM Backend
@@ -988,8 +989,7 @@ static void InitializePredefinedMacros(const TargetInfo &TI,
988989
else if (LangOpts.getStackProtector() == LangOptions::SSPReq)
989990
Builder.defineMacro("__SSP_ALL__", "3");
990991

991-
// Define a macro that exists only when using the static analyzer.
992-
if (FEOpts.ProgramAction == frontend::RunAnalysis)
992+
if (PPOpts.SetUpStaticAnalyzer)
993993
Builder.defineMacro("__clang_analyzer__");
994994

995995
if (LangOpts.FastRelaxedMath)
@@ -1113,9 +1113,10 @@ void clang::InitializePreprocessor(
11131113
// macros. This is not the right way to handle this.
11141114
if ((LangOpts.CUDA || LangOpts.OpenMPIsDevice) && PP.getAuxTargetInfo())
11151115
InitializePredefinedMacros(*PP.getAuxTargetInfo(), LangOpts, FEOpts,
1116-
Builder);
1116+
PP.getPreprocessorOpts(), Builder);
11171117

1118-
InitializePredefinedMacros(PP.getTargetInfo(), LangOpts, FEOpts, Builder);
1118+
InitializePredefinedMacros(PP.getTargetInfo(), LangOpts, FEOpts,
1119+
PP.getPreprocessorOpts(), Builder);
11191120

11201121
// Install definitions to make Objective-C++ ARC work well with various
11211122
// C++ Standard Library implementations.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// RUN: %clang_cc1 -E -setup-static-analyzer %s
2+
3+
#ifndef __clang_analyzer__
4+
#error __clang_analyzer__ not defined
5+
#endif
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"directory": "DIR",
4+
"command": "clang --analyze DIR/static-analyzer.c",
5+
"file": "DIR/static-analyzer.c"
6+
}
7+
]
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// RUN: rm -rf %t.dir
2+
// RUN: rm -rf %t-cdb.json
3+
// RUN: mkdir -p %t.dir
4+
// RUN: cp %s %t.dir/static-analyzer.c
5+
// RUN: mkdir %t.dir/Inputs
6+
// RUN: cp %S/Inputs/header.h %t.dir/Inputs/analyze_header_input.h
7+
// RUN: sed -e "s|DIR|%/t.dir|g" %S/Inputs/static-analyzer-cdb.json > %t-cdb.json
8+
//
9+
// RUN: clang-scan-deps -compilation-database %t-cdb.json -j 1 | FileCheck %s
10+
11+
#ifdef __clang_analyzer__
12+
#include "Inputs/analyze_header_input.h"
13+
#endif
14+
15+
// CHECK: analyze_header_input.h
16+

llvm/utils/lit/lit/llvm/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def use_clang(self, additional_tool_dirs=[], additional_flags=[], required=True)
404404
builtin_include_dir = self.get_clang_builtin_include_dir(self.config.clang)
405405
tool_substitutions = [
406406
ToolSubst('%clang', command=self.config.clang, extra_args=additional_flags),
407-
ToolSubst('%clang_analyze_cc1', command='%clang_cc1', extra_args=['-analyze', '%analyze']+additional_flags),
407+
ToolSubst('%clang_analyze_cc1', command='%clang_cc1', extra_args=['-analyze', '%analyze', '-setup-static-analyzer']+additional_flags),
408408
ToolSubst('%clang_cc1', command=self.config.clang, extra_args=['-cc1', '-internal-isystem', builtin_include_dir, '-nostdsysteminc']+additional_flags),
409409
ToolSubst('%clang_cpp', command=self.config.clang, extra_args=['--driver-mode=cpp']+additional_flags),
410410
ToolSubst('%clang_cl', command=self.config.clang, extra_args=['--driver-mode=cl']+additional_flags),

0 commit comments

Comments
 (0)