[HeaderSearch] Fix processing #import-ed headers multiple times with modules enabled.
authorVolodymyr Sapsai <vsapsai@apple.com>
Wed, 20 May 2020 00:29:35 +0000 (17:29 -0700)
committerVolodymyr Sapsai <vsapsai@apple.com>
Fri, 21 Aug 2020 00:41:28 +0000 (17:41 -0700)
HeaderSearch was marking requested HeaderFileInfo as Resolved only based on
the presence of ExternalSource. As the result, using any module was enough
to set ExternalSource and headers unknown to this module would have
HeaderFileInfo with empty fields, including `isImport = 0`, `NumIncludes = 0`.
Such HeaderFileInfo was preserved without changes regardless of how the
header was used in other modules and caused incorrect result in
`HeaderSearch::ShouldEnterIncludeFile`.

Fix by marking HeaderFileInfo as Resolved only if ExternalSource knows
about this header.

rdar://problem/62126911

Reviewed By: bruno

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

clang/lib/Lex/HeaderSearch.cpp
clang/test/Modules/Inputs/import-once/ImportOnce.framework/Headers/ImportOnce.h [new file with mode: 0644]
clang/test/Modules/Inputs/import-once/ImportOnce.framework/Modules/module.modulemap [new file with mode: 0644]
clang/test/Modules/Inputs/import-once/IndirectImporter.framework/Headers/IndirectImporter.h [new file with mode: 0644]
clang/test/Modules/Inputs/import-once/IndirectImporter.framework/Modules/module.modulemap [new file with mode: 0644]
clang/test/Modules/Inputs/import-once/Unrelated.framework/Headers/Unrelated.h [new file with mode: 0644]
clang/test/Modules/Inputs/import-once/Unrelated.framework/Modules/module.modulemap [new file with mode: 0644]
clang/test/Modules/import-once.m [new file with mode: 0644]

index 1df28cc..3fd43e0 100644 (file)
@@ -1167,12 +1167,12 @@ HeaderFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
   HeaderFileInfo *HFI = &FileInfo[FE->getUID()];
   // FIXME: Use a generation count to check whether this is really up to date.
   if (ExternalSource && !HFI->Resolved) {
-    HFI->Resolved = true;
     auto ExternalHFI = ExternalSource->GetHeaderFileInfo(FE);
-
-    HFI = &FileInfo[FE->getUID()];
-    if (ExternalHFI.External)
-      mergeHeaderFileInfo(*HFI, ExternalHFI);
+    if (ExternalHFI.IsValid) {
+      HFI->Resolved = true;
+      if (ExternalHFI.External)
+        mergeHeaderFileInfo(*HFI, ExternalHFI);
+    }
   }
 
   HFI->IsValid = true;
@@ -1199,12 +1199,12 @@ HeaderSearch::getExistingFileInfo(const FileEntry *FE,
     if (!WantExternal && (!HFI->IsValid || HFI->External))
       return nullptr;
     if (!HFI->Resolved) {
-      HFI->Resolved = true;
       auto ExternalHFI = ExternalSource->GetHeaderFileInfo(FE);
-
-      HFI = &FileInfo[FE->getUID()];
-      if (ExternalHFI.External)
-        mergeHeaderFileInfo(*HFI, ExternalHFI);
+      if (ExternalHFI.IsValid) {
+        HFI->Resolved = true;
+        if (ExternalHFI.External)
+          mergeHeaderFileInfo(*HFI, ExternalHFI);
+      }
     }
   } else if (FE->getUID() >= FileInfo.size()) {
     return nullptr;
diff --git a/clang/test/Modules/Inputs/import-once/ImportOnce.framework/Headers/ImportOnce.h b/clang/test/Modules/Inputs/import-once/ImportOnce.framework/Headers/ImportOnce.h
new file mode 100644 (file)
index 0000000..02e3e76
--- /dev/null
@@ -0,0 +1,5 @@
+// No header guards on purpose.
+
+enum SomeSimpleEnum {
+    SomeSimpleEnumCase,
+};
diff --git a/clang/test/Modules/Inputs/import-once/ImportOnce.framework/Modules/module.modulemap b/clang/test/Modules/Inputs/import-once/ImportOnce.framework/Modules/module.modulemap
new file mode 100644 (file)
index 0000000..df12c23
--- /dev/null
@@ -0,0 +1,4 @@
+framework module ImportOnce {
+  umbrella header "ImportOnce.h"
+  export *
+}
diff --git a/clang/test/Modules/Inputs/import-once/IndirectImporter.framework/Headers/IndirectImporter.h b/clang/test/Modules/Inputs/import-once/IndirectImporter.framework/Headers/IndirectImporter.h
new file mode 100644 (file)
index 0000000..46b9896
--- /dev/null
@@ -0,0 +1,2 @@
+#import <Unrelated/Unrelated.h>
+#import <ImportOnce/ImportOnce.h>
diff --git a/clang/test/Modules/Inputs/import-once/IndirectImporter.framework/Modules/module.modulemap b/clang/test/Modules/Inputs/import-once/IndirectImporter.framework/Modules/module.modulemap
new file mode 100644 (file)
index 0000000..ab51080
--- /dev/null
@@ -0,0 +1,4 @@
+framework module IndirectImporter {
+    umbrella header "IndirectImporter.h"
+    export *
+}
diff --git a/clang/test/Modules/Inputs/import-once/Unrelated.framework/Headers/Unrelated.h b/clang/test/Modules/Inputs/import-once/Unrelated.framework/Headers/Unrelated.h
new file mode 100644 (file)
index 0000000..ee83a3d
--- /dev/null
@@ -0,0 +1 @@
+void foo(void);
diff --git a/clang/test/Modules/Inputs/import-once/Unrelated.framework/Modules/module.modulemap b/clang/test/Modules/Inputs/import-once/Unrelated.framework/Modules/module.modulemap
new file mode 100644 (file)
index 0000000..3661df1
--- /dev/null
@@ -0,0 +1,4 @@
+framework module Unrelated {
+    umbrella header "Unrelated.h"
+    export *
+}
diff --git a/clang/test/Modules/import-once.m b/clang/test/Modules/import-once.m
new file mode 100644 (file)
index 0000000..738855c
--- /dev/null
@@ -0,0 +1,15 @@
+// RUN: rm -rf %t
+// RUN: %clang_cc1 -fmodules -fmodule-name=ImportOnce -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs/import-once %s
+
+// Test #import-ed headers are processed only once, even without header guards.
+// Dependency graph is
+//
+//     Unrelated       ImportOnce
+//           ^          ^    ^
+//            \        /     |
+//       IndirectImporter    |
+//                     ^     |
+//                      \    |
+//                   import-once.m
+#import <IndirectImporter/IndirectImporter.h>
+#import <ImportOnce/ImportOnce.h>