1 #ifdef TARGET_DEFS_ONLY
3 // Number of registers available to allocator:
4 #define NB_REGS 19 // x10-x17 aka a0-a7, f10-f17 aka fa0-fa7, xxx, ra, sp
8 #define TREG_R(x) (x) // x = 0..7
9 #define TREG_F(x) (x + 8) // x = 0..7
11 // Register classes sorted from more general to more precise:
12 #define RC_INT (1 << 0)
13 #define RC_FLOAT (1 << 1)
14 #define RC_R(x) (1 << (2 + (x))) // x = 0..7
15 #define RC_F(x) (1 << (10 + (x))) // x = 0..7
17 #define RC_IRET (RC_R(0)) // int return register class
18 #define RC_IRE2 (RC_R(1)) // int 2nd return register class
19 #define RC_FRET (RC_F(0)) // float return register class
21 #define REG_IRET (TREG_R(0)) // int return register number
22 #define REG_IRE2 (TREG_R(1)) // int 2nd return register number
23 #define REG_FRET (TREG_F(0)) // float return register number
27 #define LDOUBLE_SIZE 16
28 #define LDOUBLE_ALIGN 16
32 #define CHAR_IS_UNSIGNED
39 ST_DATA
const char * const target_machine_defs
=
47 "__riscv_float_abi_double\0"
55 ST_DATA
const int reg_classes
[NB_REGS
] = {
77 #if defined(CONFIG_TCC_BCHECK)
78 static addr_t func_bound_offset
;
79 static unsigned long func_bound_ind
;
80 ST_DATA
int func_bound_add_epilog
;
83 static int ireg(int r
)
89 assert(r
>= 0 && r
< 8);
90 return r
+ 10; // tccrX --> aX == x(10+X)
93 static int is_ireg(int r
)
95 return (unsigned)r
< 8 || r
== TREG_RA
|| r
== TREG_SP
;
98 static int freg(int r
)
100 assert(r
>= 8 && r
< 16);
101 return r
- 8 + 10; // tccfX --> faX == f(10+X)
104 static int is_freg(int r
)
106 return r
>= 8 && r
< 16;
109 ST_FUNC
void o(unsigned int c
)
114 if (ind1
> cur_text_section
->data_allocated
)
115 section_realloc(cur_text_section
, ind1
);
116 write32le(cur_text_section
->data
+ ind
, c
);
120 static void EIu(uint32_t opcode
, uint32_t func3
,
121 uint32_t rd
, uint32_t rs1
, uint32_t imm
)
123 o(opcode
| (func3
<< 12) | (rd
<< 7) | (rs1
<< 15) | (imm
<< 20));
126 static void ER(uint32_t opcode
, uint32_t func3
,
127 uint32_t rd
, uint32_t rs1
, uint32_t rs2
, uint32_t func7
)
129 o(opcode
| func3
<< 12 | rd
<< 7 | rs1
<< 15 | rs2
<< 20 | func7
<< 25);
132 static void EI(uint32_t opcode
, uint32_t func3
,
133 uint32_t rd
, uint32_t rs1
, uint32_t imm
)
135 assert(! ((imm
+ (1 << 11)) >> 12));
136 EIu(opcode
, func3
, rd
, rs1
, imm
);
139 static void ES(uint32_t opcode
, uint32_t func3
,
140 uint32_t rs1
, uint32_t rs2
, uint32_t imm
)
142 assert(! ((imm
+ (1 << 11)) >> 12));
143 o(opcode
| (func3
<< 12) | ((imm
& 0x1f) << 7) | (rs1
<< 15)
144 | (rs2
<< 20) | ((imm
>> 5) << 25));
147 // Patch all branches in list pointed to by t to branch to a:
148 ST_FUNC
void gsym_addr(int t_
, int a_
)
153 unsigned char *ptr
= cur_text_section
->data
+ t
;
154 uint32_t next
= read32le(ptr
);
155 uint32_t r
= a
- t
, imm
;
156 if ((r
+ (1 << 21)) & ~((1U << 22) - 2))
157 tcc_error("out-of-range branch chain");
158 imm
= (((r
>> 12) & 0xff) << 12)
159 | (((r
>> 11) & 1) << 20)
160 | (((r
>> 1) & 0x3ff) << 21)
161 | (((r
>> 20) & 1) << 31);
162 write32le(ptr
, r
== 4 ? 0x33 : 0x6f | imm
); // nop || j imm
167 static int load_symofs(int r
, SValue
*sv
, int forstore
)
170 int fc
= sv
->c
.i
, v
= sv
->r
& VT_VALMASK
;
171 if (sv
->r
& VT_SYM
) {
173 assert(v
== VT_CONST
);
174 if (sv
->sym
->type
.t
& VT_STATIC
) { // XXX do this per linker relax
175 greloca(cur_text_section
, sv
->sym
, ind
,
176 R_RISCV_PCREL_HI20
, sv
->c
.i
);
179 if (((unsigned)fc
+ (1 << 11)) >> 12)
180 tcc_error("unimp: large addend for global address (0x%lx)", (long)sv
->c
.i
);
181 greloca(cur_text_section
, sv
->sym
, ind
,
182 R_RISCV_GOT_HI20
, 0);
185 label
.type
.t
= VT_VOID
| VT_STATIC
;
187 put_extern_sym(&label
, cur_text_section
, ind
, 0);
188 rr
= is_ireg(r
) ? ireg(r
) : 5;
189 o(0x17 | (rr
<< 7)); // auipc RR, 0 %pcrel_hi(sym)+addend
190 greloca(cur_text_section
, &label
, ind
,
192 ? R_RISCV_PCREL_LO12_I
: R_RISCV_PCREL_LO12_S
, 0);
194 EI(0x03, 3, rr
, rr
, 0); // ld RR, 0(RR)
196 } else if (v
== VT_LOCAL
|| v
== VT_LLOCAL
) {
199 tcc_error("unimp: store(giant local off) (0x%lx)", (long)sv
->c
.i
);
200 if (((unsigned)fc
+ (1 << 11)) >> 12) {
201 rr
= is_ireg(r
) ? ireg(r
) : 5; // t0
202 o(0x37 | (rr
<< 7) | ((0x800 + fc
) & 0xfffff000)); //lui RR, upper(fc)
203 ER(0x33, 0, rr
, rr
, 8, 0); // add RR, RR, s0
204 sv
->c
.i
= fc
<< 20 >> 20;
211 static void load_large_constant(int rr
, int fc
, uint32_t pi
)
215 o(0x37 | (rr
<< 7) | (((pi
+ 0x800) & 0xfffff000))); // lui RR, up(up(fc))
216 EI(0x13, 0, rr
, rr
, (int)pi
<< 20 >> 20); // addi RR, RR, lo(up(fc))
217 EI(0x13, 1, rr
, rr
, 12); // slli RR, RR, 12
218 EI(0x13, 0, rr
, rr
, (fc
+ (1 << 19)) >> 20); // addi RR, RR, up(lo(fc))
219 EI(0x13, 1, rr
, rr
, 12); // slli RR, RR, 12
221 EI(0x13, 0, rr
, rr
, fc
>> 8); // addi RR, RR, lo1(lo(fc))
222 EI(0x13, 1, rr
, rr
, 8); // slli RR, RR, 8
225 ST_FUNC
void load(int r
, SValue
*sv
)
228 int v
= fr
& VT_VALMASK
;
229 int rr
= is_ireg(r
) ? ireg(r
) : freg(r
);
231 int bt
= sv
->type
.t
& VT_BTYPE
;
234 int func3
, opcode
= is_freg(r
) ? 0x07 : 0x03, br
;
235 size
= type_size(&sv
->type
, &align
);
236 assert (!is_freg(r
) || bt
== VT_FLOAT
|| bt
== VT_DOUBLE
);
237 if (bt
== VT_FUNC
) /* XXX should be done in generic code */
239 func3
= size
== 1 ? 0 : size
== 2 ? 1 : size
== 4 ? 2 : 3;
240 if (size
< 4 && !is_float(sv
->type
.t
) && (sv
->type
.t
& VT_UNSIGNED
))
242 if (v
== VT_LOCAL
|| (fr
& VT_SYM
)) {
243 br
= load_symofs(r
, sv
, 0);
245 } else if (v
< VT_CONST
) {
247 /*if (((unsigned)fc + (1 << 11)) >> 12)
248 tcc_error("unimp: load(large addend) (0x%x)", fc);*/
249 fc
= 0; // XXX store ofs in LVAL(reg)
250 } else if (v
== VT_LLOCAL
) {
251 br
= load_symofs(r
, sv
, 0);
253 EI(0x03, 3, rr
, br
, fc
); // ld RR, fc(BR)
256 } else if (v
== VT_CONST
) {
257 int64_t si
= sv
->c
.i
;
260 load_large_constant(rr
, fc
, si
);
263 o(0x37 | (rr
<< 7) | ((0x800 + fc
) & 0xfffff000)); //lui RR, upper(fc)
268 tcc_error("unimp: load(non-local lval)");
270 EI(opcode
, func3
, rr
, br
, fc
); // l[bhwd][u] / fl[wd] RR, fc(BR)
271 } else if (v
== VT_CONST
) {
272 int rb
= 0, do32bit
= 8, zext
= 0;
273 assert((!is_float(sv
->type
.t
) && is_ireg(r
)) || bt
== VT_LDOUBLE
);
275 rb
= load_symofs(r
, sv
, 0);
279 if (is_float(sv
->type
.t
) && bt
!= VT_LDOUBLE
)
280 tcc_error("unimp: load(float)");
282 int64_t si
= sv
->c
.i
;
285 load_large_constant(rr
, fc
, si
);
289 } else if (bt
== VT_LLONG
) {
290 /* A 32bit unsigned constant for a 64bit type.
291 lui always sign extends, so we need to do an explicit zext.*/
295 if (((unsigned)fc
+ (1 << 11)) >> 12)
296 o(0x37 | (rr
<< 7) | ((0x800 + fc
) & 0xfffff000)), rb
= rr
; //lui RR, upper(fc)
297 if (fc
|| (rr
!= rb
) || do32bit
|| (fr
& VT_SYM
))
298 EI(0x13 | do32bit
, 0, rr
, rb
, fc
<< 20 >> 20); // addi[w] R, x0|R, FC
300 EI(0x13, 1, rr
, rr
, 32); // slli RR, RR, 32
301 EI(0x13, 5, rr
, rr
, 32); // srli RR, RR, 32
303 } else if (v
== VT_LOCAL
) {
304 int br
= load_symofs(r
, sv
, 0);
307 EI(0x13, 0, rr
, br
, fc
); // addi R, s0, FC
308 } else if (v
< VT_CONST
) { /* reg-reg */
309 //assert(!fc); XXX support offseted regs
310 if (is_freg(r
) && is_freg(v
))
311 ER(0x53, 0, rr
, freg(v
), freg(v
), bt
== VT_DOUBLE
? 0x11 : 0x10); //fsgnj.[sd] RR, V, V == fmv.[sd] RR, V
312 else if (is_ireg(r
) && is_ireg(v
))
313 EI(0x13, 0, rr
, ireg(v
), 0); // addi RR, V, 0 == mv RR, V
315 int func7
= is_ireg(r
) ? 0x70 : 0x78;
316 size
= type_size(&sv
->type
, &align
);
319 assert(size
== 4 || size
== 8);
320 o(0x53 | (rr
<< 7) | ((is_freg(v
) ? freg(v
) : ireg(v
)) << 15)
321 | (func7
<< 25)); // fmv.{w.x, x.w, d.x, x.d} RR, VR
323 } else if (v
== VT_CMP
) {
324 int op
= vtop
->cmp_op
;
325 int a
= vtop
->cmp_r
& 0xff;
326 int b
= (vtop
->cmp_r
>> 8) & 0xff;
337 if (op
& 1) { // remove [U]GE,GT
341 if ((op
& 7) == 6) { // [U]LE
342 int t
= a
; a
= b
; b
= t
;
345 ER(0x33, (op
> TOK_UGT
) ? 2 : 3, rr
, a
, b
, 0); // slt[u] d, a, b
347 EI(0x13, 4, rr
, rr
, 1); // xori d, d, 1
352 ER(0x33, 0, rr
, a
, b
, 0x20); // sub d, a, b
354 ER(0x33, 3, rr
, 0, rr
, 0); // sltu d, x0, d == snez d,d
356 EI(0x13, 3, rr
, rr
, 1); // sltiu d, d, 1 == seqz d,d
359 } else if ((v
& ~1) == VT_JMP
) {
362 EI(0x13, 0, rr
, 0, t
); // addi RR, x0, t
365 EI(0x13, 0, rr
, 0, t
^ 1); // addi RR, x0, !t
367 tcc_error("unimp: load(non-const)");
370 ST_FUNC
void store(int r
, SValue
*sv
)
372 int fr
= sv
->r
& VT_VALMASK
;
373 int rr
= is_ireg(r
) ? ireg(r
) : freg(r
), ptrreg
;
375 int bt
= sv
->type
.t
& VT_BTYPE
;
376 int align
, size
= type_size(&sv
->type
, &align
);
377 assert(!is_float(bt
) || is_freg(r
) || bt
== VT_LDOUBLE
);
378 /* long doubles are in two integer registers, but the load/store
379 primitives only deal with one, so do as if it's one reg. */
380 if (bt
== VT_LDOUBLE
)
383 tcc_error("unimp: store(struct)");
385 tcc_error("unimp: large sized store");
386 assert(sv
->r
& VT_LVAL
);
387 if (fr
== VT_LOCAL
|| (sv
->r
& VT_SYM
)) {
388 ptrreg
= load_symofs(-1, sv
, 1);
390 } else if (fr
< VT_CONST
) {
392 /*if (((unsigned)fc + (1 << 11)) >> 12)
393 tcc_error("unimp: store(large addend) (0x%x)", fc);*/
394 fc
= 0; // XXX support offsets regs
395 } else if (fr
== VT_CONST
) {
396 int64_t si
= sv
->c
.i
;
400 load_large_constant(ptrreg
, fc
, si
);
403 o(0x37 | (ptrreg
<< 7) | ((0x800 + fc
) & 0xfffff000)); //lui RR, upper(fc)
407 tcc_error("implement me: %s(!local)", __FUNCTION__
);
408 ES(is_freg(r
) ? 0x27 : 0x23, // fs... | s...
409 size
== 1 ? 0 : size
== 2 ? 1 : size
== 4 ? 2 : 3, // ... [wd] | [bhwd]
410 ptrreg
, rr
, fc
); // RR, fc(base)
413 static void gcall_or_jmp(int docall
)
415 int tr
= docall
? 1 : 5; // ra or t0
416 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
&&
417 ((vtop
->r
& VT_SYM
) && vtop
->c
.i
== (int)vtop
->c
.i
)) {
418 /* constant symbolic case -> simple relocation */
419 greloca(cur_text_section
, vtop
->sym
, ind
,
420 R_RISCV_CALL_PLT
, (int)vtop
->c
.i
);
421 o(0x17 | (tr
<< 7)); // auipc TR, 0 %call(func)
422 EI(0x67, 0, tr
, tr
, 0);// jalr TR, r(TR)
423 } else if (vtop
->r
< VT_CONST
) {
424 int r
= ireg(vtop
->r
);
425 EI(0x67, 0, tr
, r
, 0); // jalr TR, 0(R)
430 EI(0x67, 0, tr
, r
, 0); // jalr TR, 0(R)
434 #if defined(CONFIG_TCC_BCHECK)
436 static void gen_bounds_call(int v
)
438 Sym
*sym
= external_helper_sym(v
);
440 greloca(cur_text_section
, sym
, ind
, R_RISCV_CALL_PLT
, 0);
441 o(0x17 | (1 << 7)); // auipc TR, 0 %call(func)
442 EI(0x67, 0, 1, 1, 0); // jalr TR, r(TR)
445 static void gen_bounds_prolog(void)
447 /* leave some room for bound checking code */
448 func_bound_offset
= lbounds_section
->data_offset
;
449 func_bound_ind
= ind
;
450 func_bound_add_epilog
= 0;
451 o(0x00000013); /* ld a0,#lbound section pointer */
453 o(0x00000013); /* nop -> call __bound_local_new */
457 static void gen_bounds_epilog(void)
464 int offset_modified
= func_bound_offset
!= lbounds_section
->data_offset
;
466 if (!offset_modified
&& !func_bound_add_epilog
)
469 /* add end of table info */
470 bounds_ptr
= section_ptr_add(lbounds_section
, sizeof(addr_t
));
473 sym_data
= get_sym_ref(&char_pointer_type
, lbounds_section
,
474 func_bound_offset
, PTR_SIZE
);
476 label
.type
.t
= VT_VOID
| VT_STATIC
;
477 /* generate bound local allocation */
478 if (offset_modified
) {
480 ind
= func_bound_ind
;
481 put_extern_sym(&label
, cur_text_section
, ind
, 0);
482 greloca(cur_text_section
, sym_data
, ind
, R_RISCV_GOT_HI20
, 0);
483 o(0x17 | (10 << 7)); // auipc a0, 0 %pcrel_hi(sym)+addend
484 greloca(cur_text_section
, &label
, ind
, R_RISCV_PCREL_LO12_I
, 0);
485 EI(0x03, 3, 10, 10, 0); // ld a0, 0(a0)
486 gen_bounds_call(TOK___bound_local_new
);
488 label
.c
= 0; /* force new local ELF symbol */
491 /* generate bound check local freeing */
492 o(0xe02a1101); /* addi sp,sp,-32 sd a0,0(sp) */
493 o(0xa82ae42e); /* sd a1,8(sp) fsd fa0,16(sp) */
494 put_extern_sym(&label
, cur_text_section
, ind
, 0);
495 greloca(cur_text_section
, sym_data
, ind
, R_RISCV_GOT_HI20
, 0);
496 o(0x17 | (10 << 7)); // auipc a0, 0 %pcrel_hi(sym)+addend
497 greloca(cur_text_section
, &label
, ind
, R_RISCV_PCREL_LO12_I
, 0);
498 EI(0x03, 3, 10, 10, 0); // ld a0, 0(a0)
499 gen_bounds_call(TOK___bound_local_delete
);
500 o(0x65a26502); /* ld a0,0(sp) ld a1,8(sp) */
501 o(0x61052542); /* fld fa0,16(sp) addi sp,sp,32 */
505 static void reg_pass_rec(CType
*type
, int *rc
, int *fieldofs
, int ofs
)
507 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
) {
509 if (type
->ref
->type
.t
== VT_UNION
)
511 else for (f
= type
->ref
->next
; f
; f
= f
->next
)
512 reg_pass_rec(&f
->type
, rc
, fieldofs
, ofs
+ f
->c
);
513 } else if (type
->t
& VT_ARRAY
) {
514 if (type
->ref
->c
< 0 || type
->ref
->c
> 2)
517 int a
, sz
= type_size(&type
->ref
->type
, &a
);
518 reg_pass_rec(&type
->ref
->type
, rc
, fieldofs
, ofs
);
519 if (rc
[0] > 2 || (rc
[0] == 2 && type
->ref
->c
> 1))
521 else if (type
->ref
->c
== 2 && rc
[0] && rc
[1] == RC_FLOAT
) {
522 rc
[++rc
[0]] = RC_FLOAT
;
523 fieldofs
[rc
[0]] = ((ofs
+ sz
) << 4)
524 | (type
->ref
->type
.t
& VT_BTYPE
);
525 } else if (type
->ref
->c
== 2)
528 } else if (rc
[0] == 2 || rc
[0] < 0 || (type
->t
& VT_BTYPE
) == VT_LDOUBLE
)
530 else if (!rc
[0] || rc
[1] == RC_FLOAT
|| is_float(type
->t
)) {
531 rc
[++rc
[0]] = is_float(type
->t
) ? RC_FLOAT
: RC_INT
;
532 fieldofs
[rc
[0]] = (ofs
<< 4) | ((type
->t
& VT_BTYPE
) == VT_PTR
? VT_LLONG
: type
->t
& VT_BTYPE
);
537 static void reg_pass(CType
*type
, int *prc
, int *fieldofs
, int named
)
540 reg_pass_rec(type
, prc
, fieldofs
, 0);
541 if (prc
[0] <= 0 || !named
) {
542 int align
, size
= type_size(type
, &align
);
543 prc
[0] = (size
+ 7) >> 3;
544 prc
[1] = prc
[2] = RC_INT
;
545 fieldofs
[1] = (0 << 4) | (size
<= 1 ? VT_BYTE
: size
<= 2 ? VT_SHORT
: size
<= 4 ? VT_INT
: VT_LLONG
);
546 fieldofs
[2] = (8 << 4) | (size
<= 9 ? VT_BYTE
: size
<= 10 ? VT_SHORT
: size
<= 12 ? VT_INT
: VT_LLONG
);
550 ST_FUNC
void gfunc_call(int nb_args
)
552 int i
, align
, size
, areg
[2];
553 int *info
= tcc_malloc((nb_args
+ 1) * sizeof (int));
554 int stack_adj
= 0, tempspace
= 0, stack_add
, ofs
, splitofs
= 0;
558 #ifdef CONFIG_TCC_BCHECK
559 int bc_save
= tcc_state
->do_bounds_check
;
560 if (tcc_state
->do_bounds_check
)
561 gbound_args(nb_args
);
564 areg
[0] = 0; /* int arg regs */
565 areg
[1] = 8; /* float arg regs */
566 sa
= vtop
[-nb_args
].type
.ref
->next
;
567 for (i
= 0; i
< nb_args
; i
++) {
568 int nregs
, byref
= 0, tempofs
;
569 int prc
[3], fieldofs
[3];
570 sv
= &vtop
[1 + i
- nb_args
];
571 sv
->type
.t
&= ~VT_ARRAY
; // XXX this should be done in tccgen.c
572 size
= type_size(&sv
->type
, &align
);
576 tempspace
= (tempspace
+ align
- 1) & -align
;
580 byref
= 64 | (tempofs
<< 7);
582 reg_pass(&sv
->type
, prc
, fieldofs
, sa
!= 0);
583 if (!sa
&& align
== 2*XLEN
&& size
<= 2*XLEN
)
584 areg
[0] = (areg
[0] + 1) & ~1;
588 else if ((prc
[1] == RC_INT
&& areg
[0] >= 8)
589 || (prc
[1] == RC_FLOAT
&& areg
[1] >= 16)
590 || (nregs
== 2 && prc
[1] == RC_FLOAT
&& prc
[2] == RC_FLOAT
592 || (nregs
== 2 && prc
[1] != prc
[2]
593 && (areg
[1] >= 16 || areg
[0] >= 8))) {
597 stack_adj
+= (size
+ align
- 1) & -align
;
598 if (!sa
) /* one vararg on stack forces the rest on stack */
599 areg
[0] = 8, areg
[1] = 16;
601 info
[i
] = areg
[prc
[1] - 1]++;
603 info
[i
] |= (fieldofs
[1] & VT_BTYPE
) << 12;
604 assert(!(fieldofs
[1] >> 4));
606 if (prc
[2] == RC_FLOAT
|| areg
[0] < 8)
607 info
[i
] |= (1 + areg
[prc
[2] - 1]++) << 7;
613 assert((fieldofs
[2] >> 4) < 2048);
614 info
[i
] |= fieldofs
[2] << (12 + 4); // includes offset
622 stack_adj
= (stack_adj
+ 15) & -16;
623 tempspace
= (tempspace
+ 15) & -16;
624 stack_add
= stack_adj
+ tempspace
;
626 /* fetch cpu flag before generating any code */
627 if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
632 if (stack_add
>= 0x800) {
633 unsigned int bit11
= (((unsigned int)-stack_add
) >> 11) & 1;
635 ((-stack_add
+ (bit11
<< 12)) & 0xfffff000)); //lui t0, upper(v)
636 EI(0x13, 0, 5, 5, ((-stack_add
& 0xfff) - bit11
* (1 << 12)));
637 // addi t0, t0, lo(v)
638 ER(0x33, 0, 2, 2, 5, 0); // add sp, sp, t0
641 EI(0x13, 0, 2, 2, -stack_add
); // addi sp, sp, -adj
642 for (i
= ofs
= 0; i
< nb_args
; i
++) {
643 if (info
[i
] & (64 | 32)) {
645 size
= type_size(&vtop
->type
, &align
);
647 vset(&char_pointer_type
, TREG_SP
, 0);
648 vpushi(stack_adj
+ (info
[i
] >> 7));
650 vpushv(vtop
); // this replaces the old argument
653 vtop
->type
= vtop
[-1].type
;
662 /* Once we support offseted regs we can do this:
663 vset(&vtop->type, TREG_SP | VT_LVAL, ofs);
664 to construct the lvalue for the outgoing stack slot,
665 until then we have to jump through hoops. */
666 vset(&char_pointer_type
, TREG_SP
, 0);
667 ofs
= (ofs
+ align
- 1) & -align
;
671 vtop
->type
= vtop
[-1].type
;
674 vtop
->r
= vtop
->r2
= VT_CONST
; // this arg is done
678 } else if (info
[i
] & 16) {
685 for (i
= 0; i
< nb_args
; i
++) {
686 int ii
= info
[nb_args
- 1 - i
], r
= ii
, r2
= r
;
691 r2
= r2
& 64 ? 0 : (r2
>> 7) & 31;
694 origtype
= vtop
->type
;
695 size
= type_size(&vtop
->type
, &align
);
698 loadt
= vtop
->type
.t
& VT_BTYPE
;
699 if (loadt
== VT_STRUCT
) {
700 loadt
= (ii
>> 12) & VT_BTYPE
;
702 if (info
[nb_args
- 1 - i
] & 16) {
706 if (loadt
== VT_LDOUBLE
) {
713 vtop
->type
.t
= loadt
| (vtop
->type
.t
& VT_UNSIGNED
);
714 gv(r
< 8 ? RC_R(r
) : RC_F(r
- 8));
715 vtop
->type
= origtype
;
717 if (r2
&& loadt
!= VT_LDOUBLE
) {
719 assert(r2
< 16 || r2
== TREG_RA
);
722 vtop
->type
= char_pointer_type
;
724 #ifdef CONFIG_TCC_BCHECK
725 if ((origtype
.t
& VT_BTYPE
) == VT_STRUCT
)
726 tcc_state
->do_bounds_check
= 0;
729 #ifdef CONFIG_TCC_BCHECK
730 tcc_state
->do_bounds_check
= bc_save
;
733 vtop
->type
= origtype
;
734 loadt
= vtop
->type
.t
& VT_BTYPE
;
735 if (loadt
== VT_STRUCT
) {
736 loadt
= (ii
>> 16) & VT_BTYPE
;
738 save_reg_upstack(r2
, 1);
739 vtop
->type
.t
= loadt
| (vtop
->type
.t
& VT_UNSIGNED
);
741 assert(r2
< VT_CONST
);
745 if (info
[nb_args
- 1 - i
] & 16) {
746 ES(0x23, 3, 2, ireg(vtop
->r2
), splitofs
); // sd t0, ofs(sp)
748 } else if (loadt
== VT_LDOUBLE
&& vtop
->r2
!= r2
) {
749 assert(vtop
->r2
<= 7 && r2
<= 7);
750 /* XXX we'd like to have 'gv' move directly into
751 the right class instead of us fixing it up. */
752 EI(0x13, 0, ireg(r2
), ireg(vtop
->r2
), 0); // mv Ra+1, RR2
760 save_regs(nb_args
+ 1);
764 if (stack_add
>= 0x800) {
765 unsigned int bit11
= ((unsigned int)stack_add
>> 11) & 1;
767 ((stack_add
+ (bit11
<< 12)) & 0xfffff000)); //lui t0, upper(v)
768 EI(0x13, 0, 5, 5, (stack_add
& 0xfff) - bit11
* (1 << 12));
769 // addi t0, t0, lo(v)
770 ER(0x33, 0, 2, 2, 5, 0); // add sp, sp, t0
773 EI(0x13, 0, 2, 2, stack_add
); // addi sp, sp, adj
778 static int func_sub_sp_offset
, num_va_regs
, func_va_list_ofs
;
780 ST_FUNC
void gfunc_prolog(Sym
*func_sym
)
782 CType
*func_type
= &func_sym
->type
;
783 int i
, addr
, align
, size
;
789 sym
= func_type
->ref
;
790 loc
= -16; // for ra and s0
791 func_sub_sp_offset
= ind
;
794 areg
[0] = 0, areg
[1] = 0;
796 /* if the function returns by reference, then add an
797 implicit pointer parameter */
798 size
= type_size(&func_vt
, &align
);
799 if (size
> 2 * XLEN
) {
802 ES(0x23, 3, 8, 10 + areg
[0]++, loc
); // sd a0, loc(s0)
804 /* define parameters */
805 while ((sym
= sym
->next
) != NULL
) {
808 int prc
[3], fieldofs
[3];
810 size
= type_size(type
, &align
);
811 if (size
> 2 * XLEN
) {
812 type
= &char_pointer_type
;
813 size
= align
= byref
= 8;
815 reg_pass(type
, prc
, fieldofs
, 1);
817 if (areg
[prc
[1] - 1] >= 8
819 && ((prc
[1] == RC_FLOAT
&& prc
[2] == RC_FLOAT
&& areg
[1] >= 7)
820 || (prc
[1] != prc
[2] && (areg
[1] >= 8 || areg
[0] >= 8))))) {
823 addr
= (addr
+ align
- 1) & -align
;
827 loc
-= regcount
* 8; // XXX could reserve only 'size' bytes
829 for (i
= 0; i
< regcount
; i
++) {
830 if (areg
[prc
[1+i
] - 1] >= 8) {
831 assert(i
== 1 && regcount
== 2 && !(addr
& 7));
832 EI(0x03, 3, 5, 8, addr
); // ld t0, addr(s0)
834 ES(0x23, 3, 8, 5, loc
+ i
*8); // sd t0, loc(s0)
835 } else if (prc
[1+i
] == RC_FLOAT
) {
836 ES(0x27, (size
/ regcount
) == 4 ? 2 : 3, 8, 10 + areg
[1]++, loc
+ (fieldofs
[i
+1] >> 4)); // fs[wd] FAi, loc(s0)
838 ES(0x23, 3, 8, 10 + areg
[0]++, loc
+ i
*8); // sd aX, loc(s0) // XXX
842 sym_push(sym
->v
& ~SYM_FIELD
, &sym
->type
,
843 (byref
? VT_LLOCAL
: VT_LOCAL
) | VT_LVAL
,
846 func_va_list_ofs
= addr
;
849 for (; areg
[0] < 8; areg
[0]++) {
851 ES(0x23, 3, 8, 10 + areg
[0], -8 + num_va_regs
* 8); // sd aX, loc(s0)
854 #ifdef CONFIG_TCC_BCHECK
855 if (tcc_state
->do_bounds_check
)
860 ST_FUNC
int gfunc_sret(CType
*vt
, int variadic
, CType
*ret
,
861 int *ret_align
, int *regsize
)
863 int align
, size
= type_size(vt
, &align
), nregs
;
864 int prc
[3], fieldofs
[3];
869 reg_pass(vt
, prc
, fieldofs
, 1);
871 if (nregs
== 2 && prc
[1] != prc
[2])
872 return -1; /* generic code can't deal with this case */
873 if (prc
[1] == RC_FLOAT
) {
874 *regsize
= size
/ nregs
;
876 ret
->t
= fieldofs
[1] & VT_BTYPE
;
881 ST_FUNC
void arch_transfer_ret_regs(int aftercall
)
883 int prc
[3], fieldofs
[3];
884 reg_pass(&vtop
->type
, prc
, fieldofs
, 1);
885 assert(prc
[0] == 2 && prc
[1] != prc
[2] && !(fieldofs
[1] >> 4));
886 assert(vtop
->r
== (VT_LOCAL
| VT_LVAL
));
888 vtop
->type
.t
= fieldofs
[1] & VT_BTYPE
;
889 (aftercall
? store
: load
)(prc
[1] == RC_INT
? REG_IRET
: REG_FRET
, vtop
);
890 vtop
->c
.i
+= fieldofs
[2] >> 4;
891 vtop
->type
.t
= fieldofs
[2] & VT_BTYPE
;
892 (aftercall
? store
: load
)(prc
[2] == RC_INT
? REG_IRET
: REG_FRET
, vtop
);
896 ST_FUNC
void gfunc_epilog(void)
898 int v
, saved_ind
, d
, large_ofs_ind
;
900 #ifdef CONFIG_TCC_BCHECK
901 if (tcc_state
->do_bounds_check
)
905 loc
= (loc
- num_va_regs
* 8);
906 d
= v
= (-loc
+ 15) & -16;
908 if (v
>= (1 << 11)) {
910 o(0x37 | (5 << 7) | ((0x800 + (v
-16)) & 0xfffff000)); //lui t0, upper(v)
911 EI(0x13, 0, 5, 5, (v
-16) << 20 >> 20); // addi t0, t0, lo(v)
912 ER(0x33, 0, 2, 2, 5, 0); // add sp, sp, t0
914 EI(0x03, 3, 1, 2, d
- 8 - num_va_regs
* 8); // ld ra, v-8(sp)
915 EI(0x03, 3, 8, 2, d
- 16 - num_va_regs
* 8); // ld s0, v-16(sp)
916 EI(0x13, 0, 2, 2, d
); // addi sp, sp, v
917 EI(0x67, 0, 0, 1, 0); // jalr x0, 0(x1), aka ret
919 if (v
>= (1 << 11)) {
920 EI(0x13, 0, 8, 2, d
- num_va_regs
* 8); // addi s0, sp, d
921 o(0x37 | (5 << 7) | ((0x800 + (v
-16)) & 0xfffff000)); //lui t0, upper(v)
922 EI(0x13, 0, 5, 5, (v
-16) << 20 >> 20); // addi t0, t0, lo(v)
923 ER(0x33, 0, 2, 2, 5, 0x20); // sub sp, sp, t0
924 gjmp_addr(func_sub_sp_offset
+ 5*4);
928 ind
= func_sub_sp_offset
;
929 EI(0x13, 0, 2, 2, -d
); // addi sp, sp, -d
930 ES(0x23, 3, 2, 1, d
- 8 - num_va_regs
* 8); // sd ra, d-8(sp)
931 ES(0x23, 3, 2, 8, d
- 16 - num_va_regs
* 8); // sd s0, d-16(sp)
933 EI(0x13, 0, 8, 2, d
- num_va_regs
* 8); // addi s0, sp, d
935 gjmp_addr(large_ofs_ind
);
936 if ((ind
- func_sub_sp_offset
) != 5*4)
937 EI(0x13, 0, 0, 0, 0); // addi x0, x0, 0 == nop
941 ST_FUNC
void gen_va_start(void)
944 vset(&char_pointer_type
, VT_LOCAL
, func_va_list_ofs
);
947 ST_FUNC
void gen_fill_nops(int bytes
)
950 tcc_error("alignment of code section not multiple of 4");
952 EI(0x13, 0, 0, 0, 0); // addi x0, x0, 0 == nop
957 // Generate forward branch to label:
958 ST_FUNC
int gjmp(int t
)
966 // Generate branch to known address:
967 ST_FUNC
void gjmp_addr(int a
)
969 uint32_t r
= a
- ind
, imm
;
970 if ((r
+ (1 << 21)) & ~((1U << 22) - 2)) {
971 o(0x17 | (5 << 7) | (((r
+ 0x800) & 0xfffff000))); // lui RR, up(r)
972 r
= (int)r
<< 20 >> 20;
973 EI(0x67, 0, 0, 5, r
); // jalr x0, r(t0)
975 imm
= (((r
>> 12) & 0xff) << 12)
976 | (((r
>> 11) & 1) << 20)
977 | (((r
>> 1) & 0x3ff) << 21)
978 | (((r
>> 20) & 1) << 31);
979 o(0x6f | imm
); // jal x0, imm == j imm
983 ST_FUNC
int gjmp_cond(int op
, int t
)
986 int a
= vtop
->cmp_r
& 0xff;
987 int b
= (vtop
->cmp_r
>> 8) & 0xff;
989 case TOK_ULT
: op
= 6; break;
990 case TOK_UGE
: op
= 7; break;
991 case TOK_ULE
: op
= 7; tmp
= a
; a
= b
; b
= tmp
; break;
992 case TOK_UGT
: op
= 6; tmp
= a
; a
= b
; b
= tmp
; break;
993 case TOK_LT
: op
= 4; break;
994 case TOK_GE
: op
= 5; break;
995 case TOK_LE
: op
= 5; tmp
= a
; a
= b
; b
= tmp
; break;
996 case TOK_GT
: op
= 4; tmp
= a
; a
= b
; b
= tmp
; break;
997 case TOK_NE
: op
= 1; break;
998 case TOK_EQ
: op
= 0; break;
1000 o(0x63 | (op
^ 1) << 12 | a
<< 15 | b
<< 20 | 8 << 7); // bOP a,b,+4
1004 ST_FUNC
int gjmp_append(int n
, int t
)
1007 /* insert jump list n into t */
1009 uint32_t n1
= n
, n2
;
1010 while ((n2
= read32le(p
= cur_text_section
->data
+ n1
)))
1018 static void gen_opil(int op
, int ll
)
1023 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
1025 if (fc
== vtop
->c
.i
&& !(((unsigned)fc
+ (1 << 11)) >> 12)) {
1027 int m
= ll
? 31 : 63;
1030 a
= ireg(vtop
[0].r
);
1032 d
= get_reg(RC_INT
);
1037 if (fc
<= -(1 << 11))
1041 func3
= 0; // addi d, a, fc
1044 EI(0x13 | cll
, func3
, ireg(d
), a
, fc
);
1046 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
1047 vset_VT_CMP(TOK_NE
);
1048 vtop
->cmp_r
= ireg(d
) | 0 << 8;
1053 if (fc
>= (1 << 11) - 1)
1056 case TOK_LT
: func3
= 2; goto do_cop
; // slti d, a, fc
1058 if (fc
>= (1 << 11) - 1 || fc
== -1)
1061 case TOK_ULT
: func3
= 3; goto do_cop
; // sltiu d, a, fc
1062 case '^': func3
= 4; goto do_cop
; // xori d, a, fc
1063 case '|': func3
= 6; goto do_cop
; // ori d, a, fc
1064 case '&': func3
= 7; goto do_cop
; // andi d, a, fc
1065 case TOK_SHL
: func3
= 1; cll
= ll
; fc
&= m
; goto do_cop
; // slli d, a, fc
1066 case TOK_SHR
: func3
= 5; cll
= ll
; fc
&= m
; goto do_cop
; // srli d, a, fc
1067 case TOK_SAR
: func3
= 5; cll
= ll
; fc
= 1024 | (fc
& m
); goto do_cop
;
1069 case TOK_UGE
: /* -> TOK_ULT */
1070 case TOK_UGT
: /* -> TOK_ULE */
1071 case TOK_GE
: /* -> TOK_LT */
1072 case TOK_GT
: /* -> TOK_LE */
1073 gen_opil(op
- 1, !ll
);
1080 gen_opil('-', !ll
), a
= ireg(vtop
++->r
);
1083 vtop
->cmp_r
= a
| 0 << 8;
1088 gv2(RC_INT
, RC_INT
);
1089 a
= ireg(vtop
[-1].r
);
1090 b
= ireg(vtop
[0].r
);
1092 d
= get_reg(RC_INT
);
1098 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
1100 vtop
->cmp_r
= a
| b
<< 8;
1103 tcc_error("implement me: %s(%s)", __FUNCTION__
, get_tok_str(op
, NULL
));
1107 ER(0x33 | ll
, 0, d
, a
, b
, 0); // add d, a, b
1110 ER(0x33 | ll
, 0, d
, a
, b
, 0x20); // sub d, a, b
1113 ER(0x33 | ll
| ll
, 5, d
, a
, b
, 0x20); // sra d, a, b
1116 ER(0x33 | ll
| ll
, 5, d
, a
, b
, 0); // srl d, a, b
1119 ER(0x33 | ll
, 1, d
, a
, b
, 0); // sll d, a, b
1122 ER(0x33 | ll
, 0, d
, a
, b
, 1); // mul d, a, b
1125 ER(0x33 | ll
, 4, d
, a
, b
, 1); // div d, a, b
1128 ER(0x33, 7, d
, a
, b
, 0); // and d, a, b
1131 ER(0x33, 4, d
, a
, b
, 0); // xor d, a, b
1134 ER(0x33, 6, d
, a
, b
, 0); // or d, a, b
1137 ER(ll
? 0x3b: 0x33, 6, d
, a
, b
, 1); // rem d, a, b
1140 ER(0x33 | ll
, 7, d
, a
, b
, 1); // remu d, a, b
1144 ER(0x33 | ll
, 5, d
, a
, b
, 1); // divu d, a, b
1149 ST_FUNC
void gen_opi(int op
)
1154 ST_FUNC
void gen_opl(int op
)
1159 ST_FUNC
void gen_opf(int op
)
1161 int rs1
, rs2
, rd
, dbl
, invert
;
1162 if (vtop
[0].type
.t
== VT_LDOUBLE
) {
1163 CType type
= vtop
[0].type
;
1167 case '*': func
= TOK___multf3
; break;
1168 case '+': func
= TOK___addtf3
; break;
1169 case '-': func
= TOK___subtf3
; break;
1170 case '/': func
= TOK___divtf3
; break;
1171 case TOK_EQ
: func
= TOK___eqtf2
; cond
= 1; break;
1172 case TOK_NE
: func
= TOK___netf2
; cond
= 0; break;
1173 case TOK_LT
: func
= TOK___lttf2
; cond
= 10; break;
1174 case TOK_GE
: func
= TOK___getf2
; cond
= 11; break;
1175 case TOK_LE
: func
= TOK___letf2
; cond
= 12; break;
1176 case TOK_GT
: func
= TOK___gttf2
; cond
= 13; break;
1177 default: assert(0); break;
1179 vpush_helper_func(func
);
1184 vtop
->r2
= cond
< 0 ? TREG_R(1) : VT_CONST
;
1194 gv2(RC_FLOAT
, RC_FLOAT
);
1195 assert(vtop
->type
.t
== VT_DOUBLE
|| vtop
->type
.t
== VT_FLOAT
);
1196 dbl
= vtop
->type
.t
== VT_DOUBLE
;
1197 rs1
= freg(vtop
[-1].r
);
1198 rs2
= freg(vtop
->r
);
1207 rd
= get_reg(RC_FLOAT
);
1210 ER(0x53, 7, rd
, rs1
, rs2
, dbl
| (op
<< 2)); // fop.[sd] RD, RS1, RS2 (dyn rm)
1224 rd
= get_reg(RC_INT
);
1227 ER(0x53, op
, rd
, rs1
, rs2
, dbl
| 0x50); // fcmp.[sd] RD, RS1, RS2 (op == eq/lt/le)
1229 EI(0x13, 4, rd
, rd
, 1); // xori RD, 1
1243 rd
= rs1
, rs1
= rs2
, rs2
= rd
;
1247 rd
= rs1
, rs1
= rs2
, rs2
= rd
;
1252 ST_FUNC
void gen_cvt_sxtw(void)
1254 /* XXX on risc-v the registers are usually sign-extended already.
1255 Let's try to not do anything here. */
1258 ST_FUNC
void gen_cvt_itof(int t
)
1260 int rr
= ireg(gv(RC_INT
)), dr
;
1261 int u
= vtop
->type
.t
& VT_UNSIGNED
;
1262 int l
= (vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
;
1263 if (t
== VT_LDOUBLE
) {
1265 (u
? TOK___floatunditf
: TOK___floatditf
) :
1266 (u
? TOK___floatunsitf
: TOK___floatsitf
);
1267 vpush_helper_func(func
);
1273 vtop
->r2
= TREG_R(1);
1276 dr
= get_reg(RC_FLOAT
);
1280 EIu(0x53, 7, dr
, rr
, ((0x68 | (t
== VT_DOUBLE
? 1 : 0)) << 5) | (u
? 1 : 0) | (l
? 2 : 0)); // fcvt.[sd].[wl][u]
1284 ST_FUNC
void gen_cvt_ftoi(int t
)
1286 int ft
= vtop
->type
.t
& VT_BTYPE
;
1287 int l
= (t
& VT_BTYPE
) == VT_LLONG
;
1288 int u
= t
& VT_UNSIGNED
;
1289 if (ft
== VT_LDOUBLE
) {
1291 (u
? TOK___fixunstfdi
: TOK___fixtfdi
) :
1292 (u
? TOK___fixunstfsi
: TOK___fixtfsi
);
1293 vpush_helper_func(func
);
1300 int rr
= freg(gv(RC_FLOAT
)), dr
;
1302 dr
= get_reg(RC_INT
);
1306 EIu(0x53, 1, dr
, rr
, ((0x60 | (ft
== VT_DOUBLE
? 1 : 0)) << 5) | (u
? 1 : 0) | (l
? 2 : 0)); // fcvt.[wl][u].[sd] rtz
1310 ST_FUNC
void gen_cvt_ftof(int dt
)
1312 int st
= vtop
->type
.t
& VT_BTYPE
, rs
, rd
;
1316 if (dt
== VT_LDOUBLE
|| st
== VT_LDOUBLE
) {
1317 int func
= (dt
== VT_LDOUBLE
) ?
1318 (st
== VT_FLOAT
? TOK___extendsftf2
: TOK___extenddftf2
) :
1319 (dt
== VT_FLOAT
? TOK___trunctfsf2
: TOK___trunctfdf2
);
1320 /* We can't use gfunc_call, as func_old_type works like vararg
1321 functions, and on riscv unnamed float args are passed like
1322 integers. But we really need them in the float argument registers
1323 for extendsftf2/extenddftf2. So, do it explicitely. */
1325 if (dt
== VT_LDOUBLE
)
1329 assert(vtop
->r2
< 7);
1330 if (vtop
->r2
!= 1 + vtop
->r
) {
1331 EI(0x13, 0, ireg(vtop
->r
) + 1, ireg(vtop
->r2
), 0); // mv Ra+1, RR2
1332 vtop
->r2
= 1 + vtop
->r
;
1335 vpush_helper_func(func
);
1340 if (dt
== VT_LDOUBLE
)
1341 vtop
->r
= REG_IRET
, vtop
->r2
= REG_IRET
+1;
1345 assert (dt
== VT_FLOAT
|| dt
== VT_DOUBLE
);
1346 assert (st
== VT_FLOAT
|| st
== VT_DOUBLE
);
1348 rd
= get_reg(RC_FLOAT
);
1349 if (dt
== VT_DOUBLE
)
1350 EI(0x53, 0, freg(rd
), freg(rs
), 0x21 << 5); // fcvt.d.s RD, RS (no rm)
1352 EI(0x53, 7, freg(rd
), freg(rs
), (0x20 << 5) | 1); // fcvt.s.d RD, RS (dyn rm)
1357 /* increment tcov counter */
1358 ST_FUNC
void gen_increment_tcov (SValue
*sv
)
1362 label
.type
.t
= VT_VOID
| VT_STATIC
;
1365 vtop
->r
= r1
= get_reg(RC_INT
);
1366 r2
= get_reg(RC_INT
);
1369 greloca(cur_text_section
, sv
->sym
, ind
, R_RISCV_PCREL_HI20
, 0);
1370 put_extern_sym(&label
, cur_text_section
, ind
, 0);
1371 o(0x17 | (r1
<< 7)); // auipc RR, 0 %pcrel_hi(sym)
1372 greloca(cur_text_section
, &label
, ind
, R_RISCV_PCREL_LO12_I
, 0);
1373 EI(0x03, 3, r2
, r1
, 0); // ld r2, x[r1]
1374 EI(0x13, 0, r2
, r2
, 1); // addi r2, r2, #1
1375 greloca(cur_text_section
, sv
->sym
, ind
, R_RISCV_PCREL_HI20
, 0);
1376 label
.c
= 0; /* force new local ELF symbol */
1377 put_extern_sym(&label
, cur_text_section
, ind
, 0);
1378 o(0x17 | (r1
<< 7)); // auipc RR, 0 %pcrel_hi(sym)
1379 greloca(cur_text_section
, &label
, ind
, R_RISCV_PCREL_LO12_S
, 0);
1380 ES(0x23, 3, r1
, r2
, 0); // sd r2, [r1]
1384 ST_FUNC
void ggoto(void)
1390 ST_FUNC
void gen_vla_sp_save(int addr
)
1392 if (((unsigned)addr
+ (1 << 11)) >> 12) {
1393 o(0x37 | (5 << 7) | ((0x800 + addr
) & 0xfffff000)); //lui t0,upper(addr)
1394 ER(0x33, 0, 5, 5, 8, 0); // add t0, t0, s0
1395 ES(0x23, 3, 5, 2, (int)addr
<< 20 >> 20); // sd sp, fc(t0)
1398 ES(0x23, 3, 8, 2, addr
); // sd sp, fc(s0)
1401 ST_FUNC
void gen_vla_sp_restore(int addr
)
1403 if (((unsigned)addr
+ (1 << 11)) >> 12) {
1404 o(0x37 | (5 << 7) | ((0x800 + addr
) & 0xfffff000)); //lui t0,upper(addr)
1405 ER(0x33, 0, 5, 5, 8, 0); // add t0, t0, s0
1406 EI(0x03, 3, 2, 5, (int)addr
<< 20 >> 20); // ld sp, fc(t0)
1409 EI(0x03, 3, 2, 8, addr
); // ld sp, fc(s0)
1412 ST_FUNC
void gen_vla_alloc(CType
*type
, int align
)
1415 #if defined(CONFIG_TCC_BCHECK)
1416 if (tcc_state
->do_bounds_check
)
1419 rr
= ireg(gv(RC_INT
));
1420 #if defined(CONFIG_TCC_BCHECK)
1421 if (tcc_state
->do_bounds_check
)
1422 EI(0x13, 0, rr
, rr
, 15+1); // addi RR, RR, 15+1
1425 EI(0x13, 0, rr
, rr
, 15); // addi RR, RR, 15
1426 EI(0x13, 7, rr
, rr
, -16); // andi, RR, RR, -16
1427 ER(0x33, 0, 2, 2, rr
, 0x20); // sub sp, sp, rr
1429 #if defined(CONFIG_TCC_BCHECK)
1430 if (tcc_state
->do_bounds_check
) {
1432 vtop
->r
= TREG_R(0);
1433 o(0x00010513); /* mv a0,sp */
1435 vpush_helper_func(TOK___bound_new_region
);
1438 func_bound_add_epilog
= 1;