dsymutil: support dwarf version mismatches between object and clang module
authorAdrian Prantl <aprantl@apple.com>
Tue, 8 Aug 2017 18:26:12 +0000 (18:26 +0000)
committerAdrian Prantl <aprantl@apple.com>
Tue, 8 Aug 2017 18:26:12 +0000 (18:26 +0000)
This adds a missing call to maybeUpdateMaxDwarfVersion when visitng a
clang module. Failing to do so will cause a failure when emitting
DWARF 4 forms into a CU that AsmPrinter believes to be DWARF 2.

rdar://problem/33666528

llvm-svn: 310392

llvm/test/tools/dsymutil/Inputs/modules-dwarf-version/1.o [new file with mode: 0644]
llvm/test/tools/dsymutil/X86/modules-dwarf-version.m [new file with mode: 0644]
llvm/tools/dsymutil/DwarfLinker.cpp

diff --git a/llvm/test/tools/dsymutil/Inputs/modules-dwarf-version/1.o b/llvm/test/tools/dsymutil/Inputs/modules-dwarf-version/1.o
new file mode 100644 (file)
index 0000000..43bc63f
Binary files /dev/null and b/llvm/test/tools/dsymutil/Inputs/modules-dwarf-version/1.o differ
diff --git a/llvm/test/tools/dsymutil/X86/modules-dwarf-version.m b/llvm/test/tools/dsymutil/X86/modules-dwarf-version.m
new file mode 100644 (file)
index 0000000..54e6192
--- /dev/null
@@ -0,0 +1,23 @@
+/* Compile with (using the module from the modules.m teastcase):
+   clang -c -fmodules -fmodule-map-file=modules.modulemap \
+     -gdwarf-2 -gmodules -fmodules-cache-path=. \
+     -Xclang -fdisable-module-hash modules.m -o 1.o
+*/
+
+// RUN: rm -rf %t.dir
+// RUN: mkdir %t.dir
+// RUN: cp %p/../Inputs/modules/Bar.pcm %t.dir
+// RUN: cp %p/../Inputs/modules-dwarf-version/1.o %t.dir
+// RUN: llvm-dsymutil -f -oso-prepend-path=%t.dir \
+// RUN:   -y %p/dummy-debug-map.map -o - \
+// RUN:     | llvm-dwarfdump --debug-dump=info - | FileCheck %s
+
+@import Bar;
+int main(int argc, char **argv) {
+  struct Bar bar;
+  bar.value = argc;
+  return bar.value;
+}
+
+// CHECK: Compile Unit: {{.*}}version = 0x0004
+// CHECK: Compile Unit: {{.*}}version = 0x0002
index fcbc268..f9328e4 100644 (file)
@@ -3325,8 +3325,10 @@ void DwarfLinker::loadClangModule(StringRef Filename, StringRef ModulePath,
   auto DwarfContext = DWARFContext::create(*ErrOrObj);
   RelocationManager RelocMgr(*this);
   for (const auto &CU : DwarfContext->compile_units()) {
-    auto CUDie = CU->getUnitDIE(false);
+    maybeUpdateMaxDwarfVersion(CU->getVersion());
+
     // Recursively get all modules imported by this one.
+    auto CUDie = CU->getUnitDIE(false);
     if (!registerModuleReference(CUDie, *CU, ModuleMap, Indent)) {
       if (Unit) {
         errs() << Filename << ": Clang modules are expected to have exactly"