[llvm] r305261 - Adding one test that I forgot to include with the commit for https://reviews.llvm.org/D32779.
Wolfgang Pieb via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 12 17:42:03 PDT 2017
Author: wolfgangp
Date: Mon Jun 12 19:42:03 2017
New Revision: 305261
URL: http://llvm.org/viewvc/llvm-project?rev=305261&view=rev
Log:
Adding one test that I forgot to include with the commit for https://reviews.llvm.org/D32779.
NFC
Added:
llvm/trunk/test/DebugInfo/Inputs/dwarfdump-str-offsets-dwp.x86_64.o (with props)
llvm/trunk/test/DebugInfo/dwarfdump-str-offsets-dwp.test
Added: llvm/trunk/test/DebugInfo/Inputs/dwarfdump-str-offsets-dwp.x86_64.o
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/Inputs/dwarfdump-str-offsets-dwp.x86_64.o?rev=305261&view=auto
==============================================================================
Binary file - no diff available.
Propchange: llvm/trunk/test/DebugInfo/Inputs/dwarfdump-str-offsets-dwp.x86_64.o
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: llvm/trunk/test/DebugInfo/dwarfdump-str-offsets-dwp.test
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/dwarfdump-str-offsets-dwp.test?rev=305261&view=auto
==============================================================================
--- llvm/trunk/test/DebugInfo/dwarfdump-str-offsets-dwp.test (added)
+++ llvm/trunk/test/DebugInfo/dwarfdump-str-offsets-dwp.test Mon Jun 12 19:42:03 2017
@@ -0,0 +1,56 @@
+RUN: llvm-dwarfdump %p/Inputs/dwarfdump-str-offsets-dwp.x86_64.o | FileCheck %s
+
+; Verify that the correct strings from each unit are displayed and that the
+; index for the .debug_str_offsets section has the right values.
+
+; CHECK: Compile Unit
+; CHECK-NOT: NULL
+; CHECK: DW_TAG_compile_unit
+; CHECK-NEXT: DW_AT_producer [DW_FORM_strx] ( indexed (00000000) string = "Handmade DWARF producer")
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000001) string = "Compile_Unit_1")
+; CHECK-NEXT: DW_AT_str_offsets_base [DW_FORM_sec_offset] (0x00000008)
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000002) string = "/home/test/CU1")
+; CHECK-NOT: NULL
+
+; CHECK: Compile Unit
+; CHECK-NOT: NULL
+; CHECK: DW_TAG_compile_unit
+; CHECK-NEXT: DW_AT_producer [DW_FORM_strx] ( indexed (00000000) string = "Handmade DWARF producer")
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000001) string = "Compile_Unit_2")
+; CHECK-NEXT: DW_AT_str_offsets_base [DW_FORM_sec_offset] (0x00000008)
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000002) string = "/home/test/CU2")
+;
+; CHECK: Type Unit
+; CHECK-NOT: NULL
+; CHECK: DW_TAG_type_unit
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000000) string = "Type_Unit_1")
+; CHECK-NEXT: DW_AT_str_offsets_base [DW_FORM_sec_offset] (0x0000001c)
+; CHECK-NOT: NULL
+; CHECK: DW_TAG_structure_type
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000001) string = "MyStruct_1")
+;
+; CHECK: Type Unit
+; CHECK-NOT: NULL
+; CHECK: DW_TAG_type_unit
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000000) string = "Type_Unit_2")
+; CHECK-NEXT: DW_AT_str_offsets_base [DW_FORM_sec_offset] (0x0000001c)
+; CHECK-NOT: NULL
+; CHECK: DW_TAG_structure_type
+; CHECK-NEXT: DW_AT_name [DW_FORM_strx] ( indexed (00000001) string = "MyStruct_2")
+
+; Verify the correct offets of the compile and type units contributions in the
+; index tables.
+
+; CHECK: .debug_cu_index contents:
+; CHECK-NOT: contents:
+; CHECK: 1 0xddeeaaddbbaabbee [{{0x[0-9a-f]*, 0x[0-9a-f]*}}) [{{0x[0-9a-f]*, 0x[0-9a-f]*}})
+; CHECK-SAME: [0x00000000
+; CHECK-NEXT: 2 0xff00ffeeffaaff00 [{{0x[0-9a-f]*, 0x[0-9a-f]*}}) [{{0x[0-9a-f]*, 0x[0-9a-f]*}})
+; CHECK-SAME: [0x00000024
+
+; CHECK: .debug_tu_index contents:
+; CHECK-NOT: contents:
+; CHECK: 1 0xeeaaddbbaabbeedd [{{0x[0-9a-f]*, 0x[0-9a-f]*}}) [{{0x[0-9a-f]*, 0x[0-9a-f]*}})
+; CHECK-SAME: [0x00000000
+; CHECK-NEXT: 2 0x00ffeeffaaff00ff [{{0x[0-9a-f]*, 0x[0-9a-f]*}}) [{{0x[0-9a-f]*, 0x[0-9a-f]*}})
+; CHECK: [0x00000024
More information about the llvm-commits
mailing list