aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-dwarfdump/X86/debug-names-misaligned.s
blob: 0ad4f50e98d988f59f9b0d911b45b00b67d7a66c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# RUN: llvm-mc -triple x86_64-pc-linux %s -filetype=obj -o - | llvm-dwarfdump -debug-names - | FileCheck %s
	.section	.debug_str,"MS",@progbits,1
.Linfo_string0:
	.asciz	"foo"
.Linfo_string1:
	.asciz	"bar"

# Fake .debug_info. We just need it for the offsets to two "compile units" and
# two "DIEs"
	.section	.debug_info,"",@progbits
.Lcu_begin0:
	.byte	0
.Ldie0:
	.byte	0
.Lcu_begin1:
	.byte	0
.Ldie1:
	.byte	0

	.section	.debug_names,"",@progbits
	.long	.Lnames_end0-.Lnames_start0 # Header: contribution length
.Lnames_start0:
	.short	5                       # Header: version
	.short	0                       # Header: padding
	.long	1                       # Header: compilation unit count
	.long	0                       # Header: local type unit count
	.long	0                       # Header: foreign type unit count
	.long	0                       # Header: bucket count
	.long	1                       # Header: name count
	.long	.Lnames_abbrev_end0-.Lnames_abbrev_start0 # Header: abbreviation table size
	.long	0                       # Header: augmentation length
	.long	.Lcu_begin0             # Compilation unit 0
	.long	.Linfo_string0          # String 1: foo
	.long	.Lnames0-.Lnames_entries0 # Offset 1
.Lnames_abbrev_start0:
	.byte	46                      # Abbrev code
	.byte	46                      # DW_TAG_subprogram
	.byte	3                       # DW_IDX_die_offset
	.byte	19                      # DW_FORM_ref4
	.byte	0                       # End of abbrev
	.byte	0                       # End of abbrev
	.byte	0                       # End of abbrev list
.Lnames_abbrev_end0:
.Lnames_entries0:
.Lnames0:
	.byte	46                      # Abbrev code
	.long	.Ldie0-.Lcu_begin0      # DW_IDX_die_offset
	.long	0                       # End of list: foo
	.p2align	2
        .byte   42                      # Deliberately misalign the next contribution
.Lnames_end0:

	.long	.Lnames_end1-.Lnames_start1 # Header: contribution length
.Lnames_start1:
	.short	5                       # Header: version
	.short	0                       # Header: padding
	.long	1                       # Header: compilation unit count
	.long	0                       # Header: local type unit count
	.long	0                       # Header: foreign type unit count
	.long	0                       # Header: bucket count
	.long	1                       # Header: name count
	.long	.Lnames_abbrev_end1-.Lnames_abbrev_start1 # Header: abbreviation table size
	.long	0                       # Header: augmentation length
	.long	.Lcu_begin1             # Compilation unit 0
	.long	.Linfo_string1          # String 1: bar
	.long	.Lnames1-.Lnames_entries1 # Offset 1
.Lnames_abbrev_start1:
	.byte	52                      # Abbrev code
	.byte	52                      # DW_TAG_variable
	.byte	3                       # DW_IDX_die_offset
	.byte	19                      # DW_FORM_ref4
	.byte	0                       # End of abbrev
	.byte	0                       # End of abbrev
	.byte	0                       # End of abbrev list
.Lnames_abbrev_end1:
.Lnames_entries1:
.Lnames1:
	.byte	52                      # Abbrev code
	.long	.Ldie1-.Lcu_begin1      # DW_IDX_die_offset
	.long	0                       # End of list: bar
	.p2align	2
.Lnames_end1:
# CHECK:     Name Index @ 0x0
# CHECK:       Name 1 {
# CHECK-NEXT:    String: 0x00000000 "foo"
# CHECK-NEXT:    Entry @ 0x37 {
# CHECK-NEXT:      Abbrev: 0x2e
# CHECK-NEXT:      Tag: DW_TAG_subprogram
# CHECK-NEXT:      DW_IDX_die_offset: 0x00000001
# CHECK-NEXT:    }
# CHECK-NEXT:  }

# CHECK:     Name Index @ 0x41
# CHECK:       Name 1 {
# CHECK-NEXT:    String: 0x00000004 "bar"
# CHECK-NEXT:    Entry @ 0x78 {
# CHECK-NEXT:      Abbrev: 0x34
# CHECK-NEXT:      Tag: DW_TAG_variable
# CHECK-NEXT:      DW_IDX_die_offset: 0x00000001
# CHECK-NEXT:    }
# CHECK-NEXT:  }