summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/elfcpp/dwarf.h
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.25/elfcpp/dwarf.h')
-rw-r--r--binutils-2.25/elfcpp/dwarf.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/binutils-2.25/elfcpp/dwarf.h b/binutils-2.25/elfcpp/dwarf.h
index 331ec40e..bb622ecc 100644
--- a/binutils-2.25/elfcpp/dwarf.h
+++ b/binutils-2.25/elfcpp/dwarf.h
@@ -147,7 +147,13 @@ enum DW_LINE_OPS
// DWARF 3.
DW_LNS_set_prologue_end = 10,
DW_LNS_set_epilogue_begin = 11,
- DW_LNS_set_isa = 12
+ DW_LNS_set_isa = 12,
+ /* Experimental DWARF 5 extensions.
+ See http://wiki.dwarfstd.org/index.php?title=TwoLevelLineTables. */
+ DW_LNS_set_address_from_logical = 13, /* Actuals table only. */
+ DW_LNS_set_subprogram = 13, /* Logicals table only. */
+ DW_LNS_inlined_call = 14, /* Logicals table only. */
+ DW_LNS_pop_context = 15 /* Logicals table only. */
};
// Line number extended opcodes.
@@ -241,6 +247,20 @@ enum DW_SECT
DW_SECT_MAX = DW_SECT_MACRO,
};
+enum DW_LNCT
+{
+ DW_LNCT_path = 1,
+ DW_LNCT_directory_index = 2,
+ DW_LNCT_timestamp = 3,
+ DW_LNCT_size = 4,
+ DW_LNCT_MD5 = 5,
+ /* Experimental DWARF 5 extensions.
+ See http://wiki.dwarfstd.org/index.php?title=TwoLevelLineTables. */
+ DW_LNCT_subprogram_name = 6,
+ DW_LNCT_decl_file = 7,
+ DW_LNCT_decl_line = 8
+};
+
} // End namespace elfcpp.
#endif // !defined(ELFCPP_DWARF_H)