aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/internal
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/internal')
-rw-r--r--src/cmd/internal/dwarf/dwarf_defs.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/cmd/internal/dwarf/dwarf_defs.go b/src/cmd/internal/dwarf/dwarf_defs.go
index db4245e95d..b4675cb193 100644
--- a/src/cmd/internal/dwarf/dwarf_defs.go
+++ b/src/cmd/internal/dwarf/dwarf_defs.go
@@ -465,6 +465,20 @@ const (
DW_RLE_start_length = 0x7
)
+// Table 7.10 (DWARF version 5), containing the encodings for the
+// .debug_loclists entry formats.
+const (
+ DW_LLE_end_of_list = 0x0
+ DW_LLE_base_addressx = 0x1
+ DW_LLE_startx_endx = 0x2
+ DW_LLE_startx_length = 0x3
+ DW_LLE_offset_pair = 0x4
+ DW_LLE_default_location = 0x5
+ DW_LLE_base_address = 0x6
+ DW_LLE_start_end = 0x7
+ DW_LLE_start_length = 0x8
+)
+
// Table 7.27 (DWARF version 5), containing the encodings for the
// line number header entry formats.
const (