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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
// -*- C++ -*-
// Copyright (C) 2008-2009 Red Hat Inc.
//
// This file is part of systemtap, and is free software. You can
// redistribute it and/or modify it under the terms of the GNU General
// Public License (GPL); either version 2, or (at your option) any
// later version.
#include "dwarf_wrappers.h"
#include "staptree.h"
#include <cstring>
#include <sstream>
#include <string>
#include <elfutils/libdwfl.h>
#include <dwarf.h>
using namespace std;
void dwfl_assert(const string& desc, int rc)
{
if (rc == 0)
return;
string msg = "libdwfl failure (" + desc + "): ";
if (rc < 0)
msg += (dwfl_errmsg (rc) ?: "?");
else
msg += std::strerror (rc);
throw semantic_error (msg);
}
void dwarf_assert(const string& desc, int rc)
{
if (rc == 0)
return;
string msg = "libdw failure (" + desc + "): ";
if (rc < 0)
msg += dwarf_errmsg (rc);
else
msg += std::strerror (rc);
throw semantic_error (msg);
}
void dwfl_assert(const std::string& desc, bool condition)
{
if (!condition)
dwfl_assert(desc, -1);
}
#if !_ELFUTILS_PREREQ(0, 143)
// Elfutils prior to 0.143 didn't use attr_integrate when looking up the
// decl_file or decl_line, so the attributes would sometimes be missed. For
// those old versions, we define custom implementations to do the integration.
const char *
dwarf_decl_file_integrate (Dwarf_Die *die)
{
Dwarf_Attribute attr_mem;
Dwarf_Sword idx = 0;
if (dwarf_formsdata (dwarf_attr_integrate (die, DW_AT_decl_file, &attr_mem),
&idx) != 0
|| idx == 0)
return NULL;
Dwarf_Die cudie;
Dwarf_Files *files = NULL;
if (dwarf_getsrcfiles (dwarf_diecu (die, &cudie, NULL, NULL),
&files, NULL) != 0)
return NULL;
return dwarf_filesrc(files, idx, NULL, NULL);
}
int
dwarf_decl_line_integrate (Dwarf_Die *die, int *linep)
{
Dwarf_Attribute attr_mem;
Dwarf_Sword line;
int res = dwarf_formsdata (dwarf_attr_integrate
(die, DW_AT_decl_line, &attr_mem),
&line);
if (res == 0)
*linep = line;
return res;
}
#endif // !_ELFUTILS_PREREQ(0, 143)
static bool
dwarf_type_name(Dwarf_Die *type_die, ostringstream& o)
{
// if we've gotten down to a basic type, then we're done
bool done = true;
switch (dwarf_tag(type_die))
{
case DW_TAG_enumeration_type:
o << "enum ";
break;
case DW_TAG_structure_type:
o << "struct ";
break;
case DW_TAG_union_type:
o << "union ";
break;
case DW_TAG_typedef:
case DW_TAG_base_type:
break;
default:
done = false;
break;
}
if (done)
{
// this follows gdb precedent that anonymous structs/unions
// are displayed as "struct {...}" and "union {...}".
o << (dwarf_diename(type_die) ?: "{...}");
return true;
}
// otherwise, this die is a type modifier.
// recurse into the referent type
// if it can't be named, just call it "void"
Dwarf_Die subtype_die;
if (!dwarf_attr_die(type_die, DW_AT_type, &subtype_die)
|| !dwarf_type_name(&subtype_die, o))
o.str("void"), o.seekp(4);
switch (dwarf_tag(type_die))
{
case DW_TAG_pointer_type:
o << "*";
break;
case DW_TAG_array_type:
o << "[]";
break;
case DW_TAG_const_type:
o << " const";
break;
case DW_TAG_volatile_type:
o << " volatile";
break;
default:
return false;
}
// XXX HACK! The va_list isn't usable as found in the debuginfo...
if (o.str() == "struct __va_list_tag*")
o.str("va_list"), o.seekp(7);
return true;
}
bool
dwarf_type_name(Dwarf_Die *type_die, string& type_name)
{
ostringstream o;
bool ret = dwarf_type_name(type_die, o);
type_name = o.str();
return ret;
}
string
dwarf_type_name(Dwarf_Die *type_die)
{
ostringstream o;
return dwarf_type_name(type_die, o) ? o.str() : "<unknown>";
}
/* vim: set sw=2 ts=8 cino=>4,n-2,{2,^-2,t0,(0,u0,w1,M1 : */
|