-
Notifications
You must be signed in to change notification settings - Fork 52
/
dwarves_emit.c
504 lines (427 loc) · 13.7 KB
/
dwarves_emit.c
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
/*
SPDX-License-Identifier: GPL-2.0-only
Copyright (C) 2006 Mandriva Conectiva S.A.
Copyright (C) 2006 Arnaldo Carvalho de Melo <[email protected]>
Copyright (C) 2007 Red Hat Inc.
Copyright (C) 2007 Arnaldo Carvalho de Melo <[email protected]>
*/
#include <string.h>
#include "list.h"
#include "dwarves_emit.h"
#include "dwarves.h"
void type_emissions__init(struct type_emissions *emissions, struct conf_fprintf *conf_fprintf)
{
INIT_LIST_HEAD(&emissions->base_type_definitions);
INIT_LIST_HEAD(&emissions->definitions);
INIT_LIST_HEAD(&emissions->fwd_decls);
emissions->conf_fprintf = conf_fprintf;
}
static void type_emissions__add_definition(struct type_emissions *emissions,
struct type *type)
{
type->definition_emitted = 1;
if (!list_empty(&type->node))
list_del(&type->node);
list_add_tail(&type->node, &emissions->definitions);
}
static void type_emissions__add_fwd_decl(struct type_emissions *emissions,
struct type *type)
{
type->fwd_decl_emitted = 1;
if (list_empty(&type->node))
list_add_tail(&type->node, &emissions->fwd_decls);
}
struct type *type_emissions__find_definition(const struct type_emissions *emissions,
uint16_t tag, const char *name)
{
struct type *pos;
if (name == NULL)
return NULL;
list_for_each_entry(pos, &emissions->definitions, node)
if (type__tag(pos)->tag == tag &&
type__name(pos) != NULL &&
strcmp(type__name(pos), name) == 0)
return pos;
return NULL;
}
static bool type__can_have_shadow_definition(struct type *type)
{
struct tag *tag = type__tag(type);
return tag__is_struct(tag) || tag__is_union(tag) || tag__is_enumeration(tag);
}
// Find if 'struct foo' is defined with a pre-existing 'enum foo', 'union foo', etc
struct type *type_emissions__find_shadow_definition(const struct type_emissions *emissions,
uint16_t tag, const char *name)
{
struct type *pos;
if (name == NULL)
return NULL;
list_for_each_entry(pos, &emissions->definitions, node) {
if (type__tag(pos)->tag != tag &&
type__name(pos) != NULL &&
type__can_have_shadow_definition(pos) &&
strcmp(type__name(pos), name) == 0)
return pos;
}
return NULL;
}
static struct type *type_emissions__find_fwd_decl(const struct type_emissions *emissions,
const char *name)
{
struct type *pos;
if (name == NULL)
return NULL;
list_for_each_entry(pos, &emissions->fwd_decls, node) {
const char *curr_name = type__name(pos);
if (curr_name && strcmp(curr_name, name) == 0)
return pos;
}
return NULL;
}
static int enumeration__emit_definitions(struct tag *tag,
struct type_emissions *emissions,
const struct conf_fprintf *conf,
FILE *fp)
{
struct type *etype = tag__type(tag);
/* Have we already emitted this in this CU? */
if (etype->definition_emitted)
return 0;
/* Ok, lets look at the previous CUs: */
if (type_emissions__find_definition(emissions, DW_TAG_enumeration_type, type__name(etype)) != NULL) {
/*
* Yes, so lets mark it visited on this CU too,
* to speed up the lookup.
*/
etype->definition_emitted = 1;
return 0;
}
enumeration__fprintf(tag, conf, fp);
fputs(";\n", fp);
// See comment on enumeration__fprintf(), it seems this happens with DWARF as well
// or BTF doesn't have type->declaration set because DWARF didn't have it set.
// But we consider type->nr_members == 0 as just a forward declaration, so don't
// mark it as defined because we may need it to __really__ printf it later.
if (etype->nr_members != 0)
type_emissions__add_definition(emissions, etype);
return 1;
}
static int tag__emit_definitions(struct tag *tag, struct cu *cu,
struct type_emissions *emissions, FILE *fp);
static int typedef__emit_definitions(struct tag *tdef, struct cu *cu,
struct type_emissions *emissions, FILE *fp)
{
struct type *def = tag__type(tdef);
struct tag *type, *ptr_type;
/* Have we already emitted this in this CU? */
if (def->definition_emitted)
return 0;
/* Ok, lets look at the previous CUs: */
if (type_emissions__find_definition(emissions, DW_TAG_typedef, type__name(def)) != NULL) {
/*
* Yes, so lets mark it visited on this CU too,
* to speed up the lookup.
*/
def->definition_emitted = 1;
return 0;
}
type = cu__type(cu, tdef->type);
if (type == NULL) // void
goto emit;
switch (type->tag) {
case DW_TAG_atomic_type:
type = cu__type(cu, tdef->type);
if (type)
tag__emit_definitions(type, cu, emissions, fp);
else
fprintf(stderr, "%s: couldn't find the type pointed from _Atomic for '%s'\n", __func__, type__name(def));
break;
case DW_TAG_array_type:
tag__emit_definitions(type, cu, emissions, fp);
break;
case DW_TAG_typedef:
typedef__emit_definitions(type, cu, emissions, fp);
break;
case DW_TAG_pointer_type:
ptr_type = cu__type(cu, type->type);
/* void ** can make ptr_type be NULL */
if (ptr_type == NULL)
break;
if (ptr_type->tag == DW_TAG_typedef) {
typedef__emit_definitions(ptr_type, cu, emissions, fp);
break;
} else if (ptr_type->tag != DW_TAG_subroutine_type)
break;
type = ptr_type;
/* Fall thru */
case DW_TAG_subroutine_type:
ftype__emit_definitions(tag__ftype(type), cu, emissions, fp);
break;
case DW_TAG_enumeration_type: {
struct type *ctype = tag__type(type);
struct conf_fprintf conf = {
.suffix = NULL,
};
if (type__name(ctype) == NULL) {
fputs("typedef ", fp);
conf.suffix = type__name(def);
enumeration__emit_definitions(type, emissions, &conf, fp);
goto out;
} else
enumeration__emit_definitions(type, emissions, &conf, fp);
}
break;
case DW_TAG_structure_type:
case DW_TAG_union_type: {
struct type *ctype = tag__type(type);
if (type__name(ctype) == NULL) {
type__emit_definitions(type__tag(ctype), cu, emissions, fp);
type__emit(type__tag(ctype), cu, "typedef", type__name(def), fp);
goto out;
} else if (type__emit_definitions(type, cu, emissions, fp))
type__emit(type, cu, NULL, NULL, fp);
}
}
/*
* Recheck if the typedef was emitted, as there are cases, like
* wait_queue_t in the Linux kernel, that is against struct
* __wait_queue, that has a wait_queue_func_t member, a function
* typedef that has as one of its parameters a... wait_queue_t, that
* will thus be emitted before the function typedef, making a no go to
* redefine the typedef after struct __wait_queue.
*/
emit:
if (!def->definition_emitted) {
typedef__fprintf(tdef, cu, NULL, fp);
fputs(";\n", fp);
}
out:
type_emissions__add_definition(emissions, def);
return 1;
}
static int type__emit_fwd_decl(struct type *ctype, struct type_emissions *emissions, FILE *fp)
{
/* Have we already emitted this in this CU? */
if (ctype->fwd_decl_emitted)
return 0;
const char *name = type__name(ctype);
if (name == NULL)
return 0;
/* Ok, lets look at the previous CUs: */
if (type_emissions__find_fwd_decl(emissions, name) != NULL) {
/*
* Yes, so lets mark it visited on this CU too,
* to speed up the lookup.
*/
ctype->fwd_decl_emitted = 1;
return 0;
}
fprintf(fp, "%s %s;\n",
tag__is_union(&ctype->namespace.tag) ? "union" : "struct",
type__name(ctype));
type_emissions__add_fwd_decl(emissions, ctype);
return 1;
}
static struct base_type *base_type_emissions__find_definition(const struct type_emissions *emissions, const char *name)
{
struct base_type *pos;
if (name == NULL)
return NULL;
list_for_each_entry(pos, &emissions->base_type_definitions, node)
if (strcmp(__base_type__name(pos), name) == 0)
return pos;
return NULL;
}
static void base_type_emissions__add_definition(struct type_emissions *emissions, struct base_type *type)
{
type->definition_emitted = 1;
if (!list_empty(&type->node))
list_del(&type->node);
list_add_tail(&type->node, &emissions->base_type_definitions);
}
static const char *base_type__stdint2simple(const char *name)
{
if (strcmp(name, "int32_t") == 0)
return "int";
if (strcmp(name, "int16_t") == 0)
return "short";
if (strcmp(name, "int8_t") == 0)
return "char";
if (strcmp(name, "int64_t") == 0)
return "long";
return name;
}
static int base_type__emit_definitions(struct base_type *type, struct type_emissions *emissions, FILE *fp)
{
#define base_type__prefix "atomic_"
const size_t prefixlen = sizeof(base_type__prefix) - 1;
const char *name = __base_type__name(type);
// See if it was already emitted in this CU
if (type->definition_emitted)
return 0;
// We're only emitting for "atomic_" prefixed base types
if (strncmp(name, base_type__prefix, prefixlen) != 0)
return 0;
// See if it was already emitted in another CU
if (base_type_emissions__find_definition(emissions, name)) {
type->definition_emitted = 1;
return 0;
}
const char *non_atomic_name = name + prefixlen;
fputs("typedef _Atomic", fp);
if (non_atomic_name[0] == 's' &&
non_atomic_name[1] != 'i' && non_atomic_name[1] != 'h') // exclude atomic_size_t and atomic_short
fprintf(fp, " signed %s", non_atomic_name + 1);
else if (non_atomic_name[0] == 'l' && non_atomic_name[1] == 'l')
fprintf(fp, " long long");
else if (non_atomic_name[0] == 'u') {
fprintf(fp, " unsigned");
if (non_atomic_name[1] == 'l') {
fprintf(fp, " long");
if (non_atomic_name[2] == 'l')
fprintf(fp, " long");
} else
fprintf(fp, " %s", base_type__stdint2simple(non_atomic_name + 1));
} else if (non_atomic_name[0] == 'b')
fprintf(fp, " _Bool");
else
fprintf(fp, " %s", base_type__stdint2simple(non_atomic_name));
fprintf(fp, " %s;\n", name);
base_type_emissions__add_definition(emissions, type);
return 1;
#undef base_type__prefix
}
static int tag__emit_definitions(struct tag *tag, struct cu *cu,
struct type_emissions *emissions, FILE *fp)
{
struct tag *type = cu__type(cu, tag->type);
int pointer = 0;
if (type == NULL)
return 0;
next_indirection:
switch (type->tag) {
case DW_TAG_base_type:
if (emissions->conf_fprintf && emissions->conf_fprintf->skip_emitting_atomic_typedefs)
return 0;
return base_type__emit_definitions(tag__base_type(type), emissions, fp);
case DW_TAG_pointer_type:
case DW_TAG_reference_type:
pointer = 1;
/* Fall thru */
case DW_TAG_array_type:
case DW_TAG_const_type:
case DW_TAG_volatile_type:
case DW_TAG_atomic_type:
type = cu__type(cu, type->type);
if (type == NULL)
return 0;
goto next_indirection;
case DW_TAG_typedef:
return typedef__emit_definitions(type, cu, emissions, fp);
case DW_TAG_enumeration_type:
if (type__name(tag__type(type)) != NULL) {
struct conf_fprintf conf = {
.suffix = NULL,
};
return enumeration__emit_definitions(type, emissions, &conf, fp);
}
break;
case DW_TAG_structure_type:
case DW_TAG_union_type:
if (pointer) {
/*
* Struct defined inline, no name, need to have its
* members types emitted.
*/
if (type__name(tag__type(type)) == NULL)
type__emit_definitions(type, cu, emissions, fp);
return type__emit_fwd_decl(tag__type(type), emissions, fp);
}
if (type__emit_definitions(type, cu, emissions, fp))
type__emit(type, cu, NULL, NULL, fp);
return 1;
case DW_TAG_subroutine_type:
return ftype__emit_definitions(tag__ftype(type), cu,
emissions, fp);
}
return 0;
}
int ftype__emit_definitions(struct ftype *ftype, struct cu *cu,
struct type_emissions *emissions, FILE *fp)
{
struct parameter *pos;
/* First check the function return type */
int printed = tag__emit_definitions(&ftype->tag, cu, emissions, fp);
/* Then its parameters */
list_for_each_entry(pos, &ftype->parms, tag.node)
if (tag__emit_definitions(&pos->tag, cu, emissions, fp))
printed = 1;
if (printed)
fputc('\n', fp);
return printed;
}
int type__emit_definitions(struct tag *tag, struct cu *cu,
struct type_emissions *emissions, FILE *fp)
{
struct type *ctype = tag__type(tag);
struct class_member *pos;
if (ctype->definition_emitted)
return 0;
/* Ok, lets look at the previous CUs: */
if (type_emissions__find_definition(emissions, tag->tag, type__name(ctype)) != NULL) {
ctype->definition_emitted = 1;
return 0;
}
if (tag__is_typedef(tag))
return typedef__emit_definitions(tag, cu, emissions, fp);
/*
* vmlinux.h:120298:8: error: ‘irte’ defined as wrong kind of tag
*
* If we have a 'struct foo' and we then find a 'union foo', which happens
* twice in the Linux kernel, for instance, then we need to disambiguate by
* adding a suffix to the second type with the same name.
*
* That is the strategy used in:
*
* btf dump file /sys/kernel/btf/vmlinux format c > vmlinux.h
*/
if (type__can_have_shadow_definition(ctype)) {
if (type_emissions__find_shadow_definition(emissions, tag->tag, type__name(ctype))) {
ctype->suffix_disambiguation = 1;
char *disambiguated_name;
if (asprintf(&disambiguated_name, "%s__%u", type__name(ctype), ctype->suffix_disambiguation) == -1) {
fprintf(stderr, "emit: Not enough memory to allocate disambiguated type name for '%s'\n",
type__name(ctype));
} else {
// Will be deleted in type__delete() on noticing ctype->suffix_disambiguation != 0
tag__namespace(tag)->name = disambiguated_name;
// Now look again if it was emitted in a previous CU with the disambiguated name
if (type_emissions__find_definition(emissions, tag->tag, type__name(ctype)) != NULL) {
ctype->definition_emitted = 1;
return 0;
}
}
}
}
type_emissions__add_definition(emissions, ctype);
type__check_structs_at_unnatural_alignments(ctype, cu);
type__for_each_member(ctype, pos)
if (tag__emit_definitions(&pos->tag, cu, emissions, fp))
fputc('\n', fp);
return 1;
}
void type__emit(struct tag *tag, struct cu *cu,
const char *prefix, const char *suffix, FILE *fp)
{
struct type *ctype = tag__type(tag);
if (type__name(ctype) != NULL ||
suffix != NULL || prefix != NULL) {
struct conf_fprintf conf = {
.prefix = prefix,
.suffix = suffix,
.emit_stats = 1,
};
tag__fprintf(tag, cu, &conf, fp);
fputc('\n', fp);
}
}