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
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
|
/* $OpenBSD: code.c,v 1.8 2008/04/11 20:45:52 stefan Exp $ */
/*
* Copyright (c) 2003 Anders Magnusson (ragge@ludd.luth.se).
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <assert.h>
#include <stdlib.h>
#include "pass1.h"
#include "pass2.h"
static void genswitch_bintree(int num, TWORD ty, struct swents **p, int n);
#if 0
static void genswitch_table(int num, struct swents **p, int n);
static void genswitch_mrst(int num, struct swents **p, int n);
#endif
int lastloc = -1;
static int rvnr;
/*
* Define everything needed to print out some data (or text).
* This means segment, alignment, visibility, etc.
*/
void
defloc(struct symtab *sp)
{
#if defined(ELFABI)
static char *loctbl[] = { "text", "data", "rodata" };
#elif defined(MACHOABI)
static char *loctbl[] = { "text", "data", "const_data" };
#endif
TWORD t;
int s, n;
if (sp == NULL) {
lastloc = -1;
return;
}
t = sp->stype;
s = ISFTN(t) ? PROG : ISCON(cqual(t, sp->squal)) ? RDATA : DATA;
if (s != lastloc)
printf(" .%s\n", loctbl[s]);
lastloc = s;
if (s == PROG)
n = 2;
else if ((n = ispow2(talign(t, sp->ssue) / SZCHAR)) == -1)
cerror("defalign: n != 2^i");
printf(" .p2align %d\n", n);
if (sp->sclass == EXTDEF)
printf(" .globl %s\n", exname(sp->soname));
if (sp->slevel == 0)
printf("%s:\n", exname(sp->soname));
else
printf(LABFMT ":\n", sp->soffset);
}
/* Put a symbol in a temporary
* used by bfcode() and its helpers
*/
static void
putintemp(struct symtab *sym)
{
NODE *p;
spname = sym;
p = tempnode(0, sym->stype, sym->sdf, sym->ssue);
p = buildtree(ASSIGN, p, buildtree(NAME, 0, 0));
sym->soffset = regno(p->n_left);
sym->sflags |= STNODE;
ecomp(p);
}
/* setup a 64-bit parameter (double/ldouble/longlong)
* used by bfcode() */
static void
param_64bit(struct symtab *sym, int *argoffp, int dotemps)
{
int argoff = *argoffp;
NODE *p, *q;
int navail;
#if ALLONGLONG == 64
/* alignment */
++argoff;
argoff &= ~1;
#endif
navail = NARGREGS - argoff;
if (navail < 2) {
/* half in and half out of the registers */
q = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(q) = R3 + argoff;
p = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(p) = FPREG;
p = block(PLUS, p, bcon(sym->soffset/SZCHAR), PTR+INT, 0, MKSUE(INT));
p = block(UMUL, p, NIL, INT, 0, MKSUE(INT));
} else {
q = block(REG, NIL, NIL, sym->stype, sym->sdf, sym->ssue);
regno(q) = R3R4 + argoff;
if (dotemps) {
p = tempnode(0, sym->stype, sym->sdf, sym->ssue);
sym->soffset = regno(p);
sym->sflags |= STNODE;
} else {
spname = sym;
p = buildtree(NAME, 0, 0);
}
}
p = buildtree(ASSIGN, p, q);
ecomp(p);
*argoffp = argoff + 2;
}
/* setup a 32-bit param on the stack
* used by bfcode() */
static void
param_32bit(struct symtab *sym, int *argoffp, int dotemps)
{
NODE *p, *q;
q = block(REG, NIL, NIL, sym->stype, sym->sdf, sym->ssue);
regno(q) = R3 + (*argoffp)++;
if (dotemps) {
p = tempnode(0, sym->stype, sym->sdf, sym->ssue);
sym->soffset = regno(p);
sym->sflags |= STNODE;
} else {
spname = sym;
p = buildtree(NAME, 0, 0);
}
p = buildtree(ASSIGN, p, q);
ecomp(p);
}
/* setup a double param on the stack
* used by bfcode() */
static void
param_double(struct symtab *sym, int *argoffp, int dotemps)
{
NODE *p, *q, *t;
int tmpnr;
/*
* we have to dump the double from the general register
* into a temp, since the register allocator doesn't like
* floats to be in CLASSA. This may not work for -xtemps.
*/
if (xtemps) {
q = block(REG, NIL, NIL, ULONGLONG, 0, MKSUE(ULONGLONG));
regno(q) = R3R4 + *argoffp;
p = block(REG, NIL, NIL, PTR+ULONGLONG, 0, MKSUE(ULONGLONG));
regno(p) = SPREG;
p = block(PLUS, p, bcon(-8), INT, 0, MKSUE(INT));
p = block(UMUL, p, NIL, ULONGLONG, 0, MKSUE(ULONGLONG));
p = buildtree(ASSIGN, p, q);
ecomp(p);
t = tempnode(0, sym->stype, sym->sdf, sym->ssue);
tmpnr = regno(t);
p = block(REG, NIL, NIL,
INCREF(sym->stype), sym->sdf, sym->ssue);
regno(p) = SPREG;
p = block(PLUS, p, bcon(-8), INT, 0, MKSUE(INT));
p = block(UMUL, p, NIL, sym->stype, sym->sdf, sym->ssue);
p = buildtree(ASSIGN, t, p);
ecomp(p);
} else {
/* bounce straight into temp */
p = block(REG, NIL, NIL, ULONGLONG, 0, MKSUE(ULONGLONG));
regno(p) = R3R4 + *argoffp;
t = tempnode(0, ULONGLONG, 0, MKSUE(ULONGLONG));
tmpnr = regno(t);
p = buildtree(ASSIGN, t, p);
ecomp(p);
}
(*argoffp) += 2;
sym->soffset = tmpnr;
sym->sflags |= STNODE;
}
/* setup a float param on the stack
* used by bfcode() */
static void
param_float(struct symtab *sym, int *argoffp, int dotemps)
{
NODE *p, *q, *t;
int tmpnr;
/*
* we have to dump the float from the general register
* into a temp, since the register allocator doesn't like
* floats to be in CLASSA. This may not work for -xtemps.
*/
if (xtemps) {
/* bounce onto TOS */
q = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(q) = R3 + (*argoffp);
p = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(p) = SPREG;
p = block(PLUS, p, bcon(-4), INT, 0, MKSUE(INT));
p = block(UMUL, p, NIL, INT, 0, MKSUE(INT));
p = buildtree(ASSIGN, p, q);
ecomp(p);
t = tempnode(0, sym->stype, sym->sdf, sym->ssue);
tmpnr = regno(t);
p = block(REG, NIL, NIL, INCREF(sym->stype),
sym->sdf, sym->ssue);
regno(p) = SPREG;
p = block(PLUS, p, bcon(-4), INT, 0, MKSUE(INT));
p = block(UMUL, p, NIL, sym->stype, sym->sdf, sym->ssue);
p = buildtree(ASSIGN, t, p);
ecomp(p);
} else {
/* bounce straight into temp */
p = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(p) = R3 + (*argoffp);
t = tempnode(0, INT, 0, MKSUE(INT));
tmpnr = regno(t);
p = buildtree(ASSIGN, t, p);
ecomp(p);
}
(*argoffp)++;
sym->soffset = tmpnr;
sym->sflags |= STNODE;
}
/* setup the hidden pointer to struct return parameter
* used by bfcode() */
static void
param_retstruct(void)
{
NODE *p, *q;
/* XXX what if it is a union? */
p = tempnode(0, PTR+STRTY, 0, cftnsp->ssue);
rvnr = regno(p);
q = block(REG, NIL, NIL, PTR+STRTY, 0, cftnsp->ssue);
regno(q) = R3;
p = buildtree(ASSIGN, p, q);
ecomp(p);
}
/* setup struct parameter
* push the registers out to memory
* used by bfcode() */
static void
param_struct(struct symtab *sym, int *argoffp)
{
int argoff = *argoffp;
NODE *p, *q;
int navail;
int sz;
int off;
int num;
int i;
navail = NARGREGS - argoff;
sz = tsize(sym->stype, sym->sdf, sym->ssue) / SZINT;
off = ARGINIT/SZINT + argoff;
num = sz > navail ? navail : sz;
for (i = 0; i < num; i++) {
q = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(q) = R3 + argoff++;
p = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(p) = SPREG;
p = block(PLUS, p, bcon(4*off++), INT, 0, MKSUE(INT));
p = block(UMUL, p, NIL, INT, 0, MKSUE(INT));
p = buildtree(ASSIGN, p, q);
ecomp(p);
}
*argoffp = argoff;
}
/*
* code for the beginning of a function
* sp is an array of indices in symtab for the arguments
* cnt is the number of arguments
*/
void
bfcode(struct symtab **sp, int cnt)
{
#ifdef USE_GOTNR
extern int gotnr;
#endif
union arglist *usym;
int saveallargs = 0;
int i, argoff = 0;
/*
* Detect if this function has ellipses and save all
* argument registers onto stack.
*/
usym = cftnsp->sdf->dfun;
while (usym && usym->type != TNULL) {
if (usym->type == TELLIPSIS) {
saveallargs = 1;
break;
}
++usym;
}
if (cftnsp->stype == STRTY+FTN || cftnsp->stype == UNIONTY+FTN) {
param_retstruct();
++argoff;
}
#ifdef USE_GOTNR
if (kflag) {
/* put GOT register into temporary */
NODE *q, *p;
q = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(q) = GOTREG;
p = tempnode(0, INT, 0, MKSUE(INT));
gotnr = regno(p);
ecomp(buildtree(ASSIGN, p, q));
}
#endif
/* recalculate the arg offset and create TEMP moves */
for (i = 0; i < cnt; i++) {
if (sp[i] == NULL)
continue;
if ((argoff >= NARGREGS) && !xtemps)
break;
if (argoff >= NARGREGS) {
putintemp(sp[i]);
} else if (sp[i]->stype == STRTY || sp[i]->stype == UNIONTY) {
param_struct(sp[i], &argoff);
} else if (DEUNSIGN(sp[i]->stype) == LONGLONG) {
param_64bit(sp[i], &argoff, xtemps && !saveallargs);
} else if (sp[i]->stype == DOUBLE || sp[i]->stype == LDOUBLE) {
if (features(FEATURE_HARDFLOAT))
param_double(sp[i], &argoff,
xtemps && !saveallargs);
else
param_64bit(sp[i], &argoff,
xtemps && !saveallargs);
} else if (sp[i]->stype == FLOAT) {
if (features(FEATURE_HARDFLOAT))
param_float(sp[i], &argoff,
xtemps && !saveallargs);
else
param_32bit(sp[i], &argoff,
xtemps && !saveallargs);
} else {
param_32bit(sp[i], &argoff, xtemps && !saveallargs);
}
}
/* if saveallargs, save the rest of the args onto the stack */
while (saveallargs && argoff < NARGREGS) {
NODE *p, *q;
/* int off = (ARGINIT+FIXEDSTACKSIZE*SZCHAR)/SZINT + argoff; */
int off = ARGINIT/SZINT + argoff;
q = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(q) = R3 + argoff++;
p = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(p) = FPREG;
p = block(PLUS, p, bcon(4*off), INT, 0, MKSUE(INT));
p = block(UMUL, p, NIL, INT, 0, MKSUE(INT));
p = buildtree(ASSIGN, p, q);
ecomp(p);
}
/* profiling */
if (pflag) {
NODE *p;
#if defined(ELFABI)
spname = lookup("_mcount", 0);
spname->stype = EXTERN;
p = buildtree(NAME, NIL, NIL);
p->n_sp->sclass = EXTERN;
p = clocal(p);
p = buildtree(ADDROF, p, NIL);
p = block(UCALL, p, NIL, INT, 0, MKSUE(INT));
ecomp(funcode(p));
#elif defined(MACHOABI)
NODE *q;
int tmpnr;
q = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(q) = R0;
p = tempnode(0, INT, 0, MKSUE(INT));
tmpnr = regno(p);
p = buildtree(ASSIGN, p, q);
ecomp(p);
q = tempnode(tmpnr, INT, 0, MKSUE(INT));
spname = lookup("mcount", 0);
spname->stype = EXTERN;
p = buildtree(NAME, NIL, NIL);
p->n_sp->sclass = EXTERN;
p = clocal(p);
p = buildtree(ADDROF, p, NIL);
p = block(CALL, p, q, INT, 0, MKSUE(INT));
ecomp(funcode(p));
#endif
}
}
/*
* code for the end of a function
* deals with struct return here
*/
void
efcode()
{
NODE *p, *q;
int tempnr;
int ty;
#ifdef USE_GOTNR
extern int gotnr;
gotnr = 0;
#endif
if (cftnsp->stype != STRTY+FTN && cftnsp->stype != UNIONTY+FTN)
return;
ty = cftnsp->stype - FTN;
q = block(REG, NIL, NIL, INCREF(ty), 0, cftnsp->ssue);
regno(q) = R3;
p = tempnode(0, INCREF(ty), 0, cftnsp->ssue);
tempnr = regno(p);
p = buildtree(ASSIGN, p, q);
ecomp(p);
q = tempnode(tempnr, INCREF(ty), 0, cftnsp->ssue);
q = buildtree(UMUL, q, NIL);
p = tempnode(rvnr, INCREF(ty), 0, cftnsp->ssue);
p = buildtree(UMUL, p, NIL);
p = buildtree(ASSIGN, p, q);
ecomp(p);
q = tempnode(rvnr, INCREF(ty), 0, cftnsp->ssue);
p = block(REG, NIL, NIL, INCREF(ty), 0, cftnsp->ssue);
regno(p) = R3;
p = buildtree(ASSIGN, p, q);
ecomp(p);
}
/*
* by now, the automatics and register variables are allocated
*/
void
bccode()
{
SETOFF(autooff, SZINT);
}
struct stub stublist;
struct stub nlplist;
/* called just before final exit */
/* flag is 1 if errors, 0 if none */
void
ejobcode(int flag )
{
#if defined(MACHOABI)
/*
* iterate over the stublist and output the PIC stubs
` */
if (kflag) {
struct stub *p;
DLIST_FOREACH(p, &stublist, link) {
printf("\t.section __TEXT, __picsymbolstub1,symbol_stubs,pure_instructions,32\n");
printf("\t.align 5\n");
printf("L%s$stub:\n", p->name);
if (strcmp(p->name, "mcount") == 0)
printf("\t.indirect_symbol %s\n", p->name);
else
printf("\t.indirect_symbol %s\n",
exname(p->name));
printf("\tmflr r0\n");
printf("\tbcl 20,31,L%s$spb\n", p->name);
printf("L%s$spb:\n", p->name);
printf("\tmflr r11\n");
printf("\taddis r11,r11,ha16(L%s$lazy_ptr-L%s$spb)\n",
p->name, p->name);
printf("\tmtlr r0\n");
printf("\tlwzu r12,lo16(L%s$lazy_ptr-L%s$spb)(r11)\n",
p->name, p->name);
printf("\tmtctr r12\n");
printf("\tbctr\n");
printf("\t.lazy_symbol_pointer\n");
printf("L%s$lazy_ptr:\n", p->name);
if (strcmp(p->name, "mcount") == 0)
printf("\t.indirect_symbol %s\n", p->name);
else
printf("\t.indirect_symbol %s\n",
exname(p->name));
printf("\t.long dyld_stub_binding_helper\n");
printf("\t.subsections_via_symbols\n");
}
printf("\t.non_lazy_symbol_pointer\n");
DLIST_FOREACH(p, &nlplist, link) {
printf("L%s$non_lazy_ptr:\n", p->name);
if (strcmp(p->name, "mcount") == 0)
printf("\t.indirect_symbol %s\n", p->name);
else
printf("\t.indirect_symbol %s\n",
exname(p->name));
printf("\t.long 0\n");
}
}
#endif
}
void
bjobcode()
{
DLIST_INIT(&stublist, link);
DLIST_INIT(&nlplist, link);
}
#ifdef notdef
/*
* Print character t at position i in one string, until t == -1.
* Locctr & label is already defined.
*/
void
bycode(int t, int i)
{
static int lastoctal = 0;
/* put byte i+1 in a string */
if (t < 0) {
if (i != 0)
puts("\"");
} else {
if (i == 0)
printf("\t.ascii \"");
if (t == '\\' || t == '"') {
lastoctal = 0;
putchar('\\');
putchar(t);
} else if (t < 040 || t >= 0177) {
lastoctal++;
printf("\\%o",t);
} else if (lastoctal && '0' <= t && t <= '9') {
lastoctal = 0;
printf("\"\n\t.ascii \"%c", t);
} else {
lastoctal = 0;
putchar(t);
}
}
}
#endif
/*
* return the alignment of field of type t
*/
int
fldal(unsigned int t)
{
uerror("fldal: illegal field type");
return(ALINT);
}
/* fix up type of field p */
void
fldty(struct symtab *p)
{
}
/*
* XXX - fix genswitch.
*/
int
mygenswitch(int num, TWORD type, struct swents **p, int n)
{
if (num > 10) {
genswitch_bintree(num, type, p, n);
return 1;
}
return 0;
#if 0
if (0)
genswitch_table(num, p, n);
if (0)
genswitch_bintree(num, p, n);
genswitch_mrst(num, p, n);
#endif
}
static void bintree_rec(TWORD ty, int num,
struct swents **p, int n, int s, int e);
static void
genswitch_bintree(int num, TWORD ty, struct swents **p, int n)
{
int lab = getlab();
if (p[0]->slab == 0)
p[0]->slab = lab;
bintree_rec(ty, num, p, n, 1, n);
plabel(lab);
}
static void
bintree_rec(TWORD ty, int num, struct swents **p, int n, int s, int e)
{
NODE *r;
int rlabel;
int h;
if (s == e) {
r = tempnode(num, ty, 0, MKSUE(ty));
r = buildtree(NE, r, bcon(p[s]->sval));
cbranch(buildtree(NOT, r, NIL), bcon(p[s]->slab));
branch(p[0]->slab);
return;
}
rlabel = getlab();
h = s + (e - s) / 2;
r = tempnode(num, ty, 0, MKSUE(ty));
r = buildtree(GT, r, bcon(p[h]->sval));
cbranch(r, bcon(rlabel));
bintree_rec(ty, num, p, n, s, h);
plabel(rlabel);
bintree_rec(ty, num, p, n, h+1, e);
}
#if 0
static void
genswitch_table(int num, struct swents **p, int n)
{
NODE *r, *t;
int tval;
int minval, maxval, range;
int deflabel, tbllabel;
int i, j;
minval = p[1]->sval;
maxval = p[n]->sval;
range = maxval - minval + 1;
if (n < 10 || range > 3 * n) {
/* too small or too sparse for jump table */
genswitch_simple(num, p, n);
return;
}
r = tempnode(num, UNSIGNED, 0, MKSUE(UNSIGNED));
r = buildtree(MINUS, r, bcon(minval));
t = tempnode(0, UNSIGNED, 0, MKSUE(UNSIGNED));
tval = regno(t);
r = buildtree(ASSIGN, t, r);
ecomp(r);
deflabel = p[0]->slab;
if (deflabel == 0)
deflabel = getlab();
t = tempnode(tval, UNSIGNED, 0, MKSUE(UNSIGNED));
cbranch(buildtree(GT, t, bcon(maxval-minval)), bcon(deflabel));
tbllabel = getlab();
struct symtab *strtbl = lookup("__switch_table", SLBLNAME|STEMP);
strtbl->soffset = tbllabel;
strtbl->sclass = ILABEL;
strtbl->stype = INCREF(UCHAR);
t = block(NAME, NIL, NIL, UNSIGNED, 0, MKSUE(UNSIGNED));
t->n_sp = strtbl;
t = buildtree(ADDROF, t, NIL);
r = tempnode(tval, UNSIGNED, 0, MKSUE(INT));
r = buildtree(PLUS, t, r);
t = tempnode(0, INCREF(UNSIGNED), 0, MKSUE(UNSIGNED));
r = buildtree(ASSIGN, t, r);
ecomp(r);
r = tempnode(regno(t), INCREF(UNSIGNED), 0, MKSUE(UNSIGNED));
r = buildtree(UMUL, r, NIL);
t = block(NAME, NIL, NIL, UCHAR, 0, MKSUE(UCHAR));
t->n_sp = strtbl;
t = buildtree(ADDROF, t, NIL);
r = buildtree(PLUS, t, r);
r = block(GOTO, r, NIL, 0, 0, 0);
ecomp(r);
plabel(tbllabel);
for (i = minval, j=1; i <= maxval; i++) {
char *entry = tmpalloc(20);
int lab = deflabel;
//printf("; minval=%d, maxval=%d, i=%d, j=%d p[j]=%lld\n", minval, maxval, i, j, p[j]->sval);
if (p[j]->sval == i) {
lab = p[j]->slab;
j++;
}
snprintf(entry, 20, ".long " LABFMT "-" LABFMT, lab, tbllabel);
send_passt(IP_ASM, entry);
}
if (p[0]->slab <= 0)
plabel(deflabel);
}
#define DPRINTF(x) if (xdebug) printf x
//#define DPRINTF(x) do { } while(0)
#define MIN_TABLE_SIZE 8
/*
* Multi-way Radix Search Tree (MRST)
*/
static void mrst_rec(int num, struct swents **p, int n, int *state, int lab);
static unsigned long mrst_find_window(struct swents **p, int n, int *state, int lab, int *len, int *lowbit);
void mrst_put_entry_and_recurse(int num, struct swents **p, int n, int *state, int tbllabel, int lab, unsigned long j, unsigned long tblsize, unsigned long Wmax, int lowbit);
static void
genswitch_mrst(int num, struct swents **p, int n)
{
int *state;
int i;
int putlabel = 0;
if (n < 10) {
/* too small for MRST */
genswitch_simple(num, p, n);
return;
}
state = tmpalloc((n+1)*sizeof(int));
for (i = 0; i <= n; i++)
state[i] = 0;
if (p[0]->slab == 0) {
p[0]->slab = getlab();
putlabel = 1;
}
mrst_rec(num, p, n, state, 0);
if (putlabel)
plabel(p[0]->slab);
}
/*
* Look through the cases and generate a table or
* list of simple comparisons. If generating a table,
* invoke mrst_put_entry_and_recurse() to put
* an entry in the table and recurse.
*/
static void
mrst_rec(int num, struct swents **p, int n, int *state, int lab)
{
int len, lowbit;
unsigned long Wmax;
unsigned int tblsize;
NODE *t;
NODE *r;
int tval;
int i;
DPRINTF(("mrst_rec: num=%d, n=%d, lab=%d\n", num, n, lab));
/* find best window to cover set*/
Wmax = mrst_find_window(p, n, state, lab, &len, &lowbit);
tblsize = (1 << len);
assert(len > 0 && tblsize > 0);
DPRINTF(("mrst_rec: Wmax=%lu, lowbit=%d, tblsize=%u\n",
Wmax, lowbit, tblsize));
if (lab)
plabel(lab);
if (tblsize <= MIN_TABLE_SIZE) {
DPRINTF(("msrt_rec: break the recursion\n"));
for (i = 1; i <= n; i++) {
if (state[i] == lab) {
t = tempnode(num, UNSIGNED, 0, MKSUE(UNSIGNED));
cbranch(buildtree(EQ, t, bcon(p[i]->sval)),
bcon(p[i]->slab));
}
}
branch(p[0]->slab);
return;
}
DPRINTF(("generating table with %d elements\n", tblsize));
// AND with Wmax
t = tempnode(num, UNSIGNED, 0, MKSUE(UNSIGNED));
r = buildtree(AND, t, bcon(Wmax));
// RS lowbits
r = buildtree(RS, r, bcon(lowbit));
t = tempnode(0, UNSIGNED, 0, MKSUE(UNSIGNED));
tval = regno(t);
r = buildtree(ASSIGN, t, r);
ecomp(r);
int tbllabel = getlab();
struct symtab *strtbl = lookup("__switch_table", SLBLNAME|STEMP);
strtbl->soffset = tbllabel;
strtbl->sclass = ILABEL;
strtbl->stype = INCREF(UCHAR);
t = block(NAME, NIL, NIL, UNSIGNED, 0, MKSUE(UNSIGNED));
t->n_sp = strtbl;
t = buildtree(ADDROF, t, NIL);
r = tempnode(tval, UNSIGNED, 0, MKSUE(INT));
r = buildtree(PLUS, t, r);
t = tempnode(0, INCREF(UNSIGNED), 0, MKSUE(UNSIGNED));
r = buildtree(ASSIGN, t, r);
ecomp(r);
r = tempnode(regno(t), INCREF(UNSIGNED), 0, MKSUE(UNSIGNED));
r = buildtree(UMUL, r, NIL);
t = block(NAME, NIL, NIL, UCHAR, 0, MKSUE(UCHAR));
t->n_sp = strtbl;
t = buildtree(ADDROF, t, NIL);
r = buildtree(PLUS, t, r);
r = block(GOTO, r, NIL, 0, 0, 0);
ecomp(r);
plabel(tbllabel);
mrst_put_entry_and_recurse(num, p, n, state, tbllabel, lab,
0, tblsize, Wmax, lowbit);
}
/*
* Put an entry into the table and recurse to the next entry
* in the table. On the way back through the recursion, invoke
* mrst_rec() to check to see if we should generate another
* table.
*/
void
mrst_put_entry_and_recurse(int num, struct swents **p, int n, int *state,
int tbllabel, int labval,
unsigned long j, unsigned long tblsize, unsigned long Wmax, int lowbit)
{
int i;
int found = 0;
int lab = getlab();
/*
* Look for labels which map to this table entry.
* Mark each one in "state" that they fall inside this table.
*/
for (i = 1; i <= n; i++) {
unsigned int val = (p[i]->sval & Wmax) >> lowbit;
if (val == j && state[i] == labval) {
found = 1;
state[i] = lab;
}
}
/* couldn't find any labels? goto the default label */
if (!found)
lab = p[0]->slab;
/* generate the table entry */
char *entry = tmpalloc(20);
snprintf(entry, 20, ".long " LABFMT "-" LABFMT, lab, tbllabel);
send_passt(IP_ASM, entry);
DPRINTF(("mrst_put_entry: table=%d, pos=%lu/%lu, label=%d\n",
tbllabel, j, tblsize, lab));
/* go to the next table entry */
if (j+1 < tblsize) {
mrst_put_entry_and_recurse(num, p, n, state, tbllabel, labval,
j+1, tblsize, Wmax, lowbit);
}
/* if we are going to the default label, bail now */
if (!found)
return;
#ifdef PCC_DEBUG
if (xdebug) {
printf("state: ");
for (i = 1; i <= n; i++)
printf("%d ", state[i]);
printf("\n");
}
#endif
/* build another table */
mrst_rec(num, p, n, state, lab);
}
/*
* counts the number of entries in a table of size (1 << L) which would
* be used given the cases and the mask (W, lowbit).
*/
static unsigned int
mrst_cardinality(struct swents **p, int n, int *state, int step, unsigned long W, int L, int lowbit)
{
unsigned int count = 0;
int i;
if (W == 0)
return 0;
int *vals = (int *)calloc(1 << L, sizeof(int));
assert(vals);
DPRINTF(("mrst_cardinality: "));
for (i = 1; i <= n; i++) {
int idx;
if (state[i] != step)
continue;
idx = (p[i]->sval & W) >> lowbit;
DPRINTF(("%llu->%d, ", p[i]->sval, idx));
if (!vals[idx]) {
count++;
}
vals[idx] = 1;
}
DPRINTF((": found %d entries\n", count));
free(vals);
return count;
}
/*
* Find the maximum window (table size) which would best cover
* the set of labels. Algorithm explained in:
*
* Ulfar Erlingsson, Mukkai Krishnamoorthy and T.V. Raman.
* Efficient Multiway Radix Search Trees.
* Information Processing Letters 60:3 115-120 (November 1996)
*/
static unsigned long
mrst_find_window(struct swents **p, int n, int *state, int lab, int *len, int *lowbit)
{
unsigned int tblsize;
unsigned long W = 0;
unsigned long Wmax = 0;
unsigned long Wleft = (1 << (SZLONG-1));
unsigned int C = 0;
unsigned int Cmax = 0;
int L = 0;
int Lmax = 0;
int lowmax = 0;
int no_b = SZLONG-1;
unsigned long b = (1 << (SZLONG-1));
DPRINTF(("mrst_find_window: n=%d, lab=%d\n", n, lab));
for (; b > 0; b >>= 1, no_b--) {
// select the next bit
W |= b;
L += 1;
tblsize = 1 << L;
assert(tblsize > 0);
DPRINTF(("no_b=%d, b=0x%lx, Wleft=0x%lx, W=0x%lx, Wmax=0x%lx, L=%d, Lmax=%d, Cmax=%u, lowmax=%d, tblsize=%u\n", no_b, b, Wleft, W, Wmax, L, Lmax, Cmax, lowmax, tblsize));
C = mrst_cardinality(p, n, state, lab, W, L, no_b);
DPRINTF((" -> cardinality is %d\n", C));
if (2*C >= tblsize) {
DPRINTF(("(found good match, keep adding to table)\n"));
Wmax = W;
Lmax = L;
lowmax = no_b;
Cmax = C;
} else {
DPRINTF(("(too sparse)\n"));
assert((W & Wleft) != 0);
/* flip the MSB and see if we get a better match */
W ^= Wleft;
Wleft >>= 1;
L -= 1;
DPRINTF((" --> trying W=0x%lx and L=%d and Cmax=%u\n", W, L, Cmax));
C = mrst_cardinality(p, n, state, lab, W, L, no_b);
DPRINTF((" --> C=%u\n", C));
if (C > Cmax) {
Wmax = W;
Lmax = L;
lowmax = no_b;
Cmax = C;
DPRINTF((" --> better!\n"));
} else {
DPRINTF((" --> no better\n"));
}
}
}
#ifdef PCC_DEBUG
if (xdebug) {
int i;
int hibit = lowmax + Lmax;
printf("msrt_find_window: Wmax=0x%lx, lowbit=%d, result=", Wmax, lowmax);
for (i = 31; i >= 0; i--) {
int mask = (1 << i);
if (i == hibit)
printf("[");
if (Wmax & mask)
printf("1");
else
printf("0");
if (i == lowmax)
printf("]");
}
printf("\n");
}
#endif
assert(Lmax > 0);
*len = Lmax;
*lowbit = lowmax;
DPRINTF(("msrt_find_window: returning Wmax=%lu, len=%d, lowbit=%d [tblsize=%u, entries=%u]\n", Wmax, Lmax, lowmax, tblsize, C));
return Wmax;
}
#endif
/*
* Straighten a chain of CM ops so that the CM nodes
* only appear on the left node.
*
* CM CM
* CM CM CM b
* x y a b CM a
* x y
*
* CM CM
* CM CM CM c
* CM z CM c CM b
* x y a b CM a
* CM z
* x y
*/
static NODE *
straighten(NODE *p)
{
NODE *r = p->n_right;
if (p->n_op != CM || r->n_op != CM)
return p;
p->n_right = r->n_left;
r->n_left = straighten(p);
return r;
}
static NODE *
reverse1(NODE *p, NODE *a)
{
NODE *l = p->n_left;
NODE *r = p->n_right;
a->n_right = r;
p->n_left = a;
if (l->n_op == CM) {
return reverse1(l, p);
} else {
p->n_right = l;
return p;
}
}
/*
* Reverse a chain of CM ops
*/
static NODE *
reverse(NODE *p)
{
NODE *l = p->n_left;
NODE *r = p->n_right;
p->n_left = r;
if (l->n_op == CM)
return reverse1(l, p);
p->n_right = l;
return p;
}
/* push arg onto the stack */
/* called by moveargs() */
static NODE *
pusharg(NODE *p, int *regp)
{
NODE *q;
int sz;
int off;
/* convert to register size, if smaller */
sz = tsize(p->n_type, p->n_df, p->n_sue);
if (sz < SZINT)
p = block(SCONV, p, NIL, INT, 0, MKSUE(INT));
q = block(REG, NIL, NIL, INCREF(p->n_type), p->n_df, p->n_sue);
regno(q) = SPREG;
off = ARGINIT/SZCHAR + 4 * (*regp - R3);
q = block(PLUS, q, bcon(off), INT, 0, MKSUE(INT));
q = block(UMUL, q, NIL, p->n_type, p->n_df, p->n_sue);
(*regp) += szty(p->n_type);
return buildtree(ASSIGN, q, p);
}
/* setup call stack with 32-bit argument */
/* called from moveargs() */
static NODE *
movearg_32bit(NODE *p, int *regp)
{
int reg = *regp;
NODE *q;
q = block(REG, NIL, NIL, p->n_type, p->n_df, p->n_sue);
regno(q) = reg++;
q = buildtree(ASSIGN, q, p);
*regp = reg;
return q;
}
/* setup call stack with 64-bit argument */
/* called from moveargs() */
static NODE *
movearg_64bit(NODE *p, int *regp)
{
int reg = *regp;
NODE *q, *r;
#if ALLONGLONG == 64
/* alignment */
++reg;
reg &= ~1;
#endif
if (reg > R10) {
*regp = reg;
q = pusharg(p, regp);
} else if (reg == R10) {
/* half in and half out of the registers */
r = tcopy(p);
if (!features(FEATURE_BIGENDIAN)) {
q = block(SCONV, p, NIL, INT, 0, MKSUE(INT));
q = movearg_32bit(q, regp); /* little-endian */
r = buildtree(RS, r, bcon(32));
r = block(SCONV, r, NIL, INT, 0, MKSUE(INT));
r = pusharg(r, regp); /* little-endian */
} else {
q = buildtree(RS, p, bcon(32));
q = block(SCONV, q, NIL, INT, 0, MKSUE(INT));
q = movearg_32bit(q, regp); /* big-endian */
r = block(SCONV, r, NIL, INT, 0, MKSUE(INT));
r = pusharg(r, regp); /* big-endian */
}
q = straighten(block(CM, q, r, p->n_type, p->n_df, p->n_sue));
} else {
q = block(REG, NIL, NIL, p->n_type, p->n_df, p->n_sue);
regno(q) = R3R4 + (reg - R3);
q = buildtree(ASSIGN, q, p);
*regp = reg + 2;
}
return q;
}
/* setup call stack with float argument */
/* called from moveargs() */
static NODE *
movearg_float(NODE *p, int *fregp, int *regp)
{
#if defined(MACHOABI)
NODE *q, *r;
TWORD ty = INCREF(p->n_type);
int tmpnr;
#endif
p = movearg_32bit(p, fregp);
/*
* On OS/X, floats are passed in the floating-point registers
* and in the general registers for compatibily with libraries
* compiled to handle soft-float.
*/
#if defined(MACHOABI)
if (xtemps) {
/* bounce into TOS */
r = block(REG, NIL, NIL, ty, p->n_df, p->n_sue);
regno(r) = SPREG;
r = block(PLUS, r, bcon(-4), INT, 0, MKSUE(INT));
r = block(UMUL, r, NIL, p->n_type, p->n_df, p->n_sue);
r = buildtree(ASSIGN, r, p);
ecomp(r);
/* bounce into temp */
r = block(REG, NIL, NIL, PTR+INT, 0, MKSUE(INT));
regno(r) = SPREG;
r = block(PLUS, r, bcon(-4), INT, 0, MKSUE(INT));
r = block(UMUL, r, NIL, INT, 0, MKSUE(INT));
q = tempnode(0, INT, 0, MKSUE(INT));
tmpnr = regno(q);
r = buildtree(ASSIGN, q, r);
ecomp(r);
} else {
/* copy directly into temp */
q = tempnode(0, p->n_type, p->n_df, p->n_sue);
tmpnr = regno(q);
r = buildtree(ASSIGN, q, p);
ecomp(r);
}
/* copy from temp to register parameter */
r = tempnode(tmpnr, INT, 0, MKSUE(INT));
q = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(q) = (*regp)++;
p = buildtree(ASSIGN, q, r);
#endif
return p;
}
/* setup call stack with float/double argument */
/* called from moveargs() */
static NODE *
movearg_double(NODE *p, int *fregp, int *regp)
{
#if defined(MACHOABI)
NODE *q, *r;
TWORD ty = INCREF(p->n_type);
int tmpnr;
#endif
/* this does the move to a single register for us */
p = movearg_32bit(p, fregp);
/*
* On OS/X, doubles are passed in the floating-point registers
* and in the general registers for compatibily with libraries
* compiled to handle soft-float.
*/
#if defined(MACHOABI)
if (xtemps) {
/* bounce on TOS */
r = block(REG, NIL, NIL, ty, p->n_df, p->n_sue);
regno(r) = SPREG;
r = block(PLUS, r, bcon(-8), ty, p->n_df, p->n_sue);
r = block(UMUL, r, NIL, p->n_type, p->n_df, p->n_sue);
r = buildtree(ASSIGN, r, p);
ecomp(r);
/* bounce into temp */
r = block(REG, NIL, NIL, PTR+LONGLONG, 0, MKSUE(LONGLONG));
regno(r) = SPREG;
r = block(PLUS, r, bcon(-8), PTR+LONGLONG, 0, MKSUE(LONGLONG));
r = block(UMUL, r, NIL, LONGLONG, 0, MKSUE(LONGLONG));
q = tempnode(0, LONGLONG, 0, MKSUE(LONGLONG));
tmpnr = regno(q);
r = buildtree(ASSIGN, q, r);
ecomp(r);
} else {
/* copy directly into temp */
q = tempnode(0, p->n_type, p->n_df, p->n_sue);
tmpnr = regno(q);
r = buildtree(ASSIGN, q, p);
ecomp(r);
}
/* copy from temp to register parameter */
r = tempnode(tmpnr, LONGLONG, 0, MKSUE(LONGLONG));
q = block(REG, NIL, NIL, LONGLONG, 0, MKSUE(LONGLONG));
regno(q) = R3R4 - R3 + (*regp);
p = buildtree(ASSIGN, q, r);
(*regp) += 2;
#endif
return p;
}
/* setup call stack with a structure */
/* called from moveargs() */
static NODE *
movearg_struct(NODE *p, int *regp)
{
int reg = *regp;
NODE *l, *q, *t, *r;
int tmpnr;
int navail;
int num;
int sz;
int ty;
int i;
assert(p->n_op == STARG);
navail = NARGREGS - (reg - R3);
navail = navail < 0 ? 0 : navail;
sz = tsize(p->n_type, p->n_df, p->n_sue) / SZINT;
num = sz > navail ? navail : sz;
/* remove STARG node */
l = p->n_left;
nfree(p);
ty = l->n_type;
/*
* put it into a TEMP, rather than tcopy(), since the tree
* in p may have side-affects
*/
t = tempnode(0, ty, l->n_df, l->n_sue);
tmpnr = regno(t);
q = buildtree(ASSIGN, t, l);
/* copy structure into registers */
for (i = 0; i < num; i++) {
t = tempnode(tmpnr, ty, 0, MKSUE(PTR+ty));
t = block(SCONV, t, NIL, PTR+INT, 0, MKSUE(PTR+INT));
t = block(PLUS, t, bcon(4*i), PTR+INT, 0, MKSUE(PTR+INT));
t = buildtree(UMUL, t, NIL);
r = block(REG, NIL, NIL, INT, 0, MKSUE(INT));
regno(r) = reg++;
r = buildtree(ASSIGN, r, t);
q = block(CM, q, r, INT, 0, MKSUE(INT));
}
/* put the rest of the structure on the stack */
for (i = num; i < sz; i++) {
t = tempnode(tmpnr, ty, 0, MKSUE(PTR+ty));
t = block(SCONV, t, NIL, PTR+INT, 0, MKSUE(PTR+INT));
t = block(PLUS, t, bcon(4*i), PTR+INT, 0, MKSUE(PTR+INT));
t = buildtree(UMUL, t, NIL);
r = pusharg(t, ®);
q = block(CM, q, r, INT, 0, MKSUE(INT));
}
q = reverse(q);
*regp = reg;
return q;
}
static NODE *
moveargs(NODE *p, int *regp, int *fregp)
{
NODE *r, **rp;
int reg, freg;
if (p->n_op == CM) {
p->n_left = moveargs(p->n_left, regp, fregp);
r = p->n_right;
rp = &p->n_right;
} else {
r = p;
rp = &p;
}
reg = *regp;
freg = *fregp;
#define ISFLOAT(p) (p->n_type == FLOAT || \
p->n_type == DOUBLE || \
p->n_type == LDOUBLE)
if (reg > R10 && r->n_op != STARG) {
*rp = pusharg(r, regp);
} else if (r->n_op == STARG) {
*rp = movearg_struct(r, regp);
} else if (DEUNSIGN(r->n_type) == LONGLONG) {
*rp = movearg_64bit(r, regp);
} else if (r->n_type == DOUBLE || r->n_type == LDOUBLE) {
if (features(FEATURE_HARDFLOAT))
*rp = movearg_double(r, fregp, regp);
else
*rp = movearg_64bit(r, regp);
} else if (r->n_type == FLOAT) {
if (features(FEATURE_HARDFLOAT))
*rp = movearg_float(r, fregp, regp);
else
*rp = movearg_32bit(r, regp);
} else {
*rp = movearg_32bit(r, regp);
}
return straighten(p);
}
/*
* Fixup arguments to pass pointer-to-struct as first argument.
*
* called from funcode().
*/
static NODE *
retstruct(NODE *p)
{
NODE *l, *r, *t, *q;
TWORD ty;
l = p->n_left;
r = p->n_right;
ty = DECREF(l->n_type) - FTN;
// assert(tsize(ty, l->n_df, l->n_sue) == SZINT);
/* structure assign */
q = tempnode(0, ty, l->n_df, l->n_sue);
q = buildtree(ADDROF, q, NIL);
/* insert hidden assignment at beginning of list */
if (r->n_op != CM) {
p->n_right = block(CM, q, r, INCREF(ty), l->n_df, l->n_sue);
} else {
for (t = r; t->n_left->n_op == CM; t = t->n_left)
;
t->n_left = block(CM, q, t->n_left, INCREF(ty),
l->n_df, l->n_sue);
}
return p;
}
/*
* Called with a function call with arguments as argument.
* This is done early in buildtree() and only done once.
*/
NODE *
funcode(NODE *p)
{
int regnum = R3;
int fregnum = F1;
if (p->n_type == STRTY+FTN || p->n_type == UNIONTY+FTN)
p = retstruct(p);
p->n_right = moveargs(p->n_right, ®num, &fregnum);
if (p->n_right == NULL)
p->n_op += (UCALL - CALL);
return p;
}
|