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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
/*
Copyright (C) 2015-2015 David Anderson. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it
under the terms of version 2.1 of the GNU Lesser General Public License
as published by the Free Software Foundation.
This program is distributed in the hope that it would be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Further, this software is distributed without any warranty that it is
free of the rightful claim of any third person regarding infringement
or the like. Any license provided herein, whether implied or
otherwise, applies only to this software file. Patent licenses, if
any, provided herein do not apply to combinations of this program with
other software, or any other product whatsoever.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, write the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
USA.
*/
/*
dwarf_macro5.h
For the DWARF5 .debug_macro section
(also appears as an extension to DWARF4)
*/
struct Dwarf_Macro_Forms_s {
/* Code means DW_MACRO_define etc. */
Dwarf_Small mf_code;
/* How many entries in mf_formbytes array. */
Dwarf_Small mf_formcount;
/* Never free these, these are in the object file memory */
const Dwarf_Small * mf_formbytes;
};
struct Dwarf_Macro_OperationsList_s {
unsigned mol_count;
struct Dwarf_Macro_Forms_s * mol_data;
};
struct Dwarf_Macro_Operator_s {
/* mo_opcode == mo_form->mf_code */
Dwarf_Small mo_opcode;
struct Dwarf_Macro_Forms_s * mo_form;
/* Points at the first byte of the data, meaning
it points one-past the macro operation code byte. */
Dwarf_Small * mo_data;
};
#define MACRO_OFFSET_SIZE_FLAG 1
#define MACRO_LINE_OFFSET_FLAG 2
#define MACRO_OP_TABLE_FLAG 4
/* Could be reordered to be most space efficient.
That might be a little harder to read. Hmm. */
struct Dwarf_Macro_Context_s {
Dwarf_Unsigned mc_sentinel;
Dwarf_Half mc_version_number;
/* Section_offset in .debug_macro of macro header */
Dwarf_Unsigned mc_section_offset;
/* Total length of the macro data for this CU.
Calculated, not part of header. */
Dwarf_Unsigned mc_total_length;
Dwarf_Half mc_macro_header_length;
Dwarf_Small mc_flags;
/* If DW_MACRO_start_file is in the operators of this
table then the mc_debug_line_offset must be present from
the header. */
Dwarf_Unsigned mc_debug_line_offset;
/* the following three set from the bits in mc_flags */
/* If 1, offsets 64 bits */
Dwarf_Bool mc_offset_size_flag;
/* if 1, debug_line offset is present. */
Dwarf_Bool mc_debug_line_offset_flag;
/* 4 or 8, depending on mc_offset_size_flag */
Dwarf_Small mc_offset_size;
/* If one the operands/opcodes (mc_opcode_forms) table is present
in the header. If not we use a default table.
Even when there are operands in the header
the standardops may or may not be
defined in the header. */
Dwarf_Bool mc_operands_table_flag;
/* Count of the Dwarf_Macro_Forms_s structs pointed to by
mc_opcode_forms. These from the header. */
Dwarf_Small mc_opcode_count;
struct Dwarf_Macro_Forms_s *mc_opcode_forms;
/* mc_ops must be free()d, but pointers inside
mc_ops are to static or section data so must not
be freed. */
Dwarf_Unsigned mc_macro_ops_count;
Dwarf_Unsigned mc_ops_data_length;
struct Dwarf_Macro_Operator_s *mc_ops;
Dwarf_Small * mc_macro_header;
Dwarf_Small * mc_macro_ops;
/* These are malloc space, not _dwarf_get_alloc()
so the DW_DLA_MACRO_CONTEXT dealloc will
free them. */
char ** mc_srcfiles;
Dwarf_Signed mc_srcfiles_count;
/* These are from CU DIE attribute names.
They may be NULL or point at data in
a dwarf section. Do not free().
This attempts to make up for the lack of a
base file name
in DWARF2,3,4 line tables.
*/
const char * mc_at_comp_dir;
const char * mc_at_name;
/* The following is malloc,so macro_context_s destructor
needs to free it. */
const char * mc_file_path;
Dwarf_Debug mc_dbg;
Dwarf_CU_Context mc_cu_context;
};
int _dwarf_macro_constructor(Dwarf_Debug dbg, void *m);
void _dwarf_macro_destructor(void *m);
|