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
|
/*
Copyright (C) 2006 Silicon Graphics, Inc. All Rights Reserved.
Portions Copyright 2011 David Anderson. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it
under the terms of version 2 of the GNU 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 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.
Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
Mountain View, CA 94043, or:
http://www.sgi.com
For further information regarding this notice, see:
http://oss.sgi.com/projects/GenInfo/NoticeExplan
$Header: /plroot/cmplrs.src/v7.4.5m/.RCS/PL/dwarfdump/RCS/dwconf.h,v 1.2 2006/04/18 04:29:39 davea Exp $ */
/* Declarations helping configure the frame reader.
*/
struct dwconf_s {
dwconf_s():cf_interface_number(0),
cf_table_entry_count(0),cf_initial_rule_value(0),
cf_same_val(0),cf_undefined_val(0), cf_cfa_reg(0),
cf_address_size(0) {};
~dwconf_s() {};
std::string cf_config_file_path;
std::string cf_abi_name;
// 2 for old, 3 for frame interface 3. 2 means use the old
// mips-abi-oriented frame interface. 3 means use the new
// DWARF3-capable and configureable-abi interface.
// Now, anyone who revises dwarf.h and libdwarf.h to match their
// abi-of-interest will still be able to use cf_interface_number 2
// as before. But most folks don't update those header files and
// instead of making *them* configurable we make dwarfdump (and
// libdwarf) configurable sufficiently to print frame information
// sensibly.
unsigned cf_interface_number;
// The number of table rules , aka columns. For MIPS/IRIX is 66.
unsigned long cf_table_entry_count;
// Array of cf_table_entry_count reg names. Names not filled in
// from dwarfdump.conf have empty value.
std::vector<std::string> cf_regs;
// The 'default initial value' when intializing a table. for MIPS
// is DW_FRAME_SAME_VAL(1035). For other ISA/ABIs may be
// DW_FRAME_UNDEFINED_VAL(1034).
unsigned cf_initial_rule_value;
unsigned cf_same_val;
unsigned cf_undefined_val;
// The number of the cfa 'register'. For cf_interface_number 2 of
// MIPS this is 0. For other architectures (and anytime using
// cf_interface_number 3) this should be outside the table, a
// special value such as 1036, not a table column at all).
unsigned cf_cfa_reg;
/* If non-zero it is the number of bytes in an address
for the frame data. Normally it will be zero because
there are usually other sources for the correct address size.
However, with DWARF2 frame data there is no explicit address
size in the frame data and the object file might not have
other .debug_ sections to work with.
If zero, no address size was supplied, and that is normal and
the already-set (or defaulted) address size is to be used.
Only an exceptional frame configure will specify address
size here. This won't work at all if the object needing
this setting has different address size in different CUs. */
unsigned cf_address_size;
};
// Returns DW_DLV_OK if works. DW_DLV_ERROR if cannot do what is asked.
int find_conf_file_and_read_config(const std::string & named_file,
const std::string &named_abi,
const char **defaults,
struct dwconf_s *conf_out);
void init_conf_file_data(struct dwconf_s *config_file_data);
void init_mips_conf_file_data(struct dwconf_s *config_file_data);
void print_reg_from_config_data(Dwarf_Signed reg,
struct dwconf_s *config_data);
void init_generic_config_1200_regs(struct dwconf_s *conf);
|