aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarf2/read-debug-names.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/dwarf2/read-debug-names.h')
-rw-r--r--gdb/dwarf2/read-debug-names.h25
1 files changed, 24 insertions, 1 deletions
diff --git a/gdb/dwarf2/read-debug-names.h b/gdb/dwarf2/read-debug-names.h
index 729fe89..ef91a70 100644
--- a/gdb/dwarf2/read-debug-names.h
+++ b/gdb/dwarf2/read-debug-names.h
@@ -22,7 +22,30 @@
struct dwarf2_per_objfile;
-extern const gdb_byte dwarf5_augmentation[8];
+/* DWARF-5 augmentation strings.
+
+ They must have a size that is a multiple of 4.
+
+ "GDB" is the old, no-longer-supported GDB augmentation.
+
+ The "GDB2" augmentation string specifies the use of the DW_IDX_GNU_*
+ attributes.
+
+ The meaning of the "GDB3" augmentation string is identical to "GDB2", except
+ for the meaning of DW_IDX_parent. With "GDB2", DW_IDX_parent represented an
+ index in the name table. With "GDB3", it represents an offset into the entry
+ pool. */
+
+constexpr gdb_byte dwarf5_augmentation_1[4] = { 'G', 'D', 'B', 0 };
+static_assert (sizeof (dwarf5_augmentation_1) % 4 == 0);
+
+constexpr gdb_byte dwarf5_augmentation_2[8]
+ = { 'G', 'D', 'B', '2', 0, 0, 0, 0 };
+static_assert (sizeof (dwarf5_augmentation_2) % 4 == 0);
+
+constexpr gdb_byte dwarf5_augmentation_3[8]
+ = { 'G', 'D', 'B', '3', 0, 0, 0, 0 };
+static_assert (sizeof (dwarf5_augmentation_3) % 4 == 0);
/* Read .debug_names. If everything went ok, initialize the "quick"
elements of all the CUs and return true. Otherwise, return false. */