CodeGen options do not affect the AST, so they usually can be ignored.
The only exception to the rule is when a PCM is created with
`-gmodules`.
In that case the Clang module format is switched to object file
container and contains also serialized debug information that can be
affected by debug options. There the following approach was choosen:
1.) Split out all the debug options into a separate `DebugOptions.def`
file. The file is included by `CodeGenOptions.def`, so the change is
transparent to all existing users of `CodeGenOptions.def`.
2.) Reset all CodeGen options, but excluding affecting debug options.
3.) Conditionally reset debug options that can affect the PCM.
This fixes rdar://113135909.
59 lines
1.5 KiB
Objective-C
59 lines
1.5 KiB
Objective-C
// RUN: rm -rf %t
|
|
// RUN: split-file %s %t
|
|
// RUN: sed -e "s|DIR|%/t|g" %t/cdb1.json.template > %t/cdb1.json
|
|
|
|
// RUN: clang-scan-deps -compilation-database %t/cdb1.json -format experimental-full > %t/result1.txt
|
|
// RUN: FileCheck %s -input-file %t/result1.txt
|
|
|
|
// This tests that codegen option that do not affect the AST or generation of a module are removed.
|
|
|
|
// CHECK: "modules": [
|
|
// CHECK-NEXT: {
|
|
// CHECK: "command-line": [
|
|
// CHECK-NOT: "-flto"
|
|
// CHECK-NOT: "-fno-autolink"
|
|
// CHECK-NOT: "-mrelax-relocations=no"
|
|
// CHECK: ]
|
|
// CHECK: "name": "A"
|
|
// CHECK: }
|
|
// CHECK-NOT: "name": "A"
|
|
// CHECK: "translation-units"
|
|
|
|
//--- cdb1.json.template
|
|
[
|
|
{
|
|
"directory": "DIR",
|
|
"command": "clang -Imodules/A -fmodules -fmodules-cache-path=DIR/module-cache -fimplicit-modules -flto -fno-autolink -Xclang -mrelax-relocations=no -fsyntax-only DIR/t1.m",
|
|
"file": "DIR/t1.m"
|
|
},
|
|
{
|
|
"directory": "DIR",
|
|
"command": "clang -Imodules/A -fmodules -fmodules-cache-path=DIR/module-cache -fimplicit-modules -flto=thin -fautolink -fsyntax-only DIR/t2.m",
|
|
"file": "DIR/t2.m"
|
|
},
|
|
{
|
|
"directory": "DIR",
|
|
"command": "clang -Imodules/A -fmodules -fmodules-cache-path=DIR/module-cache -fimplicit-modules -flto=full -fsyntax-only DIR/t3.m",
|
|
"file": "DIR/t2.m"
|
|
}
|
|
]
|
|
|
|
//--- modules/A/module.modulemap
|
|
|
|
module A {
|
|
umbrella header "A.h"
|
|
}
|
|
|
|
//--- modules/A/A.h
|
|
|
|
typedef int A_t;
|
|
|
|
//--- t1.m
|
|
@import A;
|
|
|
|
//--- t2.m
|
|
@import A;
|
|
|
|
//--- t3.m
|
|
@import A;
|