summaryrefslogtreecommitdiff
path: root/include/dwarf2.h
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2010-04-05 19:29:24 +0000
committerJakub Jelinek <jakub@redhat.com>2010-04-05 19:29:24 +0000
commitcc8ec105c32e167eacf2def61fa1542a98d71860 (patch)
treed24e7c22d770a164af2e4a54717bd9b23bcc96ef /include/dwarf2.h
parent706c5ec0898490bf3d4ccc0d9fd9d47e160a6370 (diff)
downloadgdb-cc8ec105c32e167eacf2def61fa1542a98d71860.tar.gz
include/
* dwarf2.h (DWARF2_Internal_LineInfo): Add li_max_ops_per_insn field. bfd/ * dwarf2.c (struct line_head): Add maximum_ops_per_insn field. (struct line_info): Add op_index field, change end_sequence type to unsigned char. (new_line_sorts_after): For the same address compare op_index. (add_line_info): Add op_index argument, store it into the structure. (decode_line_info): Complain about unknown versions of .debug_line. Initialize maximum_ops_per_insn. Add op_index state register and track it. binutils/ * dwarf.c (struct State_Machine_Registers): Add op_index field, change end_sequence type to unsigned char. (reset_state_machine): Clear op_index. (process_extended_line_op): For DW_LNE_set_address clear op_index. (display_debug_lines_raw): Initialize li_max_ops_per_insn. Track op_index state machine register and print it if li_max_ops_per_insn is != 1. (display_debug_lines_decoded): Likewise.
Diffstat (limited to 'include/dwarf2.h')
-rw-r--r--include/dwarf2.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dwarf2.h b/include/dwarf2.h
index 303af70be1c..df766c1e92b 100644
--- a/include/dwarf2.h
+++ b/include/dwarf2.h
@@ -66,6 +66,7 @@ typedef struct
unsigned short li_version;
unsigned int li_prologue_length;
unsigned char li_min_insn_length;
+ unsigned char li_max_ops_per_insn;
unsigned char li_default_is_stmt;
int li_line_base;
unsigned char li_line_range;