suppress code after continue as well
[tinycc.git] / arm64-gen.c
blobefe424616a8bef8c9e6b9ead88f187953aa40a19
1 /*
2 * A64 code generator for TCC
4 * Copyright (c) 2014-2015 Edmund Grimley Evans
6 * Copying and distribution of this file, with or without modification,
7 * are permitted in any medium without royalty provided the copyright
8 * notice and this notice are preserved. This file is offered as-is,
9 * without any warranty.
12 #ifdef TARGET_DEFS_ONLY
14 // Number of registers available to allocator:
15 #define NB_REGS 28 // x0-x18, x30, v0-v7
17 #define TREG_R(x) (x) // x = 0..18
18 #define TREG_R30 19
19 #define TREG_F(x) (x + 20) // x = 0..7
21 // Register classes sorted from more general to more precise:
22 #define RC_INT (1 << 0)
23 #define RC_FLOAT (1 << 1)
24 #define RC_R(x) (1 << (2 + (x))) // x = 0..18
25 #define RC_R30 (1 << 21)
26 #define RC_F(x) (1 << (22 + (x))) // x = 0..7
28 #define RC_IRET (RC_R(0)) // int return register class
29 #define RC_FRET (RC_F(0)) // float return register class
31 #define REG_IRET (TREG_R(0)) // int return register number
32 #define REG_FRET (TREG_F(0)) // float return register number
34 #define PTR_SIZE 8
36 #define LDOUBLE_SIZE 16
37 #define LDOUBLE_ALIGN 16
39 #define MAX_ALIGN 16
41 #define CHAR_IS_UNSIGNED
43 /******************************************************/
44 #else /* ! TARGET_DEFS_ONLY */
45 /******************************************************/
46 #include "tcc.h"
47 #include <assert.h>
49 ST_DATA const int reg_classes[NB_REGS] = {
50 RC_INT | RC_R(0),
51 RC_INT | RC_R(1),
52 RC_INT | RC_R(2),
53 RC_INT | RC_R(3),
54 RC_INT | RC_R(4),
55 RC_INT | RC_R(5),
56 RC_INT | RC_R(6),
57 RC_INT | RC_R(7),
58 RC_INT | RC_R(8),
59 RC_INT | RC_R(9),
60 RC_INT | RC_R(10),
61 RC_INT | RC_R(11),
62 RC_INT | RC_R(12),
63 RC_INT | RC_R(13),
64 RC_INT | RC_R(14),
65 RC_INT | RC_R(15),
66 RC_INT | RC_R(16),
67 RC_INT | RC_R(17),
68 RC_INT | RC_R(18),
69 RC_R30, // not in RC_INT as we make special use of x30
70 RC_FLOAT | RC_F(0),
71 RC_FLOAT | RC_F(1),
72 RC_FLOAT | RC_F(2),
73 RC_FLOAT | RC_F(3),
74 RC_FLOAT | RC_F(4),
75 RC_FLOAT | RC_F(5),
76 RC_FLOAT | RC_F(6),
77 RC_FLOAT | RC_F(7)
80 #define IS_FREG(x) ((x) >= TREG_F(0))
82 static uint32_t intr(int r)
84 assert(TREG_R(0) <= r && r <= TREG_R30);
85 return r < TREG_R30 ? r : 30;
88 static uint32_t fltr(int r)
90 assert(TREG_F(0) <= r && r <= TREG_F(7));
91 return r - TREG_F(0);
94 // Add an instruction to text section:
95 ST_FUNC void o(unsigned int c)
97 int ind1 = ind + 4;
98 if (nocode_wanted)
99 return;
100 if (ind1 > cur_text_section->data_allocated)
101 section_realloc(cur_text_section, ind1);
102 write32le(cur_text_section->data + ind, c);
103 ind = ind1;
106 static int arm64_encode_bimm64(uint64_t x)
108 int neg = x & 1;
109 int rep, pos, len;
111 if (neg)
112 x = ~x;
113 if (!x)
114 return -1;
116 if (x >> 2 == (x & (((uint64_t)1 << (64 - 2)) - 1)))
117 rep = 2, x &= ((uint64_t)1 << 2) - 1;
118 else if (x >> 4 == (x & (((uint64_t)1 << (64 - 4)) - 1)))
119 rep = 4, x &= ((uint64_t)1 << 4) - 1;
120 else if (x >> 8 == (x & (((uint64_t)1 << (64 - 8)) - 1)))
121 rep = 8, x &= ((uint64_t)1 << 8) - 1;
122 else if (x >> 16 == (x & (((uint64_t)1 << (64 - 16)) - 1)))
123 rep = 16, x &= ((uint64_t)1 << 16) - 1;
124 else if (x >> 32 == (x & (((uint64_t)1 << (64 - 32)) - 1)))
125 rep = 32, x &= ((uint64_t)1 << 32) - 1;
126 else
127 rep = 64;
129 pos = 0;
130 if (!(x & (((uint64_t)1 << 32) - 1))) x >>= 32, pos += 32;
131 if (!(x & (((uint64_t)1 << 16) - 1))) x >>= 16, pos += 16;
132 if (!(x & (((uint64_t)1 << 8) - 1))) x >>= 8, pos += 8;
133 if (!(x & (((uint64_t)1 << 4) - 1))) x >>= 4, pos += 4;
134 if (!(x & (((uint64_t)1 << 2) - 1))) x >>= 2, pos += 2;
135 if (!(x & (((uint64_t)1 << 1) - 1))) x >>= 1, pos += 1;
137 len = 0;
138 if (!(~x & (((uint64_t)1 << 32) - 1))) x >>= 32, len += 32;
139 if (!(~x & (((uint64_t)1 << 16) - 1))) x >>= 16, len += 16;
140 if (!(~x & (((uint64_t)1 << 8) - 1))) x >>= 8, len += 8;
141 if (!(~x & (((uint64_t)1 << 4) - 1))) x >>= 4, len += 4;
142 if (!(~x & (((uint64_t)1 << 2) - 1))) x >>= 2, len += 2;
143 if (!(~x & (((uint64_t)1 << 1) - 1))) x >>= 1, len += 1;
145 if (x)
146 return -1;
147 if (neg) {
148 pos = (pos + len) & (rep - 1);
149 len = rep - len;
151 return ((0x1000 & rep << 6) | (((rep - 1) ^ 31) << 1 & 63) |
152 ((rep - pos) & (rep - 1)) << 6 | (len - 1));
155 static uint32_t arm64_movi(int r, uint64_t x)
157 uint64_t m = 0xffff;
158 int e;
159 if (!(x & ~m))
160 return 0x52800000 | r | x << 5; // movz w(r),#(x)
161 if (!(x & ~(m << 16)))
162 return 0x52a00000 | r | x >> 11; // movz w(r),#(x >> 16),lsl #16
163 if (!(x & ~(m << 32)))
164 return 0xd2c00000 | r | x >> 27; // movz x(r),#(x >> 32),lsl #32
165 if (!(x & ~(m << 48)))
166 return 0xd2e00000 | r | x >> 43; // movz x(r),#(x >> 48),lsl #48
167 if ((x & ~m) == m << 16)
168 return (0x12800000 | r |
169 (~x << 5 & 0x1fffe0)); // movn w(r),#(~x)
170 if ((x & ~(m << 16)) == m)
171 return (0x12a00000 | r |
172 (~x >> 11 & 0x1fffe0)); // movn w(r),#(~x >> 16),lsl #16
173 if (!~(x | m))
174 return (0x92800000 | r |
175 (~x << 5 & 0x1fffe0)); // movn x(r),#(~x)
176 if (!~(x | m << 16))
177 return (0x92a00000 | r |
178 (~x >> 11 & 0x1fffe0)); // movn x(r),#(~x >> 16),lsl #16
179 if (!~(x | m << 32))
180 return (0x92c00000 | r |
181 (~x >> 27 & 0x1fffe0)); // movn x(r),#(~x >> 32),lsl #32
182 if (!~(x | m << 48))
183 return (0x92e00000 | r |
184 (~x >> 43 & 0x1fffe0)); // movn x(r),#(~x >> 32),lsl #32
185 if (!(x >> 32) && (e = arm64_encode_bimm64(x | x << 32)) >= 0)
186 return 0x320003e0 | r | (uint32_t)e << 10; // movi w(r),#(x)
187 if ((e = arm64_encode_bimm64(x)) >= 0)
188 return 0xb20003e0 | r | (uint32_t)e << 10; // movi x(r),#(x)
189 return 0;
192 static void arm64_movimm(int r, uint64_t x)
194 uint32_t i;
195 if ((i = arm64_movi(r, x)))
196 o(i); // a single MOV
197 else {
198 // MOVZ/MOVN and 1-3 MOVKs
199 int z = 0, m = 0;
200 uint32_t mov1 = 0xd2800000; // movz
201 uint64_t x1 = x;
202 for (i = 0; i < 64; i += 16) {
203 z += !(x >> i & 0xffff);
204 m += !(~x >> i & 0xffff);
206 if (m > z) {
207 x1 = ~x;
208 mov1 = 0x92800000; // movn
210 for (i = 0; i < 64; i += 16)
211 if (x1 >> i & 0xffff) {
212 o(mov1 | r | (x1 >> i & 0xffff) << 5 | i << 17);
213 // movz/movn x(r),#(*),lsl #(i)
214 break;
216 for (i += 16; i < 64; i += 16)
217 if (x1 >> i & 0xffff)
218 o(0xf2800000 | r | (x >> i & 0xffff) << 5 | i << 17);
219 // movk x(r),#(*),lsl #(i)
223 // Patch all branches in list pointed to by t to branch to a:
224 ST_FUNC void gsym_addr(int t_, int a_)
226 uint32_t t = t_;
227 uint32_t a = a_;
228 while (t) {
229 unsigned char *ptr = cur_text_section->data + t;
230 uint32_t next = read32le(ptr);
231 if (a - t + 0x8000000 >= 0x10000000)
232 tcc_error("branch out of range");
233 write32le(ptr, (a - t == 4 ? 0xd503201f : // nop
234 0x14000000 | ((a - t) >> 2 & 0x3ffffff))); // b
235 t = next;
239 // Patch all branches in list pointed to by t to branch to current location:
240 ST_FUNC void gsym(int t)
242 gsym_addr(t, ind);
245 static int arm64_type_size(int t)
247 switch (t & VT_BTYPE) {
248 case VT_INT: return 2;
249 case VT_BYTE: return 0;
250 case VT_SHORT: return 1;
251 case VT_PTR: return 3;
252 case VT_FUNC: return 3;
253 case VT_FLOAT: return 2;
254 case VT_DOUBLE: return 3;
255 case VT_LDOUBLE: return 4;
256 case VT_BOOL: return 0;
257 case VT_LLONG: return 3;
259 assert(0);
260 return 0;
263 static void arm64_spoff(int reg, uint64_t off)
265 uint32_t sub = off >> 63;
266 if (sub)
267 off = -off;
268 if (off < 4096)
269 o(0x910003e0 | sub << 30 | reg | off << 10);
270 // (add|sub) x(reg),sp,#(off)
271 else {
272 arm64_movimm(30, off); // use x30 for offset
273 o(0x8b3e63e0 | sub << 30 | reg); // (add|sub) x(reg),sp,x30
277 static void arm64_ldrx(int sg, int sz_, int dst, int bas, uint64_t off)
279 uint32_t sz = sz_;
280 if (sz >= 2)
281 sg = 0;
282 if (!(off & ~((uint32_t)0xfff << sz)))
283 o(0x39400000 | dst | bas << 5 | off << (10 - sz) |
284 (uint32_t)!!sg << 23 | sz << 30); // ldr(*) x(dst),[x(bas),#(off)]
285 else if (off < 256 || -off <= 256)
286 o(0x38400000 | dst | bas << 5 | (off & 511) << 12 |
287 (uint32_t)!!sg << 23 | sz << 30); // ldur(*) x(dst),[x(bas),#(off)]
288 else {
289 arm64_movimm(30, off); // use x30 for offset
290 o(0x38206800 | dst | bas << 5 | (uint32_t)30 << 16 |
291 (uint32_t)(!!sg + 1) << 22 | sz << 30); // ldr(*) x(dst),[x(bas),x30]
295 static void arm64_ldrv(int sz_, int dst, int bas, uint64_t off)
297 uint32_t sz = sz_;
298 if (!(off & ~((uint32_t)0xfff << sz)))
299 o(0x3d400000 | dst | bas << 5 | off << (10 - sz) |
300 (sz & 4) << 21 | (sz & 3) << 30); // ldr (s|d|q)(dst),[x(bas),#(off)]
301 else if (off < 256 || -off <= 256)
302 o(0x3c400000 | dst | bas << 5 | (off & 511) << 12 |
303 (sz & 4) << 21 | (sz & 3) << 30); // ldur (s|d|q)(dst),[x(bas),#(off)]
304 else {
305 arm64_movimm(30, off); // use x30 for offset
306 o(0x3c606800 | dst | bas << 5 | (uint32_t)30 << 16 |
307 sz << 30 | (sz & 4) << 21); // ldr (s|d|q)(dst),[x(bas),x30]
311 static void arm64_ldrs(int reg_, int size)
313 uint32_t reg = reg_;
314 // Use x30 for intermediate value in some cases.
315 switch (size) {
316 default: assert(0); break;
317 case 1:
318 arm64_ldrx(0, 0, reg, reg, 0);
319 break;
320 case 2:
321 arm64_ldrx(0, 1, reg, reg, 0);
322 break;
323 case 3:
324 arm64_ldrx(0, 1, 30, reg, 0);
325 arm64_ldrx(0, 0, reg, reg, 2);
326 o(0x2a0043c0 | reg | reg << 16); // orr x(reg),x30,x(reg),lsl #16
327 break;
328 case 4:
329 arm64_ldrx(0, 2, reg, reg, 0);
330 break;
331 case 5:
332 arm64_ldrx(0, 2, 30, reg, 0);
333 arm64_ldrx(0, 0, reg, reg, 4);
334 o(0xaa0083c0 | reg | reg << 16); // orr x(reg),x30,x(reg),lsl #32
335 break;
336 case 6:
337 arm64_ldrx(0, 2, 30, reg, 0);
338 arm64_ldrx(0, 1, reg, reg, 4);
339 o(0xaa0083c0 | reg | reg << 16); // orr x(reg),x30,x(reg),lsl #32
340 break;
341 case 7:
342 arm64_ldrx(0, 2, 30, reg, 0);
343 arm64_ldrx(0, 2, reg, reg, 3);
344 o(0x53087c00 | reg | reg << 5); // lsr w(reg), w(reg), #8
345 o(0xaa0083c0 | reg | reg << 16); // orr x(reg),x30,x(reg),lsl #32
346 break;
347 case 8:
348 arm64_ldrx(0, 3, reg, reg, 0);
349 break;
350 case 9:
351 arm64_ldrx(0, 0, reg + 1, reg, 8);
352 arm64_ldrx(0, 3, reg, reg, 0);
353 break;
354 case 10:
355 arm64_ldrx(0, 1, reg + 1, reg, 8);
356 arm64_ldrx(0, 3, reg, reg, 0);
357 break;
358 case 11:
359 arm64_ldrx(0, 2, reg + 1, reg, 7);
360 o(0x53087c00 | (reg+1) | (reg+1) << 5); // lsr w(reg+1), w(reg+1), #8
361 arm64_ldrx(0, 3, reg, reg, 0);
362 break;
363 case 12:
364 arm64_ldrx(0, 2, reg + 1, reg, 8);
365 arm64_ldrx(0, 3, reg, reg, 0);
366 break;
367 case 13:
368 arm64_ldrx(0, 3, reg + 1, reg, 5);
369 o(0xd358fc00 | (reg+1) | (reg+1) << 5); // lsr x(reg+1), x(reg+1), #24
370 arm64_ldrx(0, 3, reg, reg, 0);
371 break;
372 case 14:
373 arm64_ldrx(0, 3, reg + 1, reg, 6);
374 o(0xd350fc00 | (reg+1) | (reg+1) << 5); // lsr x(reg+1), x(reg+1), #16
375 arm64_ldrx(0, 3, reg, reg, 0);
376 break;
377 case 15:
378 arm64_ldrx(0, 3, reg + 1, reg, 7);
379 o(0xd348fc00 | (reg+1) | (reg+1) << 5); // lsr x(reg+1), x(reg+1), #8
380 arm64_ldrx(0, 3, reg, reg, 0);
381 break;
382 case 16:
383 o(0xa9400000 | reg | (reg+1) << 10 | reg << 5);
384 // ldp x(reg),x(reg+1),[x(reg)]
385 break;
389 static void arm64_strx(int sz_, int dst, int bas, uint64_t off)
391 uint32_t sz = sz_;
392 if (!(off & ~((uint32_t)0xfff << sz)))
393 o(0x39000000 | dst | bas << 5 | off << (10 - sz) | sz << 30);
394 // str(*) x(dst),[x(bas],#(off)]
395 else if (off < 256 || -off <= 256)
396 o(0x38000000 | dst | bas << 5 | (off & 511) << 12 | sz << 30);
397 // stur(*) x(dst),[x(bas],#(off)]
398 else {
399 arm64_movimm(30, off); // use x30 for offset
400 o(0x38206800 | dst | bas << 5 | (uint32_t)30 << 16 | sz << 30);
401 // str(*) x(dst),[x(bas),x30]
405 static void arm64_strv(int sz_, int dst, int bas, uint64_t off)
407 uint32_t sz = sz_;
408 if (!(off & ~((uint32_t)0xfff << sz)))
409 o(0x3d000000 | dst | bas << 5 | off << (10 - sz) |
410 (sz & 4) << 21 | (sz & 3) << 30); // str (s|d|q)(dst),[x(bas),#(off)]
411 else if (off < 256 || -off <= 256)
412 o(0x3c000000 | dst | bas << 5 | (off & 511) << 12 |
413 (sz & 4) << 21 | (sz & 3) << 30); // stur (s|d|q)(dst),[x(bas),#(off)]
414 else {
415 arm64_movimm(30, off); // use x30 for offset
416 o(0x3c206800 | dst | bas << 5 | (uint32_t)30 << 16 |
417 sz << 30 | (sz & 4) << 21); // str (s|d|q)(dst),[x(bas),x30]
421 static void arm64_sym(int r, Sym *sym, unsigned long addend)
423 // Currently TCC's linker does not generate COPY relocations for
424 // STT_OBJECTs when tcc is invoked with "-run". This typically
425 // results in "R_AARCH64_ADR_PREL_PG_HI21 relocation failed" when
426 // a program refers to stdin. A workaround is to avoid that
427 // relocation and use only relocations with unlimited range.
428 int avoid_adrp = 1;
430 if (avoid_adrp || sym->a.weak) {
431 // (GCC uses a R_AARCH64_ABS64 in this case.)
432 greloca(cur_text_section, sym, ind, R_AARCH64_MOVW_UABS_G0_NC, addend);
433 o(0xd2800000 | r); // mov x(rt),#0,lsl #0
434 greloca(cur_text_section, sym, ind, R_AARCH64_MOVW_UABS_G1_NC, addend);
435 o(0xf2a00000 | r); // movk x(rt),#0,lsl #16
436 greloca(cur_text_section, sym, ind, R_AARCH64_MOVW_UABS_G2_NC, addend);
437 o(0xf2c00000 | r); // movk x(rt),#0,lsl #32
438 greloca(cur_text_section, sym, ind, R_AARCH64_MOVW_UABS_G3, addend);
439 o(0xf2e00000 | r); // movk x(rt),#0,lsl #48
441 else {
442 greloca(cur_text_section, sym, ind, R_AARCH64_ADR_PREL_PG_HI21, addend);
443 o(0x90000000 | r);
444 greloca(cur_text_section, sym, ind, R_AARCH64_ADD_ABS_LO12_NC, addend);
445 o(0x91000000 | r | r << 5);
449 ST_FUNC void load(int r, SValue *sv)
451 int svtt = sv->type.t;
452 int svr = sv->r & ~VT_LVAL_TYPE;
453 int svrv = svr & VT_VALMASK;
454 uint64_t svcul = (uint32_t)sv->c.i;
455 svcul = svcul >> 31 & 1 ? svcul - ((uint64_t)1 << 32) : svcul;
457 if (svr == (VT_LOCAL | VT_LVAL)) {
458 if (IS_FREG(r))
459 arm64_ldrv(arm64_type_size(svtt), fltr(r), 29, svcul);
460 else
461 arm64_ldrx(!(svtt & VT_UNSIGNED), arm64_type_size(svtt),
462 intr(r), 29, svcul);
463 return;
466 if ((svr & ~VT_VALMASK) == VT_LVAL && svrv < VT_CONST) {
467 if (IS_FREG(r))
468 arm64_ldrv(arm64_type_size(svtt), fltr(r), intr(svrv), 0);
469 else
470 arm64_ldrx(!(svtt & VT_UNSIGNED), arm64_type_size(svtt),
471 intr(r), intr(svrv), 0);
472 return;
475 if (svr == (VT_CONST | VT_LVAL | VT_SYM)) {
476 arm64_sym(30, sv->sym, svcul); // use x30 for address
477 if (IS_FREG(r))
478 arm64_ldrv(arm64_type_size(svtt), fltr(r), 30, 0);
479 else
480 arm64_ldrx(!(svtt & VT_UNSIGNED), arm64_type_size(svtt),
481 intr(r), 30, 0);
482 return;
485 if (svr == (VT_CONST | VT_SYM)) {
486 arm64_sym(intr(r), sv->sym, svcul);
487 return;
490 if (svr == VT_CONST) {
491 if ((svtt & VT_BTYPE) != VT_VOID)
492 arm64_movimm(intr(r), arm64_type_size(svtt) == 3 ?
493 sv->c.i : (uint32_t)svcul);
494 return;
497 if (svr < VT_CONST) {
498 if (IS_FREG(r) && IS_FREG(svr))
499 if (svtt == VT_LDOUBLE)
500 o(0x4ea01c00 | fltr(r) | fltr(svr) << 5);
501 // mov v(r).16b,v(svr).16b
502 else
503 o(0x1e604000 | fltr(r) | fltr(svr) << 5); // fmov d(r),d(svr)
504 else if (!IS_FREG(r) && !IS_FREG(svr))
505 o(0xaa0003e0 | intr(r) | intr(svr) << 16); // mov x(r),x(svr)
506 else
507 assert(0);
508 return;
511 if (svr == VT_LOCAL) {
512 if (-svcul < 0x1000)
513 o(0xd10003a0 | intr(r) | -svcul << 10); // sub x(r),x29,#...
514 else {
515 arm64_movimm(30, -svcul); // use x30 for offset
516 o(0xcb0003a0 | intr(r) | (uint32_t)30 << 16); // sub x(r),x29,x30
518 return;
521 if (svr == VT_JMP || svr == VT_JMPI) {
522 int t = (svr == VT_JMPI);
523 arm64_movimm(intr(r), t);
524 o(0x14000002); // b .+8
525 gsym(svcul);
526 arm64_movimm(intr(r), t ^ 1);
527 return;
530 if (svr == (VT_LLOCAL | VT_LVAL)) {
531 arm64_ldrx(0, 3, 30, 29, svcul); // use x30 for offset
532 if (IS_FREG(r))
533 arm64_ldrv(arm64_type_size(svtt), fltr(r), 30, 0);
534 else
535 arm64_ldrx(!(svtt & VT_UNSIGNED), arm64_type_size(svtt),
536 intr(r), 30, 0);
537 return;
540 printf("load(%x, (%x, %x, %llx))\n", r, svtt, sv->r, (long long)svcul);
541 assert(0);
544 ST_FUNC void store(int r, SValue *sv)
546 int svtt = sv->type.t;
547 int svr = sv->r & ~VT_LVAL_TYPE;
548 int svrv = svr & VT_VALMASK;
549 uint64_t svcul = (uint32_t)sv->c.i;
550 svcul = svcul >> 31 & 1 ? svcul - ((uint64_t)1 << 32) : svcul;
552 if (svr == (VT_LOCAL | VT_LVAL)) {
553 if (IS_FREG(r))
554 arm64_strv(arm64_type_size(svtt), fltr(r), 29, svcul);
555 else
556 arm64_strx(arm64_type_size(svtt), intr(r), 29, svcul);
557 return;
560 if ((svr & ~VT_VALMASK) == VT_LVAL && svrv < VT_CONST) {
561 if (IS_FREG(r))
562 arm64_strv(arm64_type_size(svtt), fltr(r), intr(svrv), 0);
563 else
564 arm64_strx(arm64_type_size(svtt), intr(r), intr(svrv), 0);
565 return;
568 if (svr == (VT_CONST | VT_LVAL | VT_SYM)) {
569 arm64_sym(30, sv->sym, svcul); // use x30 for address
570 if (IS_FREG(r))
571 arm64_strv(arm64_type_size(svtt), fltr(r), 30, 0);
572 else
573 arm64_strx(arm64_type_size(svtt), intr(r), 30, 0);
574 return;
577 printf("store(%x, (%x, %x, %llx))\n", r, svtt, sv->r, (long long)svcul);
578 assert(0);
581 static void arm64_gen_bl_or_b(int b)
583 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST && (vtop->r & VT_SYM)) {
584 assert(!b);
585 greloca(cur_text_section, vtop->sym, ind, R_AARCH64_CALL26, 0);
586 o(0x94000000); // bl .
588 else
589 o(0xd61f0000 | (uint32_t)!b << 21 | intr(gv(RC_R30)) << 5); // br/blr
592 static int arm64_hfa_aux(CType *type, int *fsize, int num)
594 if (is_float(type->t)) {
595 int a, n = type_size(type, &a);
596 if (num >= 4 || (*fsize && *fsize != n))
597 return -1;
598 *fsize = n;
599 return num + 1;
601 else if ((type->t & VT_BTYPE) == VT_STRUCT) {
602 int is_struct = 0; // rather than union
603 Sym *field;
604 for (field = type->ref->next; field; field = field->next)
605 if (field->c) {
606 is_struct = 1;
607 break;
609 if (is_struct) {
610 int num0 = num;
611 for (field = type->ref->next; field; field = field->next) {
612 if (field->c != (num - num0) * *fsize)
613 return -1;
614 num = arm64_hfa_aux(&field->type, fsize, num);
615 if (num == -1)
616 return -1;
618 if (type->ref->c != (num - num0) * *fsize)
619 return -1;
620 return num;
622 else { // union
623 int num0 = num;
624 for (field = type->ref->next; field; field = field->next) {
625 int num1 = arm64_hfa_aux(&field->type, fsize, num0);
626 if (num1 == -1)
627 return -1;
628 num = num1 < num ? num : num1;
630 if (type->ref->c != (num - num0) * *fsize)
631 return -1;
632 return num;
635 else if (type->t & VT_ARRAY) {
636 int num1;
637 if (!type->ref->c)
638 return num;
639 num1 = arm64_hfa_aux(&type->ref->type, fsize, num);
640 if (num1 == -1 || (num1 != num && type->ref->c > 4))
641 return -1;
642 num1 = num + type->ref->c * (num1 - num);
643 if (num1 > 4)
644 return -1;
645 return num1;
647 return -1;
650 static int arm64_hfa(CType *type, int *fsize)
652 if ((type->t & VT_BTYPE) == VT_STRUCT || (type->t & VT_ARRAY)) {
653 int sz = 0;
654 int n = arm64_hfa_aux(type, &sz, 0);
655 if (0 < n && n <= 4) {
656 if (fsize)
657 *fsize = sz;
658 return n;
661 return 0;
664 static unsigned long arm64_pcs_aux(int n, CType **type, unsigned long *a)
666 int nx = 0; // next integer register
667 int nv = 0; // next vector register
668 unsigned long ns = 32; // next stack offset
669 int i;
671 for (i = 0; i < n; i++) {
672 int hfa = arm64_hfa(type[i], 0);
673 int size, align;
675 if ((type[i]->t & VT_ARRAY) ||
676 (type[i]->t & VT_BTYPE) == VT_FUNC)
677 size = align = 8;
678 else
679 size = type_size(type[i], &align);
681 if (hfa)
682 // B.2
684 else if (size > 16) {
685 // B.3: replace with pointer
686 if (nx < 8)
687 a[i] = nx++ << 1 | 1;
688 else {
689 ns = (ns + 7) & ~7;
690 a[i] = ns | 1;
691 ns += 8;
693 continue;
695 else if ((type[i]->t & VT_BTYPE) == VT_STRUCT)
696 // B.4
697 size = (size + 7) & ~7;
699 // C.1
700 if (is_float(type[i]->t) && nv < 8) {
701 a[i] = 16 + (nv++ << 1);
702 continue;
705 // C.2
706 if (hfa && nv + hfa <= 8) {
707 a[i] = 16 + (nv << 1);
708 nv += hfa;
709 continue;
712 // C.3
713 if (hfa) {
714 nv = 8;
715 size = (size + 7) & ~7;
718 // C.4
719 if (hfa || (type[i]->t & VT_BTYPE) == VT_LDOUBLE) {
720 ns = (ns + 7) & ~7;
721 ns = (ns + align - 1) & -align;
724 // C.5
725 if ((type[i]->t & VT_BTYPE) == VT_FLOAT)
726 size = 8;
728 // C.6
729 if (hfa || is_float(type[i]->t)) {
730 a[i] = ns;
731 ns += size;
732 continue;
735 // C.7
736 if ((type[i]->t & VT_BTYPE) != VT_STRUCT && size <= 8 && nx < 8) {
737 a[i] = nx++ << 1;
738 continue;
741 // C.8
742 if (align == 16)
743 nx = (nx + 1) & ~1;
745 // C.9
746 if ((type[i]->t & VT_BTYPE) != VT_STRUCT && size == 16 && nx < 7) {
747 a[i] = nx << 1;
748 nx += 2;
749 continue;
752 // C.10
753 if ((type[i]->t & VT_BTYPE) == VT_STRUCT && size <= (8 - nx) * 8) {
754 a[i] = nx << 1;
755 nx += (size + 7) >> 3;
756 continue;
759 // C.11
760 nx = 8;
762 // C.12
763 ns = (ns + 7) & ~7;
764 ns = (ns + align - 1) & -align;
766 // C.13
767 if ((type[i]->t & VT_BTYPE) == VT_STRUCT) {
768 a[i] = ns;
769 ns += size;
770 continue;
773 // C.14
774 if (size < 8)
775 size = 8;
777 // C.15
778 a[i] = ns;
779 ns += size;
782 return ns - 32;
785 static unsigned long arm64_pcs(int n, CType **type, unsigned long *a)
787 unsigned long stack;
789 // Return type:
790 if ((type[0]->t & VT_BTYPE) == VT_VOID)
791 a[0] = -1;
792 else {
793 arm64_pcs_aux(1, type, a);
794 assert(a[0] == 0 || a[0] == 1 || a[0] == 16);
797 // Argument types:
798 stack = arm64_pcs_aux(n, type + 1, a + 1);
800 if (0) {
801 int i;
802 for (i = 0; i <= n; i++) {
803 if (!i)
804 printf("arm64_pcs return: ");
805 else
806 printf("arm64_pcs arg %d: ", i);
807 if (a[i] == (unsigned long)-1)
808 printf("void\n");
809 else if (a[i] == 1 && !i)
810 printf("X8 pointer\n");
811 else if (a[i] < 16)
812 printf("X%lu%s\n", a[i] / 2, a[i] & 1 ? " pointer" : "");
813 else if (a[i] < 32)
814 printf("V%lu\n", a[i] / 2 - 8);
815 else
816 printf("stack %lu%s\n",
817 (a[i] - 32) & ~1, a[i] & 1 ? " pointer" : "");
821 return stack;
824 ST_FUNC void gfunc_call(int nb_args)
826 CType *return_type;
827 CType **t;
828 unsigned long *a, *a1;
829 unsigned long stack;
830 int i;
832 return_type = &vtop[-nb_args].type.ref->type;
833 if ((return_type->t & VT_BTYPE) == VT_STRUCT)
834 --nb_args;
836 t = tcc_malloc((nb_args + 1) * sizeof(*t));
837 a = tcc_malloc((nb_args + 1) * sizeof(*a));
838 a1 = tcc_malloc((nb_args + 1) * sizeof(*a1));
840 t[0] = return_type;
841 for (i = 0; i < nb_args; i++)
842 t[nb_args - i] = &vtop[-i].type;
844 stack = arm64_pcs(nb_args, t, a);
846 // Allocate space for structs replaced by pointer:
847 for (i = nb_args; i; i--)
848 if (a[i] & 1) {
849 SValue *arg = &vtop[i - nb_args];
850 int align, size = type_size(&arg->type, &align);
851 assert((arg->type.t & VT_BTYPE) == VT_STRUCT);
852 stack = (stack + align - 1) & -align;
853 a1[i] = stack;
854 stack += size;
857 stack = (stack + 15) >> 4 << 4;
859 assert(stack < 0x1000);
860 if (stack)
861 o(0xd10003ff | stack << 10); // sub sp,sp,#(n)
863 // First pass: set all values on stack
864 for (i = nb_args; i; i--) {
865 vpushv(vtop - nb_args + i);
867 if (a[i] & 1) {
868 // struct replaced by pointer
869 int r = get_reg(RC_INT);
870 arm64_spoff(intr(r), a1[i]);
871 vset(&vtop->type, r | VT_LVAL, 0);
872 vswap();
873 vstore();
874 if (a[i] >= 32) {
875 // pointer on stack
876 r = get_reg(RC_INT);
877 arm64_spoff(intr(r), a1[i]);
878 arm64_strx(3, intr(r), 31, (a[i] - 32) >> 1 << 1);
881 else if (a[i] >= 32) {
882 // value on stack
883 if ((vtop->type.t & VT_BTYPE) == VT_STRUCT) {
884 int r = get_reg(RC_INT);
885 arm64_spoff(intr(r), a[i] - 32);
886 vset(&vtop->type, r | VT_LVAL, 0);
887 vswap();
888 vstore();
890 else if (is_float(vtop->type.t)) {
891 gv(RC_FLOAT);
892 arm64_strv(arm64_type_size(vtop[0].type.t),
893 fltr(vtop[0].r), 31, a[i] - 32);
895 else {
896 gv(RC_INT);
897 arm64_strx(arm64_type_size(vtop[0].type.t),
898 intr(vtop[0].r), 31, a[i] - 32);
902 --vtop;
905 // Second pass: assign values to registers
906 for (i = nb_args; i; i--, vtop--) {
907 if (a[i] < 16 && !(a[i] & 1)) {
908 // value in general-purpose registers
909 if ((vtop->type.t & VT_BTYPE) == VT_STRUCT) {
910 int align, size = type_size(&vtop->type, &align);
911 vtop->type.t = VT_PTR;
912 gaddrof();
913 gv(RC_R(a[i] / 2));
914 arm64_ldrs(a[i] / 2, size);
916 else
917 gv(RC_R(a[i] / 2));
919 else if (a[i] < 16)
920 // struct replaced by pointer in register
921 arm64_spoff(a[i] / 2, a1[i]);
922 else if (a[i] < 32) {
923 // value in floating-point registers
924 if ((vtop->type.t & VT_BTYPE) == VT_STRUCT) {
925 uint32_t j, sz, n = arm64_hfa(&vtop->type, &sz);
926 vtop->type.t = VT_PTR;
927 gaddrof();
928 gv(RC_R30);
929 for (j = 0; j < n; j++)
930 o(0x3d4003c0 |
931 (sz & 16) << 19 | -(sz & 8) << 27 | (sz & 4) << 29 |
932 (a[i] / 2 - 8 + j) |
933 j << 10); // ldr ([sdq])(*),[x30,#(j * sz)]
935 else
936 gv(RC_F(a[i] / 2 - 8));
940 if ((return_type->t & VT_BTYPE) == VT_STRUCT) {
941 if (a[0] == 1) {
942 // indirect return: set x8 and discard the stack value
943 gv(RC_R(8));
944 --vtop;
946 else
947 // return in registers: keep the address for after the call
948 vswap();
951 save_regs(0);
952 arm64_gen_bl_or_b(0);
953 --vtop;
954 if (stack)
955 o(0x910003ff | stack << 10); // add sp,sp,#(n)
958 int rt = return_type->t;
959 int bt = rt & VT_BTYPE;
960 if (bt == VT_BYTE || bt == VT_SHORT)
961 // Promote small integers:
962 o(0x13001c00 | (bt == VT_SHORT) << 13 |
963 (uint32_t)!!(rt & VT_UNSIGNED) << 30); // [su]xt[bh] w0,w0
964 else if (bt == VT_STRUCT && !(a[0] & 1)) {
965 // A struct was returned in registers, so write it out:
966 gv(RC_R(8));
967 --vtop;
968 if (a[0] == 0) {
969 int align, size = type_size(return_type, &align);
970 assert(size <= 16);
971 if (size > 8)
972 o(0xa9000500); // stp x0,x1,[x8]
973 else if (size)
974 arm64_strx(size > 4 ? 3 : size > 2 ? 2 : size > 1, 0, 8, 0);
977 else if (a[0] == 16) {
978 uint32_t j, sz, n = arm64_hfa(return_type, &sz);
979 for (j = 0; j < n; j++)
980 o(0x3d000100 |
981 (sz & 16) << 19 | -(sz & 8) << 27 | (sz & 4) << 29 |
982 (a[i] / 2 - 8 + j) |
983 j << 10); // str ([sdq])(*),[x8,#(j * sz)]
988 tcc_free(a1);
989 tcc_free(a);
990 tcc_free(t);
993 static unsigned long arm64_func_va_list_stack;
994 static int arm64_func_va_list_gr_offs;
995 static int arm64_func_va_list_vr_offs;
996 static int arm64_func_sub_sp_offset;
998 ST_FUNC void gfunc_prolog(CType *func_type)
1000 int n = 0;
1001 int i = 0;
1002 Sym *sym;
1003 CType **t;
1004 unsigned long *a;
1006 // Why doesn't the caller (gen_function) set func_vt?
1007 func_vt = func_type->ref->type;
1008 func_vc = 144; // offset of where x8 is stored
1010 for (sym = func_type->ref; sym; sym = sym->next)
1011 ++n;
1012 t = tcc_malloc(n * sizeof(*t));
1013 a = tcc_malloc(n * sizeof(*a));
1015 for (sym = func_type->ref; sym; sym = sym->next)
1016 t[i++] = &sym->type;
1018 arm64_func_va_list_stack = arm64_pcs(n - 1, t, a);
1020 o(0xa9b27bfd); // stp x29,x30,[sp,#-224]!
1021 o(0xad0087e0); // stp q0,q1,[sp,#16]
1022 o(0xad018fe2); // stp q2,q3,[sp,#48]
1023 o(0xad0297e4); // stp q4,q5,[sp,#80]
1024 o(0xad039fe6); // stp q6,q7,[sp,#112]
1025 o(0xa90923e8); // stp x8,x8,[sp,#144]
1026 o(0xa90a07e0); // stp x0,x1,[sp,#160]
1027 o(0xa90b0fe2); // stp x2,x3,[sp,#176]
1028 o(0xa90c17e4); // stp x4,x5,[sp,#192]
1029 o(0xa90d1fe6); // stp x6,x7,[sp,#208]
1031 arm64_func_va_list_gr_offs = -64;
1032 arm64_func_va_list_vr_offs = -128;
1034 for (i = 1, sym = func_type->ref->next; sym; i++, sym = sym->next) {
1035 int off = (a[i] < 16 ? 160 + a[i] / 2 * 8 :
1036 a[i] < 32 ? 16 + (a[i] - 16) / 2 * 16 :
1037 224 + ((a[i] - 32) >> 1 << 1));
1038 sym_push(sym->v & ~SYM_FIELD, &sym->type,
1039 (a[i] & 1 ? VT_LLOCAL : VT_LOCAL) | lvalue_type(sym->type.t),
1040 off);
1042 if (a[i] < 16) {
1043 int align, size = type_size(&sym->type, &align);
1044 arm64_func_va_list_gr_offs = (a[i] / 2 - 7 +
1045 (!(a[i] & 1) && size > 8)) * 8;
1047 else if (a[i] < 32) {
1048 uint32_t hfa = arm64_hfa(&sym->type, 0);
1049 arm64_func_va_list_vr_offs = (a[i] / 2 - 16 +
1050 (hfa ? hfa : 1)) * 16;
1053 // HFAs of float and double need to be written differently:
1054 if (16 <= a[i] && a[i] < 32 && (sym->type.t & VT_BTYPE) == VT_STRUCT) {
1055 uint32_t j, sz, k = arm64_hfa(&sym->type, &sz);
1056 if (sz < 16)
1057 for (j = 0; j < k; j++) {
1058 o(0x3d0003e0 | -(sz & 8) << 27 | (sz & 4) << 29 |
1059 ((a[i] - 16) / 2 + j) | (off / sz + j) << 10);
1060 // str ([sdq])(*),[sp,#(j * sz)]
1065 tcc_free(a);
1066 tcc_free(t);
1068 o(0x910003fd); // mov x29,sp
1069 arm64_func_sub_sp_offset = ind;
1070 // In gfunc_epilog these will be replaced with code to decrement SP:
1071 o(0xd503201f); // nop
1072 o(0xd503201f); // nop
1073 loc = 0;
1076 ST_FUNC void gen_va_start(void)
1078 int r;
1079 --vtop; // we don't need the "arg"
1080 gaddrof();
1081 r = intr(gv(RC_INT));
1083 if (arm64_func_va_list_stack) {
1084 //xx could use add (immediate) here
1085 arm64_movimm(30, arm64_func_va_list_stack + 224);
1086 o(0x8b1e03be); // add x30,x29,x30
1088 else
1089 o(0x910383be); // add x30,x29,#224
1090 o(0xf900001e | r << 5); // str x30,[x(r)]
1092 if (arm64_func_va_list_gr_offs) {
1093 if (arm64_func_va_list_stack)
1094 o(0x910383be); // add x30,x29,#224
1095 o(0xf900041e | r << 5); // str x30,[x(r),#8]
1098 if (arm64_func_va_list_vr_offs) {
1099 o(0x910243be); // add x30,x29,#144
1100 o(0xf900081e | r << 5); // str x30,[x(r),#16]
1103 arm64_movimm(30, arm64_func_va_list_gr_offs);
1104 o(0xb900181e | r << 5); // str w30,[x(r),#24]
1106 arm64_movimm(30, arm64_func_va_list_vr_offs);
1107 o(0xb9001c1e | r << 5); // str w30,[x(r),#28]
1109 --vtop;
1112 ST_FUNC void gen_va_arg(CType *t)
1114 int align, size = type_size(t, &align);
1115 int fsize, hfa = arm64_hfa(t, &fsize);
1116 uint32_t r0, r1;
1118 if (is_float(t->t)) {
1119 hfa = 1;
1120 fsize = size;
1123 gaddrof();
1124 r0 = intr(gv(RC_INT));
1125 r1 = get_reg(RC_INT);
1126 vtop[0].r = r1 | lvalue_type(t->t);
1127 r1 = intr(r1);
1129 if (!hfa) {
1130 uint32_t n = size > 16 ? 8 : (size + 7) & -8;
1131 o(0xb940181e | r0 << 5); // ldr w30,[x(r0),#24] // __gr_offs
1132 if (align == 16) {
1133 assert(0); // this path untested but needed for __uint128_t
1134 o(0x11003fde); // add w30,w30,#15
1135 o(0x121c6fde); // and w30,w30,#-16
1137 o(0x310003c0 | r1 | n << 10); // adds w(r1),w30,#(n)
1138 o(0x540000ad); // b.le .+20
1139 o(0xf9400000 | r1 | r0 << 5); // ldr x(r1),[x(r0)] // __stack
1140 o(0x9100001e | r1 << 5 | n << 10); // add x30,x(r1),#(n)
1141 o(0xf900001e | r0 << 5); // str x30,[x(r0)] // __stack
1142 o(0x14000004); // b .+16
1143 o(0xb9001800 | r1 | r0 << 5); // str w(r1),[x(r0),#24] // __gr_offs
1144 o(0xf9400400 | r1 | r0 << 5); // ldr x(r1),[x(r0),#8] // __gr_top
1145 o(0x8b3ec000 | r1 | r1 << 5); // add x(r1),x(r1),w30,sxtw
1146 if (size > 16)
1147 o(0xf9400000 | r1 | r1 << 5); // ldr x(r1),[x(r1)]
1149 else {
1150 uint32_t rsz = hfa << 4;
1151 uint32_t ssz = (size + 7) & -(uint32_t)8;
1152 uint32_t b1, b2;
1153 o(0xb9401c1e | r0 << 5); // ldr w30,[x(r0),#28] // __vr_offs
1154 o(0x310003c0 | r1 | rsz << 10); // adds w(r1),w30,#(rsz)
1155 b1 = ind; o(0x5400000d); // b.le lab1
1156 o(0xf9400000 | r1 | r0 << 5); // ldr x(r1),[x(r0)] // __stack
1157 if (fsize == 16) {
1158 o(0x91003c00 | r1 | r1 << 5); // add x(r1),x(r1),#15
1159 o(0x927cec00 | r1 | r1 << 5); // and x(r1),x(r1),#-16
1161 o(0x9100001e | r1 << 5 | ssz << 10); // add x30,x(r1),#(ssz)
1162 o(0xf900001e | r0 << 5); // str x30,[x(r0)] // __stack
1163 b2 = ind; o(0x14000000); // b lab2
1164 // lab1:
1165 write32le(cur_text_section->data + b1, 0x5400000d | (ind - b1) << 3);
1166 o(0xb9001c00 | r1 | r0 << 5); // str w(r1),[x(r0),#28] // __vr_offs
1167 o(0xf9400800 | r1 | r0 << 5); // ldr x(r1),[x(r0),#16] // __vr_top
1168 if (hfa == 1 || fsize == 16)
1169 o(0x8b3ec000 | r1 | r1 << 5); // add x(r1),x(r1),w30,sxtw
1170 else {
1171 // We need to change the layout of this HFA.
1172 // Get some space on the stack using global variable "loc":
1173 loc = (loc - size) & -(uint32_t)align;
1174 o(0x8b3ec000 | 30 | r1 << 5); // add x30,x(r1),w30,sxtw
1175 arm64_movimm(r1, loc);
1176 o(0x8b0003a0 | r1 | r1 << 16); // add x(r1),x29,x(r1)
1177 o(0x4c402bdc | (uint32_t)fsize << 7 |
1178 (uint32_t)(hfa == 2) << 15 |
1179 (uint32_t)(hfa == 3) << 14); // ld1 {v28.(4s|2d),...},[x30]
1180 o(0x0d00801c | r1 << 5 | (fsize == 8) << 10 |
1181 (uint32_t)(hfa != 2) << 13 |
1182 (uint32_t)(hfa != 3) << 21); // st(hfa) {v28.(s|d),...}[0],[x(r1)]
1184 // lab2:
1185 write32le(cur_text_section->data + b2, 0x14000000 | (ind - b2) >> 2);
1189 ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret,
1190 int *align, int *regsize)
1192 return 0;
1195 ST_FUNC void gfunc_return(CType *func_type)
1197 CType *t = func_type;
1198 unsigned long a;
1200 arm64_pcs(0, &t, &a);
1201 switch (a) {
1202 case -1:
1203 break;
1204 case 0:
1205 if ((func_type->t & VT_BTYPE) == VT_STRUCT) {
1206 int align, size = type_size(func_type, &align);
1207 gaddrof();
1208 gv(RC_R(0));
1209 arm64_ldrs(0, size);
1211 else
1212 gv(RC_IRET);
1213 break;
1214 case 1: {
1215 CType type = *func_type;
1216 mk_pointer(&type);
1217 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
1218 indir();
1219 vswap();
1220 vstore();
1221 break;
1223 case 16:
1224 if ((func_type->t & VT_BTYPE) == VT_STRUCT) {
1225 uint32_t j, sz, n = arm64_hfa(&vtop->type, &sz);
1226 gaddrof();
1227 gv(RC_R(0));
1228 for (j = 0; j < n; j++)
1229 o(0x3d400000 |
1230 (sz & 16) << 19 | -(sz & 8) << 27 | (sz & 4) << 29 |
1231 j | j << 10); // ldr ([sdq])(*),[x0,#(j * sz)]
1233 else
1234 gv(RC_FRET);
1235 break;
1236 default:
1237 assert(0);
1239 vtop--;
1242 ST_FUNC void gfunc_epilog(void)
1244 if (loc) {
1245 // Insert instructions to subtract size of stack frame from SP.
1246 unsigned char *ptr = cur_text_section->data + arm64_func_sub_sp_offset;
1247 uint64_t diff = (-loc + 15) & ~15;
1248 if (!(diff >> 24)) {
1249 if (diff & 0xfff) // sub sp,sp,#(diff & 0xfff)
1250 write32le(ptr, 0xd10003ff | (diff & 0xfff) << 10);
1251 if (diff >> 12) // sub sp,sp,#(diff >> 12),lsl #12
1252 write32le(ptr + 4, 0xd14003ff | (diff >> 12) << 10);
1254 else {
1255 // In this case we may subtract more than necessary,
1256 // but always less than 17/16 of what we were aiming for.
1257 int i = 0;
1258 int j = 0;
1259 while (diff >> 20) {
1260 diff = (diff + 0xffff) >> 16;
1261 ++i;
1263 while (diff >> 16) {
1264 diff = (diff + 1) >> 1;
1265 ++j;
1267 write32le(ptr, 0xd2800010 | diff << 5 | i << 21);
1268 // mov x16,#(diff),lsl #(16 * i)
1269 write32le(ptr + 4, 0xcb3063ff | j << 10);
1270 // sub sp,sp,x16,lsl #(j)
1273 o(0x910003bf); // mov sp,x29
1274 o(0xa8ce7bfd); // ldp x29,x30,[sp],#224
1276 o(0xd65f03c0); // ret
1279 ST_FUNC void gen_fill_nops(int bytes)
1281 if ((bytes & 3))
1282 tcc_error("alignment of code section not multiple of 4");
1283 while (bytes > 0) {
1284 o(0xd503201f); // nop
1285 bytes -= 4;
1289 // Generate forward branch to label:
1290 ST_FUNC int gjmp(int t)
1292 int r = ind;
1293 if (nocode_wanted)
1294 return t;
1295 o(t);
1296 return r;
1299 // Generate branch to known address:
1300 ST_FUNC void gjmp_addr(int a)
1302 assert(a - ind + 0x8000000 < 0x10000000);
1303 o(0x14000000 | ((a - ind) >> 2 & 0x3ffffff));
1306 ST_FUNC int gtst(int inv, int t)
1308 int bt = vtop->type.t & VT_BTYPE;
1309 if (bt == VT_LDOUBLE) {
1310 uint32_t a, b, f = fltr(gv(RC_FLOAT));
1311 a = get_reg(RC_INT);
1312 vpushi(0);
1313 vtop[0].r = a;
1314 b = get_reg(RC_INT);
1315 a = intr(a);
1316 b = intr(b);
1317 o(0x4e083c00 | a | f << 5); // mov x(a),v(f).d[0]
1318 o(0x4e183c00 | b | f << 5); // mov x(b),v(f).d[1]
1319 o(0xaa000400 | a | a << 5 | b << 16); // orr x(a),x(a),x(b),lsl #1
1320 o(0xb4000040 | a | !!inv << 24); // cbz/cbnz x(a),.+8
1321 --vtop;
1323 else if (bt == VT_FLOAT || bt == VT_DOUBLE) {
1324 uint32_t a = fltr(gv(RC_FLOAT));
1325 o(0x1e202008 | a << 5 | (bt != VT_FLOAT) << 22); // fcmp
1326 o(0x54000040 | !!inv); // b.eq/b.ne .+8
1328 else {
1329 uint32_t ll = (bt == VT_PTR || bt == VT_LLONG);
1330 uint32_t a = intr(gv(RC_INT));
1331 o(0x34000040 | a | !!inv << 24 | ll << 31); // cbz/cbnz wA,.+8
1333 --vtop;
1334 return gjmp(t);
1337 static int arm64_iconst(uint64_t *val, SValue *sv)
1339 if ((sv->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
1340 return 0;
1341 if (val) {
1342 int t = sv->type.t;
1343 int bt = t & VT_BTYPE;
1344 *val = ((bt == VT_LLONG || bt == VT_PTR) ? sv->c.i :
1345 (uint32_t)sv->c.i |
1346 (t & VT_UNSIGNED ? 0 : -(sv->c.i & 0x80000000)));
1348 return 1;
1351 static int arm64_gen_opic(int op, uint32_t l, int rev, uint64_t val,
1352 uint32_t x, uint32_t a)
1354 if (op == '-' && !rev) {
1355 val = -val;
1356 op = '+';
1358 val = l ? val : (uint32_t)val;
1360 switch (op) {
1362 case '+': {
1363 uint32_t s = l ? val >> 63 : val >> 31;
1364 val = s ? -val : val;
1365 val = l ? val : (uint32_t)val;
1366 if (!(val & ~(uint64_t)0xfff))
1367 o(0x11000000 | l << 31 | s << 30 | x | a << 5 | val << 10);
1368 else if (!(val & ~(uint64_t)0xfff000))
1369 o(0x11400000 | l << 31 | s << 30 | x | a << 5 | val >> 12 << 10);
1370 else {
1371 arm64_movimm(30, val); // use x30
1372 o(0x0b1e0000 | l << 31 | s << 30 | x | a << 5);
1374 return 1;
1377 case '-':
1378 if (!val)
1379 o(0x4b0003e0 | l << 31 | x | a << 16); // neg
1380 else if (val == (l ? (uint64_t)-1 : (uint32_t)-1))
1381 o(0x2a2003e0 | l << 31 | x | a << 16); // mvn
1382 else {
1383 arm64_movimm(30, val); // use x30
1384 o(0x4b0003c0 | l << 31 | x | a << 16); // sub
1386 return 1;
1388 case '^':
1389 if (val == -1 || (val == 0xffffffff && !l)) {
1390 o(0x2a2003e0 | l << 31 | x | a << 16); // mvn
1391 return 1;
1393 // fall through
1394 case '&':
1395 case '|': {
1396 int e = arm64_encode_bimm64(l ? val : val | val << 32);
1397 if (e < 0)
1398 return 0;
1399 o((op == '&' ? 0x12000000 :
1400 op == '|' ? 0x32000000 : 0x52000000) |
1401 l << 31 | x | a << 5 | (uint32_t)e << 10);
1402 return 1;
1405 case TOK_SAR:
1406 case TOK_SHL:
1407 case TOK_SHR: {
1408 uint32_t n = 32 << l;
1409 val = val & (n - 1);
1410 if (rev)
1411 return 0;
1412 if (!val)
1413 assert(0);
1414 else if (op == TOK_SHL)
1415 o(0x53000000 | l << 31 | l << 22 | x | a << 5 |
1416 (n - val) << 16 | (n - 1 - val) << 10); // lsl
1417 else
1418 o(0x13000000 | (op == TOK_SHR) << 30 | l << 31 | l << 22 |
1419 x | a << 5 | val << 16 | (n - 1) << 10); // lsr/asr
1420 return 1;
1424 return 0;
1427 static void arm64_gen_opil(int op, uint32_t l)
1429 uint32_t x, a, b;
1431 // Special treatment for operations with a constant operand:
1433 uint64_t val;
1434 int rev = 1;
1436 if (arm64_iconst(0, &vtop[0])) {
1437 vswap();
1438 rev = 0;
1440 if (arm64_iconst(&val, &vtop[-1])) {
1441 gv(RC_INT);
1442 a = intr(vtop[0].r);
1443 --vtop;
1444 x = get_reg(RC_INT);
1445 ++vtop;
1446 if (arm64_gen_opic(op, l, rev, val, intr(x), a)) {
1447 vtop[0].r = x;
1448 vswap();
1449 --vtop;
1450 return;
1453 if (!rev)
1454 vswap();
1457 gv2(RC_INT, RC_INT);
1458 assert(vtop[-1].r < VT_CONST && vtop[0].r < VT_CONST);
1459 a = intr(vtop[-1].r);
1460 b = intr(vtop[0].r);
1461 vtop -= 2;
1462 x = get_reg(RC_INT);
1463 ++vtop;
1464 vtop[0].r = x;
1465 x = intr(x);
1467 switch (op) {
1468 case '%':
1469 // Use x30 for quotient:
1470 o(0x1ac00c00 | l << 31 | 30 | a << 5 | b << 16); // sdiv
1471 o(0x1b008000 | l << 31 | x | (uint32_t)30 << 5 |
1472 b << 16 | a << 10); // msub
1473 break;
1474 case '&':
1475 o(0x0a000000 | l << 31 | x | a << 5 | b << 16); // and
1476 break;
1477 case '*':
1478 o(0x1b007c00 | l << 31 | x | a << 5 | b << 16); // mul
1479 break;
1480 case '+':
1481 o(0x0b000000 | l << 31 | x | a << 5 | b << 16); // add
1482 break;
1483 case '-':
1484 o(0x4b000000 | l << 31 | x | a << 5 | b << 16); // sub
1485 break;
1486 case '/':
1487 o(0x1ac00c00 | l << 31 | x | a << 5 | b << 16); // sdiv
1488 break;
1489 case '^':
1490 o(0x4a000000 | l << 31 | x | a << 5 | b << 16); // eor
1491 break;
1492 case '|':
1493 o(0x2a000000 | l << 31 | x | a << 5 | b << 16); // orr
1494 break;
1495 case TOK_EQ:
1496 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1497 o(0x1a9f17e0 | x); // cset wA,eq
1498 break;
1499 case TOK_GE:
1500 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1501 o(0x1a9fb7e0 | x); // cset wA,ge
1502 break;
1503 case TOK_GT:
1504 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1505 o(0x1a9fd7e0 | x); // cset wA,gt
1506 break;
1507 case TOK_LE:
1508 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1509 o(0x1a9fc7e0 | x); // cset wA,le
1510 break;
1511 case TOK_LT:
1512 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1513 o(0x1a9fa7e0 | x); // cset wA,lt
1514 break;
1515 case TOK_NE:
1516 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1517 o(0x1a9f07e0 | x); // cset wA,ne
1518 break;
1519 case TOK_SAR:
1520 o(0x1ac02800 | l << 31 | x | a << 5 | b << 16); // asr
1521 break;
1522 case TOK_SHL:
1523 o(0x1ac02000 | l << 31 | x | a << 5 | b << 16); // lsl
1524 break;
1525 case TOK_SHR:
1526 o(0x1ac02400 | l << 31 | x | a << 5 | b << 16); // lsr
1527 break;
1528 case TOK_UDIV:
1529 case TOK_PDIV:
1530 o(0x1ac00800 | l << 31 | x | a << 5 | b << 16); // udiv
1531 break;
1532 case TOK_UGE:
1533 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1534 o(0x1a9f37e0 | x); // cset wA,cs
1535 break;
1536 case TOK_UGT:
1537 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1538 o(0x1a9f97e0 | x); // cset wA,hi
1539 break;
1540 case TOK_ULT:
1541 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1542 o(0x1a9f27e0 | x); // cset wA,cc
1543 break;
1544 case TOK_ULE:
1545 o(0x6b00001f | l << 31 | a << 5 | b << 16); // cmp
1546 o(0x1a9f87e0 | x); // cset wA,ls
1547 break;
1548 case TOK_UMOD:
1549 // Use x30 for quotient:
1550 o(0x1ac00800 | l << 31 | 30 | a << 5 | b << 16); // udiv
1551 o(0x1b008000 | l << 31 | x | (uint32_t)30 << 5 |
1552 b << 16 | a << 10); // msub
1553 break;
1554 default:
1555 assert(0);
1559 ST_FUNC void gen_opi(int op)
1561 arm64_gen_opil(op, 0);
1564 ST_FUNC void gen_opl(int op)
1566 arm64_gen_opil(op, 1);
1569 ST_FUNC void gen_opf(int op)
1571 uint32_t x, a, b, dbl;
1573 if (vtop[0].type.t == VT_LDOUBLE) {
1574 CType type = vtop[0].type;
1575 int func = 0;
1576 int cond = -1;
1577 switch (op) {
1578 case '*': func = TOK___multf3; break;
1579 case '+': func = TOK___addtf3; break;
1580 case '-': func = TOK___subtf3; break;
1581 case '/': func = TOK___divtf3; break;
1582 case TOK_EQ: func = TOK___eqtf2; cond = 1; break;
1583 case TOK_NE: func = TOK___netf2; cond = 0; break;
1584 case TOK_LT: func = TOK___lttf2; cond = 10; break;
1585 case TOK_GE: func = TOK___getf2; cond = 11; break;
1586 case TOK_LE: func = TOK___letf2; cond = 12; break;
1587 case TOK_GT: func = TOK___gttf2; cond = 13; break;
1588 default: assert(0); break;
1590 vpush_global_sym(&func_old_type, func);
1591 vrott(3);
1592 gfunc_call(2);
1593 vpushi(0);
1594 vtop->r = cond < 0 ? REG_FRET : REG_IRET;
1595 if (cond < 0)
1596 vtop->type = type;
1597 else {
1598 o(0x7100001f); // cmp w0,#0
1599 o(0x1a9f07e0 | (uint32_t)cond << 12); // cset w0,(cond)
1601 return;
1604 dbl = vtop[0].type.t != VT_FLOAT;
1605 gv2(RC_FLOAT, RC_FLOAT);
1606 assert(vtop[-1].r < VT_CONST && vtop[0].r < VT_CONST);
1607 a = fltr(vtop[-1].r);
1608 b = fltr(vtop[0].r);
1609 vtop -= 2;
1610 switch (op) {
1611 case TOK_EQ: case TOK_NE:
1612 case TOK_LT: case TOK_GE: case TOK_LE: case TOK_GT:
1613 x = get_reg(RC_INT);
1614 ++vtop;
1615 vtop[0].r = x;
1616 x = intr(x);
1617 break;
1618 default:
1619 x = get_reg(RC_FLOAT);
1620 ++vtop;
1621 vtop[0].r = x;
1622 x = fltr(x);
1623 break;
1626 switch (op) {
1627 case '*':
1628 o(0x1e200800 | dbl << 22 | x | a << 5 | b << 16); // fmul
1629 break;
1630 case '+':
1631 o(0x1e202800 | dbl << 22 | x | a << 5 | b << 16); // fadd
1632 break;
1633 case '-':
1634 o(0x1e203800 | dbl << 22 | x | a << 5 | b << 16); // fsub
1635 break;
1636 case '/':
1637 o(0x1e201800 | dbl << 22 | x | a << 5 | b << 16); // fdiv
1638 break;
1639 case TOK_EQ:
1640 o(0x1e202000 | dbl << 22 | a << 5 | b << 16); // fcmp
1641 o(0x1a9f17e0 | x); // cset w(x),eq
1642 break;
1643 case TOK_GE:
1644 o(0x1e202000 | dbl << 22 | a << 5 | b << 16); // fcmp
1645 o(0x1a9fb7e0 | x); // cset w(x),ge
1646 break;
1647 case TOK_GT:
1648 o(0x1e202000 | dbl << 22 | a << 5 | b << 16); // fcmp
1649 o(0x1a9fd7e0 | x); // cset w(x),gt
1650 break;
1651 case TOK_LE:
1652 o(0x1e202000 | dbl << 22 | a << 5 | b << 16); // fcmp
1653 o(0x1a9f87e0 | x); // cset w(x),ls
1654 break;
1655 case TOK_LT:
1656 o(0x1e202000 | dbl << 22 | a << 5 | b << 16); // fcmp
1657 o(0x1a9f57e0 | x); // cset w(x),mi
1658 break;
1659 case TOK_NE:
1660 o(0x1e202000 | dbl << 22 | a << 5 | b << 16); // fcmp
1661 o(0x1a9f07e0 | x); // cset w(x),ne
1662 break;
1663 default:
1664 assert(0);
1668 // Generate sign extension from 32 to 64 bits:
1669 ST_FUNC void gen_cvt_sxtw(void)
1671 uint32_t r = intr(gv(RC_INT));
1672 o(0x93407c00 | r | r << 5); // sxtw x(r),w(r)
1675 ST_FUNC void gen_cvt_itof(int t)
1677 if (t == VT_LDOUBLE) {
1678 int f = vtop->type.t;
1679 int func = (f & VT_BTYPE) == VT_LLONG ?
1680 (f & VT_UNSIGNED ? TOK___floatunditf : TOK___floatditf) :
1681 (f & VT_UNSIGNED ? TOK___floatunsitf : TOK___floatsitf);
1682 vpush_global_sym(&func_old_type, func);
1683 vrott(2);
1684 gfunc_call(1);
1685 vpushi(0);
1686 vtop->type.t = t;
1687 vtop->r = REG_FRET;
1688 return;
1690 else {
1691 int d, n = intr(gv(RC_INT));
1692 int s = !(vtop->type.t & VT_UNSIGNED);
1693 uint32_t l = ((vtop->type.t & VT_BTYPE) == VT_LLONG);
1694 --vtop;
1695 d = get_reg(RC_FLOAT);
1696 ++vtop;
1697 vtop[0].r = d;
1698 o(0x1e220000 | (uint32_t)!s << 16 |
1699 (uint32_t)(t != VT_FLOAT) << 22 | fltr(d) |
1700 l << 31 | n << 5); // [us]cvtf [sd](d),[wx](n)
1704 ST_FUNC void gen_cvt_ftoi(int t)
1706 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
1707 int func = (t & VT_BTYPE) == VT_LLONG ?
1708 (t & VT_UNSIGNED ? TOK___fixunstfdi : TOK___fixtfdi) :
1709 (t & VT_UNSIGNED ? TOK___fixunstfsi : TOK___fixtfsi);
1710 vpush_global_sym(&func_old_type, func);
1711 vrott(2);
1712 gfunc_call(1);
1713 vpushi(0);
1714 vtop->type.t = t;
1715 vtop->r = REG_IRET;
1716 return;
1718 else {
1719 int d, n = fltr(gv(RC_FLOAT));
1720 uint32_t l = ((vtop->type.t & VT_BTYPE) != VT_FLOAT);
1721 --vtop;
1722 d = get_reg(RC_INT);
1723 ++vtop;
1724 vtop[0].r = d;
1725 o(0x1e380000 |
1726 (uint32_t)!!(t & VT_UNSIGNED) << 16 |
1727 (uint32_t)((t & VT_BTYPE) == VT_LLONG) << 31 | intr(d) |
1728 l << 22 | n << 5); // fcvtz[su] [wx](d),[sd](n)
1732 ST_FUNC void gen_cvt_ftof(int t)
1734 int f = vtop[0].type.t;
1735 assert(t == VT_FLOAT || t == VT_DOUBLE || t == VT_LDOUBLE);
1736 assert(f == VT_FLOAT || f == VT_DOUBLE || f == VT_LDOUBLE);
1737 if (t == f)
1738 return;
1740 if (t == VT_LDOUBLE || f == VT_LDOUBLE) {
1741 int func = (t == VT_LDOUBLE) ?
1742 (f == VT_FLOAT ? TOK___extendsftf2 : TOK___extenddftf2) :
1743 (t == VT_FLOAT ? TOK___trunctfsf2 : TOK___trunctfdf2);
1744 vpush_global_sym(&func_old_type, func);
1745 vrott(2);
1746 gfunc_call(1);
1747 vpushi(0);
1748 vtop->type.t = t;
1749 vtop->r = REG_FRET;
1751 else {
1752 int x, a;
1753 gv(RC_FLOAT);
1754 assert(vtop[0].r < VT_CONST);
1755 a = fltr(vtop[0].r);
1756 --vtop;
1757 x = get_reg(RC_FLOAT);
1758 ++vtop;
1759 vtop[0].r = x;
1760 x = fltr(x);
1762 if (f == VT_FLOAT)
1763 o(0x1e22c000 | x | a << 5); // fcvt d(x),s(a)
1764 else
1765 o(0x1e624000 | x | a << 5); // fcvt s(x),d(a)
1769 ST_FUNC void ggoto(void)
1771 arm64_gen_bl_or_b(1);
1772 --vtop;
1775 ST_FUNC void gen_clear_cache(void)
1777 uint32_t beg, end, dsz, isz, p, lab1, b1;
1778 gv2(RC_INT, RC_INT);
1779 vpushi(0);
1780 vtop->r = get_reg(RC_INT);
1781 vpushi(0);
1782 vtop->r = get_reg(RC_INT);
1783 vpushi(0);
1784 vtop->r = get_reg(RC_INT);
1785 beg = intr(vtop[-4].r); // x0
1786 end = intr(vtop[-3].r); // x1
1787 dsz = intr(vtop[-2].r); // x2
1788 isz = intr(vtop[-1].r); // x3
1789 p = intr(vtop[0].r); // x4
1790 vtop -= 5;
1792 o(0xd53b0020 | isz); // mrs x(isz),ctr_el0
1793 o(0x52800080 | p); // mov w(p),#4
1794 o(0x53104c00 | dsz | isz << 5); // ubfx w(dsz),w(isz),#16,#4
1795 o(0x1ac02000 | dsz | p << 5 | dsz << 16); // lsl w(dsz),w(p),w(dsz)
1796 o(0x12000c00 | isz | isz << 5); // and w(isz),w(isz),#15
1797 o(0x1ac02000 | isz | p << 5 | isz << 16); // lsl w(isz),w(p),w(isz)
1798 o(0x51000400 | p | dsz << 5); // sub w(p),w(dsz),#1
1799 o(0x8a240004 | p | beg << 5 | p << 16); // bic x(p),x(beg),x(p)
1800 b1 = ind; o(0x14000000); // b
1801 lab1 = ind;
1802 o(0xd50b7b20 | p); // dc cvau,x(p)
1803 o(0x8b000000 | p | p << 5 | dsz << 16); // add x(p),x(p),x(dsz)
1804 write32le(cur_text_section->data + b1, 0x14000000 | (ind - b1) >> 2);
1805 o(0xeb00001f | p << 5 | end << 16); // cmp x(p),x(end)
1806 o(0x54ffffa3 | ((lab1 - ind) << 3 & 0xffffe0)); // b.cc lab1
1807 o(0xd5033b9f); // dsb ish
1808 o(0x51000400 | p | isz << 5); // sub w(p),w(isz),#1
1809 o(0x8a240004 | p | beg << 5 | p << 16); // bic x(p),x(beg),x(p)
1810 b1 = ind; o(0x14000000); // b
1811 lab1 = ind;
1812 o(0xd50b7520 | p); // ic ivau,x(p)
1813 o(0x8b000000 | p | p << 5 | isz << 16); // add x(p),x(p),x(isz)
1814 write32le(cur_text_section->data + b1, 0x14000000 | (ind - b1) >> 2);
1815 o(0xeb00001f | p << 5 | end << 16); // cmp x(p),x(end)
1816 o(0x54ffffa3 | ((lab1 - ind) << 3 & 0xffffe0)); // b.cc lab1
1817 o(0xd5033b9f); // dsb ish
1818 o(0xd5033fdf); // isb
1821 ST_FUNC void gen_vla_sp_save(int addr) {
1822 uint32_t r = intr(get_reg(RC_INT));
1823 o(0x910003e0 | r); // mov x(r),sp
1824 arm64_strx(3, r, 29, addr);
1827 ST_FUNC void gen_vla_sp_restore(int addr) {
1828 // Use x30 because this function can be called when there
1829 // is a live return value in x0 but there is nothing on
1830 // the value stack to prevent get_reg from returning x0.
1831 uint32_t r = 30;
1832 arm64_ldrx(0, 3, r, 29, addr);
1833 o(0x9100001f | r << 5); // mov sp,x(r)
1836 ST_FUNC void gen_vla_alloc(CType *type, int align) {
1837 uint32_t r = intr(gv(RC_INT));
1838 o(0x91003c00 | r | r << 5); // add x(r),x(r),#15
1839 o(0x927cec00 | r | r << 5); // bic x(r),x(r),#15
1840 o(0xcb2063ff | r << 16); // sub sp,sp,x(r)
1841 vpop();
1844 /* end of A64 code generator */
1845 /*************************************************************/
1846 #endif
1847 /*************************************************************/