summaryrefslogtreecommitdiffstats
path: root/llvm/test/DebugInfo/Inputs
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2016-04-22 21:32:59 +0000
committerDavid Blaikie <dblaikie@gmail.com>2016-04-22 21:32:59 +0000
commit9a4f3cb275b148f11850ca24c8ff245990ee327d (patch)
tree8517a66962c978c898fd3622365e52df588789c2 /llvm/test/DebugInfo/Inputs
parent18ce9d82c6ec4be482fe8f1f29e0a99a854fd9e1 (diff)
downloadbcm5719-llvm-9a4f3cb275b148f11850ca24c8ff245990ee327d.tar.gz
bcm5719-llvm-9a4f3cb275b148f11850ca24c8ff245990ee327d.zip
llvm-symbolizer: prefer .dwo contents over fission-gmlt-like-data when .dwo file is present
Rather than relying on the gmlt-like data emitted into the .o/executable which only contains the simple name of any inlined functions, use the .dwo file if present. Test symbolication with/without a .dwo, and the old test that was testing behavior when no gmlt-like data was present. (I haven't included a test of non-gmlt-like data + no .dwo (that would be akin to symbolication with no debug info) but we could add one for completeness) The test was simplified a bit to be a little clearer (unoptimized, force inline, using a function call as the inlined entity) and regenerated with ToT clang. For the no-gmlt-like-data case, I modified Clang back to its old behavior temporarily & the .dwo file is identical so it is shared between the two executables. llvm-svn: 267227
Diffstat (limited to 'llvm/test/DebugInfo/Inputs')
-rwxr-xr-xllvm/test/DebugInfo/Inputs/split-dwarf-testbin9379 -> 9208 bytes
-rwxr-xr-xllvm/test/DebugInfo/Inputs/split-dwarf-test-nogmltbin0 -> 9128 bytes
-rw-r--r--llvm/test/DebugInfo/Inputs/split-dwarf-test.cc13
-rw-r--r--llvm/test/DebugInfo/Inputs/split-dwarf-test.dwobin1609 -> 1377 bytes
4 files changed, 8 insertions, 5 deletions
diff --git a/llvm/test/DebugInfo/Inputs/split-dwarf-test b/llvm/test/DebugInfo/Inputs/split-dwarf-test
index a4411129a9b..4d6aa0cd98a 100755
--- a/llvm/test/DebugInfo/Inputs/split-dwarf-test
+++ b/llvm/test/DebugInfo/Inputs/split-dwarf-test
Binary files differ
diff --git a/llvm/test/DebugInfo/Inputs/split-dwarf-test-nogmlt b/llvm/test/DebugInfo/Inputs/split-dwarf-test-nogmlt
new file mode 100755
index 00000000000..6a340aa47e6
--- /dev/null
+++ b/llvm/test/DebugInfo/Inputs/split-dwarf-test-nogmlt
Binary files differ
diff --git a/llvm/test/DebugInfo/Inputs/split-dwarf-test.cc b/llvm/test/DebugInfo/Inputs/split-dwarf-test.cc
index 5ed56f94b36..b41423dd815 100644
--- a/llvm/test/DebugInfo/Inputs/split-dwarf-test.cc
+++ b/llvm/test/DebugInfo/Inputs/split-dwarf-test.cc
@@ -1,13 +1,16 @@
-int foo(int a) {
- return a + 1;
+void f1() {
}
-int main(int argc, char *argv[]) {
- return foo(argc);
+inline __attribute__((always_inline)) void f2() {
+ f1();
+}
+
+int main() {
+ f2();
}
// Build instructions:
-// 1) clang++ -### -O2 -gsplit-dwarf.cc split-dwarf-test.cc -o split-dwarf-test
+// 1) clang++ -### -gsplit-dwarf split-dwarf-test.cc -o split-dwarf-test
// 2) Replace the value "-fdebug-compilation-dir" flag to "Output"
// (this is the temp directory used by lit).
// 3) Manually run clang-cc1, objcopy and ld invocations.
diff --git a/llvm/test/DebugInfo/Inputs/split-dwarf-test.dwo b/llvm/test/DebugInfo/Inputs/split-dwarf-test.dwo
index 74183a4b622..588374d7d21 100644
--- a/llvm/test/DebugInfo/Inputs/split-dwarf-test.dwo
+++ b/llvm/test/DebugInfo/Inputs/split-dwarf-test.dwo
Binary files differ
OpenPOWER on IntegriCloud