]> granicus.if.org Git - clang/commitdiff
Include sanitize blacklist and other extra deps as part of scan-deps output
authorKousik Kumar <kousikk@google.com>
Thu, 17 Oct 2019 02:14:44 +0000 (02:14 +0000)
committerKousik Kumar <kousikk@google.com>
Thu, 17 Oct 2019 02:14:44 +0000 (02:14 +0000)
Summary:
Clang's -M mode includes these extra dependencies in its output and clang-scan-deps
should have equivalent behavior, so adding these extradeps to output just like
how its being done for ".d" file generation mode.

Reviewers: arphaman, dexonsmith, Bigcheese, jkorous

Subscribers: cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D69017

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@375074 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
test/ClangScanDeps/Inputs/non-header-dependency.json [new file with mode: 0644]
test/ClangScanDeps/Inputs/sanitize-blacklist.txt [new file with mode: 0644]
test/ClangScanDeps/non-header-dependency.cpp [new file with mode: 0644]

index f382c202f8c2a6e46265a64e9364681e70b22af9..70c8b5a082c061cffd25ac14c2b2c9ac405407b8 100644 (file)
@@ -36,6 +36,8 @@ public:
       llvm::sys::path::remove_dots(CanonPath, /*remove_dot_dot=*/true);
       C.handleFileDependency(*Opts, CanonPath);
     }
+    for (const auto& ExtraDep : Opts->ExtraDeps)
+      C.handleFileDependency(*Opts, ExtraDep);
   }
 
 private:
diff --git a/test/ClangScanDeps/Inputs/non-header-dependency.json b/test/ClangScanDeps/Inputs/non-header-dependency.json
new file mode 100644 (file)
index 0000000..65ffa2c
--- /dev/null
@@ -0,0 +1,7 @@
+[
+    {
+      "directory": "DIR",
+      "command": "clang -E DIR/non-header-dependency_input.cpp -fsanitize=bounds -fsanitize-blacklist=DIR/Inputs/sanitize-blacklist.txt",
+      "file": "DIR/non-header-dependency_input.cpp"
+    }
+]
diff --git a/test/ClangScanDeps/Inputs/sanitize-blacklist.txt b/test/ClangScanDeps/Inputs/sanitize-blacklist.txt
new file mode 100644 (file)
index 0000000..67375d8
--- /dev/null
@@ -0,0 +1 @@
+fun:*
diff --git a/test/ClangScanDeps/non-header-dependency.cpp b/test/ClangScanDeps/non-header-dependency.cpp
new file mode 100644 (file)
index 0000000..a438263
--- /dev/null
@@ -0,0 +1,14 @@
+// RUN: rm -rf %t.dir
+// RUN: rm -rf %t.cdb
+// RUN: mkdir -p %t.dir
+// RUN: cp %s %t.dir/non-header-dependency_input.cpp
+// RUN: mkdir %t.dir/Inputs
+// RUN: cp %S/Inputs/sanitize-blacklist.txt %t.dir/Inputs/sanitize-blacklist.txt
+// RUN: sed -e "s|DIR|%/t.dir|g" %S/Inputs/non-header-dependency.json > %t.cdb
+//
+// RUN: clang-scan-deps -compilation-database %t.cdb -j 1 | FileCheck %s
+
+#define FOO "foo"
+
+// CHECK: Inputs{{/|\\}}sanitize-blacklist.txt
+// CHECK-NEXT: non-header-dependency_input.cpp