forked from sellicott/tcc-riscv32
-
Notifications
You must be signed in to change notification settings - Fork 5
/
riscv32-gen.c
1579 lines (1444 loc) · 49.8 KB
/
riscv32-gen.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
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
#ifdef TARGET_DEFS_ONLY
// Number of registers available to allocator:
#ifdef TCC_TARGET_RISCV32_ilp32
// TODO add temporary and saved registers here once I figure out how TCC works
#define NB_REGS 11 // a0-a7, sp (?), ra, sp
#else
#define NB_REGS 19 // a0-a7, fa0-fa7, xxx, ra, sp
#endif
#define NB_ASM_REGS 32
#define CONFIG_TCC_ASM
#define TREG_R( x ) ( x ) // x = 0..7
#define TREG_F( x ) ( x + 8 ) // x = 0..7
// Register classes sorted from more general to more precise:
#define RC_INT ( 1 << 0 )
#define RC_FLOAT ( 1 << 1 )
#define RC_R( x ) ( 1 << ( 2 + ( x ) ) ) // x = 0..7
#define RC_F( x ) ( 1 << ( 10 + ( x ) ) ) // x = 0..7
#define RC_IRET ( RC_R( 0 ) ) // int return register class
#define RC_IRE2 ( RC_R( 1 ) ) // int 2nd return register class
#define RC_FRET ( RC_F( 0 ) ) // float return register class
#define REG_IRET ( TREG_R( 0 ) ) // int return register number
#define REG_IRE2 ( TREG_R( 1 ) ) // int 2nd return register number
#define REG_FRET ( TREG_F( 0 ) ) // float return register number
#define PTR_SIZE 4
#define LDOUBLE_SIZE 16
#define LDOUBLE_ALIGN 16
#define MAX_ALIGN 16
#define CHAR_IS_UNSIGNED
#else
#define USING_GLOBALS
#include "riscv_utils.h"
#include "tcc.h"
#include <assert.h>
#ifdef TCC_RISCV_ilp32
ST_DATA const char *const target_machine_defs = "__riscv\0"
"__riscv_xlen 32\0"
"__riscv_div\0"
"__riscv_mul\0"
"__riscv_float_abi_soft\0";
#else
ST_DATA const char *const target_machine_defs = "__riscv\0"
"__riscv_xlen 32\0"
"__riscv_flen 32\0"
"__riscv_div\0"
"__riscv_mul\0"
"__riscv_fdiv\0"
"__riscv_fsqrt\0"
"__riscv_float_abi_double\0";
#endif
#define XLEN 4
#define TREG_RA 17
#define TREG_SP 18
ST_DATA const int reg_classes[ NB_REGS ] = {
// Integer Function Arguments
RC_INT | RC_R( 0 ), RC_INT | RC_R( 1 ), RC_INT | RC_R( 2 ), RC_INT | RC_R( 3 ),
RC_INT | RC_R( 4 ), RC_INT | RC_R( 5 ), RC_INT | RC_R( 6 ), RC_INT | RC_R( 7 ),
#ifndef TCC_TARGET_RISCV32_ilp32
// Floating point function arguments
RC_FLOAT | RC_F( 0 ), RC_FLOAT | RC_F( 1 ), RC_FLOAT | RC_F( 2 ), RC_FLOAT | RC_F( 3 ),
RC_FLOAT | RC_F( 4 ), RC_FLOAT | RC_F( 5 ), RC_FLOAT | RC_F( 6 ), RC_FLOAT | RC_F( 7 ),
#endif
0, 1 << TREG_RA, 1 << TREG_SP };
#if defined( CONFIG_TCC_BCHECK )
static addr_t func_bound_offset;
static unsigned long func_bound_ind;
ST_DATA int func_bound_add_epilog;
#endif
static int ireg( int r )
{
if( r == TREG_RA )
return 1; // ra
if( r == TREG_SP )
return 2; // sp
assert( r >= 0 && r < 8 );
return r + 10; // tccrX --> aX == x(10+X)
}
static int is_ireg( int r )
{
return (unsigned)r < 8 || r == TREG_RA || r == TREG_SP;
}
static int freg( int r )
{
assert( r >= 8 && r < 16 );
return r - 8 + 10; // tccfX --> faX == f(10+X)
}
static int is_freg( int r )
{
#ifndef TCC_TARGET_RISCV32_ilp32
return r >= 8 && r < 16;
#else
// there are no floating point registers in rv32imc isa
return 0;
#endif
}
// ---------------------- opcode helper functions ------------------------------------------------//
ST_FUNC void o( unsigned int opcode )
{
int ind1 = ind + 4;
if( nocode_wanted ) {
return;
}
if( ind1 > cur_text_section->data_allocated ) {
section_realloc( cur_text_section, ind1 );
}
write32le( cur_text_section->data + ind, opcode );
ind = ind1;
}
static void EIu( uint32_t opcode, uint32_t func3, uint32_t rd, uint32_t rs1, uint32_t imm )
{
o( opcode | ( func3 << 12 ) | ( rd << 7 ) | ( rs1 << 15 ) | ( imm << 20 ) );
}
static void ER(
uint32_t opcode, uint32_t func3, uint32_t rd, uint32_t rs1, uint32_t rs2, uint32_t func7 )
{
o( opcode | func3 << 12 | rd << 7 | rs1 << 15 | rs2 << 20 | func7 << 25 );
}
static void EI( uint32_t opcode, uint32_t func3, uint32_t rd, uint32_t rs1, uint32_t imm )
{
assert( !( ( imm + ( 1 << 11 ) ) >> 12 ) );
EIu( opcode, func3, rd, rs1, imm );
}
static void ES( uint32_t opcode, uint32_t func3, uint32_t rs1, uint32_t rs2, uint32_t imm )
{
assert( !( ( imm + ( 1 << 11 ) ) >> 12 ) );
o( opcode | ( func3 << 12 ) | ( ( imm & 0x1f ) << 7 ) | ( rs1 << 15 ) | ( rs2 << 20 ) |
( ( imm >> 5 ) << 25 ) );
}
static int load_symofs( int r, SValue *sv, int forstore )
{
int doload = 0;
int t0 = 5; // t0 = x5 = 5
int rd; // return register
int sv_constant = sv->c.i; // stack value constant
int stack_value = sv->r & VT_VALMASK; // stack value
rd = is_ireg( r ) ? ireg( r ) : t0; // default register is t0
// check if we are dealing with a named symbol
if( sv->r & VT_SYM ) {
addr_t addend = 0; // offset value when generating a relocation entry
int type;
Sym label = { 0 };
doload = 1;
label.type.t = VT_VOID | VT_STATIC;
assert( stack_value == VT_CONST );
if( LARGE_IMM( sv_constant ) ) {
tcc_error( "unimp: large addend for global address (0x%lx)", (long)sv_constant );
}
if( sv->sym->type.t & VT_STATIC ) { // XXX do this per linker relax
addend = sv_constant;
sv->c.i = 0;
// offset is probably loaded already, we don't need to generate a load in this case
doload = 0;
}
// generate a relocation entry with the generated offset
greloca( cur_text_section, sv->sym, ind, R_RISCV_PCREL_HI20, addend );
put_extern_sym( &label, cur_text_section, ind, 0 );
// immediate value is 0 so that the linker can load values into it
emit_AUIPC( rd, 0 );
type = ( doload || !forstore ) ? R_RISCV_PCREL_LO12_I : R_RISCV_PCREL_LO12_S;
greloca( cur_text_section, &label, ind, type, 0 );
if( doload ) {
emit_ADDI( rd, rd, 0 ); // lw RR, 0(RR)
}
}
else if( stack_value == VT_LOCAL || stack_value == VT_LLOCAL ) {
int s0;
s0 = 8; // s0
rd = s0;
if( sv_constant != sv->c.i ) {
tcc_error( "unimp: store(giant local off) (0x%lx)", (long)sv->c.i );
}
if( LARGE_IMM( sv_constant ) ) {
sv->c.i = IMM_LOW( sv_constant );
emit_LUI( rd, IMM_HIGH( sv_constant + 0x800 ) );
emit_ADD( rd, rd, s0 );
}
}
else {
tcc_error( "uhh" );
}
return rd;
}
static void load_large_constant( int rr, int fc, uint32_t pi )
{
if( fc < 0 )
pi++;
emit_LUI( rr, IMM_HIGH( pi ) );
emit_ADDI( rr, rr, IMM_LOW( pi ) );
emit_SLLI( rr, rr, 12 );
emit_ADDI( rr, rr, IMM_LOW( fc ) );
emit_SLLI( rr, rr, 12 );
emit_ADDI( rr, rr, IMM_LOW( fc ) );
emit_SLLI( rr, rr, 8 );
}
/*
* Similar to load this takes a stack value (sv) and stores it into a register (r)
* However, we know that the thing on the stack is an lvalue (it has a name) and therefore
* in order to move it to a register we need to get the address of the named thing
*/
static void load_lvalue( int r, SValue *sv )
{
// get the actual physical register we want to store stuff into
int dest_reg = is_ireg( r ) ? ireg( r ) : freg( r ); // rr
int lvar_offset = sv->c.i; // fc
int stack_type = sv->type.t & VT_BTYPE; // bt
int stack_reg = sv->r; // fr
int masked_stack_reg = stack_reg & VT_VALMASK; // v
int align, rs1;
int size = type_size( &sv->type, &align );
assert( !is_freg( r ) || stack_type == VT_FLOAT || stack_type == VT_DOUBLE );
if( stack_type == VT_FUNC ) { /* XXX should be done in generic code */
size = PTR_SIZE;
}
if( is_float( sv->type.t ) ) {
tcc_internal_error( "floating point not implemented" );
}
if( masked_stack_reg == VT_LOCAL || ( stack_reg & VT_SYM ) ) {
rs1 = load_symofs( r, sv, 0 );
lvar_offset = sv->c.i;
}
// case where our lvalue location is stored in a register
else if( masked_stack_reg < VT_CONST ) {
rs1 = ireg( masked_stack_reg );
lvar_offset = 0; // XXX store ofs in LVAL(reg)
}
else if( masked_stack_reg == VT_LLOCAL ) {
rs1 = load_symofs( r, sv, 0 );
lvar_offset = sv->c.i;
emit_LW( dest_reg, rs1, lvar_offset );
rs1 = dest_reg;
lvar_offset = 0;
}
else if( masked_stack_reg == VT_CONST ) {
int64_t si = sv->c.i;
si >>= 32;
if( si != 0 ) {
load_large_constant( dest_reg, lvar_offset, si );
lvar_offset &= 0xff;
}
else {
emit_LUI( dest_reg, IMM_HIGH( lvar_offset ) );
lvar_offset = IMM_LOW( lvar_offset );
}
rs1 = dest_reg;
}
else {
tcc_error( "unimp: load(non-local lval)" );
}
// TODO handle floating pont, 64-bit values, and 128-bit values
switch( size ) {
case 1: emit_LB( dest_reg, rs1, lvar_offset ); break;
case 2: emit_LH( dest_reg, rs1, lvar_offset ); break;
case 4: emit_LW( dest_reg, rs1, lvar_offset ); break;
default: tcc_error( "unexpected load size: %d", size );
}
}
/*
* load a stack value into a register meaning we need to put the thing stored in sv into r
* r is the register we want to load stuff into, and sv is the tcc stack value
*
* this function also handles generating comparison and branch instructions
* we need to check what the type of stack value we have is since we might need to do drastically
* different things depending on whether sv is an lvalue (i.e. a pointer to the thing we want)
*/
ST_FUNC void load( int r, SValue *sv )
{
int dest_reg = is_ireg( r ) ? ireg( r ) : freg( r );
int lvar_offset = sv->c.i; // fc
int stack_type = sv->type.t & VT_BTYPE; // bt
int stack_reg = sv->r; // fr
int masked_stack_reg = stack_reg & VT_VALMASK; // v
// loading to an lvalue i.e. pointer into register
if( stack_reg & VT_LVAL ) {
load_lvalue( r, sv );
}
else if( masked_stack_reg == VT_CONST ) {
int rs1 = 0, zext = 0;
int do32bit = 32;
// only handle integer types
if( is_float( sv->type.t ) ) {
tcc_error( "unimp: load(float)" );
}
assert( !is_float( sv->type.t ) && is_ireg( r ) );
// We need to add Svalue.sym to the constant
if( stack_reg & VT_SYM ) {
rs1 = load_symofs( r, sv, 0 );
lvar_offset = sv->c.i;
do32bit = 0;
}
// load large constant
if( lvar_offset != sv->c.i ) {
int64_t si = sv->c.i;
si >>= 32;
if( si != 0 ) {
load_large_constant( dest_reg, lvar_offset, si );
lvar_offset &= 0xff;
rs1 = dest_reg;
do32bit = 0;
}
else if( stack_type == VT_LLONG ) {
/* A 32bit unsigned constant for a 64bit type.
lui always sign extends, so we need to do an explicit zext.*/
zext = 1;
}
}
if( LARGE_IMM( lvar_offset ) ) {
rs1 = dest_reg;
// add 0x800 so when the lower (sign extended) bits get added, they don't ruin things
emit_LUI( dest_reg, IMM_HIGH( lvar_offset + 0x800 ) );
}
if( lvar_offset || ( dest_reg != rs1 ) || do32bit || ( stack_reg & VT_SYM ) ) {
// EI(0x13 | do32bit, 0, rd, rs1, lvar_offset << 20 >> 20); // addi[w] R, x0|R,
// lvar_offset
emit_ADDI( dest_reg, rs1, IMM_LOW( lvar_offset ) );
}
if( zext ) {
emit_SLLI( dest_reg, dest_reg, 31 );
emit_SRLI( dest_reg, dest_reg, 31 );
tcc_internal_error( "I think this code is broken" );
}
}
else if( masked_stack_reg == VT_LOCAL ) {
int br = load_symofs( r, sv, 0 );
assert( is_ireg( r ) );
lvar_offset = sv->c.i;
emit_ADDI( dest_reg, br, lvar_offset );
}
else if( masked_stack_reg < VT_CONST ) { /* reg-reg */
// assert(!lvar_offset); XXX support offseted regs
if( is_freg( r ) && is_freg( masked_stack_reg ) ) {
ER( 0x53, 0, dest_reg, freg( masked_stack_reg ), freg( masked_stack_reg ),
stack_type == VT_DOUBLE ? 0x11 : 0x10 ); // fsgnj.[sd] Rd, V, V == fmv.[sd] Rd, V
tcc_internal_error( "things be happening" );
}
else if( is_ireg( r ) && is_ireg( masked_stack_reg ) ) {
emit_ADDI( dest_reg, ireg( masked_stack_reg ), 0 );
}
else {
tcc_error( "Floating point not implemented in riscv32" );
}
}
// Value is stored in the CPU flag from a comparison operation. Put it in a safe place.
else if( masked_stack_reg == VT_CMP ) {
int op = vtop->cmp_op;
int a = vtop->cmp_r & 0xff;
int b = ( vtop->cmp_r >> 8 ) & 0xff;
int inv = 0;
// TODO cleanup this code so that it uses more of the pseudo operation
switch( op ) {
case TOK_ULT:
case TOK_UGE:
case TOK_ULE:
case TOK_UGT:
case TOK_LT:
case TOK_GE:
case TOK_LE:
case TOK_GT:
if( op & 1 ) { // remove [U]GE,GT
inv = 1;
op--;
}
if( ( op & 7 ) == 6 ) { // [U]LE
int t = a;
a = b;
b = t;
inv ^= 1;
}
//ER( 0x33, ( op > TOK_UGT ) ? 2 : 3, dest_reg, a, b, 0 ); // slt[u] d, a, b
if( op > TOK_UGT ) {
emit_SLT( dest_reg, a, b );
}
else {
emit_SLTU( dest_reg, a, b );
}
if( inv ) {
emit_XORI( dest_reg, dest_reg, 1 );
} // xori d, d, 1
break;
case TOK_NE:
case TOK_EQ:
// we only need to subtract if the comparison isn't already against zero
// we check if the comparison is against zero by checking if the two source registers
// are different from the destination
if( dest_reg != a || b ) {
emit_SUB( dest_reg, a, b ); // sub d, a, b
}
if( op == TOK_NE ) {
emit_SNEZ( dest_reg, dest_reg ); // sltu d, x0, d == snez d,d
}
else {
emit_SEQZ( dest_reg, dest_reg ); // sltiu d, d, 1 == seqz d,d
}
break;
}
}
else if( ( masked_stack_reg & ~1 ) == VT_JMP ) {
int t = masked_stack_reg & 1;
assert( is_ireg( r ) );
emit_ADDI( dest_reg, 0, t ); // addi Rd, x0, t
gjmp_addr( ind + 8 );
gsym( lvar_offset );
emit_ADDI( dest_reg, 0, t ^ 1 ); // addi Rd, x0, !t
}
else {
tcc_error( "unimp: load(non-const)" );
}
}
/*
* Store: push a value from a register (r) onto the top of the stack
* The top of the stack should be an lvalue (a pointer to somewhere in memory)
*/
ST_FUNC void store( int r, SValue *sv )
{
int stack_reg = sv->r;
int stack_reg_type = stack_reg & VT_VALMASK;
int stack_type = sv->type.t & VT_BTYPE;
int src_reg = is_ireg( r ) ? ireg( r ) : freg( r );
int loc_reg = 8; // s0
int offset = sv->c.i;
// Get the size and alignment of the stack value we are writing to
int align;
int size = type_size( &sv->type, &align );
// Make sure we can perform the operation (if floating point)
assert( !is_float( stack_type ) || is_freg( r ) || stack_type == VT_LDOUBLE );
/* long doubles are in two integer registers, but the load/store
primitives only deal with one, so do as if it's one reg. */
if( stack_type == VT_LDOUBLE ) {
size = align = 8;
}
if( stack_type == VT_STRUCT ) {
tcc_error( "unimp: store(struct)" );
}
if( size > 8 ) {
tcc_error( "unimp: large sized store" );
}
// Load the correct address into the loc_reg register
assert( stack_reg & VT_LVAL );
if( stack_reg_type == VT_LOCAL || ( stack_reg & VT_SYM ) ) {
loc_reg = load_symofs( -1, sv, 1 );
offset = sv->c.i;
}
else if( stack_reg_type < VT_CONST ) {
loc_reg = ireg( stack_reg_type );
offset = 0; // XXX support offsets regs
}
else if( stack_reg_type == VT_CONST ) {
uint64_t offset_hi = ( sv->c.i >> 32 );
if( offset_hi != 0 ) {
load_large_constant( loc_reg, offset, offset_hi );
offset &= 0xff;
}
else {
//lui RR, upper(fc)
emit_LUI( loc_reg, IMM_HIGH( offset ) );
offset = IMM_LOW( offset );
}
}
else {
tcc_error( "implement me: %s(!local)", __FUNCTION__ );
}
if( is_freg( r ) ) {
tcc_error( "unip: floating point" );
}
// load the value from the source register into the location pointed to by
// loc_reg
// TODO: store floating point, 64-bit, and 128-bit values
switch( size ) {
case 1: emit_SB( loc_reg, src_reg, offset ); break;
case 2: emit_SH( loc_reg, src_reg, offset ); break;
case 4: emit_SW( loc_reg, src_reg, offset ); break;
default: tcc_error( "unexpected store size: %d", size );
}
}
static void gcall_or_jmp( int docall )
{
int tr = docall ? 1 : 5; // ra or t0
if( ( vtop->r & ( VT_VALMASK | VT_LVAL ) ) == VT_CONST &&
( ( vtop->r & VT_SYM ) && vtop->c.i == (int)vtop->c.i ) ) {
/* constant symbolic case -> simple relocation */
greloca( cur_text_section, vtop->sym, ind, R_RISCV_CALL_PLT, (int)vtop->c.i );
// auipc TR, 0 %call(func)
// jalr TR, r(TR)
emit_AUIPC( tr, 0 );
emit_JALR( tr, tr, 0 );
}
else if( vtop->r < VT_CONST ) {
int r = ireg( vtop->r );
emit_JALR( tr, r, 0 );
}
else {
int r = TREG_RA;
load( r, vtop );
r = ireg( r );
emit_JALR( tr, r, 0 );
}
}
#if defined( CONFIG_TCC_BCHECK )
static void gen_bounds_call( int v )
{
Sym *sym = external_helper_sym( v );
greloca( cur_text_section, sym, ind, R_RISCV_CALL_PLT, 0 );
o( 0x17 | ( 1 << 7 ) ); // auipc TR, 0 %call(func)
EI( 0x67, 0, 1, 1, 0 ); // jalr TR, r(TR)
}
static void gen_bounds_prolog( void )
{
tcc_error( "no bounds checking" );
/* leave some room for bound checking code */
func_bound_offset = lbounds_section->data_offset;
func_bound_ind = ind;
func_bound_add_epilog = 0;
o( 0x00000013 ); /* ld a0,#lbound section pointer */
o( 0x00000013 );
o( 0x00000013 ); /* nop -> call __bound_local_new */
o( 0x00000013 );
}
static void gen_bounds_epilog( void )
{
addr_t saved_ind;
addr_t *bounds_ptr;
Sym *sym_data;
Sym label = { 0 };
int offset_modified = func_bound_offset != lbounds_section->data_offset;
tcc_error( "no bounds checking" );
if( !offset_modified && !func_bound_add_epilog )
return;
/* add end of table info */
bounds_ptr = section_ptr_add( lbounds_section, sizeof( addr_t ) );
*bounds_ptr = 0;
sym_data = get_sym_ref(
&char_pointer_type, lbounds_section, func_bound_offset, lbounds_section->data_offset );
label.type.t = VT_VOID | VT_STATIC;
/* generate bound local allocation */
if( offset_modified ) {
saved_ind = ind;
ind = func_bound_ind;
put_extern_sym( &label, cur_text_section, ind, 0 );
greloca( cur_text_section, sym_data, ind, R_RISCV_PCREL_HI20, 0 );
o( 0x17 | ( 10 << 7 ) ); // auipc a0, 0 %pcrel_hi(sym)+addend
greloca( cur_text_section, &label, ind, R_RISCV_PCREL_LO12_I, 0 );
EI( 0x03, 2, 10, 10, 0 ); // lw a0, 0(a0)
gen_bounds_call( TOK___bound_local_new );
ind = saved_ind;
label.c = 0; /* force new local ELF symbol */
}
/* generate bound check local freeing */
o( 0xe02a1101 ); /* addi sp,sp,-32 sd a0,0(sp) */
o( 0xa82ae42e ); /* sd a1,8(sp) fsd fa0,16(sp) */
put_extern_sym( &label, cur_text_section, ind, 0 );
greloca( cur_text_section, sym_data, ind, R_RISCV_PCREL_HI20, 0 );
o( 0x17 | ( 10 << 7 ) ); // auipc a0, 0 %pcrel_hi(sym)+addend
greloca( cur_text_section, &label, ind, R_RISCV_PCREL_LO12_I, 0 );
EI( 0x03, 2, 10, 10, 0 ); // lw a0, 0(a0)
gen_bounds_call( TOK___bound_local_delete );
o( 0x65a26502 ); /* ld a0,0(sp) ld a1,8(sp) */
o( 0x61052542 ); /* fld fa0,16(sp) addi sp,sp,32 */
}
#endif
static void reg_pass_rec( CType *type, int *rc, int *fieldofs, int ofs )
{
if( ( type->t & VT_BTYPE ) == VT_STRUCT ) {
Sym *f;
if( type->ref->type.t == VT_UNION )
rc[ 0 ] = -1;
else
for( f = type->ref->next; f; f = f->next )
reg_pass_rec( &f->type, rc, fieldofs, ofs + f->c );
}
else if( type->t & VT_ARRAY ) {
if( type->ref->c < 0 || type->ref->c > 2 )
rc[ 0 ] = -1;
else {
int a, sz = type_size( &type->ref->type, &a );
reg_pass_rec( &type->ref->type, rc, fieldofs, ofs );
if( rc[ 0 ] > 2 || ( rc[ 0 ] == 2 && type->ref->c > 1 ) )
rc[ 0 ] = -1;
else if( type->ref->c == 2 && rc[ 0 ] && rc[ 1 ] == RC_FLOAT ) {
rc[ ++rc[ 0 ] ] = RC_FLOAT;
fieldofs[ rc[ 0 ] ] = ( ( ofs + sz ) << 4 ) | ( type->ref->type.t & VT_BTYPE );
}
else if( type->ref->c == 2 )
rc[ 0 ] = -1;
}
}
else if( rc[ 0 ] == 2 || rc[ 0 ] < 0 || ( type->t & VT_BTYPE ) == VT_LDOUBLE )
rc[ 0 ] = -1;
else if( !rc[ 0 ] || rc[ 1 ] == RC_FLOAT || is_float( type->t ) ) {
rc[ ++rc[ 0 ] ] = is_float( type->t ) ? RC_FLOAT : RC_INT;
fieldofs[ rc[ 0 ] ] =
( ofs << 4 ) | ( ( type->t & VT_BTYPE ) == VT_PTR ? VT_LLONG : type->t & VT_BTYPE );
}
else
rc[ 0 ] = -1;
}
static void reg_pass( CType *type, int *prc, int *fieldofs, int named )
{
prc[ 0 ] = 0;
reg_pass_rec( type, prc, fieldofs, 0 );
if( prc[ 0 ] <= 0 || !named ) {
int align, size = type_size( type, &align );
prc[ 0 ] = ( size + 7 ) >> 3;
prc[ 1 ] = prc[ 2 ] = RC_INT;
fieldofs[ 1 ] = ( 0 << 4 ) | ( size <= 1 ? VT_BYTE
: size <= 2 ? VT_SHORT
: size <= 4 ? VT_INT
: VT_LLONG );
fieldofs[ 2 ] = ( 8 << 4 ) | ( size <= 9 ? VT_BYTE
: size <= 10 ? VT_SHORT
: size <= 12 ? VT_INT
: VT_LLONG );
}
}
ST_FUNC void gfunc_call( int nb_args )
{
int i, align, size, areg[ 2 ];
int *info = tcc_malloc( ( nb_args + 1 ) * sizeof( int ) );
int stack_adj = 0, tempspace = 0, stack_add, ofs, splitofs = 0;
SValue *sv;
Sym *sa;
const uint32_t t0 = 5;
const uint32_t sp = 2;
#ifdef CONFIG_TCC_BCHECK
int bc_save = tcc_state->do_bounds_check;
if( tcc_state->do_bounds_check )
gbound_args( nb_args );
#endif
areg[ 0 ] = 0; /* int arg regs */
areg[ 1 ] = 8; /* float arg regs */
sa = vtop[ -nb_args ].type.ref->next;
for( i = 0; i < nb_args; i++ ) {
int nregs, byref = 0, tempofs;
int prc[ 3 ], fieldofs[ 3 ];
sv = &vtop[ 1 + i - nb_args ];
sv->type.t &= ~VT_ARRAY; // XXX this should be done in tccgen.c
size = type_size( &sv->type, &align );
if( size > 16 ) {
align = ( align < XLEN ) ? align : XLEN;
tempspace = ( tempspace + align - 1 ) & -align;
tempofs = tempspace;
tempspace += size;
size = align = 8;
byref = 64 | ( tempofs << 7 );
}
reg_pass( &sv->type, prc, fieldofs, sa != 0 );
if( !sa && align == 2 * XLEN && size <= 2 * XLEN ) {
areg[ 0 ] = ( areg[ 0 ] + 1 ) & ~1;
}
nregs = prc[ 0 ];
if( size == 0 ) {
info[ i ] = 0;
}
else if( ( prc[ 1 ] == RC_INT && areg[ 0 ] >= 8 ) ||
( prc[ 1 ] == RC_FLOAT && areg[ 1 ] >= 16 ) ||
( nregs == 2 && prc[ 1 ] == RC_FLOAT && prc[ 2 ] == RC_FLOAT &&
areg[ 1 ] >= 15 ) ||
( nregs == 2 && prc[ 1 ] != prc[ 2 ] && ( areg[ 1 ] >= 16 || areg[ 0 ] >= 8 ) ) ) {
info[ i ] = 32;
if( align < XLEN )
align = XLEN;
stack_adj += ( size + align - 1 ) & -align;
if( !sa ) /* one vararg on stack forces the rest on stack */
areg[ 0 ] = 8, areg[ 1 ] = 16;
}
else {
info[ i ] = areg[ prc[ 1 ] - 1 ]++;
if( !byref )
info[ i ] |= ( fieldofs[ 1 ] & VT_BTYPE ) << 12;
assert( !( fieldofs[ 1 ] >> 4 ) );
if( nregs == 2 ) {
if( prc[ 2 ] == RC_FLOAT || areg[ 0 ] < 8 )
info[ i ] |= ( 1 + areg[ prc[ 2 ] - 1 ]++ ) << 7;
else {
info[ i ] |= 16;
stack_adj += 8;
}
if( !byref ) {
assert( ( fieldofs[ 2 ] >> 4 ) < 2048 );
info[ i ] |= fieldofs[ 2 ] << ( 12 + 4 ); // includes offset
}
}
}
info[ i ] |= byref;
if( sa )
sa = sa->next;
}
stack_adj = ( stack_adj + 15 ) & -16;
tempspace = ( tempspace + 15 ) & -16;
stack_add = stack_adj + tempspace;
/* fetch cpu flag before generating any code */
if( ( vtop->r & VT_VALMASK ) == VT_CMP )
gv( RC_INT );
if( stack_add ) {
if( stack_add >= 0x1000 ) {
emit_LUI( t0, IMM_HIGH( -stack_add ) );
emit_ADDI( t0, t0, IMM_LOW( -stack_add ) );
emit_ADD( sp, sp, t0 );
}
else {
emit_ADDI( sp, sp, IMM_LOW( -stack_add ) );
}
for( i = ofs = 0; i < nb_args; i++ ) {
if( info[ i ] & ( 64 | 32 ) ) {
vrotb( nb_args - i );
size = type_size( &vtop->type, &align );
if( info[ i ] & 64 ) {
vset( &char_pointer_type, TREG_SP, 0 );
vpushi( stack_adj + ( info[ i ] >> 7 ) );
gen_op( '+' );
vpushv( vtop ); // this replaces the old argument
vrott( 3 );
indir();
vtop->type = vtop[ -1 ].type;
vswap();
vstore();
vpop();
size = align = 8;
}
if( info[ i ] & 32 ) {
if( align < XLEN )
align = XLEN;
/* Once we support offseted regs we can do this:
vset(&vtop->type, TREG_SP | VT_LVAL, ofs);
to construct the lvalue for the outgoing stack slot,
until then we have to jump through hoops. */
vset( &char_pointer_type, TREG_SP, 0 );
ofs = ( ofs + align - 1 ) & -align;
vpushi( ofs );
gen_op( '+' );
indir();
vtop->type = vtop[ -1 ].type;
vswap();
vstore();
vtop->r = vtop->r2 = VT_CONST; // this arg is done
ofs += size;
}
vrott( nb_args - i );
}
else if( info[ i ] & 16 ) {
assert( !splitofs );
splitofs = ofs;
ofs += 4;
}
}
}
for( i = 0; i < nb_args; i++ ) {
int ii = info[ nb_args - 1 - i ], r = ii, r2 = r;
if( !( r & 32 ) ) {
CType origtype;
int loadt;
r &= 15;
r2 = r2 & 64 ? 0 : ( r2 >> 7 ) & 31;
assert( r2 <= 16 );
vrotb( i + 1 );
origtype = vtop->type;
size = type_size( &vtop->type, &align );
if( size == 0 )
goto done;
loadt = vtop->type.t & VT_BTYPE;
if( loadt == VT_STRUCT ) {
loadt = ( ii >> 12 ) & VT_BTYPE;
}
if( info[ nb_args - 1 - i ] & 16 ) {
assert( !r2 );
r2 = 1 + TREG_RA;
}
if( loadt == VT_LDOUBLE ) {
assert( r2 );
r2--;
}
else if( r2 ) {
test_lvalue();
vpushv( vtop );
}
vtop->type.t = loadt | ( vtop->type.t & VT_UNSIGNED );
gv( r < 8 ? RC_R( r ) : RC_F( r - 8 ) );
vtop->type = origtype;
if( r2 && loadt != VT_LDOUBLE ) {
r2--;
assert( r2 < 16 || r2 == TREG_RA );
vswap();
gaddrof();
vtop->type = char_pointer_type;
vpushi( ii >> 20 );
#ifdef CONFIG_TCC_BCHECK
if( ( origtype.t & VT_BTYPE ) == VT_STRUCT ) {
tcc_state->do_bounds_check = 0;
}
#endif
gen_op( '+' );
#ifdef CONFIG_TCC_BCHECK
tcc_state->do_bounds_check = bc_save;
#endif
indir();
vtop->type = origtype;
loadt = vtop->type.t & VT_BTYPE;
if( loadt == VT_STRUCT ) {
loadt = ( ii >> 16 ) & VT_BTYPE;
}
save_reg_upstack( r2, 1 );
vtop->type.t = loadt | ( vtop->type.t & VT_UNSIGNED );
load( r2, vtop );
assert( r2 < VT_CONST );
vtop--;
vtop->r2 = r2;
}
if( info[ nb_args - 1 - i ] & 16 ) {
// ES(0x23, 3, 2, ireg(vtop->r2), splitofs); // sd t0, ofs(sp)
emit_SW( ireg( vtop->r2 ), 5, splitofs );
vtop->r2 = VT_CONST;
}
else if( loadt == VT_LDOUBLE && vtop->r2 != r2 ) {
assert( vtop->r2 <= 7 && r2 <= 7 );
/* XXX we'd like to have 'gv' move directly into
the right class instead of us fixing it up. */
// mv Ra+1, RR2
emit_MV( ireg( r2 ), ireg( vtop->r2 ) );
vtop->r2 = r2;
}
done:
vrott( i + 1 );
}
}
vrotb( nb_args + 1 );
save_regs( nb_args + 1 );
gcall_or_jmp( 1 );
vtop -= nb_args + 1;
if( stack_add ) {
const uint32_t t0 = 5;
const uint32_t sp = 2;
if( stack_add >= 0x1000 ) {
emit_LUI( t0, IMM_HIGH( stack_add ) );
emit_ADDI( t0, t0, IMM_LOW( stack_add ) );
emit_ADD( sp, sp, t0 );
}
else {
emit_ADDI( sp, sp, stack_add );
}
}
tcc_free( info );
}
static int func_sub_sp_offset, num_va_regs, func_va_list_ofs;
ST_FUNC void gfunc_prolog( Sym *func_sym )
{
CType *func_type = &func_sym->type;
int i, addr, align, size;
int param_addr = 0;
int areg[ 2 ];
Sym *sym;
CType *type;
sym = func_type->ref;
loc = -16; // for ra and s0
func_sub_sp_offset = ind;
ind += 5 * 4;
areg[ 0 ] = 0;
areg[ 1 ] = 0;
addr = 0;
/* if the function returns by reference, then add an
implicit pointer parameter */
size = type_size( &func_vt, &align );
if( size > 2 * XLEN ) {
int s0 = 8;
int loc_reg = s0; // s0
int src_reg = ireg( areg[ 0 ]++ );
loc -= 8;
func_vc = loc;
emit_SW( loc_reg, src_reg, loc );
tcc_internal_error( "I don't think we are handling this case correctly" );
}
/* define parameters */
while( ( sym = sym->next ) != NULL ) {
int byref = 0;
int regcount;
int prc[ 3 ], fieldofs[ 3 ];
type = &sym->type;
size = type_size( type, &align );
if( size > 2 * XLEN ) {
type = &char_pointer_type;
size = align = byref = 8;
}
reg_pass( type, prc, fieldofs, 1 );
regcount = prc[ 0 ];
if( areg[ prc[ 1 ] - 1 ] >= 8 ||
( regcount == 2 &&
( ( prc[ 1 ] == RC_FLOAT && prc[ 2 ] == RC_FLOAT && areg[ 1 ] >= 7 ) ||
( prc[ 1 ] != prc[ 2 ] && ( areg[ 1 ] >= 8 || areg[ 0 ] >= 8 ) ) ) ) ) {
if( align < XLEN )
align = XLEN;
addr = ( addr + align - 1 ) & -align;
param_addr = addr;
addr += size;
}
else {
loc -= regcount * 8; // XXX could reserve only 'size' bytes
// loc -= regcount * PTR_SIZE; // XXX could reserve only 'size' bytes
param_addr = loc;
for( i = 0; i < regcount; i++ ) {
const uint32_t t0 = 5;
const uint32_t s0 = 8;
if( areg[ prc[ 1 + i ] - 1 ] >= 8 ) {
assert( i == 1 && regcount == 2 && !( addr & 7 ) );
emit_LW( t0, s0, addr );
addr += XLEN;
emit_SW( s0, t0, loc + i * 4 );
}
else if( prc[ 1 + i ] == RC_FLOAT ) {
// emit_S(0x22, (size / regcount) == 4 ? 2 : 3, 8, 10 + areg[1]++, loc +
// (fieldofs[i+1] >> 4)); // fs[wd] FAi, loc(s0)
tcc_error( "unimp: floating point support" );
}
else {
// sw aX, loc(s0) // XXX
emit_SW( s0, ireg( areg[ 0 ]++ ), loc + i * XLEN );
}
}
}
sym_push( sym->v & ~SYM_FIELD, &sym->type, ( byref ? VT_LLOCAL : VT_LOCAL ) | VT_LVAL,
param_addr );
}
func_va_list_ofs = addr;
num_va_regs = 0;