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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
|
/* Output BTF format from GCC.
Copyright (C) 2021-2024 Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
/* This file contains routines to output the BPF Type Format (BTF). The BTF
debug format is very similar to CTF; as a result, the structure of this file
closely resembles that of ctfout.cc, and the same CTF container objects are
used. */
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "target.h"
#include "memmodel.h"
#include "tm_p.h"
#include "output.h"
#include "dwarf2asm.h"
#include "debug.h"
#include "ctfc.h"
#include "diagnostic-core.h"
#include "cgraph.h"
#include "varasm.h"
#include "stringpool.h" /* For lookup_attribute. */
#include "attribs.h" /* For lookup_attribute. */
#include "dwarf2out.h" /* For lookup_decl_die. */
static int btf_label_num;
static GTY (()) section * btf_info_section;
/* BTF debug info section. */
#ifndef BTF_INFO_SECTION_NAME
#define BTF_INFO_SECTION_NAME ".BTF"
#endif
#define BTF_INFO_SECTION_FLAGS (SECTION_DEBUG)
/* Maximum size (in bytes) for an artifically generated BTF label. */
#define MAX_BTF_LABEL_BYTES 40
static char btf_info_section_label[MAX_BTF_LABEL_BYTES];
#ifndef BTF_INFO_SECTION_LABEL
#define BTF_INFO_SECTION_LABEL "Lbtf"
#endif
/* BTF encodes void as type id 0. */
#define BTF_VOID_TYPEID 0
#define BTF_INIT_TYPEID 1
#define BTF_INVALID_TYPEID 0xFFFFFFFF
/* Mapping of CTF variables to the IDs they will be assigned when they are
converted to BTF_KIND_VAR type records. Strictly accounts for the index
from the start of the variable type entries, does not include the number
of types emitted prior to the variable records. */
static GTY (()) hash_map <ctf_dvdef_ref, unsigned> *btf_var_ids;
/* Mapping of type IDs from original CTF ID to BTF ID. Types do not map
1-to-1 from CTF to BTF. To avoid polluting the CTF container when updating
type references-by-ID, we use this map instead. */
static ctf_id_t * btf_id_map = NULL;
/* Information for creating the BTF_KIND_DATASEC records. */
typedef struct btf_datasec
{
const char *name; /* Section name, e.g. ".bss". */
uint32_t name_offset; /* Offset to name in string table. */
vec<struct btf_var_secinfo> entries; /* Variable entries in this section. */
} btf_datasec_t;
/* One BTF_KIND_DATASEC record is created for each output data section which
will hold at least one variable. */
static vec<btf_datasec_t> datasecs;
/* Holes occur for types which are present in the CTF container, but are either
non-representable or redundant in BTF. */
static vec<ctf_id_t> holes;
/* CTF definition(s) of void. Only one definition of void should be generated.
We should not encounter more than one definition of void, but use a vector
to be safe. */
static vec<ctf_id_t> voids;
/* Functions in BTF have two separate type records - one for the prototype
(BTF_KIND_FUNC_PROTO), as well as a BTF_KIND_FUNC. CTF_K_FUNCTION types
map closely to BTF_KIND_FUNC_PROTO, but the BTF_KIND_FUNC records must be
created. This vector holds them. */
static GTY (()) vec<ctf_dtdef_ref, va_gc> *funcs;
/* The number of BTF variables added to the TU CTF container. */
static unsigned int num_vars_added = 0;
/* The number of BTF types added to the TU CTF container. */
static unsigned int num_types_added = 0;
/* The number of types synthesized for BTF that do not correspond to
CTF types. */
static unsigned int num_types_created = 0;
/* Name strings for BTF kinds.
Note: the indices here must match the type defines in btf.h. */
static const char *const btf_kind_names[] =
{
"UNKN", "INT", "PTR", "ARRAY", "STRUCT", "UNION", "ENUM", "FWD",
"TYPEDEF", "VOLATILE", "CONST", "RESTRICT", "FUNC", "FUNC_PROTO",
"VAR", "DATASEC", "FLOAT", "DECL_TAG", "TYPE_TAG", "ENUM64"
};
/* Return a name string for the given BTF_KIND. */
static const char *
btf_kind_name (uint32_t btf_kind)
{
return btf_kind_names[btf_kind];
}
/* Map a CTF type kind to the corresponding BTF type kind. */
static uint32_t
get_btf_kind (uint32_t ctf_kind)
{
/* N.B. the values encoding kinds are not in general the same for the
same kind between CTF and BTF. e.g. CTF_K_CONST != BTF_KIND_CONST. */
switch (ctf_kind)
{
case CTF_K_INTEGER: return BTF_KIND_INT;
case CTF_K_FLOAT: return BTF_KIND_FLOAT;
case CTF_K_POINTER: return BTF_KIND_PTR;
case CTF_K_ARRAY: return BTF_KIND_ARRAY;
case CTF_K_FUNCTION: return BTF_KIND_FUNC_PROTO;
case CTF_K_STRUCT: return BTF_KIND_STRUCT;
case CTF_K_UNION: return BTF_KIND_UNION;
case CTF_K_ENUM: return BTF_KIND_ENUM;
case CTF_K_FORWARD: return BTF_KIND_FWD;
case CTF_K_TYPEDEF: return BTF_KIND_TYPEDEF;
case CTF_K_VOLATILE: return BTF_KIND_VOLATILE;
case CTF_K_CONST: return BTF_KIND_CONST;
case CTF_K_RESTRICT: return BTF_KIND_RESTRICT;
default:;
}
return BTF_KIND_UNKN;
}
/* Some BTF types, like BTF_KIND_FUNC_PROTO, are anonymous. The machinery
in btfout to emit BTF, may reset dtd_data->ctti_name, but does not update
the name in the ctf_dtdef_ref type object (deliberate choice). This
interface helps abstract out that state of affairs, while giving access to
the name of the type as intended. */
static const char *
get_btf_type_name (ctf_dtdef_ref dtd)
{
const char *anon = "";
return (dtd->dtd_data.ctti_name) ? dtd->dtd_name : anon;
}
/* Helper routines to map between 'relative' and 'absolute' IDs.
In BTF all records (including variables) are output in one long list, and all
inter-type references are via index into that list. But internally since we
a) translate from CTF, which separates variable records from regular types
and b) create some additional types after the fact, things like VAR and FUNC
records are stored in separate vectors with their own indices. These
functions map between the 'relative' IDs (i.e. indices in their respective
containers) and 'absolute' IDs (i.e. indices in the final contiguous
output list), which goes in order:
all normal type records translated from CTF
all BTF_KIND_VAR records
all BTF_KIND_FUNC records (synthesized split function records)
all BTF_KIND_DATASEC records (synthesized)
The extra '+ 1's below are to account for the implicit "void" record, which
has index 0 but isn't actually contained in the type list. */
/* Return the final BTF ID of the variable at relative index REL. */
static ctf_id_t
btf_absolute_var_id (ctf_id_t rel)
{
return rel + (num_types_added + 1);
}
/* Return the relative index of the variable with final BTF ID ABS. */
static ctf_id_t
btf_relative_var_id (ctf_id_t abs)
{
return abs - (num_types_added + 1);
}
/* Return the final BTF ID of the func record at relative index REL. */
static ctf_id_t
btf_absolute_func_id (ctf_id_t rel)
{
return rel + (num_types_added + 1) + num_vars_added;
}
/* Return the relative index of the func record with final BTF ID ABS. */
static ctf_id_t
btf_relative_func_id (ctf_id_t abs)
{
return abs - ((num_types_added + 1) + num_vars_added);
}
/* Return the final BTF ID of the datasec record at relative index REL. */
static ctf_id_t
btf_absolute_datasec_id (ctf_id_t rel)
{
return rel + (num_types_added + 1) + num_vars_added + funcs->length ();
}
/* Allocate the btf_id_map, and initialize elements to BTF_INVALID_TYPEID. */
static void
init_btf_id_map (size_t len)
{
btf_id_map = XNEWVEC (ctf_id_t, len);
btf_id_map[0] = BTF_VOID_TYPEID;
for (size_t i = 1; i < len; i++)
btf_id_map[i] = BTF_INVALID_TYPEID;
}
/* Return the BTF type ID of CTF type ID KEY, or BTF_INVALID_TYPEID if the CTF
type with ID KEY does not map to a BTF type. */
ctf_id_t
get_btf_id (ctf_id_t key)
{
return btf_id_map[key];
}
/* Set the CTF type ID KEY to map to BTF type ID VAL. */
static inline void
set_btf_id (ctf_id_t key, ctf_id_t val)
{
btf_id_map[key] = val;
}
/* Return TRUE iff the given CTF type ID maps to a BTF type which will
be emitted. */
static inline bool
btf_emit_id_p (ctf_id_t id)
{
return ((btf_id_map[id] != BTF_VOID_TYPEID)
&& (btf_id_map[id] <= BTF_MAX_TYPE));
}
/* Return true if DTD is a forward-declared enum. The BTF representation
of forward declared enums is not formally defined. */
static bool
btf_fwd_to_enum_p (ctf_dtdef_ref dtd)
{
uint32_t btf_kind = get_btf_kind (CTF_V2_INFO_KIND (dtd->dtd_data.ctti_info));
return (btf_kind == BTF_KIND_FWD && dtd->dtd_data.ctti_type == CTF_K_ENUM);
}
/* Each BTF type can be followed additional, variable-length information
completing the description of the type. Calculate the number of bytes
of variable information required to encode a given type. */
static uint64_t
btf_calc_num_vbytes (ctf_dtdef_ref dtd)
{
uint64_t vlen_bytes = 0;
uint32_t kind = get_btf_kind (CTF_V2_INFO_KIND (dtd->dtd_data.ctti_info));
uint32_t vlen = CTF_V2_INFO_VLEN (dtd->dtd_data.ctti_info);
switch (kind)
{
case BTF_KIND_UNKN:
case BTF_KIND_PTR:
case BTF_KIND_FWD:
case BTF_KIND_TYPEDEF:
case BTF_KIND_VOLATILE:
case BTF_KIND_CONST:
case BTF_KIND_RESTRICT:
case BTF_KIND_FUNC:
/* These kinds have no vlen data. */
break;
case BTF_KIND_INT:
/* Size 0 integers represent redundant definitions of void that will
not be emitted. Don't allocate space for them. */
if (dtd->dtd_data.ctti_size == 0)
break;
vlen_bytes += sizeof (uint32_t);
break;
case BTF_KIND_ARRAY:
vlen_bytes += sizeof (struct btf_array);
break;
case BTF_KIND_STRUCT:
case BTF_KIND_UNION:
vlen_bytes += vlen * sizeof (struct btf_member);
break;
case BTF_KIND_ENUM:
vlen_bytes += (dtd->dtd_data.ctti_size > 4)
? vlen * sizeof (struct btf_enum64)
: vlen * sizeof (struct btf_enum);
break;
case BTF_KIND_FUNC_PROTO:
vlen_bytes += vlen * sizeof (struct btf_param);
break;
case BTF_KIND_VAR:
vlen_bytes += sizeof (struct btf_var);
break;
case BTF_KIND_DATASEC:
vlen_bytes += vlen * sizeof (struct btf_var_secinfo);
break;
default:
break;
}
return vlen_bytes;
}
/* Initialize BTF section (.BTF) for output. */
void
init_btf_sections (void)
{
btf_info_section = get_section (BTF_INFO_SECTION_NAME, BTF_INFO_SECTION_FLAGS,
NULL);
ASM_GENERATE_INTERNAL_LABEL (btf_info_section_label,
BTF_INFO_SECTION_LABEL, btf_label_num++);
}
/* Push a BTF datasec variable entry INFO into the datasec named SECNAME,
creating the datasec if it does not already exist. */
static void
btf_datasec_push_entry (ctf_container_ref ctfc, const char *secname,
struct btf_var_secinfo info)
{
if (secname == NULL)
return;
for (size_t i = 0; i < datasecs.length (); i++)
if (strcmp (datasecs[i].name, secname) == 0)
{
datasecs[i].entries.safe_push (info);
return;
}
/* If we don't already have a datasec record for secname, make one. */
uint32_t str_off;
ctf_add_string (ctfc, secname, &str_off, CTF_AUX_STRTAB);
if (strcmp (secname, ""))
ctfc->ctfc_aux_strlen += strlen (secname) + 1;
btf_datasec_t ds;
ds.name = secname;
ds.name_offset = str_off;
ds.entries.create (0);
ds.entries.safe_push (info);
datasecs.safe_push (ds);
}
/* Return the section name, as of interest to btf_collect_datasec, for the
given symtab node. Note that this deliberately returns NULL for objects
which do not go in a section btf_collect_datasec cares about. */
static const char *
get_section_name (symtab_node *node)
{
const char *section_name = node->get_section ();
if (section_name == NULL)
{
switch (categorize_decl_for_section (node->decl, 0))
{
case SECCAT_BSS:
section_name = ".bss";
break;
case SECCAT_DATA:
section_name = ".data";
break;
case SECCAT_RODATA:
section_name = ".rodata";
break;
default:;
}
}
return section_name;
}
/* Construct all BTF_KIND_DATASEC records for CTFC. One such record is created
for each non-empty data-containing section in the output. Each record is
followed by a variable number of entries describing the variables stored
in that section. */
static void
btf_collect_datasec (ctf_container_ref ctfc)
{
cgraph_node *func;
FOR_EACH_FUNCTION (func)
{
dw_die_ref die = lookup_decl_die (func->decl);
if (die == NULL)
continue;
ctf_dtdef_ref dtd = ctf_dtd_lookup (ctfc, die);
if (dtd == NULL)
continue;
if (DECL_EXTERNAL (func->decl)
&& (lookup_attribute ("kernel_helper",
DECL_ATTRIBUTES (func->decl))) != NULL_TREE)
continue;
/* Functions actually get two types: a BTF_KIND_FUNC_PROTO, and
also a BTF_KIND_FUNC. But the CTF container only allocates one
type per function, which matches closely with BTF_KIND_FUNC_PROTO.
For each such function, also allocate a BTF_KIND_FUNC entry.
These will be output later. */
ctf_dtdef_ref func_dtd = ggc_cleared_alloc<ctf_dtdef_t> ();
func_dtd->dtd_data = dtd->dtd_data;
func_dtd->dtd_data.ctti_type = dtd->dtd_type;
func_dtd->linkage = dtd->linkage;
func_dtd->dtd_name = dtd->dtd_name;
/* +1 for the sentinel type not in the types map. */
func_dtd->dtd_type = num_types_added + num_types_created + 1;
/* Only the BTF_KIND_FUNC type actually references the name. The
BTF_KIND_FUNC_PROTO is always anonymous. */
dtd->dtd_data.ctti_name = 0;
vec_safe_push (funcs, func_dtd);
num_types_created++;
/* Mark any 'extern' funcs and add DATASEC entries for them. */
if (DECL_EXTERNAL (func->decl))
{
func_dtd->linkage = BTF_FUNC_EXTERN;
const char *section_name = get_section_name (func);
/* Note: get_section_name () returns NULL for functions in text
section. This is intentional, since we do not want to generate
DATASEC entries for them. */
if (section_name == NULL)
continue;
struct btf_var_secinfo info;
info.type = func_dtd->dtd_type;
/* Both zero at compile time. */
info.size = 0;
info.offset = 0;
btf_datasec_push_entry (ctfc, section_name, info);
}
}
varpool_node *node;
FOR_EACH_VARIABLE (node)
{
dw_die_ref die = lookup_decl_die (node->decl);
if (die == NULL)
continue;
ctf_dvdef_ref dvd = ctf_dvd_lookup (ctfc, die);
if (dvd == NULL)
continue;
/* Mark extern variables. */
if (DECL_EXTERNAL (node->decl))
{
dvd->dvd_visibility = BTF_VAR_GLOBAL_EXTERN;
/* PR112849: avoid assuming a section for extern decls without
an explicit section, which would result in incorrectly
emitting a BTF_KIND_DATASEC entry for them. */
if (node->get_section () == NULL)
continue;
}
const char *section_name = get_section_name (node);
if (section_name == NULL)
continue;
struct btf_var_secinfo info;
info.type = 0;
unsigned int *var_id = btf_var_ids->get (dvd);
if (var_id)
info.type = btf_absolute_var_id (*var_id);
else
continue;
info.size = 0;
tree size = DECL_SIZE_UNIT (node->decl);
if (tree_fits_uhwi_p (size))
info.size = tree_to_uhwi (size);
else if (VOID_TYPE_P (TREE_TYPE (node->decl)))
info.size = 1;
/* Offset is left as 0 at compile time, to be filled in by loaders such
as libbpf. */
info.offset = 0;
btf_datasec_push_entry (ctfc, section_name, info);
}
num_types_created += datasecs.length ();
}
/* Return true if the type ID is that of a type which will not be emitted (for
example, if it is not representable in BTF). */
static bool
btf_removed_type_p (ctf_id_t id)
{
return holes.contains (id);
}
/* Adjust the given type ID to account for holes and duplicate definitions of
void. */
static ctf_id_t
btf_adjust_type_id (ctf_id_t id)
{
size_t n;
ctf_id_t i = 0;
/* Do not adjust invalid type markers. */
if (id == BTF_INVALID_TYPEID)
return id;
for (n = 0; n < voids.length (); n++)
if (id == voids[n])
return BTF_VOID_TYPEID;
for (n = 0; n < holes.length (); n++)
{
if (holes[n] < id)
i++;
else if (holes[n] == id)
return BTF_VOID_TYPEID;
}
return id - i;
}
/* Postprocessing callback routine for types. */
int
btf_dtd_postprocess_cb (ctf_dtdef_ref *slot, ctf_container_ref arg_ctfc)
{
ctf_dtdef_ref ctftype = (ctf_dtdef_ref) * slot;
size_t index = ctftype->dtd_type;
gcc_assert (index <= arg_ctfc->ctfc_types->elements ());
uint32_t ctf_kind, btf_kind;
ctf_kind = CTF_V2_INFO_KIND (ctftype->dtd_data.ctti_info);
btf_kind = get_btf_kind (ctf_kind);
if (btf_kind == BTF_KIND_UNKN)
/* This type is not representable in BTF. Create a hole. */
holes.safe_push (ctftype->dtd_type);
else if (btf_kind == BTF_KIND_INT && ctftype->dtd_data.ctti_size == 0)
{
/* This is a (redundant) definition of void. */
voids.safe_push (ctftype->dtd_type);
holes.safe_push (ctftype->dtd_type);
}
arg_ctfc->ctfc_types_list[index] = ctftype;
return 1;
}
/* Preprocessing callback routine for variables. */
int
btf_dvd_emit_preprocess_cb (ctf_dvdef_ref *slot, ctf_container_ref arg_ctfc)
{
ctf_dvdef_ref var = (ctf_dvdef_ref) * slot;
/* If this is an extern variable declaration with a defining declaration
later, skip it so that only the defining declaration is emitted.
This is the same case, fix and reasoning as in CTF; see PR105089. */
if (ctf_dvd_ignore_lookup (arg_ctfc, var->dvd_key))
return 1;
/* Do not add variables which refer to unsupported types. */
if (!voids.contains (var->dvd_type) && btf_removed_type_p (var->dvd_type))
return 1;
arg_ctfc->ctfc_vars_list[num_vars_added] = var;
btf_var_ids->put (var, num_vars_added);
num_vars_added++;
num_types_created++;
return 1;
}
/* Preprocessing callback routine for types. */
static void
btf_dtd_emit_preprocess_cb (ctf_container_ref ctfc, ctf_dtdef_ref dtd)
{
if (!btf_emit_id_p (dtd->dtd_type))
return;
ctfc->ctfc_num_vlen_bytes += btf_calc_num_vbytes (dtd);
}
/* Preprocess the CTF information to prepare for BTF output. BTF is almost a
subset of CTF, with many small differences in encoding, and lacking support
for some types (notably floating point formats).
During the preprocessing pass:
- Ascertain that the sorted list of types has been prepared. For the BTF
generation process, this is taken care of by the btf_init_postprocess ().
- BTF_KIND_FUNC and BTF_KIND_DATASEC records are constructed. These types do
not have analogues in CTF (the analogous type to CTF_K_FUNCTION is
BTF_KIND_FUNC_PROTO), but can be relatively easily deduced from CTF
information.
- Construct BTF_KIND_VAR records, representing variables.
- Calculate the total size in bytes of variable-length information following
BTF type records. This is used for outputting the BTF header.
After preprocessing, all BTF information is ready to be output:
- ctfc->ctfc_types_list holdstypes converted from CTF types. This does not
include KIND_VAR, KIND_FUNC, nor KIND_DATASEC types. These types have been
re-encoded to the appropriate representation in BTF.
- ctfc->ctfc_vars_list holds all variables which should be output.
Variables of unsupported types are not present in this list.
- Vector 'funcs' holds all BTF_KIND_FUNC types, one to match each
BTF_KIND_FUNC_PROTO.
- Vector 'datasecs' holds all BTF_KIND_DATASEC types. */
static void
btf_emit_preprocess (ctf_container_ref ctfc)
{
size_t num_ctf_types = ctfc->ctfc_types->elements ();
size_t num_ctf_vars = ctfc->ctfc_vars->elements ();
size_t i;
if (num_ctf_types)
{
gcc_assert (ctfc->ctfc_types_list);
/* Preprocess the types. */
for (i = 1; i <= num_ctf_types; i++)
btf_dtd_emit_preprocess_cb (ctfc, ctfc->ctfc_types_list[i]);
}
btf_var_ids = hash_map<ctf_dvdef_ref, unsigned int>::create_ggc (100);
if (num_ctf_vars)
{
/* Allocate and construct the list of variables. While BTF variables are
not distinct from types (in that variables are simply types with
BTF_KIND_VAR), it is simpler to maintain a separate list of variables
and append them to the types list during output. */
ctfc->ctfc_vars_list = ggc_vec_alloc<ctf_dvdef_ref>(num_ctf_vars);
ctfc->ctfc_vars->traverse<ctf_container_ref, btf_dvd_emit_preprocess_cb>
(ctfc);
ctfc->ctfc_num_vlen_bytes += (num_vars_added * sizeof (struct btf_var));
}
btf_collect_datasec (ctfc);
}
/* Return true iff DMD is a member description of a bit-field which can be
validly represented in BTF. */
static bool
btf_dmd_representable_bitfield_p (ctf_container_ref ctfc, ctf_dmdef_t *dmd)
{
ctf_dtdef_ref ref_type = ctfc->ctfc_types_list[dmd->dmd_type];
if (CTF_V2_INFO_KIND (ref_type->dtd_data.ctti_info) == CTF_K_SLICE)
{
unsigned short word_offset = ref_type->dtd_u.dtu_slice.cts_offset;
unsigned short bits = ref_type->dtd_u.dtu_slice.cts_bits;
uint64_t sou_offset = dmd->dmd_offset;
if ((bits > 0xff) || ((sou_offset + word_offset) > 0xffffff))
return false;
return true;
}
return false;
}
/* BTF asm helper routines. */
/* Asm'out a reference to another BTF type. */
static void
btf_asm_type_ref (const char *prefix, ctf_container_ref ctfc, ctf_id_t ctf_id)
{
ctf_id_t btf_id = get_btf_id (ctf_id);
if (btf_id == BTF_VOID_TYPEID || btf_id == BTF_INVALID_TYPEID)
{
/* There is no explicit void type.
Also handle any invalid refs that made it this far, just in case. */
dw2_asm_output_data (4, btf_id, "%s: void", prefix);
}
else
{
gcc_assert (btf_id <= num_types_added);
/* Ref to a standard type in the types list. Note: take care that we
must index the type list by the original CTF id, not the BTF id. */
ctf_dtdef_ref ref_type = ctfc->ctfc_types_list[ctf_id];
uint32_t ref_kind
= get_btf_kind (CTF_V2_INFO_KIND (ref_type->dtd_data.ctti_info));
const char *kind_name = btf_fwd_to_enum_p (ref_type)
? btf_kind_name (BTF_KIND_ENUM)
: btf_kind_name (ref_kind);
dw2_asm_output_data (4, btf_id, "%s: (BTF_KIND_%s '%s')",
prefix, kind_name,
get_btf_type_name (ref_type));
}
}
/* Asm'out a reference to a BTF_KIND_VAR or BTF_KIND_FUNC type. These type
kinds are BTF-specific, and should only be referred to by entries in
BTF_KIND_DATASEC records. */
static void
btf_asm_datasec_type_ref (const char *prefix, ctf_container_ref ctfc,
ctf_id_t btf_id)
{
if (btf_id >= num_types_added + 1
&& btf_id < num_types_added + num_vars_added + 1)
{
/* Ref to a variable. Should only appear in DATASEC entries. */
ctf_id_t var_id = btf_relative_var_id (btf_id);
ctf_dvdef_ref dvd = ctfc->ctfc_vars_list[var_id];
dw2_asm_output_data (4, btf_id, "%s: (BTF_KIND_VAR '%s')",
prefix, dvd->dvd_name);
}
else if (btf_id >= num_types_added + num_vars_added + 1)
{
/* Ref to a FUNC record. */
size_t func_id = btf_relative_func_id (btf_id);
ctf_dtdef_ref ref_type = (*funcs)[func_id];
dw2_asm_output_data (4, btf_id, "%s: (BTF_KIND_FUNC '%s')",
prefix, get_btf_type_name (ref_type));
}
else
/* The caller should not be calling this. */
gcc_unreachable ();
}
/* Asm'out a BTF type. This routine is responsible for the bulk of the task
of converting CTF types to their BTF representation. */
static void
btf_asm_type (ctf_container_ref ctfc, ctf_dtdef_ref dtd)
{
uint32_t btf_kind, btf_kflag, btf_vlen, btf_size;
uint32_t ctf_info = dtd->dtd_data.ctti_info;
btf_kind = get_btf_kind (CTF_V2_INFO_KIND (ctf_info));
btf_size = dtd->dtd_data.ctti_size;
btf_vlen = CTF_V2_INFO_VLEN (ctf_info);
/* By now any unrepresentable types have been removed. */
gcc_assert (btf_kind != BTF_KIND_UNKN);
/* Size 0 integers are redundant definitions of void. None should remain
in the types list by this point. */
gcc_assert (btf_kind != BTF_KIND_INT || btf_size >= 1);
/* Re-encode the ctti_info to BTF. */
/* kflag is 1 for structs/unions with a bitfield member.
kflag is 1 for forwards to unions.
kflag is 0 in all other cases. */
btf_kflag = 0;
if (btf_kind == BTF_KIND_STRUCT || btf_kind == BTF_KIND_UNION)
{
/* If a struct/union has ANY bitfield members, set kflag=1.
Note that we must also change the encoding of every member to encode
both member bitfield size (stealing most-significant 8 bits) and bit
offset (LS 24 bits). This is done during preprocessing. */
ctf_dmdef_t *dmd;
for (dmd = dtd->dtd_u.dtu_members;
dmd != NULL; dmd = (ctf_dmdef_t *) ctf_dmd_list_next (dmd))
{
/* Set kflag if this member is a representable bitfield. */
if (btf_dmd_representable_bitfield_p (ctfc, dmd))
btf_kflag = 1;
}
}
/* BTF forwards make use of KIND_FLAG to distinguish between forwards to
structs and forwards to unions. The dwarf2ctf conversion process stores
the kind of the forward in ctti_type, but for BTF this must be 0 for
forwards, with only the KIND_FLAG to distinguish.
Forwards to enum types are special-cased below. */
else if (btf_kind == BTF_KIND_FWD)
{
if (dtd->dtd_data.ctti_type == CTF_K_UNION)
btf_kflag = 1;
/* PR debug/111735. Encode foward-declared enums as BTF_KIND_ENUM
with vlen=0. A representation for these is not formally defined;
this is the de-facto standard used by other tools like clang
and pahole. */
else if (dtd->dtd_data.ctti_type == CTF_K_ENUM)
{
btf_kind = BTF_KIND_ENUM;
btf_vlen = 0;
}
btf_size = 0;
}
else if (btf_kind == BTF_KIND_ENUM)
{
btf_kflag = dtd->dtd_enum_unsigned
? BTF_KF_ENUM_UNSIGNED
: BTF_KF_ENUM_SIGNED;
if (dtd->dtd_data.ctti_size == 0x8)
btf_kind = BTF_KIND_ENUM64;
}
/* PR debug/112656. BTF_KIND_FUNC_PROTO is always anonymous. */
else if (btf_kind == BTF_KIND_FUNC_PROTO)
dtd->dtd_data.ctti_name = 0;
dw2_asm_output_data (4, dtd->dtd_data.ctti_name,
"TYPE %" PRIu64 " BTF_KIND_%s '%s'",
get_btf_id (dtd->dtd_type), btf_kind_name (btf_kind),
get_btf_type_name (dtd));
dw2_asm_output_data (4, BTF_TYPE_INFO (btf_kind, btf_kflag, btf_vlen),
"btt_info: kind=%u, kflag=%u, vlen=%u",
btf_kind, btf_kflag, btf_vlen);
switch (btf_kind)
{
case BTF_KIND_INT:
case BTF_KIND_FLOAT:
case BTF_KIND_STRUCT:
case BTF_KIND_UNION:
case BTF_KIND_ENUM:
case BTF_KIND_DATASEC:
case BTF_KIND_ENUM64:
dw2_asm_output_data (4, btf_size, "btt_size: %uB", btf_size);
return;
case BTF_KIND_ARRAY:
case BTF_KIND_FWD:
/* These types do not encode any information in the size/type field
and should write 0. */
dw2_asm_output_data (4, 0, "(unused)");
return;
default:
break;
}
ctf_id_t ref_id = dtd->dtd_data.ctti_type;
btf_asm_type_ref ("btt_type", ctfc, ref_id);
}
/* Asm'out the variable information following a BTF_KIND_ARRAY. */
static void
btf_asm_array (ctf_container_ref ctfc, ctf_arinfo_t arr)
{
btf_asm_type_ref ("bta_elem_type", ctfc, arr.ctr_contents);
btf_asm_type_ref ("bta_index_type", ctfc, arr.ctr_index);
dw2_asm_output_data (4, arr.ctr_nelems, "bta_nelems");
}
/* Asm'out a BTF_KIND_VAR. */
static void
btf_asm_varent (ctf_container_ref ctfc, ctf_dvdef_ref var)
{
dw2_asm_output_data (4, var->dvd_name_offset, "TYPE %u BTF_KIND_VAR '%s'",
(*(btf_var_ids->get (var)) + num_types_added + 1),
var->dvd_name);
dw2_asm_output_data (4, BTF_TYPE_INFO (BTF_KIND_VAR, 0, 0), "btv_info");
btf_asm_type_ref ("btv_type", ctfc, var->dvd_type);
dw2_asm_output_data (4, var->dvd_visibility, "btv_linkage");
}
/* Asm'out a member description following a BTF_KIND_STRUCT or
BTF_KIND_UNION. */
static void
btf_asm_sou_member (ctf_container_ref ctfc, ctf_dmdef_t * dmd, unsigned int idx)
{
ctf_dtdef_ref ref_type = ctfc->ctfc_types_list[dmd->dmd_type];
ctf_id_t base_type = dmd->dmd_type;
uint64_t sou_offset = dmd->dmd_offset;
dw2_asm_output_data (4, dmd->dmd_name_offset,
"MEMBER '%s' idx=%u",
dmd->dmd_name, idx);
/* Re-encode bitfields to BTF representation. */
if (CTF_V2_INFO_KIND (ref_type->dtd_data.ctti_info) == CTF_K_SLICE)
{
if (btf_dmd_representable_bitfield_p (ctfc, dmd))
{
unsigned short word_offset = ref_type->dtd_u.dtu_slice.cts_offset;
unsigned short bits = ref_type->dtd_u.dtu_slice.cts_bits;
/* Pack the bit offset and bitfield size together. */
sou_offset += word_offset;
sou_offset &= 0x00ffffff;
sou_offset |= ((bits & 0xff) << 24);
/* Refer to the base type of the slice. */
base_type = ref_type->dtd_u.dtu_slice.cts_type;
}
else
{
/* Bitfield cannot be represented in BTF. Emit the member as having
'void' type. */
base_type = BTF_VOID_TYPEID;
}
}
btf_asm_type_ref ("btm_type", ctfc, base_type);
dw2_asm_output_data (4, sou_offset, "btm_offset");
}
/* Asm'out an enum constant following a BTF_KIND_ENUM{,64}. */
static void
btf_asm_enum_const (unsigned int size, ctf_dmdef_t * dmd, unsigned int idx)
{
dw2_asm_output_data (4, dmd->dmd_name_offset, "ENUM_CONST '%s' idx=%u",
dmd->dmd_name, idx);
if (size <= 4)
dw2_asm_output_data (size < 4 ? 4 : size, dmd->dmd_value, "bte_value");
else
{
dw2_asm_output_data (4, dmd->dmd_value & 0xffffffff, "bte_value_lo32");
dw2_asm_output_data (4, (dmd->dmd_value >> 32) & 0xffffffff, "bte_value_hi32");
}
}
/* Asm'out a function parameter description following a BTF_KIND_FUNC_PROTO. */
static void
btf_asm_func_arg (ctf_container_ref ctfc, ctf_func_arg_t * farg,
size_t stroffset)
{
/* If the function arg does not have a name, refer to the null string at
the start of the string table. This ensures correct encoding for varargs
'...' arguments. */
if ((farg->farg_name != NULL) && strcmp (farg->farg_name, ""))
dw2_asm_output_data (4, farg->farg_name_offset + stroffset, "farg_name");
else
dw2_asm_output_data (4, 0, "farg_name");
btf_asm_type_ref ("farg_type", ctfc, (btf_removed_type_p (farg->farg_type)
? BTF_VOID_TYPEID
: farg->farg_type));
}
/* Asm'out a BTF_KIND_FUNC type. */
static void
btf_asm_func_type (ctf_container_ref ctfc, ctf_dtdef_ref dtd, ctf_id_t id)
{
ctf_id_t ref_id = dtd->dtd_data.ctti_type;
dw2_asm_output_data (4, dtd->dtd_data.ctti_name,
"TYPE %" PRIu64 " BTF_KIND_FUNC '%s'",
btf_absolute_func_id (id), get_btf_type_name (dtd));
dw2_asm_output_data (4, BTF_TYPE_INFO (BTF_KIND_FUNC, 0, dtd->linkage),
"btt_info: kind=%u, kflag=%u, linkage=%u",
BTF_KIND_FUNC, 0, dtd->linkage);
btf_asm_type_ref ("btt_type", ctfc, ref_id);
}
/* Collect the name for the DATASEC reference required to be output as a
symbol. */
static const char *
get_name_for_datasec_entry (ctf_container_ref ctfc, ctf_id_t ref_id)
{
if (ref_id >= num_types_added + 1
&& ref_id < num_types_added + num_vars_added + 1)
{
/* Ref to a variable. Should only appear in DATASEC entries. */
ctf_id_t var_id = btf_relative_var_id (ref_id);
ctf_dvdef_ref dvd = ctfc->ctfc_vars_list[var_id];
return dvd->dvd_name;
}
else if (ref_id >= num_types_added + num_vars_added + 1)
{
/* Ref to a FUNC record. */
size_t func_id = btf_relative_func_id (ref_id);
ctf_dtdef_ref ref_type = (*funcs)[func_id];
return get_btf_type_name (ref_type);
}
return NULL;
}
/* Asm'out a variable entry following a BTF_KIND_DATASEC. */
static void
btf_asm_datasec_entry (ctf_container_ref ctfc, struct btf_var_secinfo info)
{
const char *symbol_name = get_name_for_datasec_entry (ctfc, info.type);
btf_asm_datasec_type_ref ("bts_type", ctfc, info.type);
if (!btf_with_core_debuginfo_p () || symbol_name == NULL)
dw2_asm_output_data (4, info.offset, "bts_offset");
else
dw2_asm_output_offset (4, symbol_name, NULL, "bts_offset");
dw2_asm_output_data (4, info.size, "bts_size");
}
/* Asm'out a whole BTF_KIND_DATASEC, including its variable entries. */
static void
btf_asm_datasec_type (ctf_container_ref ctfc, btf_datasec_t ds, ctf_id_t id,
size_t stroffset)
{
dw2_asm_output_data (4, ds.name_offset + stroffset,
"TYPE %" PRIu64 " BTF_KIND_DATASEC '%s'",
btf_absolute_datasec_id (id), ds.name);
dw2_asm_output_data (4, BTF_TYPE_INFO (BTF_KIND_DATASEC, 0,
ds.entries.length ()),
"btt_info: n_entries=%u", ds.entries.length ());
/* Note: the "total section size in bytes" is emitted as 0 and patched by
loaders such as libbpf. */
dw2_asm_output_data (4, 0, "btt_size");
for (size_t i = 0; i < ds.entries.length (); i++)
btf_asm_datasec_entry (ctfc, ds.entries[i]);
}
/* Compute and output the header information for a .BTF section. */
static void
output_btf_header (ctf_container_ref ctfc)
{
switch_to_section (btf_info_section);
ASM_OUTPUT_LABEL (asm_out_file, btf_info_section_label);
/* BTF magic number, version, flags, and header length. */
dw2_asm_output_data (2, BTF_MAGIC, "btf_magic");
dw2_asm_output_data (1, BTF_VERSION, "btf_version");
dw2_asm_output_data (1, 0, "btf_flags");
dw2_asm_output_data (4, sizeof (struct btf_header), "btf_hdr_len");
uint32_t type_off = 0, type_len = 0;
uint32_t str_off = 0, str_len = 0;
uint32_t datasec_vlen_bytes = 0;
if (!ctfc_is_empty_container (ctfc))
{
for (size_t i = 0; i < datasecs.length (); i++)
{
datasec_vlen_bytes += ((datasecs[i].entries.length ())
* sizeof (struct btf_var_secinfo));
}
/* Total length (bytes) of the types section. */
type_len = (num_types_added * sizeof (struct btf_type))
+ (num_types_created * sizeof (struct btf_type))
+ datasec_vlen_bytes
+ ctfc->ctfc_num_vlen_bytes;
str_off = type_off + type_len;
str_len = ctfc->ctfc_strtable.ctstab_len
+ ctfc->ctfc_aux_strtable.ctstab_len;
}
/* Offset of type section. */
dw2_asm_output_data (4, type_off, "type_off");
/* Length of type section in bytes. */
dw2_asm_output_data (4, type_len, "type_len");
/* Offset of string section. */
dw2_asm_output_data (4, str_off, "str_off");
/* Length of string section in bytes. */
dw2_asm_output_data (4, str_len, "str_len");
}
/* Output all BTF_KIND_VARs in CTFC. */
static void
output_btf_vars (ctf_container_ref ctfc)
{
size_t i;
size_t num_ctf_vars = num_vars_added;
if (num_ctf_vars)
{
for (i = 0; i < num_ctf_vars; i++)
btf_asm_varent (ctfc, ctfc->ctfc_vars_list[i]);
}
}
/* Output BTF string records. The BTF strings section is a concatenation
of the standard and auxilliary string tables in the ctf container. */
static void
output_btf_strs (ctf_container_ref ctfc)
{
ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head;
static int str_pos = 0;
while (ctf_string)
{
dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_string, str_pos = 0x%x", str_pos);
str_pos += strlen(ctf_string->cts_str) + 1;
ctf_string = ctf_string->cts_next;
}
ctf_string = ctfc->ctfc_aux_strtable.ctstab_head;
while (ctf_string)
{
dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_aux_string, str_pos = 0x%x", str_pos);
str_pos += strlen(ctf_string->cts_str) + 1;
ctf_string = ctf_string->cts_next;
}
}
/* Output all (representable) members of a BTF_KIND_STRUCT or
BTF_KIND_UNION type. */
static void
output_asm_btf_sou_fields (ctf_container_ref ctfc, ctf_dtdef_ref dtd)
{
ctf_dmdef_t * dmd;
unsigned idx = 0;
for (dmd = dtd->dtd_u.dtu_members;
dmd != NULL; dmd = (ctf_dmdef_t *) ctf_dmd_list_next (dmd))
{
btf_asm_sou_member (ctfc, dmd, idx);
idx++;
}
}
/* Output all enumerator constants following a BTF_KIND_ENUM{,64}. */
static void
output_asm_btf_enum_list (ctf_container_ref ARG_UNUSED (ctfc),
ctf_dtdef_ref dtd)
{
ctf_dmdef_t * dmd;
unsigned idx = 0;
for (dmd = dtd->dtd_u.dtu_members;
dmd != NULL; dmd = (ctf_dmdef_t *) ctf_dmd_list_next (dmd))
{
btf_asm_enum_const (dtd->dtd_data.ctti_size, dmd, idx);
idx++;
}
}
/* Output all function arguments following a BTF_KIND_FUNC_PROTO. */
static void
output_asm_btf_func_args_list (ctf_container_ref ctfc,
ctf_dtdef_ref dtd)
{
size_t farg_name_offset = ctfc_get_strtab_len (ctfc, CTF_STRTAB);
ctf_func_arg_t * farg;
for (farg = dtd->dtd_u.dtu_argv;
farg != NULL; farg = (ctf_func_arg_t *) ctf_farg_list_next (farg))
btf_asm_func_arg (ctfc, farg, farg_name_offset);
}
/* Output the variable portion of a BTF type record. The information depends
on the kind of the type. */
static void
output_asm_btf_vlen_bytes (ctf_container_ref ctfc, ctf_dtdef_ref dtd)
{
uint32_t btf_kind, encoding;
btf_kind = get_btf_kind (CTF_V2_INFO_KIND (dtd->dtd_data.ctti_info));
if (btf_kind == BTF_KIND_UNKN)
return;
switch (btf_kind)
{
case BTF_KIND_INT:
/* Redundant definitions of void may still be hanging around in the type
list as size 0 integers. Skip emitting them. */
if (dtd->dtd_data.ctti_size < 1)
break;
/* In BTF the CHAR `encoding' seems to not be used, so clear it
here. */
dtd->dtd_u.dtu_enc.cte_format &= ~BTF_INT_CHAR;
encoding = BTF_INT_DATA (dtd->dtd_u.dtu_enc.cte_format,
dtd->dtd_u.dtu_enc.cte_offset,
dtd->dtd_u.dtu_enc.cte_bits);
dw2_asm_output_data (4, encoding, "bti_encoding");
break;
case BTF_KIND_ARRAY:
btf_asm_array (ctfc, dtd->dtd_u.dtu_arr);
break;
case BTF_KIND_STRUCT:
case BTF_KIND_UNION:
output_asm_btf_sou_fields (ctfc, dtd);
break;
case BTF_KIND_ENUM:
output_asm_btf_enum_list (ctfc, dtd);
break;
case BTF_KIND_FUNC_PROTO:
output_asm_btf_func_args_list (ctfc, dtd);
break;
case BTF_KIND_VAR:
/* BTF Variables are handled by output_btf_vars and btf_asm_varent.
There should be no BTF_KIND_VAR types at this point. */
gcc_unreachable ();
case BTF_KIND_DATASEC:
/* The BTF_KIND_DATASEC records are handled by output_btf_datasec_types
and btf_asm_datasec_type. There should be no BTF_KIND_DATASEC types
at this point. */
gcc_unreachable ();
default:
/* All other BTF type kinds have no variable length data. */
break;
}
}
/* Output a whole BTF type record for TYPE, including the fixed and variable
data portions. */
static void
output_asm_btf_type (ctf_container_ref ctfc, ctf_dtdef_ref type)
{
if (btf_emit_id_p (type->dtd_type))
{
btf_asm_type (ctfc, type);
output_asm_btf_vlen_bytes (ctfc, type);
}
}
/* Output all BTF types in the container. This does not include synthesized
types: BTF_KIND_VAR, BTF_KIND_FUNC, nor BTF_KIND_DATASEC. */
static void
output_btf_types (ctf_container_ref ctfc)
{
size_t i;
size_t num_types = ctfc->ctfc_types->elements ();
if (num_types)
{
for (i = 1; i <= num_types; i++)
output_asm_btf_type (ctfc, ctfc->ctfc_types_list[i]);
}
}
/* Output all BTF_KIND_FUNC type records. */
static void
output_btf_func_types (ctf_container_ref ctfc)
{
ctf_dtdef_ref ref;
unsigned i;
FOR_EACH_VEC_ELT (*funcs, i, ref)
btf_asm_func_type (ctfc, ref, i);
}
/* Output all BTF_KIND_DATASEC records. */
static void
output_btf_datasec_types (ctf_container_ref ctfc)
{
size_t name_offset = ctfc_get_strtab_len (ctfc, CTF_STRTAB);
for (size_t i = 0; i < datasecs.length(); i++)
btf_asm_datasec_type (ctfc, datasecs[i], i, name_offset);
}
/* Postprocess the CTF debug data post initialization.
During the postprocess pass:
- Prepare the sorted list of BTF types.
The sorted list of BTF types is, firstly, used for lookup (during the BTF
generation process) of CTF/BTF types given a typeID.
Secondly, in the emitted BTF section, BTF Types need to be in the sorted
order of their type IDs. The BTF types section is viewed as an array,
with type IDs used to index into that array. It is essential that every
type be placed at the exact index corresponding to its ID, or else
references to that type from other types will no longer be correct.
- References to void types are converted to reference BTF_VOID_TYPEID. In
CTF, a distinct type is used to encode void.
- Bitfield struct/union members are converted to BTF encoding. CTF uses
slices to encode bitfields, but BTF does not have slices and encodes
bitfield information directly in the variable-length btf_member
descriptions following the struct or union type.
- Unrepresentable types are removed. We cannot have any invalid BTF types
appearing in the output so they must be removed, and type ids of other
types and references adjust accordingly. This also involves ensuring that
BTF descriptions of struct members referring to unrepresentable types are
not emitted, as they would be nonsensical.
- Adjust inner- and inter-type references-by-ID to account for removed
types, and construct the types list. */
void
btf_init_postprocess (void)
{
ctf_container_ref tu_ctfc = ctf_get_tu_ctfc ();
holes.create (0);
voids.create (0);
num_types_added = 0;
num_types_created = 0;
/* Workaround for 'const void' variables. These variables are sometimes used
in eBPF programs to address kernel symbols. DWARF does not generate const
qualifier on void type, so we would incorrectly emit these variables
without the const qualifier.
Unfortunately we need the TREE node to know it was const, and we need
to create the const modifier type (if needed) now, before making the types
list. So we can't avoid iterating with FOR_EACH_VARIABLE here, and then
again when creating the DATASEC entries. */
ctf_id_t constvoid_id = CTF_NULL_TYPEID;
varpool_node *var;
FOR_EACH_VARIABLE (var)
{
if (!var->decl)
continue;
tree type = TREE_TYPE (var->decl);
if (type && VOID_TYPE_P (type) && TYPE_READONLY (type))
{
dw_die_ref die = lookup_decl_die (var->decl);
if (die == NULL)
continue;
ctf_dvdef_ref dvd = ctf_dvd_lookup (tu_ctfc, die);
if (dvd == NULL)
continue;
/* Create the 'const' modifier type for void. */
if (constvoid_id == CTF_NULL_TYPEID)
constvoid_id = ctf_add_reftype (tu_ctfc, CTF_ADD_ROOT,
dvd->dvd_type, CTF_K_CONST, NULL);
dvd->dvd_type = constvoid_id;
}
}
size_t i;
size_t num_ctf_types = tu_ctfc->ctfc_types->elements ();
if (num_ctf_types)
{
init_btf_id_map (num_ctf_types + 1);
/* Allocate the types list and traverse all types, placing each type
at the index according to its ID. Add 1 because type ID 0 always
represents VOID. */
tu_ctfc->ctfc_types_list
= ggc_vec_alloc<ctf_dtdef_ref>(num_ctf_types + 1);
tu_ctfc->ctfc_types->traverse<ctf_container_ref, btf_dtd_postprocess_cb>
(tu_ctfc);
/* Build mapping of CTF type ID -> BTF type ID, and count total number
of valid BTF types added. */
for (i = 1; i <= num_ctf_types; i++)
{
ctf_dtdef_ref dtd = tu_ctfc->ctfc_types_list[i];
ctf_id_t btfid = btf_adjust_type_id (dtd->dtd_type);
set_btf_id (dtd->dtd_type, btfid);
if (btfid < BTF_MAX_TYPE && (btfid != BTF_VOID_TYPEID))
num_types_added ++;
}
}
}
/* Process and output all BTF data. Entry point of btfout. */
void
btf_output (const char * filename)
{
ctf_container_ref tu_ctfc = ctf_get_tu_ctfc ();
init_btf_sections ();
datasecs.create (0);
vec_alloc (funcs, 16);
ctf_add_cuname (tu_ctfc, filename);
btf_emit_preprocess (tu_ctfc);
output_btf_header (tu_ctfc);
output_btf_types (tu_ctfc);
output_btf_vars (tu_ctfc);
output_btf_func_types (tu_ctfc);
output_btf_datasec_types (tu_ctfc);
output_btf_strs (tu_ctfc);
}
/* Reset all state for BTF generation so that we can rerun the compiler within
the same process. */
void
btf_finalize (void)
{
btf_info_section = NULL;
/* Clear preprocessing state. */
num_vars_added = 0;
num_types_added = 0;
num_types_created = 0;
holes.release ();
voids.release ();
for (size_t i = 0; i < datasecs.length (); i++)
datasecs[i].entries.release ();
datasecs.release ();
funcs = NULL;
btf_var_ids->empty ();
btf_var_ids = NULL;
free (btf_id_map);
btf_id_map = NULL;
ctf_container_ref tu_ctfc = ctf_get_tu_ctfc ();
ctfc_delete_container (tu_ctfc);
tu_ctfc = NULL;
}
/* Traversal function for all BTF_KIND_FUNC type records. */
bool
traverse_btf_func_types (funcs_traverse_callback callback, void *data)
{
ctf_dtdef_ref ref;
unsigned i;
FOR_EACH_VEC_ELT (*funcs, i, ref)
{
bool stop = callback (ref, data);
if (stop == true)
return true;
}
return false;
}
#include "gt-btfout.h"
|