]>
Commit | Line | Data |
---|---|---|
4a136e0a CF |
1 | /* |
2 | * Initial TCG Implementation for aarch64 | |
3 | * | |
4 | * Copyright (c) 2013 Huawei Technologies Duesseldorf GmbH | |
5 | * Written by Claudio Fontana | |
6 | * | |
7 | * This work is licensed under the terms of the GNU GPL, version 2 or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * See the COPYING file in the top-level directory for details. | |
11 | */ | |
12 | ||
9ecefc84 | 13 | #include "tcg-be-ldst.h" |
4a136e0a CF |
14 | #include "qemu/bitops.h" |
15 | ||
7763ffa0 RH |
16 | /* We're going to re-use TCGType in setting of the SF bit, which controls |
17 | the size of the operation performed. If we know the values match, it | |
18 | makes things much cleaner. */ | |
19 | QEMU_BUILD_BUG_ON(TCG_TYPE_I32 != 0 || TCG_TYPE_I64 != 1); | |
20 | ||
4a136e0a CF |
21 | #ifndef NDEBUG |
22 | static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = { | |
23 | "%x0", "%x1", "%x2", "%x3", "%x4", "%x5", "%x6", "%x7", | |
24 | "%x8", "%x9", "%x10", "%x11", "%x12", "%x13", "%x14", "%x15", | |
25 | "%x16", "%x17", "%x18", "%x19", "%x20", "%x21", "%x22", "%x23", | |
d82b78e4 | 26 | "%x24", "%x25", "%x26", "%x27", "%x28", "%fp", "%x30", "%sp", |
4a136e0a CF |
27 | }; |
28 | #endif /* NDEBUG */ | |
29 | ||
30 | static const int tcg_target_reg_alloc_order[] = { | |
31 | TCG_REG_X20, TCG_REG_X21, TCG_REG_X22, TCG_REG_X23, | |
32 | TCG_REG_X24, TCG_REG_X25, TCG_REG_X26, TCG_REG_X27, | |
6a91c7c9 | 33 | TCG_REG_X28, /* we will reserve this for GUEST_BASE if configured */ |
4a136e0a | 34 | |
d82b78e4 RH |
35 | TCG_REG_X8, TCG_REG_X9, TCG_REG_X10, TCG_REG_X11, |
36 | TCG_REG_X12, TCG_REG_X13, TCG_REG_X14, TCG_REG_X15, | |
4a136e0a CF |
37 | TCG_REG_X16, TCG_REG_X17, |
38 | ||
4a136e0a CF |
39 | TCG_REG_X0, TCG_REG_X1, TCG_REG_X2, TCG_REG_X3, |
40 | TCG_REG_X4, TCG_REG_X5, TCG_REG_X6, TCG_REG_X7, | |
41 | ||
d82b78e4 RH |
42 | /* X18 reserved by system */ |
43 | /* X19 reserved for AREG0 */ | |
44 | /* X29 reserved as fp */ | |
45 | /* X30 reserved as temporary */ | |
4a136e0a CF |
46 | }; |
47 | ||
48 | static const int tcg_target_call_iarg_regs[8] = { | |
49 | TCG_REG_X0, TCG_REG_X1, TCG_REG_X2, TCG_REG_X3, | |
50 | TCG_REG_X4, TCG_REG_X5, TCG_REG_X6, TCG_REG_X7 | |
51 | }; | |
52 | static const int tcg_target_call_oarg_regs[1] = { | |
53 | TCG_REG_X0 | |
54 | }; | |
55 | ||
d82b78e4 | 56 | #define TCG_REG_TMP TCG_REG_X30 |
4a136e0a | 57 | |
6a91c7c9 | 58 | #ifndef CONFIG_SOFTMMU |
d82b78e4 RH |
59 | # ifdef CONFIG_USE_GUEST_BASE |
60 | # define TCG_REG_GUEST_BASE TCG_REG_X28 | |
6a91c7c9 | 61 | # else |
d82b78e4 | 62 | # define TCG_REG_GUEST_BASE TCG_REG_XZR |
6a91c7c9 JK |
63 | # endif |
64 | #endif | |
65 | ||
017a86f7 | 66 | static inline void reloc_pc26(void *code_ptr, intptr_t target) |
4a136e0a | 67 | { |
017a86f7 | 68 | intptr_t offset = (target - (intptr_t)code_ptr) / 4; |
4a136e0a CF |
69 | /* read instruction, mask away previous PC_REL26 parameter contents, |
70 | set the proper offset, then write back the instruction. */ | |
017a86f7 | 71 | uint32_t insn = *(uint32_t *)code_ptr; |
4a136e0a CF |
72 | insn = deposit32(insn, 0, 26, offset); |
73 | *(uint32_t *)code_ptr = insn; | |
74 | } | |
75 | ||
017a86f7 | 76 | static inline void reloc_pc19(void *code_ptr, intptr_t target) |
4a136e0a | 77 | { |
017a86f7 | 78 | intptr_t offset = (target - (intptr_t)code_ptr) / 4; |
4a136e0a CF |
79 | /* read instruction, mask away previous PC_REL19 parameter contents, |
80 | set the proper offset, then write back the instruction. */ | |
017a86f7 | 81 | uint32_t insn = *(uint32_t *)code_ptr; |
4a136e0a CF |
82 | insn = deposit32(insn, 5, 19, offset); |
83 | *(uint32_t *)code_ptr = insn; | |
84 | } | |
85 | ||
86 | static inline void patch_reloc(uint8_t *code_ptr, int type, | |
2ba7fae2 | 87 | intptr_t value, intptr_t addend) |
4a136e0a CF |
88 | { |
89 | value += addend; | |
90 | ||
91 | switch (type) { | |
92 | case R_AARCH64_JUMP26: | |
93 | case R_AARCH64_CALL26: | |
94 | reloc_pc26(code_ptr, value); | |
95 | break; | |
96 | case R_AARCH64_CONDBR19: | |
97 | reloc_pc19(code_ptr, value); | |
98 | break; | |
99 | ||
100 | default: | |
101 | tcg_abort(); | |
102 | } | |
103 | } | |
104 | ||
90f1cd91 RH |
105 | #define TCG_CT_CONST_IS32 0x100 |
106 | #define TCG_CT_CONST_AIMM 0x200 | |
e029f293 | 107 | #define TCG_CT_CONST_LIMM 0x400 |
04ce397b | 108 | #define TCG_CT_CONST_ZERO 0x800 |
c6e929e7 | 109 | #define TCG_CT_CONST_MONE 0x1000 |
90f1cd91 | 110 | |
4a136e0a CF |
111 | /* parse target specific constraints */ |
112 | static int target_parse_constraint(TCGArgConstraint *ct, | |
113 | const char **pct_str) | |
114 | { | |
115 | const char *ct_str = *pct_str; | |
116 | ||
117 | switch (ct_str[0]) { | |
118 | case 'r': | |
119 | ct->ct |= TCG_CT_REG; | |
120 | tcg_regset_set32(ct->u.regs, 0, (1ULL << TCG_TARGET_NB_REGS) - 1); | |
121 | break; | |
122 | case 'l': /* qemu_ld / qemu_st address, data_reg */ | |
123 | ct->ct |= TCG_CT_REG; | |
124 | tcg_regset_set32(ct->u.regs, 0, (1ULL << TCG_TARGET_NB_REGS) - 1); | |
125 | #ifdef CONFIG_SOFTMMU | |
126 | /* x0 and x1 will be overwritten when reading the tlb entry, | |
127 | and x2, and x3 for helper args, better to avoid using them. */ | |
128 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_X0); | |
129 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_X1); | |
130 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_X2); | |
131 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_X3); | |
132 | #endif | |
133 | break; | |
90f1cd91 RH |
134 | case 'w': /* The operand should be considered 32-bit. */ |
135 | ct->ct |= TCG_CT_CONST_IS32; | |
136 | break; | |
137 | case 'A': /* Valid for arithmetic immediate (positive or negative). */ | |
138 | ct->ct |= TCG_CT_CONST_AIMM; | |
139 | break; | |
e029f293 RH |
140 | case 'L': /* Valid for logical immediate. */ |
141 | ct->ct |= TCG_CT_CONST_LIMM; | |
142 | break; | |
c6e929e7 RH |
143 | case 'M': /* minus one */ |
144 | ct->ct |= TCG_CT_CONST_MONE; | |
145 | break; | |
04ce397b RH |
146 | case 'Z': /* zero */ |
147 | ct->ct |= TCG_CT_CONST_ZERO; | |
148 | break; | |
4a136e0a CF |
149 | default: |
150 | return -1; | |
151 | } | |
152 | ||
153 | ct_str++; | |
154 | *pct_str = ct_str; | |
155 | return 0; | |
156 | } | |
157 | ||
90f1cd91 RH |
158 | static inline bool is_aimm(uint64_t val) |
159 | { | |
160 | return (val & ~0xfff) == 0 || (val & ~0xfff000) == 0; | |
161 | } | |
162 | ||
e029f293 RH |
163 | static inline bool is_limm(uint64_t val) |
164 | { | |
165 | /* Taking a simplified view of the logical immediates for now, ignoring | |
166 | the replication that can happen across the field. Match bit patterns | |
167 | of the forms | |
168 | 0....01....1 | |
169 | 0..01..10..0 | |
170 | and their inverses. */ | |
171 | ||
172 | /* Make things easier below, by testing the form with msb clear. */ | |
173 | if ((int64_t)val < 0) { | |
174 | val = ~val; | |
175 | } | |
176 | if (val == 0) { | |
177 | return false; | |
178 | } | |
179 | val += val & -val; | |
180 | return (val & (val - 1)) == 0; | |
181 | } | |
182 | ||
90f1cd91 RH |
183 | static int tcg_target_const_match(tcg_target_long val, |
184 | const TCGArgConstraint *arg_ct) | |
4a136e0a CF |
185 | { |
186 | int ct = arg_ct->ct; | |
187 | ||
188 | if (ct & TCG_CT_CONST) { | |
189 | return 1; | |
190 | } | |
90f1cd91 RH |
191 | if (ct & TCG_CT_CONST_IS32) { |
192 | val = (int32_t)val; | |
193 | } | |
194 | if ((ct & TCG_CT_CONST_AIMM) && (is_aimm(val) || is_aimm(-val))) { | |
195 | return 1; | |
196 | } | |
e029f293 RH |
197 | if ((ct & TCG_CT_CONST_LIMM) && is_limm(val)) { |
198 | return 1; | |
199 | } | |
04ce397b RH |
200 | if ((ct & TCG_CT_CONST_ZERO) && val == 0) { |
201 | return 1; | |
202 | } | |
c6e929e7 RH |
203 | if ((ct & TCG_CT_CONST_MONE) && val == -1) { |
204 | return 1; | |
205 | } | |
4a136e0a CF |
206 | |
207 | return 0; | |
208 | } | |
209 | ||
210 | enum aarch64_cond_code { | |
211 | COND_EQ = 0x0, | |
212 | COND_NE = 0x1, | |
213 | COND_CS = 0x2, /* Unsigned greater or equal */ | |
214 | COND_HS = COND_CS, /* ALIAS greater or equal */ | |
215 | COND_CC = 0x3, /* Unsigned less than */ | |
216 | COND_LO = COND_CC, /* ALIAS Lower */ | |
217 | COND_MI = 0x4, /* Negative */ | |
218 | COND_PL = 0x5, /* Zero or greater */ | |
219 | COND_VS = 0x6, /* Overflow */ | |
220 | COND_VC = 0x7, /* No overflow */ | |
221 | COND_HI = 0x8, /* Unsigned greater than */ | |
222 | COND_LS = 0x9, /* Unsigned less or equal */ | |
223 | COND_GE = 0xa, | |
224 | COND_LT = 0xb, | |
225 | COND_GT = 0xc, | |
226 | COND_LE = 0xd, | |
227 | COND_AL = 0xe, | |
228 | COND_NV = 0xf, /* behaves like COND_AL here */ | |
229 | }; | |
230 | ||
231 | static const enum aarch64_cond_code tcg_cond_to_aarch64[] = { | |
232 | [TCG_COND_EQ] = COND_EQ, | |
233 | [TCG_COND_NE] = COND_NE, | |
234 | [TCG_COND_LT] = COND_LT, | |
235 | [TCG_COND_GE] = COND_GE, | |
236 | [TCG_COND_LE] = COND_LE, | |
237 | [TCG_COND_GT] = COND_GT, | |
238 | /* unsigned */ | |
239 | [TCG_COND_LTU] = COND_LO, | |
240 | [TCG_COND_GTU] = COND_HI, | |
241 | [TCG_COND_GEU] = COND_HS, | |
242 | [TCG_COND_LEU] = COND_LS, | |
243 | }; | |
244 | ||
245 | /* opcodes for LDR / STR instructions with base + simm9 addressing */ | |
246 | enum aarch64_ldst_op_data { /* size of the data moved */ | |
247 | LDST_8 = 0x38, | |
248 | LDST_16 = 0x78, | |
249 | LDST_32 = 0xb8, | |
250 | LDST_64 = 0xf8, | |
251 | }; | |
252 | enum aarch64_ldst_op_type { /* type of operation */ | |
253 | LDST_ST = 0x0, /* store */ | |
254 | LDST_LD = 0x4, /* load */ | |
255 | LDST_LD_S_X = 0x8, /* load and sign-extend into Xt */ | |
256 | LDST_LD_S_W = 0xc, /* load and sign-extend into Wt */ | |
257 | }; | |
258 | ||
50573c66 RH |
259 | /* We encode the format of the insn into the beginning of the name, so that |
260 | we can have the preprocessor help "typecheck" the insn vs the output | |
261 | function. Arm didn't provide us with nice names for the formats, so we | |
262 | use the section number of the architecture reference manual in which the | |
263 | instruction group is described. */ | |
264 | typedef enum { | |
3d9e69a2 RH |
265 | /* Compare and branch (immediate). */ |
266 | I3201_CBZ = 0x34000000, | |
267 | I3201_CBNZ = 0x35000000, | |
268 | ||
81d8a5ee RH |
269 | /* Conditional branch (immediate). */ |
270 | I3202_B_C = 0x54000000, | |
271 | ||
272 | /* Unconditional branch (immediate). */ | |
273 | I3206_B = 0x14000000, | |
274 | I3206_BL = 0x94000000, | |
275 | ||
276 | /* Unconditional branch (register). */ | |
277 | I3207_BR = 0xd61f0000, | |
278 | I3207_BLR = 0xd63f0000, | |
279 | I3207_RET = 0xd65f0000, | |
280 | ||
95f72aa9 RH |
281 | /* Load/store register pair instructions. */ |
282 | I3314_LDP = 0x28400000, | |
283 | I3314_STP = 0x28000000, | |
284 | ||
096c46c0 RH |
285 | /* Add/subtract immediate instructions. */ |
286 | I3401_ADDI = 0x11000000, | |
287 | I3401_ADDSI = 0x31000000, | |
288 | I3401_SUBI = 0x51000000, | |
289 | I3401_SUBSI = 0x71000000, | |
290 | ||
b3c56df7 RH |
291 | /* Bitfield instructions. */ |
292 | I3402_BFM = 0x33000000, | |
293 | I3402_SBFM = 0x13000000, | |
294 | I3402_UBFM = 0x53000000, | |
295 | ||
296 | /* Extract instruction. */ | |
297 | I3403_EXTR = 0x13800000, | |
298 | ||
e029f293 RH |
299 | /* Logical immediate instructions. */ |
300 | I3404_ANDI = 0x12000000, | |
301 | I3404_ORRI = 0x32000000, | |
302 | I3404_EORI = 0x52000000, | |
303 | ||
582ab779 RH |
304 | /* Move wide immediate instructions. */ |
305 | I3405_MOVN = 0x12800000, | |
306 | I3405_MOVZ = 0x52800000, | |
307 | I3405_MOVK = 0x72800000, | |
308 | ||
c6e310d9 RH |
309 | /* PC relative addressing instructions. */ |
310 | I3406_ADR = 0x10000000, | |
311 | I3406_ADRP = 0x90000000, | |
312 | ||
50573c66 RH |
313 | /* Add/subtract shifted register instructions (without a shift). */ |
314 | I3502_ADD = 0x0b000000, | |
315 | I3502_ADDS = 0x2b000000, | |
316 | I3502_SUB = 0x4b000000, | |
317 | I3502_SUBS = 0x6b000000, | |
318 | ||
319 | /* Add/subtract shifted register instructions (with a shift). */ | |
320 | I3502S_ADD_LSL = I3502_ADD, | |
321 | ||
c6e929e7 RH |
322 | /* Add/subtract with carry instructions. */ |
323 | I3503_ADC = 0x1a000000, | |
324 | I3503_SBC = 0x5a000000, | |
325 | ||
04ce397b RH |
326 | /* Conditional select instructions. */ |
327 | I3506_CSEL = 0x1a800000, | |
328 | I3506_CSINC = 0x1a800400, | |
329 | ||
df9351e3 RH |
330 | /* Data-processing (2 source) instructions. */ |
331 | I3508_LSLV = 0x1ac02000, | |
332 | I3508_LSRV = 0x1ac02400, | |
333 | I3508_ASRV = 0x1ac02800, | |
334 | I3508_RORV = 0x1ac02c00, | |
1fcc9ddf RH |
335 | I3508_SMULH = 0x9b407c00, |
336 | I3508_UMULH = 0x9bc07c00, | |
8678b71c RH |
337 | I3508_UDIV = 0x1ac00800, |
338 | I3508_SDIV = 0x1ac00c00, | |
339 | ||
340 | /* Data-processing (3 source) instructions. */ | |
341 | I3509_MADD = 0x1b000000, | |
342 | I3509_MSUB = 0x1b008000, | |
df9351e3 | 343 | |
50573c66 RH |
344 | /* Logical shifted register instructions (without a shift). */ |
345 | I3510_AND = 0x0a000000, | |
14b155dd | 346 | I3510_BIC = 0x0a200000, |
50573c66 | 347 | I3510_ORR = 0x2a000000, |
14b155dd | 348 | I3510_ORN = 0x2a200000, |
50573c66 | 349 | I3510_EOR = 0x4a000000, |
14b155dd | 350 | I3510_EON = 0x4a200000, |
50573c66 RH |
351 | I3510_ANDS = 0x6a000000, |
352 | } AArch64Insn; | |
4a136e0a | 353 | |
4a136e0a CF |
354 | static inline enum aarch64_ldst_op_data |
355 | aarch64_ldst_get_data(TCGOpcode tcg_op) | |
356 | { | |
357 | switch (tcg_op) { | |
358 | case INDEX_op_ld8u_i32: | |
359 | case INDEX_op_ld8s_i32: | |
360 | case INDEX_op_ld8u_i64: | |
361 | case INDEX_op_ld8s_i64: | |
362 | case INDEX_op_st8_i32: | |
363 | case INDEX_op_st8_i64: | |
364 | return LDST_8; | |
365 | ||
366 | case INDEX_op_ld16u_i32: | |
367 | case INDEX_op_ld16s_i32: | |
368 | case INDEX_op_ld16u_i64: | |
369 | case INDEX_op_ld16s_i64: | |
370 | case INDEX_op_st16_i32: | |
371 | case INDEX_op_st16_i64: | |
372 | return LDST_16; | |
373 | ||
374 | case INDEX_op_ld_i32: | |
375 | case INDEX_op_st_i32: | |
376 | case INDEX_op_ld32u_i64: | |
377 | case INDEX_op_ld32s_i64: | |
378 | case INDEX_op_st32_i64: | |
379 | return LDST_32; | |
380 | ||
381 | case INDEX_op_ld_i64: | |
382 | case INDEX_op_st_i64: | |
383 | return LDST_64; | |
384 | ||
385 | default: | |
386 | tcg_abort(); | |
387 | } | |
388 | } | |
389 | ||
390 | static inline enum aarch64_ldst_op_type | |
391 | aarch64_ldst_get_type(TCGOpcode tcg_op) | |
392 | { | |
393 | switch (tcg_op) { | |
394 | case INDEX_op_st8_i32: | |
395 | case INDEX_op_st16_i32: | |
396 | case INDEX_op_st8_i64: | |
397 | case INDEX_op_st16_i64: | |
398 | case INDEX_op_st_i32: | |
399 | case INDEX_op_st32_i64: | |
400 | case INDEX_op_st_i64: | |
401 | return LDST_ST; | |
402 | ||
403 | case INDEX_op_ld8u_i32: | |
404 | case INDEX_op_ld16u_i32: | |
405 | case INDEX_op_ld8u_i64: | |
406 | case INDEX_op_ld16u_i64: | |
407 | case INDEX_op_ld_i32: | |
408 | case INDEX_op_ld32u_i64: | |
409 | case INDEX_op_ld_i64: | |
410 | return LDST_LD; | |
411 | ||
412 | case INDEX_op_ld8s_i32: | |
413 | case INDEX_op_ld16s_i32: | |
414 | return LDST_LD_S_W; | |
415 | ||
416 | case INDEX_op_ld8s_i64: | |
417 | case INDEX_op_ld16s_i64: | |
418 | case INDEX_op_ld32s_i64: | |
419 | return LDST_LD_S_X; | |
420 | ||
421 | default: | |
422 | tcg_abort(); | |
423 | } | |
424 | } | |
425 | ||
426 | static inline uint32_t tcg_in32(TCGContext *s) | |
427 | { | |
428 | uint32_t v = *(uint32_t *)s->code_ptr; | |
429 | return v; | |
430 | } | |
431 | ||
50573c66 RH |
432 | /* Emit an opcode with "type-checking" of the format. */ |
433 | #define tcg_out_insn(S, FMT, OP, ...) \ | |
434 | glue(tcg_out_insn_,FMT)(S, glue(glue(glue(I,FMT),_),OP), ## __VA_ARGS__) | |
435 | ||
3d9e69a2 RH |
436 | static void tcg_out_insn_3201(TCGContext *s, AArch64Insn insn, TCGType ext, |
437 | TCGReg rt, int imm19) | |
438 | { | |
439 | tcg_out32(s, insn | ext << 31 | (imm19 & 0x7ffff) << 5 | rt); | |
440 | } | |
441 | ||
81d8a5ee RH |
442 | static void tcg_out_insn_3202(TCGContext *s, AArch64Insn insn, |
443 | TCGCond c, int imm19) | |
444 | { | |
445 | tcg_out32(s, insn | tcg_cond_to_aarch64[c] | (imm19 & 0x7ffff) << 5); | |
446 | } | |
447 | ||
448 | static void tcg_out_insn_3206(TCGContext *s, AArch64Insn insn, int imm26) | |
449 | { | |
450 | tcg_out32(s, insn | (imm26 & 0x03ffffff)); | |
451 | } | |
452 | ||
453 | static void tcg_out_insn_3207(TCGContext *s, AArch64Insn insn, TCGReg rn) | |
454 | { | |
455 | tcg_out32(s, insn | rn << 5); | |
456 | } | |
457 | ||
95f72aa9 RH |
458 | static void tcg_out_insn_3314(TCGContext *s, AArch64Insn insn, |
459 | TCGReg r1, TCGReg r2, TCGReg rn, | |
460 | tcg_target_long ofs, bool pre, bool w) | |
461 | { | |
462 | insn |= 1u << 31; /* ext */ | |
463 | insn |= pre << 24; | |
464 | insn |= w << 23; | |
465 | ||
466 | assert(ofs >= -0x200 && ofs < 0x200 && (ofs & 7) == 0); | |
467 | insn |= (ofs & (0x7f << 3)) << (15 - 3); | |
468 | ||
469 | tcg_out32(s, insn | r2 << 10 | rn << 5 | r1); | |
470 | } | |
471 | ||
096c46c0 RH |
472 | static void tcg_out_insn_3401(TCGContext *s, AArch64Insn insn, TCGType ext, |
473 | TCGReg rd, TCGReg rn, uint64_t aimm) | |
474 | { | |
475 | if (aimm > 0xfff) { | |
476 | assert((aimm & 0xfff) == 0); | |
477 | aimm >>= 12; | |
478 | assert(aimm <= 0xfff); | |
479 | aimm |= 1 << 12; /* apply LSL 12 */ | |
480 | } | |
481 | tcg_out32(s, insn | ext << 31 | aimm << 10 | rn << 5 | rd); | |
482 | } | |
483 | ||
e029f293 RH |
484 | /* This function can be used for both 3.4.2 (Bitfield) and 3.4.4 |
485 | (Logical immediate). Both insn groups have N, IMMR and IMMS fields | |
486 | that feed the DecodeBitMasks pseudo function. */ | |
487 | static void tcg_out_insn_3402(TCGContext *s, AArch64Insn insn, TCGType ext, | |
488 | TCGReg rd, TCGReg rn, int n, int immr, int imms) | |
489 | { | |
490 | tcg_out32(s, insn | ext << 31 | n << 22 | immr << 16 | imms << 10 | |
491 | | rn << 5 | rd); | |
492 | } | |
493 | ||
494 | #define tcg_out_insn_3404 tcg_out_insn_3402 | |
495 | ||
b3c56df7 RH |
496 | static void tcg_out_insn_3403(TCGContext *s, AArch64Insn insn, TCGType ext, |
497 | TCGReg rd, TCGReg rn, TCGReg rm, int imms) | |
498 | { | |
499 | tcg_out32(s, insn | ext << 31 | ext << 22 | rm << 16 | imms << 10 | |
500 | | rn << 5 | rd); | |
501 | } | |
502 | ||
582ab779 RH |
503 | /* This function is used for the Move (wide immediate) instruction group. |
504 | Note that SHIFT is a full shift count, not the 2 bit HW field. */ | |
505 | static void tcg_out_insn_3405(TCGContext *s, AArch64Insn insn, TCGType ext, | |
506 | TCGReg rd, uint16_t half, unsigned shift) | |
507 | { | |
508 | assert((shift & ~0x30) == 0); | |
509 | tcg_out32(s, insn | ext << 31 | shift << (21 - 4) | half << 5 | rd); | |
510 | } | |
511 | ||
c6e310d9 RH |
512 | static void tcg_out_insn_3406(TCGContext *s, AArch64Insn insn, |
513 | TCGReg rd, int64_t disp) | |
514 | { | |
515 | tcg_out32(s, insn | (disp & 3) << 29 | (disp & 0x1ffffc) << (5 - 2) | rd); | |
516 | } | |
517 | ||
50573c66 RH |
518 | /* This function is for both 3.5.2 (Add/Subtract shifted register), for |
519 | the rare occasion when we actually want to supply a shift amount. */ | |
520 | static inline void tcg_out_insn_3502S(TCGContext *s, AArch64Insn insn, | |
521 | TCGType ext, TCGReg rd, TCGReg rn, | |
522 | TCGReg rm, int imm6) | |
523 | { | |
524 | tcg_out32(s, insn | ext << 31 | rm << 16 | imm6 << 10 | rn << 5 | rd); | |
525 | } | |
526 | ||
527 | /* This function is for 3.5.2 (Add/subtract shifted register), | |
528 | and 3.5.10 (Logical shifted register), for the vast majorty of cases | |
529 | when we don't want to apply a shift. Thus it can also be used for | |
530 | 3.5.3 (Add/subtract with carry) and 3.5.8 (Data processing 2 source). */ | |
531 | static void tcg_out_insn_3502(TCGContext *s, AArch64Insn insn, TCGType ext, | |
532 | TCGReg rd, TCGReg rn, TCGReg rm) | |
533 | { | |
534 | tcg_out32(s, insn | ext << 31 | rm << 16 | rn << 5 | rd); | |
535 | } | |
536 | ||
537 | #define tcg_out_insn_3503 tcg_out_insn_3502 | |
538 | #define tcg_out_insn_3508 tcg_out_insn_3502 | |
539 | #define tcg_out_insn_3510 tcg_out_insn_3502 | |
540 | ||
04ce397b RH |
541 | static void tcg_out_insn_3506(TCGContext *s, AArch64Insn insn, TCGType ext, |
542 | TCGReg rd, TCGReg rn, TCGReg rm, TCGCond c) | |
543 | { | |
544 | tcg_out32(s, insn | ext << 31 | rm << 16 | rn << 5 | rd | |
545 | | tcg_cond_to_aarch64[c] << 12); | |
546 | } | |
547 | ||
8678b71c RH |
548 | static void tcg_out_insn_3509(TCGContext *s, AArch64Insn insn, TCGType ext, |
549 | TCGReg rd, TCGReg rn, TCGReg rm, TCGReg ra) | |
550 | { | |
551 | tcg_out32(s, insn | ext << 31 | rm << 16 | ra << 10 | rn << 5 | rd); | |
552 | } | |
553 | ||
50573c66 | 554 | |
4a136e0a CF |
555 | static inline void tcg_out_ldst_9(TCGContext *s, |
556 | enum aarch64_ldst_op_data op_data, | |
557 | enum aarch64_ldst_op_type op_type, | |
8bf56493 | 558 | TCGReg rd, TCGReg rn, intptr_t offset) |
4a136e0a CF |
559 | { |
560 | /* use LDUR with BASE register with 9bit signed unscaled offset */ | |
523fdc08 RH |
561 | tcg_out32(s, op_data << 24 | op_type << 20 |
562 | | (offset & 0x1ff) << 12 | rn << 5 | rd); | |
4a136e0a CF |
563 | } |
564 | ||
b1f6dc0d CF |
565 | /* tcg_out_ldst_12 expects a scaled unsigned immediate offset */ |
566 | static inline void tcg_out_ldst_12(TCGContext *s, | |
567 | enum aarch64_ldst_op_data op_data, | |
568 | enum aarch64_ldst_op_type op_type, | |
569 | TCGReg rd, TCGReg rn, | |
570 | tcg_target_ulong scaled_uimm) | |
571 | { | |
572 | tcg_out32(s, (op_data | 1) << 24 | |
573 | | op_type << 20 | scaled_uimm << 10 | rn << 5 | rd); | |
574 | } | |
575 | ||
7d11fc7c RH |
576 | /* Register to register move using ORR (shifted register with no shift). */ |
577 | static void tcg_out_movr(TCGContext *s, TCGType ext, TCGReg rd, TCGReg rm) | |
4a136e0a | 578 | { |
7d11fc7c RH |
579 | tcg_out_insn(s, 3510, ORR, ext, rd, TCG_REG_XZR, rm); |
580 | } | |
581 | ||
582 | /* Register to register move using ADDI (move to/from SP). */ | |
583 | static void tcg_out_movr_sp(TCGContext *s, TCGType ext, TCGReg rd, TCGReg rn) | |
584 | { | |
585 | tcg_out_insn(s, 3401, ADDI, ext, rd, rn, 0); | |
4a136e0a CF |
586 | } |
587 | ||
4ec4f0bd RH |
588 | /* This function is used for the Logical (immediate) instruction group. |
589 | The value of LIMM must satisfy IS_LIMM. See the comment above about | |
590 | only supporting simplified logical immediates. */ | |
591 | static void tcg_out_logicali(TCGContext *s, AArch64Insn insn, TCGType ext, | |
592 | TCGReg rd, TCGReg rn, uint64_t limm) | |
593 | { | |
594 | unsigned h, l, r, c; | |
595 | ||
596 | assert(is_limm(limm)); | |
597 | ||
598 | h = clz64(limm); | |
599 | l = ctz64(limm); | |
600 | if (l == 0) { | |
601 | r = 0; /* form 0....01....1 */ | |
602 | c = ctz64(~limm) - 1; | |
603 | if (h == 0) { | |
604 | r = clz64(~limm); /* form 1..10..01..1 */ | |
605 | c += r; | |
606 | } | |
607 | } else { | |
608 | r = 64 - l; /* form 1....10....0 or 0..01..10..0 */ | |
609 | c = r - h - 1; | |
610 | } | |
611 | if (ext == TCG_TYPE_I32) { | |
612 | r &= 31; | |
613 | c &= 31; | |
614 | } | |
615 | ||
616 | tcg_out_insn_3404(s, insn, ext, rd, rn, ext, r, c); | |
617 | } | |
618 | ||
582ab779 RH |
619 | static void tcg_out_movi(TCGContext *s, TCGType type, TCGReg rd, |
620 | tcg_target_long value) | |
4a136e0a | 621 | { |
582ab779 | 622 | AArch64Insn insn; |
dfeb5fe7 RH |
623 | int i, wantinv, shift; |
624 | tcg_target_long svalue = value; | |
625 | tcg_target_long ivalue = ~value; | |
626 | tcg_target_long imask; | |
627 | ||
628 | /* For 32-bit values, discard potential garbage in value. For 64-bit | |
629 | values within [2**31, 2**32-1], we can create smaller sequences by | |
630 | interpreting this as a negative 32-bit number, while ensuring that | |
631 | the high 32 bits are cleared by setting SF=0. */ | |
632 | if (type == TCG_TYPE_I32 || (value & ~0xffffffffull) == 0) { | |
633 | svalue = (int32_t)value; | |
582ab779 | 634 | value = (uint32_t)value; |
dfeb5fe7 RH |
635 | ivalue = (uint32_t)ivalue; |
636 | type = TCG_TYPE_I32; | |
637 | } | |
638 | ||
d8918df5 RH |
639 | /* Speed things up by handling the common case of small positive |
640 | and negative values specially. */ | |
641 | if ((value & ~0xffffull) == 0) { | |
642 | tcg_out_insn(s, 3405, MOVZ, type, rd, value, 0); | |
643 | return; | |
644 | } else if ((ivalue & ~0xffffull) == 0) { | |
645 | tcg_out_insn(s, 3405, MOVN, type, rd, ivalue, 0); | |
646 | return; | |
647 | } | |
648 | ||
4ec4f0bd RH |
649 | /* Check for bitfield immediates. For the benefit of 32-bit quantities, |
650 | use the sign-extended value. That lets us match rotated values such | |
651 | as 0xff0000ff with the same 64-bit logic matching 0xffffffffff0000ff. */ | |
652 | if (is_limm(svalue)) { | |
653 | tcg_out_logicali(s, I3404_ORRI, type, rd, TCG_REG_XZR, svalue); | |
654 | return; | |
655 | } | |
656 | ||
c6e310d9 RH |
657 | /* Look for host pointer values within 4G of the PC. This happens |
658 | often when loading pointers to QEMU's own data structures. */ | |
659 | if (type == TCG_TYPE_I64) { | |
660 | tcg_target_long disp = (value >> 12) - ((intptr_t)s->code_ptr >> 12); | |
661 | if (disp == sextract64(disp, 0, 21)) { | |
662 | tcg_out_insn(s, 3406, ADRP, rd, disp); | |
663 | if (value & 0xfff) { | |
664 | tcg_out_insn(s, 3401, ADDI, type, rd, rd, value & 0xfff); | |
665 | } | |
666 | return; | |
667 | } | |
668 | } | |
669 | ||
dfeb5fe7 RH |
670 | /* Would it take fewer insns to begin with MOVN? For the value and its |
671 | inverse, count the number of 16-bit lanes that are 0. */ | |
672 | for (i = wantinv = imask = 0; i < 64; i += 16) { | |
673 | tcg_target_long mask = 0xffffull << i; | |
674 | if ((value & mask) == 0) { | |
675 | wantinv -= 1; | |
676 | } | |
677 | if ((ivalue & mask) == 0) { | |
678 | wantinv += 1; | |
679 | imask |= mask; | |
680 | } | |
582ab779 RH |
681 | } |
682 | ||
dfeb5fe7 | 683 | /* If we had more 0xffff than 0x0000, invert VALUE and use MOVN. */ |
582ab779 | 684 | insn = I3405_MOVZ; |
dfeb5fe7 RH |
685 | if (wantinv > 0) { |
686 | value = ivalue; | |
687 | insn = I3405_MOVN; | |
688 | } | |
689 | ||
690 | /* Find the lowest lane that is not 0x0000. */ | |
691 | shift = ctz64(value) & (63 & -16); | |
692 | tcg_out_insn_3405(s, insn, type, rd, value >> shift, shift); | |
693 | ||
694 | if (wantinv > 0) { | |
695 | /* Re-invert the value, so MOVK sees non-inverted bits. */ | |
696 | value = ~value; | |
697 | /* Clear out all the 0xffff lanes. */ | |
698 | value ^= imask; | |
699 | } | |
700 | /* Clear out the lane that we just set. */ | |
701 | value &= ~(0xffffUL << shift); | |
702 | ||
703 | /* Iterate until all lanes have been set, and thus cleared from VALUE. */ | |
704 | while (value) { | |
705 | shift = ctz64(value) & (63 & -16); | |
706 | tcg_out_insn(s, 3405, MOVK, type, rd, value >> shift, shift); | |
4a136e0a | 707 | value &= ~(0xffffUL << shift); |
dfeb5fe7 | 708 | } |
4a136e0a CF |
709 | } |
710 | ||
4a136e0a CF |
711 | static inline void tcg_out_ldst_r(TCGContext *s, |
712 | enum aarch64_ldst_op_data op_data, | |
713 | enum aarch64_ldst_op_type op_type, | |
714 | TCGReg rd, TCGReg base, TCGReg regoff) | |
715 | { | |
716 | /* load from memory to register using base + 64bit register offset */ | |
717 | /* using f.e. STR Wt, [Xn, Xm] 0xb8600800|(regoff << 16)|(base << 5)|rd */ | |
718 | /* the 0x6000 is for the "no extend field" */ | |
719 | tcg_out32(s, 0x00206800 | |
720 | | op_data << 24 | op_type << 20 | regoff << 16 | base << 5 | rd); | |
721 | } | |
722 | ||
723 | /* solve the whole ldst problem */ | |
724 | static inline void tcg_out_ldst(TCGContext *s, enum aarch64_ldst_op_data data, | |
725 | enum aarch64_ldst_op_type type, | |
8bf56493 | 726 | TCGReg rd, TCGReg rn, intptr_t offset) |
4a136e0a CF |
727 | { |
728 | if (offset >= -256 && offset < 256) { | |
729 | tcg_out_ldst_9(s, data, type, rd, rn, offset); | |
b1f6dc0d | 730 | return; |
4a136e0a | 731 | } |
b1f6dc0d CF |
732 | |
733 | if (offset >= 256) { | |
734 | /* if the offset is naturally aligned and in range, | |
735 | then we can use the scaled uimm12 encoding */ | |
736 | unsigned int s_bits = data >> 6; | |
737 | if (!(offset & ((1 << s_bits) - 1))) { | |
738 | tcg_target_ulong scaled_uimm = offset >> s_bits; | |
739 | if (scaled_uimm <= 0xfff) { | |
740 | tcg_out_ldst_12(s, data, type, rd, rn, scaled_uimm); | |
741 | return; | |
742 | } | |
743 | } | |
744 | } | |
745 | ||
746 | /* worst-case scenario, move offset to temp register, use reg offset */ | |
747 | tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_TMP, offset); | |
748 | tcg_out_ldst_r(s, data, type, rd, rn, TCG_REG_TMP); | |
4a136e0a CF |
749 | } |
750 | ||
4a136e0a CF |
751 | static inline void tcg_out_mov(TCGContext *s, |
752 | TCGType type, TCGReg ret, TCGReg arg) | |
753 | { | |
754 | if (ret != arg) { | |
929f8b55 | 755 | tcg_out_movr(s, type, ret, arg); |
4a136e0a CF |
756 | } |
757 | } | |
758 | ||
759 | static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg, | |
a05b5b9b | 760 | TCGReg arg1, intptr_t arg2) |
4a136e0a CF |
761 | { |
762 | tcg_out_ldst(s, (type == TCG_TYPE_I64) ? LDST_64 : LDST_32, LDST_LD, | |
763 | arg, arg1, arg2); | |
764 | } | |
765 | ||
766 | static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg, | |
a05b5b9b | 767 | TCGReg arg1, intptr_t arg2) |
4a136e0a CF |
768 | { |
769 | tcg_out_ldst(s, (type == TCG_TYPE_I64) ? LDST_64 : LDST_32, LDST_ST, | |
770 | arg, arg1, arg2); | |
771 | } | |
772 | ||
b3c56df7 RH |
773 | static inline void tcg_out_bfm(TCGContext *s, TCGType ext, TCGReg rd, |
774 | TCGReg rn, unsigned int a, unsigned int b) | |
775 | { | |
776 | tcg_out_insn(s, 3402, BFM, ext, rd, rn, ext, a, b); | |
777 | } | |
778 | ||
7763ffa0 RH |
779 | static inline void tcg_out_ubfm(TCGContext *s, TCGType ext, TCGReg rd, |
780 | TCGReg rn, unsigned int a, unsigned int b) | |
4a136e0a | 781 | { |
b3c56df7 | 782 | tcg_out_insn(s, 3402, UBFM, ext, rd, rn, ext, a, b); |
4a136e0a CF |
783 | } |
784 | ||
7763ffa0 RH |
785 | static inline void tcg_out_sbfm(TCGContext *s, TCGType ext, TCGReg rd, |
786 | TCGReg rn, unsigned int a, unsigned int b) | |
4a136e0a | 787 | { |
b3c56df7 | 788 | tcg_out_insn(s, 3402, SBFM, ext, rd, rn, ext, a, b); |
4a136e0a CF |
789 | } |
790 | ||
7763ffa0 | 791 | static inline void tcg_out_extr(TCGContext *s, TCGType ext, TCGReg rd, |
4a136e0a CF |
792 | TCGReg rn, TCGReg rm, unsigned int a) |
793 | { | |
b3c56df7 | 794 | tcg_out_insn(s, 3403, EXTR, ext, rd, rn, rm, a); |
4a136e0a CF |
795 | } |
796 | ||
7763ffa0 | 797 | static inline void tcg_out_shl(TCGContext *s, TCGType ext, |
4a136e0a CF |
798 | TCGReg rd, TCGReg rn, unsigned int m) |
799 | { | |
b3c56df7 RH |
800 | int bits = ext ? 64 : 32; |
801 | int max = bits - 1; | |
4a136e0a CF |
802 | tcg_out_ubfm(s, ext, rd, rn, bits - (m & max), max - (m & max)); |
803 | } | |
804 | ||
7763ffa0 | 805 | static inline void tcg_out_shr(TCGContext *s, TCGType ext, |
4a136e0a CF |
806 | TCGReg rd, TCGReg rn, unsigned int m) |
807 | { | |
808 | int max = ext ? 63 : 31; | |
809 | tcg_out_ubfm(s, ext, rd, rn, m & max, max); | |
810 | } | |
811 | ||
7763ffa0 | 812 | static inline void tcg_out_sar(TCGContext *s, TCGType ext, |
4a136e0a CF |
813 | TCGReg rd, TCGReg rn, unsigned int m) |
814 | { | |
815 | int max = ext ? 63 : 31; | |
816 | tcg_out_sbfm(s, ext, rd, rn, m & max, max); | |
817 | } | |
818 | ||
7763ffa0 | 819 | static inline void tcg_out_rotr(TCGContext *s, TCGType ext, |
4a136e0a CF |
820 | TCGReg rd, TCGReg rn, unsigned int m) |
821 | { | |
822 | int max = ext ? 63 : 31; | |
823 | tcg_out_extr(s, ext, rd, rn, rn, m & max); | |
824 | } | |
825 | ||
7763ffa0 | 826 | static inline void tcg_out_rotl(TCGContext *s, TCGType ext, |
4a136e0a CF |
827 | TCGReg rd, TCGReg rn, unsigned int m) |
828 | { | |
b3c56df7 RH |
829 | int bits = ext ? 64 : 32; |
830 | int max = bits - 1; | |
4a136e0a CF |
831 | tcg_out_extr(s, ext, rd, rn, rn, bits - (m & max)); |
832 | } | |
833 | ||
b3c56df7 RH |
834 | static inline void tcg_out_dep(TCGContext *s, TCGType ext, TCGReg rd, |
835 | TCGReg rn, unsigned lsb, unsigned width) | |
836 | { | |
837 | unsigned size = ext ? 64 : 32; | |
838 | unsigned a = (size - lsb) & (size - 1); | |
839 | unsigned b = width - 1; | |
840 | tcg_out_bfm(s, ext, rd, rn, a, b); | |
841 | } | |
842 | ||
90f1cd91 RH |
843 | static void tcg_out_cmp(TCGContext *s, TCGType ext, TCGReg a, |
844 | tcg_target_long b, bool const_b) | |
4a136e0a | 845 | { |
90f1cd91 RH |
846 | if (const_b) { |
847 | /* Using CMP or CMN aliases. */ | |
848 | if (b >= 0) { | |
849 | tcg_out_insn(s, 3401, SUBSI, ext, TCG_REG_XZR, a, b); | |
850 | } else { | |
851 | tcg_out_insn(s, 3401, ADDSI, ext, TCG_REG_XZR, a, -b); | |
852 | } | |
853 | } else { | |
854 | /* Using CMP alias SUBS wzr, Wn, Wm */ | |
855 | tcg_out_insn(s, 3502, SUBS, ext, TCG_REG_XZR, a, b); | |
856 | } | |
4a136e0a CF |
857 | } |
858 | ||
017a86f7 | 859 | static inline void tcg_out_goto(TCGContext *s, intptr_t target) |
4a136e0a | 860 | { |
017a86f7 | 861 | intptr_t offset = (target - (intptr_t)s->code_ptr) / 4; |
4a136e0a CF |
862 | |
863 | if (offset < -0x02000000 || offset >= 0x02000000) { | |
864 | /* out of 26bit range */ | |
865 | tcg_abort(); | |
866 | } | |
867 | ||
81d8a5ee | 868 | tcg_out_insn(s, 3206, B, offset); |
4a136e0a CF |
869 | } |
870 | ||
871 | static inline void tcg_out_goto_noaddr(TCGContext *s) | |
872 | { | |
81d8a5ee RH |
873 | /* We pay attention here to not modify the branch target by reading from |
874 | the buffer. This ensure that caches and memory are kept coherent during | |
875 | retranslation. Mask away possible garbage in the high bits for the | |
876 | first translation, while keeping the offset bits for retranslation. */ | |
877 | uint32_t old = tcg_in32(s); | |
878 | tcg_out_insn(s, 3206, B, old); | |
4a136e0a CF |
879 | } |
880 | ||
881 | static inline void tcg_out_goto_cond_noaddr(TCGContext *s, TCGCond c) | |
882 | { | |
81d8a5ee RH |
883 | /* See comments in tcg_out_goto_noaddr. */ |
884 | uint32_t old = tcg_in32(s) >> 5; | |
885 | tcg_out_insn(s, 3202, B_C, c, old); | |
4a136e0a CF |
886 | } |
887 | ||
4a136e0a CF |
888 | static inline void tcg_out_callr(TCGContext *s, TCGReg reg) |
889 | { | |
81d8a5ee | 890 | tcg_out_insn(s, 3207, BLR, reg); |
4a136e0a CF |
891 | } |
892 | ||
017a86f7 | 893 | static inline void tcg_out_call(TCGContext *s, intptr_t target) |
4a136e0a | 894 | { |
017a86f7 | 895 | intptr_t offset = (target - (intptr_t)s->code_ptr) / 4; |
4a136e0a CF |
896 | |
897 | if (offset < -0x02000000 || offset >= 0x02000000) { /* out of 26bit rng */ | |
898 | tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_TMP, target); | |
899 | tcg_out_callr(s, TCG_REG_TMP); | |
900 | } else { | |
81d8a5ee | 901 | tcg_out_insn(s, 3206, BL, offset); |
4a136e0a CF |
902 | } |
903 | } | |
904 | ||
4a136e0a CF |
905 | void aarch64_tb_set_jmp_target(uintptr_t jmp_addr, uintptr_t addr) |
906 | { | |
017a86f7 RH |
907 | intptr_t target = addr; |
908 | intptr_t offset = (target - (intptr_t)jmp_addr) / 4; | |
4a136e0a CF |
909 | |
910 | if (offset < -0x02000000 || offset >= 0x02000000) { | |
911 | /* out of 26bit range */ | |
912 | tcg_abort(); | |
913 | } | |
914 | ||
915 | patch_reloc((uint8_t *)jmp_addr, R_AARCH64_JUMP26, target, 0); | |
916 | flush_icache_range(jmp_addr, jmp_addr + 4); | |
917 | } | |
918 | ||
919 | static inline void tcg_out_goto_label(TCGContext *s, int label_index) | |
920 | { | |
921 | TCGLabel *l = &s->labels[label_index]; | |
922 | ||
923 | if (!l->has_value) { | |
924 | tcg_out_reloc(s, s->code_ptr, R_AARCH64_JUMP26, label_index, 0); | |
925 | tcg_out_goto_noaddr(s); | |
926 | } else { | |
927 | tcg_out_goto(s, l->u.value); | |
928 | } | |
929 | } | |
930 | ||
cae1f6f3 RH |
931 | static void tcg_out_brcond(TCGContext *s, TCGMemOp ext, TCGCond c, TCGArg a, |
932 | TCGArg b, bool b_const, int label) | |
4a136e0a | 933 | { |
cae1f6f3 RH |
934 | TCGLabel *l = &s->labels[label]; |
935 | intptr_t offset; | |
3d9e69a2 | 936 | bool need_cmp; |
cae1f6f3 | 937 | |
3d9e69a2 RH |
938 | if (b_const && b == 0 && (c == TCG_COND_EQ || c == TCG_COND_NE)) { |
939 | need_cmp = false; | |
940 | } else { | |
941 | need_cmp = true; | |
942 | tcg_out_cmp(s, ext, a, b, b_const); | |
943 | } | |
4a136e0a CF |
944 | |
945 | if (!l->has_value) { | |
cae1f6f3 RH |
946 | tcg_out_reloc(s, s->code_ptr, R_AARCH64_CONDBR19, label, 0); |
947 | offset = tcg_in32(s) >> 5; | |
4a136e0a | 948 | } else { |
cae1f6f3 RH |
949 | offset = l->u.value - (uintptr_t)s->code_ptr; |
950 | offset >>= 2; | |
951 | assert(offset >= -0x40000 && offset < 0x40000); | |
4a136e0a | 952 | } |
cae1f6f3 | 953 | |
3d9e69a2 RH |
954 | if (need_cmp) { |
955 | tcg_out_insn(s, 3202, B_C, c, offset); | |
956 | } else if (c == TCG_COND_EQ) { | |
957 | tcg_out_insn(s, 3201, CBZ, ext, a, offset); | |
958 | } else { | |
959 | tcg_out_insn(s, 3201, CBNZ, ext, a, offset); | |
960 | } | |
4a136e0a CF |
961 | } |
962 | ||
7763ffa0 RH |
963 | static inline void tcg_out_rev(TCGContext *s, TCGType ext, |
964 | TCGReg rd, TCGReg rm) | |
9c4a059d CF |
965 | { |
966 | /* using REV 0x5ac00800 */ | |
967 | unsigned int base = ext ? 0xdac00c00 : 0x5ac00800; | |
968 | tcg_out32(s, base | rm << 5 | rd); | |
969 | } | |
970 | ||
7763ffa0 RH |
971 | static inline void tcg_out_rev16(TCGContext *s, TCGType ext, |
972 | TCGReg rd, TCGReg rm) | |
9c4a059d CF |
973 | { |
974 | /* using REV16 0x5ac00400 */ | |
975 | unsigned int base = ext ? 0xdac00400 : 0x5ac00400; | |
976 | tcg_out32(s, base | rm << 5 | rd); | |
977 | } | |
978 | ||
929f8b55 | 979 | static inline void tcg_out_sxt(TCGContext *s, TCGType ext, TCGMemOp s_bits, |
31f1275b CF |
980 | TCGReg rd, TCGReg rn) |
981 | { | |
b3c56df7 | 982 | /* Using ALIASes SXTB, SXTH, SXTW, of SBFM Xd, Xn, #0, #7|15|31 */ |
929f8b55 | 983 | int bits = (8 << s_bits) - 1; |
31f1275b CF |
984 | tcg_out_sbfm(s, ext, rd, rn, 0, bits); |
985 | } | |
986 | ||
929f8b55 | 987 | static inline void tcg_out_uxt(TCGContext *s, TCGMemOp s_bits, |
31f1275b CF |
988 | TCGReg rd, TCGReg rn) |
989 | { | |
b3c56df7 | 990 | /* Using ALIASes UXTB, UXTH of UBFM Wd, Wn, #0, #7|15 */ |
929f8b55 | 991 | int bits = (8 << s_bits) - 1; |
31f1275b CF |
992 | tcg_out_ubfm(s, 0, rd, rn, 0, bits); |
993 | } | |
994 | ||
90f1cd91 RH |
995 | static void tcg_out_addsubi(TCGContext *s, int ext, TCGReg rd, |
996 | TCGReg rn, int64_t aimm) | |
997 | { | |
998 | if (aimm >= 0) { | |
999 | tcg_out_insn(s, 3401, ADDI, ext, rd, rn, aimm); | |
1000 | } else { | |
1001 | tcg_out_insn(s, 3401, SUBI, ext, rd, rn, -aimm); | |
1002 | } | |
1003 | } | |
1004 | ||
c6e929e7 RH |
1005 | static inline void tcg_out_addsub2(TCGContext *s, int ext, TCGReg rl, |
1006 | TCGReg rh, TCGReg al, TCGReg ah, | |
1007 | tcg_target_long bl, tcg_target_long bh, | |
1008 | bool const_bl, bool const_bh, bool sub) | |
1009 | { | |
1010 | TCGReg orig_rl = rl; | |
1011 | AArch64Insn insn; | |
1012 | ||
1013 | if (rl == ah || (!const_bh && rl == bh)) { | |
1014 | rl = TCG_REG_TMP; | |
1015 | } | |
1016 | ||
1017 | if (const_bl) { | |
1018 | insn = I3401_ADDSI; | |
1019 | if ((bl < 0) ^ sub) { | |
1020 | insn = I3401_SUBSI; | |
1021 | bl = -bl; | |
1022 | } | |
1023 | tcg_out_insn_3401(s, insn, ext, rl, al, bl); | |
1024 | } else { | |
1025 | tcg_out_insn_3502(s, sub ? I3502_SUBS : I3502_ADDS, ext, rl, al, bl); | |
1026 | } | |
1027 | ||
1028 | insn = I3503_ADC; | |
1029 | if (const_bh) { | |
1030 | /* Note that the only two constants we support are 0 and -1, and | |
1031 | that SBC = rn + ~rm + c, so adc -1 is sbc 0, and vice-versa. */ | |
1032 | if ((bh != 0) ^ sub) { | |
1033 | insn = I3503_SBC; | |
1034 | } | |
1035 | bh = TCG_REG_XZR; | |
1036 | } else if (sub) { | |
1037 | insn = I3503_SBC; | |
1038 | } | |
1039 | tcg_out_insn_3503(s, insn, ext, rh, ah, bh); | |
1040 | ||
1041 | if (rl != orig_rl) { | |
1042 | tcg_out_movr(s, ext, orig_rl, rl); | |
1043 | } | |
1044 | } | |
1045 | ||
4a136e0a | 1046 | #ifdef CONFIG_SOFTMMU |
023261ef RH |
1047 | /* helper signature: helper_ret_ld_mmu(CPUState *env, target_ulong addr, |
1048 | * int mmu_idx, uintptr_t ra) | |
1049 | */ | |
de61d14f RH |
1050 | static const void * const qemu_ld_helpers[16] = { |
1051 | [MO_UB] = helper_ret_ldub_mmu, | |
1052 | [MO_LEUW] = helper_le_lduw_mmu, | |
1053 | [MO_LEUL] = helper_le_ldul_mmu, | |
1054 | [MO_LEQ] = helper_le_ldq_mmu, | |
1055 | [MO_BEUW] = helper_be_lduw_mmu, | |
1056 | [MO_BEUL] = helper_be_ldul_mmu, | |
1057 | [MO_BEQ] = helper_be_ldq_mmu, | |
4a136e0a CF |
1058 | }; |
1059 | ||
023261ef RH |
1060 | /* helper signature: helper_ret_st_mmu(CPUState *env, target_ulong addr, |
1061 | * uintxx_t val, int mmu_idx, uintptr_t ra) | |
1062 | */ | |
de61d14f RH |
1063 | static const void * const qemu_st_helpers[16] = { |
1064 | [MO_UB] = helper_ret_stb_mmu, | |
1065 | [MO_LEUW] = helper_le_stw_mmu, | |
1066 | [MO_LEUL] = helper_le_stl_mmu, | |
1067 | [MO_LEQ] = helper_le_stq_mmu, | |
1068 | [MO_BEUW] = helper_be_stw_mmu, | |
1069 | [MO_BEUL] = helper_be_stl_mmu, | |
1070 | [MO_BEQ] = helper_be_stq_mmu, | |
4a136e0a CF |
1071 | }; |
1072 | ||
dc0c8aaf RH |
1073 | static inline void tcg_out_adr(TCGContext *s, TCGReg rd, uintptr_t addr) |
1074 | { | |
1075 | addr -= (uintptr_t)s->code_ptr; | |
1076 | assert(addr == sextract64(addr, 0, 21)); | |
1077 | tcg_out_insn(s, 3406, ADR, rd, addr); | |
1078 | } | |
1079 | ||
c6d8ed24 JK |
1080 | static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *lb) |
1081 | { | |
929f8b55 RH |
1082 | TCGMemOp opc = lb->opc; |
1083 | TCGMemOp size = opc & MO_SIZE; | |
1084 | ||
017a86f7 RH |
1085 | reloc_pc19(lb->label_ptr[0], (intptr_t)s->code_ptr); |
1086 | ||
929f8b55 RH |
1087 | tcg_out_movr(s, TCG_TYPE_I64, TCG_REG_X0, TCG_AREG0); |
1088 | tcg_out_movr(s, TARGET_LONG_BITS == 64, TCG_REG_X1, lb->addrlo_reg); | |
c6d8ed24 | 1089 | tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_X2, lb->mem_index); |
dc0c8aaf | 1090 | tcg_out_adr(s, TCG_REG_X3, (intptr_t)lb->raddr); |
de61d14f | 1091 | tcg_out_call(s, (intptr_t)qemu_ld_helpers[opc & ~MO_SIGN]); |
929f8b55 RH |
1092 | if (opc & MO_SIGN) { |
1093 | tcg_out_sxt(s, TCG_TYPE_I64, size, lb->datalo_reg, TCG_REG_X0); | |
c6d8ed24 | 1094 | } else { |
929f8b55 | 1095 | tcg_out_movr(s, TCG_TYPE_I64, lb->datalo_reg, TCG_REG_X0); |
c6d8ed24 JK |
1096 | } |
1097 | ||
017a86f7 | 1098 | tcg_out_goto(s, (intptr_t)lb->raddr); |
c6d8ed24 JK |
1099 | } |
1100 | ||
1101 | static void tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *lb) | |
1102 | { | |
de61d14f RH |
1103 | TCGMemOp opc = lb->opc; |
1104 | TCGMemOp size = opc & MO_SIZE; | |
929f8b55 | 1105 | |
017a86f7 | 1106 | reloc_pc19(lb->label_ptr[0], (intptr_t)s->code_ptr); |
c6d8ed24 | 1107 | |
929f8b55 RH |
1108 | tcg_out_movr(s, TCG_TYPE_I64, TCG_REG_X0, TCG_AREG0); |
1109 | tcg_out_movr(s, TARGET_LONG_BITS == 64, TCG_REG_X1, lb->addrlo_reg); | |
1110 | tcg_out_movr(s, size == MO_64, TCG_REG_X2, lb->datalo_reg); | |
c6d8ed24 | 1111 | tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_X3, lb->mem_index); |
dc0c8aaf | 1112 | tcg_out_adr(s, TCG_REG_X4, (intptr_t)lb->raddr); |
de61d14f | 1113 | tcg_out_call(s, (intptr_t)qemu_st_helpers[opc]); |
8bf56493 | 1114 | tcg_out_goto(s, (intptr_t)lb->raddr); |
c6d8ed24 JK |
1115 | } |
1116 | ||
9e4177ad | 1117 | static void add_qemu_ldst_label(TCGContext *s, int is_ld, TCGMemOp opc, |
c6d8ed24 JK |
1118 | TCGReg data_reg, TCGReg addr_reg, |
1119 | int mem_index, | |
1120 | uint8_t *raddr, uint8_t *label_ptr) | |
1121 | { | |
9ecefc84 | 1122 | TCGLabelQemuLdst *label = new_ldst_label(s); |
c6d8ed24 | 1123 | |
c6d8ed24 JK |
1124 | label->is_ld = is_ld; |
1125 | label->opc = opc; | |
1126 | label->datalo_reg = data_reg; | |
1127 | label->addrlo_reg = addr_reg; | |
1128 | label->mem_index = mem_index; | |
1129 | label->raddr = raddr; | |
1130 | label->label_ptr[0] = label_ptr; | |
1131 | } | |
1132 | ||
1133 | /* Load and compare a TLB entry, emitting the conditional jump to the | |
1134 | slow path for the failure case, which will be patched later when finalizing | |
1135 | the slow path. Generated code returns the host addend in X1, | |
1136 | clobbers X0,X2,X3,TMP. */ | |
9e4177ad | 1137 | static void tcg_out_tlb_read(TCGContext *s, TCGReg addr_reg, TCGMemOp s_bits, |
6f472467 | 1138 | uint8_t **label_ptr, int mem_index, bool is_read) |
c6d8ed24 JK |
1139 | { |
1140 | TCGReg base = TCG_AREG0; | |
1141 | int tlb_offset = is_read ? | |
1142 | offsetof(CPUArchState, tlb_table[mem_index][0].addr_read) | |
1143 | : offsetof(CPUArchState, tlb_table[mem_index][0].addr_write); | |
6f472467 | 1144 | |
c6d8ed24 JK |
1145 | /* Extract the TLB index from the address into X0. |
1146 | X0<CPU_TLB_BITS:0> = | |
1147 | addr_reg<TARGET_PAGE_BITS+CPU_TLB_BITS:TARGET_PAGE_BITS> */ | |
6f472467 | 1148 | tcg_out_ubfm(s, TARGET_LONG_BITS == 64, TCG_REG_X0, addr_reg, |
c6d8ed24 | 1149 | TARGET_PAGE_BITS, TARGET_PAGE_BITS + CPU_TLB_BITS); |
6f472467 | 1150 | |
c6d8ed24 JK |
1151 | /* Store the page mask part of the address and the low s_bits into X3. |
1152 | Later this allows checking for equality and alignment at the same time. | |
1153 | X3 = addr_reg & (PAGE_MASK | ((1 << s_bits) - 1)) */ | |
e029f293 RH |
1154 | tcg_out_logicali(s, I3404_ANDI, TARGET_LONG_BITS == 64, TCG_REG_X3, |
1155 | addr_reg, TARGET_PAGE_MASK | ((1 << s_bits) - 1)); | |
6f472467 | 1156 | |
c6d8ed24 | 1157 | /* Add any "high bits" from the tlb offset to the env address into X2, |
096c46c0 | 1158 | to take advantage of the LSL12 form of the ADDI instruction. |
c6d8ed24 | 1159 | X2 = env + (tlb_offset & 0xfff000) */ |
6f472467 RH |
1160 | if (tlb_offset & 0xfff000) { |
1161 | tcg_out_insn(s, 3401, ADDI, TCG_TYPE_I64, TCG_REG_X2, base, | |
1162 | tlb_offset & 0xfff000); | |
1163 | base = TCG_REG_X2; | |
1164 | } | |
1165 | ||
c6d8ed24 JK |
1166 | /* Merge the tlb index contribution into X2. |
1167 | X2 = X2 + (X0 << CPU_TLB_ENTRY_BITS) */ | |
6f472467 | 1168 | tcg_out_insn(s, 3502S, ADD_LSL, TCG_TYPE_I64, TCG_REG_X2, base, |
50573c66 | 1169 | TCG_REG_X0, CPU_TLB_ENTRY_BITS); |
6f472467 | 1170 | |
c6d8ed24 JK |
1171 | /* Merge "low bits" from tlb offset, load the tlb comparator into X0. |
1172 | X0 = load [X2 + (tlb_offset & 0x000fff)] */ | |
1173 | tcg_out_ldst(s, TARGET_LONG_BITS == 64 ? LDST_64 : LDST_32, | |
6f472467 RH |
1174 | LDST_LD, TCG_REG_X0, TCG_REG_X2, tlb_offset & 0xfff); |
1175 | ||
c6d8ed24 JK |
1176 | /* Load the tlb addend. Do that early to avoid stalling. |
1177 | X1 = load [X2 + (tlb_offset & 0xfff) + offsetof(addend)] */ | |
1178 | tcg_out_ldst(s, LDST_64, LDST_LD, TCG_REG_X1, TCG_REG_X2, | |
1179 | (tlb_offset & 0xfff) + (offsetof(CPUTLBEntry, addend)) - | |
1180 | (is_read ? offsetof(CPUTLBEntry, addr_read) | |
1181 | : offsetof(CPUTLBEntry, addr_write))); | |
6f472467 | 1182 | |
c6d8ed24 | 1183 | /* Perform the address comparison. */ |
90f1cd91 | 1184 | tcg_out_cmp(s, (TARGET_LONG_BITS == 64), TCG_REG_X0, TCG_REG_X3, 0); |
6f472467 | 1185 | |
c6d8ed24 | 1186 | /* If not equal, we jump to the slow path. */ |
6f472467 | 1187 | *label_ptr = s->code_ptr; |
c6d8ed24 JK |
1188 | tcg_out_goto_cond_noaddr(s, TCG_COND_NE); |
1189 | } | |
1190 | ||
1191 | #endif /* CONFIG_SOFTMMU */ | |
6a91c7c9 | 1192 | |
9e4177ad RH |
1193 | static void tcg_out_qemu_ld_direct(TCGContext *s, TCGMemOp memop, |
1194 | TCGReg data_r, TCGReg addr_r, TCGReg off_r) | |
6a91c7c9 | 1195 | { |
9e4177ad RH |
1196 | const TCGMemOp bswap = memop & MO_BSWAP; |
1197 | ||
1198 | switch (memop & MO_SSIZE) { | |
1199 | case MO_UB: | |
6a91c7c9 JK |
1200 | tcg_out_ldst_r(s, LDST_8, LDST_LD, data_r, addr_r, off_r); |
1201 | break; | |
9e4177ad | 1202 | case MO_SB: |
6a91c7c9 JK |
1203 | tcg_out_ldst_r(s, LDST_8, LDST_LD_S_X, data_r, addr_r, off_r); |
1204 | break; | |
9e4177ad | 1205 | case MO_UW: |
6a91c7c9 | 1206 | tcg_out_ldst_r(s, LDST_16, LDST_LD, data_r, addr_r, off_r); |
9e4177ad | 1207 | if (bswap) { |
929f8b55 | 1208 | tcg_out_rev16(s, TCG_TYPE_I32, data_r, data_r); |
6a91c7c9 JK |
1209 | } |
1210 | break; | |
9e4177ad RH |
1211 | case MO_SW: |
1212 | if (bswap) { | |
6a91c7c9 | 1213 | tcg_out_ldst_r(s, LDST_16, LDST_LD, data_r, addr_r, off_r); |
929f8b55 RH |
1214 | tcg_out_rev16(s, TCG_TYPE_I32, data_r, data_r); |
1215 | tcg_out_sxt(s, TCG_TYPE_I64, MO_16, data_r, data_r); | |
6a91c7c9 JK |
1216 | } else { |
1217 | tcg_out_ldst_r(s, LDST_16, LDST_LD_S_X, data_r, addr_r, off_r); | |
1218 | } | |
1219 | break; | |
9e4177ad | 1220 | case MO_UL: |
6a91c7c9 | 1221 | tcg_out_ldst_r(s, LDST_32, LDST_LD, data_r, addr_r, off_r); |
9e4177ad | 1222 | if (bswap) { |
929f8b55 | 1223 | tcg_out_rev(s, TCG_TYPE_I32, data_r, data_r); |
6a91c7c9 JK |
1224 | } |
1225 | break; | |
9e4177ad RH |
1226 | case MO_SL: |
1227 | if (bswap) { | |
6a91c7c9 | 1228 | tcg_out_ldst_r(s, LDST_32, LDST_LD, data_r, addr_r, off_r); |
929f8b55 RH |
1229 | tcg_out_rev(s, TCG_TYPE_I32, data_r, data_r); |
1230 | tcg_out_sxt(s, TCG_TYPE_I64, MO_32, data_r, data_r); | |
6a91c7c9 JK |
1231 | } else { |
1232 | tcg_out_ldst_r(s, LDST_32, LDST_LD_S_X, data_r, addr_r, off_r); | |
1233 | } | |
1234 | break; | |
9e4177ad | 1235 | case MO_Q: |
6a91c7c9 | 1236 | tcg_out_ldst_r(s, LDST_64, LDST_LD, data_r, addr_r, off_r); |
9e4177ad | 1237 | if (bswap) { |
929f8b55 | 1238 | tcg_out_rev(s, TCG_TYPE_I64, data_r, data_r); |
6a91c7c9 JK |
1239 | } |
1240 | break; | |
1241 | default: | |
1242 | tcg_abort(); | |
1243 | } | |
1244 | } | |
1245 | ||
9e4177ad RH |
1246 | static void tcg_out_qemu_st_direct(TCGContext *s, TCGMemOp memop, |
1247 | TCGReg data_r, TCGReg addr_r, TCGReg off_r) | |
6a91c7c9 | 1248 | { |
9e4177ad RH |
1249 | const TCGMemOp bswap = memop & MO_BSWAP; |
1250 | ||
1251 | switch (memop & MO_SIZE) { | |
1252 | case MO_8: | |
6a91c7c9 JK |
1253 | tcg_out_ldst_r(s, LDST_8, LDST_ST, data_r, addr_r, off_r); |
1254 | break; | |
9e4177ad RH |
1255 | case MO_16: |
1256 | if (bswap) { | |
929f8b55 | 1257 | tcg_out_rev16(s, TCG_TYPE_I32, TCG_REG_TMP, data_r); |
9e4177ad | 1258 | data_r = TCG_REG_TMP; |
6a91c7c9 | 1259 | } |
9e4177ad | 1260 | tcg_out_ldst_r(s, LDST_16, LDST_ST, data_r, addr_r, off_r); |
6a91c7c9 | 1261 | break; |
9e4177ad RH |
1262 | case MO_32: |
1263 | if (bswap) { | |
929f8b55 | 1264 | tcg_out_rev(s, TCG_TYPE_I32, TCG_REG_TMP, data_r); |
9e4177ad | 1265 | data_r = TCG_REG_TMP; |
6a91c7c9 | 1266 | } |
9e4177ad | 1267 | tcg_out_ldst_r(s, LDST_32, LDST_ST, data_r, addr_r, off_r); |
6a91c7c9 | 1268 | break; |
9e4177ad RH |
1269 | case MO_64: |
1270 | if (bswap) { | |
929f8b55 | 1271 | tcg_out_rev(s, TCG_TYPE_I64, TCG_REG_TMP, data_r); |
9e4177ad | 1272 | data_r = TCG_REG_TMP; |
6a91c7c9 | 1273 | } |
9e4177ad | 1274 | tcg_out_ldst_r(s, LDST_64, LDST_ST, data_r, addr_r, off_r); |
6a91c7c9 JK |
1275 | break; |
1276 | default: | |
1277 | tcg_abort(); | |
1278 | } | |
1279 | } | |
4a136e0a | 1280 | |
667b1cdd RH |
1281 | static void tcg_out_qemu_ld(TCGContext *s, TCGReg data_reg, TCGReg addr_reg, |
1282 | TCGMemOp memop, int mem_index) | |
4a136e0a | 1283 | { |
4a136e0a | 1284 | #ifdef CONFIG_SOFTMMU |
667b1cdd | 1285 | TCGMemOp s_bits = memop & MO_SIZE; |
c6d8ed24 | 1286 | uint8_t *label_ptr; |
4a136e0a | 1287 | |
c6d8ed24 | 1288 | tcg_out_tlb_read(s, addr_reg, s_bits, &label_ptr, mem_index, 1); |
9e4177ad RH |
1289 | tcg_out_qemu_ld_direct(s, memop, data_reg, addr_reg, TCG_REG_X1); |
1290 | add_qemu_ldst_label(s, 1, memop, data_reg, addr_reg, | |
c6d8ed24 | 1291 | mem_index, s->code_ptr, label_ptr); |
4a136e0a | 1292 | #else /* !CONFIG_SOFTMMU */ |
9e4177ad | 1293 | tcg_out_qemu_ld_direct(s, memop, data_reg, addr_reg, |
6a91c7c9 JK |
1294 | GUEST_BASE ? TCG_REG_GUEST_BASE : TCG_REG_XZR); |
1295 | #endif /* CONFIG_SOFTMMU */ | |
4a136e0a CF |
1296 | } |
1297 | ||
667b1cdd RH |
1298 | static void tcg_out_qemu_st(TCGContext *s, TCGReg data_reg, TCGReg addr_reg, |
1299 | TCGMemOp memop, int mem_index) | |
4a136e0a | 1300 | { |
4a136e0a | 1301 | #ifdef CONFIG_SOFTMMU |
667b1cdd | 1302 | TCGMemOp s_bits = memop & MO_SIZE; |
c6d8ed24 | 1303 | uint8_t *label_ptr; |
4a136e0a | 1304 | |
c6d8ed24 | 1305 | tcg_out_tlb_read(s, addr_reg, s_bits, &label_ptr, mem_index, 0); |
9e4177ad RH |
1306 | tcg_out_qemu_st_direct(s, memop, data_reg, addr_reg, TCG_REG_X1); |
1307 | add_qemu_ldst_label(s, 0, memop, data_reg, addr_reg, | |
c6d8ed24 | 1308 | mem_index, s->code_ptr, label_ptr); |
4a136e0a | 1309 | #else /* !CONFIG_SOFTMMU */ |
9e4177ad | 1310 | tcg_out_qemu_st_direct(s, memop, data_reg, addr_reg, |
6a91c7c9 JK |
1311 | GUEST_BASE ? TCG_REG_GUEST_BASE : TCG_REG_XZR); |
1312 | #endif /* CONFIG_SOFTMMU */ | |
4a136e0a CF |
1313 | } |
1314 | ||
1315 | static uint8_t *tb_ret_addr; | |
1316 | ||
4a136e0a | 1317 | static void tcg_out_op(TCGContext *s, TCGOpcode opc, |
8d8db193 RH |
1318 | const TCGArg args[TCG_MAX_OP_ARGS], |
1319 | const int const_args[TCG_MAX_OP_ARGS]) | |
4a136e0a | 1320 | { |
f0293414 RH |
1321 | /* 99% of the time, we can signal the use of extension registers |
1322 | by looking to see if the opcode handles 64-bit data. */ | |
1323 | TCGType ext = (tcg_op_defs[opc].flags & TCG_OPF_64BIT) != 0; | |
4a136e0a | 1324 | |
8d8db193 RH |
1325 | /* Hoist the loads of the most common arguments. */ |
1326 | TCGArg a0 = args[0]; | |
1327 | TCGArg a1 = args[1]; | |
1328 | TCGArg a2 = args[2]; | |
1329 | int c2 = const_args[2]; | |
1330 | ||
04ce397b RH |
1331 | /* Some operands are defined with "rZ" constraint, a register or |
1332 | the zero register. These need not actually test args[I] == 0. */ | |
1333 | #define REG0(I) (const_args[I] ? TCG_REG_XZR : (TCGReg)args[I]) | |
1334 | ||
4a136e0a CF |
1335 | switch (opc) { |
1336 | case INDEX_op_exit_tb: | |
8d8db193 | 1337 | tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_X0, a0); |
017a86f7 | 1338 | tcg_out_goto(s, (intptr_t)tb_ret_addr); |
4a136e0a CF |
1339 | break; |
1340 | ||
1341 | case INDEX_op_goto_tb: | |
1342 | #ifndef USE_DIRECT_JUMP | |
1343 | #error "USE_DIRECT_JUMP required for aarch64" | |
1344 | #endif | |
1345 | assert(s->tb_jmp_offset != NULL); /* consistency for USE_DIRECT_JUMP */ | |
8d8db193 | 1346 | s->tb_jmp_offset[a0] = s->code_ptr - s->code_buf; |
4a136e0a CF |
1347 | /* actual branch destination will be patched by |
1348 | aarch64_tb_set_jmp_target later, beware retranslation. */ | |
1349 | tcg_out_goto_noaddr(s); | |
8d8db193 | 1350 | s->tb_next_offset[a0] = s->code_ptr - s->code_buf; |
4a136e0a CF |
1351 | break; |
1352 | ||
1353 | case INDEX_op_call: | |
1354 | if (const_args[0]) { | |
8d8db193 | 1355 | tcg_out_call(s, a0); |
4a136e0a | 1356 | } else { |
8d8db193 | 1357 | tcg_out_callr(s, a0); |
4a136e0a CF |
1358 | } |
1359 | break; | |
1360 | ||
1361 | case INDEX_op_br: | |
8d8db193 | 1362 | tcg_out_goto_label(s, a0); |
4a136e0a CF |
1363 | break; |
1364 | ||
1365 | case INDEX_op_ld_i32: | |
1366 | case INDEX_op_ld_i64: | |
1367 | case INDEX_op_st_i32: | |
1368 | case INDEX_op_st_i64: | |
1369 | case INDEX_op_ld8u_i32: | |
1370 | case INDEX_op_ld8s_i32: | |
1371 | case INDEX_op_ld16u_i32: | |
1372 | case INDEX_op_ld16s_i32: | |
1373 | case INDEX_op_ld8u_i64: | |
1374 | case INDEX_op_ld8s_i64: | |
1375 | case INDEX_op_ld16u_i64: | |
1376 | case INDEX_op_ld16s_i64: | |
1377 | case INDEX_op_ld32u_i64: | |
1378 | case INDEX_op_ld32s_i64: | |
1379 | case INDEX_op_st8_i32: | |
1380 | case INDEX_op_st8_i64: | |
1381 | case INDEX_op_st16_i32: | |
1382 | case INDEX_op_st16_i64: | |
1383 | case INDEX_op_st32_i64: | |
1384 | tcg_out_ldst(s, aarch64_ldst_get_data(opc), aarch64_ldst_get_type(opc), | |
8d8db193 | 1385 | a0, a1, a2); |
4a136e0a CF |
1386 | break; |
1387 | ||
4a136e0a | 1388 | case INDEX_op_add_i32: |
90f1cd91 RH |
1389 | a2 = (int32_t)a2; |
1390 | /* FALLTHRU */ | |
1391 | case INDEX_op_add_i64: | |
1392 | if (c2) { | |
1393 | tcg_out_addsubi(s, ext, a0, a1, a2); | |
1394 | } else { | |
1395 | tcg_out_insn(s, 3502, ADD, ext, a0, a1, a2); | |
1396 | } | |
4a136e0a CF |
1397 | break; |
1398 | ||
4a136e0a | 1399 | case INDEX_op_sub_i32: |
90f1cd91 RH |
1400 | a2 = (int32_t)a2; |
1401 | /* FALLTHRU */ | |
1402 | case INDEX_op_sub_i64: | |
1403 | if (c2) { | |
1404 | tcg_out_addsubi(s, ext, a0, a1, -a2); | |
1405 | } else { | |
1406 | tcg_out_insn(s, 3502, SUB, ext, a0, a1, a2); | |
1407 | } | |
4a136e0a CF |
1408 | break; |
1409 | ||
14b155dd RH |
1410 | case INDEX_op_neg_i64: |
1411 | case INDEX_op_neg_i32: | |
1412 | tcg_out_insn(s, 3502, SUB, ext, a0, TCG_REG_XZR, a1); | |
1413 | break; | |
1414 | ||
4a136e0a | 1415 | case INDEX_op_and_i32: |
e029f293 RH |
1416 | a2 = (int32_t)a2; |
1417 | /* FALLTHRU */ | |
1418 | case INDEX_op_and_i64: | |
1419 | if (c2) { | |
1420 | tcg_out_logicali(s, I3404_ANDI, ext, a0, a1, a2); | |
1421 | } else { | |
1422 | tcg_out_insn(s, 3510, AND, ext, a0, a1, a2); | |
1423 | } | |
4a136e0a CF |
1424 | break; |
1425 | ||
14b155dd RH |
1426 | case INDEX_op_andc_i32: |
1427 | a2 = (int32_t)a2; | |
1428 | /* FALLTHRU */ | |
1429 | case INDEX_op_andc_i64: | |
1430 | if (c2) { | |
1431 | tcg_out_logicali(s, I3404_ANDI, ext, a0, a1, ~a2); | |
1432 | } else { | |
1433 | tcg_out_insn(s, 3510, BIC, ext, a0, a1, a2); | |
1434 | } | |
1435 | break; | |
1436 | ||
4a136e0a | 1437 | case INDEX_op_or_i32: |
e029f293 RH |
1438 | a2 = (int32_t)a2; |
1439 | /* FALLTHRU */ | |
1440 | case INDEX_op_or_i64: | |
1441 | if (c2) { | |
1442 | tcg_out_logicali(s, I3404_ORRI, ext, a0, a1, a2); | |
1443 | } else { | |
1444 | tcg_out_insn(s, 3510, ORR, ext, a0, a1, a2); | |
1445 | } | |
4a136e0a CF |
1446 | break; |
1447 | ||
14b155dd RH |
1448 | case INDEX_op_orc_i32: |
1449 | a2 = (int32_t)a2; | |
1450 | /* FALLTHRU */ | |
1451 | case INDEX_op_orc_i64: | |
1452 | if (c2) { | |
1453 | tcg_out_logicali(s, I3404_ORRI, ext, a0, a1, ~a2); | |
1454 | } else { | |
1455 | tcg_out_insn(s, 3510, ORN, ext, a0, a1, a2); | |
1456 | } | |
1457 | break; | |
1458 | ||
4a136e0a | 1459 | case INDEX_op_xor_i32: |
e029f293 RH |
1460 | a2 = (int32_t)a2; |
1461 | /* FALLTHRU */ | |
1462 | case INDEX_op_xor_i64: | |
1463 | if (c2) { | |
1464 | tcg_out_logicali(s, I3404_EORI, ext, a0, a1, a2); | |
1465 | } else { | |
1466 | tcg_out_insn(s, 3510, EOR, ext, a0, a1, a2); | |
1467 | } | |
4a136e0a CF |
1468 | break; |
1469 | ||
14b155dd RH |
1470 | case INDEX_op_eqv_i32: |
1471 | a2 = (int32_t)a2; | |
1472 | /* FALLTHRU */ | |
1473 | case INDEX_op_eqv_i64: | |
1474 | if (c2) { | |
1475 | tcg_out_logicali(s, I3404_EORI, ext, a0, a1, ~a2); | |
1476 | } else { | |
1477 | tcg_out_insn(s, 3510, EON, ext, a0, a1, a2); | |
1478 | } | |
1479 | break; | |
1480 | ||
1481 | case INDEX_op_not_i64: | |
1482 | case INDEX_op_not_i32: | |
1483 | tcg_out_insn(s, 3510, ORN, ext, a0, TCG_REG_XZR, a1); | |
1484 | break; | |
1485 | ||
4a136e0a | 1486 | case INDEX_op_mul_i64: |
4a136e0a | 1487 | case INDEX_op_mul_i32: |
8678b71c RH |
1488 | tcg_out_insn(s, 3509, MADD, ext, a0, a1, a2, TCG_REG_XZR); |
1489 | break; | |
1490 | ||
1491 | case INDEX_op_div_i64: | |
1492 | case INDEX_op_div_i32: | |
1493 | tcg_out_insn(s, 3508, SDIV, ext, a0, a1, a2); | |
1494 | break; | |
1495 | case INDEX_op_divu_i64: | |
1496 | case INDEX_op_divu_i32: | |
1497 | tcg_out_insn(s, 3508, UDIV, ext, a0, a1, a2); | |
1498 | break; | |
1499 | ||
1500 | case INDEX_op_rem_i64: | |
1501 | case INDEX_op_rem_i32: | |
1502 | tcg_out_insn(s, 3508, SDIV, ext, TCG_REG_TMP, a1, a2); | |
1503 | tcg_out_insn(s, 3509, MSUB, ext, a0, TCG_REG_TMP, a2, a1); | |
1504 | break; | |
1505 | case INDEX_op_remu_i64: | |
1506 | case INDEX_op_remu_i32: | |
1507 | tcg_out_insn(s, 3508, UDIV, ext, TCG_REG_TMP, a1, a2); | |
1508 | tcg_out_insn(s, 3509, MSUB, ext, a0, TCG_REG_TMP, a2, a1); | |
4a136e0a CF |
1509 | break; |
1510 | ||
1511 | case INDEX_op_shl_i64: | |
4a136e0a | 1512 | case INDEX_op_shl_i32: |
df9351e3 | 1513 | if (c2) { |
8d8db193 | 1514 | tcg_out_shl(s, ext, a0, a1, a2); |
df9351e3 RH |
1515 | } else { |
1516 | tcg_out_insn(s, 3508, LSLV, ext, a0, a1, a2); | |
4a136e0a CF |
1517 | } |
1518 | break; | |
1519 | ||
1520 | case INDEX_op_shr_i64: | |
4a136e0a | 1521 | case INDEX_op_shr_i32: |
df9351e3 | 1522 | if (c2) { |
8d8db193 | 1523 | tcg_out_shr(s, ext, a0, a1, a2); |
df9351e3 RH |
1524 | } else { |
1525 | tcg_out_insn(s, 3508, LSRV, ext, a0, a1, a2); | |
4a136e0a CF |
1526 | } |
1527 | break; | |
1528 | ||
1529 | case INDEX_op_sar_i64: | |
4a136e0a | 1530 | case INDEX_op_sar_i32: |
df9351e3 | 1531 | if (c2) { |
8d8db193 | 1532 | tcg_out_sar(s, ext, a0, a1, a2); |
df9351e3 RH |
1533 | } else { |
1534 | tcg_out_insn(s, 3508, ASRV, ext, a0, a1, a2); | |
4a136e0a CF |
1535 | } |
1536 | break; | |
1537 | ||
1538 | case INDEX_op_rotr_i64: | |
4a136e0a | 1539 | case INDEX_op_rotr_i32: |
df9351e3 | 1540 | if (c2) { |
8d8db193 | 1541 | tcg_out_rotr(s, ext, a0, a1, a2); |
df9351e3 RH |
1542 | } else { |
1543 | tcg_out_insn(s, 3508, RORV, ext, a0, a1, a2); | |
4a136e0a CF |
1544 | } |
1545 | break; | |
1546 | ||
1547 | case INDEX_op_rotl_i64: | |
df9351e3 RH |
1548 | case INDEX_op_rotl_i32: |
1549 | if (c2) { | |
8d8db193 | 1550 | tcg_out_rotl(s, ext, a0, a1, a2); |
4a136e0a | 1551 | } else { |
50573c66 | 1552 | tcg_out_insn(s, 3502, SUB, 0, TCG_REG_TMP, TCG_REG_XZR, a2); |
df9351e3 | 1553 | tcg_out_insn(s, 3508, RORV, ext, a0, a1, TCG_REG_TMP); |
4a136e0a CF |
1554 | } |
1555 | break; | |
1556 | ||
8d8db193 | 1557 | case INDEX_op_brcond_i32: |
90f1cd91 RH |
1558 | a1 = (int32_t)a1; |
1559 | /* FALLTHRU */ | |
1560 | case INDEX_op_brcond_i64: | |
cae1f6f3 | 1561 | tcg_out_brcond(s, ext, a2, a0, a1, const_args[1], args[3]); |
4a136e0a CF |
1562 | break; |
1563 | ||
4a136e0a | 1564 | case INDEX_op_setcond_i32: |
90f1cd91 RH |
1565 | a2 = (int32_t)a2; |
1566 | /* FALLTHRU */ | |
1567 | case INDEX_op_setcond_i64: | |
1568 | tcg_out_cmp(s, ext, a1, a2, c2); | |
ed7a0aa8 RH |
1569 | /* Use CSET alias of CSINC Wd, WZR, WZR, invert(cond). */ |
1570 | tcg_out_insn(s, 3506, CSINC, TCG_TYPE_I32, a0, TCG_REG_XZR, | |
1571 | TCG_REG_XZR, tcg_invert_cond(args[3])); | |
4a136e0a CF |
1572 | break; |
1573 | ||
04ce397b RH |
1574 | case INDEX_op_movcond_i32: |
1575 | a2 = (int32_t)a2; | |
1576 | /* FALLTHRU */ | |
1577 | case INDEX_op_movcond_i64: | |
1578 | tcg_out_cmp(s, ext, a1, a2, c2); | |
1579 | tcg_out_insn(s, 3506, CSEL, ext, a0, REG0(3), REG0(4), args[5]); | |
1580 | break; | |
1581 | ||
de61d14f RH |
1582 | case INDEX_op_qemu_ld_i32: |
1583 | case INDEX_op_qemu_ld_i64: | |
1584 | tcg_out_qemu_ld(s, a0, a1, a2, args[3]); | |
4a136e0a | 1585 | break; |
de61d14f RH |
1586 | case INDEX_op_qemu_st_i32: |
1587 | case INDEX_op_qemu_st_i64: | |
1588 | tcg_out_qemu_st(s, a0, a1, a2, args[3]); | |
4a136e0a CF |
1589 | break; |
1590 | ||
9c4a059d | 1591 | case INDEX_op_bswap32_i64: |
f0293414 RH |
1592 | /* Despite the _i64, this is a 32-bit bswap. */ |
1593 | ext = 0; | |
1594 | /* FALLTHRU */ | |
1595 | case INDEX_op_bswap64_i64: | |
9c4a059d | 1596 | case INDEX_op_bswap32_i32: |
8d8db193 | 1597 | tcg_out_rev(s, ext, a0, a1); |
9c4a059d CF |
1598 | break; |
1599 | case INDEX_op_bswap16_i64: | |
1600 | case INDEX_op_bswap16_i32: | |
929f8b55 | 1601 | tcg_out_rev16(s, TCG_TYPE_I32, a0, a1); |
9c4a059d CF |
1602 | break; |
1603 | ||
31f1275b | 1604 | case INDEX_op_ext8s_i64: |
31f1275b | 1605 | case INDEX_op_ext8s_i32: |
929f8b55 | 1606 | tcg_out_sxt(s, ext, MO_8, a0, a1); |
31f1275b CF |
1607 | break; |
1608 | case INDEX_op_ext16s_i64: | |
31f1275b | 1609 | case INDEX_op_ext16s_i32: |
929f8b55 | 1610 | tcg_out_sxt(s, ext, MO_16, a0, a1); |
31f1275b CF |
1611 | break; |
1612 | case INDEX_op_ext32s_i64: | |
929f8b55 | 1613 | tcg_out_sxt(s, TCG_TYPE_I64, MO_32, a0, a1); |
31f1275b CF |
1614 | break; |
1615 | case INDEX_op_ext8u_i64: | |
1616 | case INDEX_op_ext8u_i32: | |
929f8b55 | 1617 | tcg_out_uxt(s, MO_8, a0, a1); |
31f1275b CF |
1618 | break; |
1619 | case INDEX_op_ext16u_i64: | |
1620 | case INDEX_op_ext16u_i32: | |
929f8b55 | 1621 | tcg_out_uxt(s, MO_16, a0, a1); |
31f1275b CF |
1622 | break; |
1623 | case INDEX_op_ext32u_i64: | |
929f8b55 | 1624 | tcg_out_movr(s, TCG_TYPE_I32, a0, a1); |
31f1275b CF |
1625 | break; |
1626 | ||
b3c56df7 RH |
1627 | case INDEX_op_deposit_i64: |
1628 | case INDEX_op_deposit_i32: | |
1629 | tcg_out_dep(s, ext, a0, REG0(2), args[3], args[4]); | |
1630 | break; | |
1631 | ||
c6e929e7 RH |
1632 | case INDEX_op_add2_i32: |
1633 | tcg_out_addsub2(s, TCG_TYPE_I32, a0, a1, REG0(2), REG0(3), | |
1634 | (int32_t)args[4], args[5], const_args[4], | |
1635 | const_args[5], false); | |
1636 | break; | |
1637 | case INDEX_op_add2_i64: | |
1638 | tcg_out_addsub2(s, TCG_TYPE_I64, a0, a1, REG0(2), REG0(3), args[4], | |
1639 | args[5], const_args[4], const_args[5], false); | |
1640 | break; | |
1641 | case INDEX_op_sub2_i32: | |
1642 | tcg_out_addsub2(s, TCG_TYPE_I32, a0, a1, REG0(2), REG0(3), | |
1643 | (int32_t)args[4], args[5], const_args[4], | |
1644 | const_args[5], true); | |
1645 | break; | |
1646 | case INDEX_op_sub2_i64: | |
1647 | tcg_out_addsub2(s, TCG_TYPE_I64, a0, a1, REG0(2), REG0(3), args[4], | |
1648 | args[5], const_args[4], const_args[5], true); | |
1649 | break; | |
1650 | ||
1fcc9ddf RH |
1651 | case INDEX_op_muluh_i64: |
1652 | tcg_out_insn(s, 3508, UMULH, TCG_TYPE_I64, a0, a1, a2); | |
1653 | break; | |
1654 | case INDEX_op_mulsh_i64: | |
1655 | tcg_out_insn(s, 3508, SMULH, TCG_TYPE_I64, a0, a1, a2); | |
1656 | break; | |
1657 | ||
a51a6b6a RH |
1658 | case INDEX_op_mov_i64: |
1659 | case INDEX_op_mov_i32: | |
1660 | case INDEX_op_movi_i64: | |
1661 | case INDEX_op_movi_i32: | |
1662 | /* Always implemented with tcg_out_mov/i, never with tcg_out_op. */ | |
4a136e0a | 1663 | default: |
a51a6b6a RH |
1664 | /* Opcode not implemented. */ |
1665 | tcg_abort(); | |
4a136e0a | 1666 | } |
04ce397b RH |
1667 | |
1668 | #undef REG0 | |
4a136e0a CF |
1669 | } |
1670 | ||
1671 | static const TCGTargetOpDef aarch64_op_defs[] = { | |
1672 | { INDEX_op_exit_tb, { } }, | |
1673 | { INDEX_op_goto_tb, { } }, | |
1674 | { INDEX_op_call, { "ri" } }, | |
1675 | { INDEX_op_br, { } }, | |
1676 | ||
1677 | { INDEX_op_mov_i32, { "r", "r" } }, | |
1678 | { INDEX_op_mov_i64, { "r", "r" } }, | |
1679 | ||
1680 | { INDEX_op_movi_i32, { "r" } }, | |
1681 | { INDEX_op_movi_i64, { "r" } }, | |
1682 | ||
1683 | { INDEX_op_ld8u_i32, { "r", "r" } }, | |
1684 | { INDEX_op_ld8s_i32, { "r", "r" } }, | |
1685 | { INDEX_op_ld16u_i32, { "r", "r" } }, | |
1686 | { INDEX_op_ld16s_i32, { "r", "r" } }, | |
1687 | { INDEX_op_ld_i32, { "r", "r" } }, | |
1688 | { INDEX_op_ld8u_i64, { "r", "r" } }, | |
1689 | { INDEX_op_ld8s_i64, { "r", "r" } }, | |
1690 | { INDEX_op_ld16u_i64, { "r", "r" } }, | |
1691 | { INDEX_op_ld16s_i64, { "r", "r" } }, | |
1692 | { INDEX_op_ld32u_i64, { "r", "r" } }, | |
1693 | { INDEX_op_ld32s_i64, { "r", "r" } }, | |
1694 | { INDEX_op_ld_i64, { "r", "r" } }, | |
1695 | ||
1696 | { INDEX_op_st8_i32, { "r", "r" } }, | |
1697 | { INDEX_op_st16_i32, { "r", "r" } }, | |
1698 | { INDEX_op_st_i32, { "r", "r" } }, | |
1699 | { INDEX_op_st8_i64, { "r", "r" } }, | |
1700 | { INDEX_op_st16_i64, { "r", "r" } }, | |
1701 | { INDEX_op_st32_i64, { "r", "r" } }, | |
1702 | { INDEX_op_st_i64, { "r", "r" } }, | |
1703 | ||
90f1cd91 RH |
1704 | { INDEX_op_add_i32, { "r", "r", "rwA" } }, |
1705 | { INDEX_op_add_i64, { "r", "r", "rA" } }, | |
1706 | { INDEX_op_sub_i32, { "r", "r", "rwA" } }, | |
1707 | { INDEX_op_sub_i64, { "r", "r", "rA" } }, | |
4a136e0a CF |
1708 | { INDEX_op_mul_i32, { "r", "r", "r" } }, |
1709 | { INDEX_op_mul_i64, { "r", "r", "r" } }, | |
8678b71c RH |
1710 | { INDEX_op_div_i32, { "r", "r", "r" } }, |
1711 | { INDEX_op_div_i64, { "r", "r", "r" } }, | |
1712 | { INDEX_op_divu_i32, { "r", "r", "r" } }, | |
1713 | { INDEX_op_divu_i64, { "r", "r", "r" } }, | |
1714 | { INDEX_op_rem_i32, { "r", "r", "r" } }, | |
1715 | { INDEX_op_rem_i64, { "r", "r", "r" } }, | |
1716 | { INDEX_op_remu_i32, { "r", "r", "r" } }, | |
1717 | { INDEX_op_remu_i64, { "r", "r", "r" } }, | |
e029f293 RH |
1718 | { INDEX_op_and_i32, { "r", "r", "rwL" } }, |
1719 | { INDEX_op_and_i64, { "r", "r", "rL" } }, | |
1720 | { INDEX_op_or_i32, { "r", "r", "rwL" } }, | |
1721 | { INDEX_op_or_i64, { "r", "r", "rL" } }, | |
1722 | { INDEX_op_xor_i32, { "r", "r", "rwL" } }, | |
1723 | { INDEX_op_xor_i64, { "r", "r", "rL" } }, | |
14b155dd RH |
1724 | { INDEX_op_andc_i32, { "r", "r", "rwL" } }, |
1725 | { INDEX_op_andc_i64, { "r", "r", "rL" } }, | |
1726 | { INDEX_op_orc_i32, { "r", "r", "rwL" } }, | |
1727 | { INDEX_op_orc_i64, { "r", "r", "rL" } }, | |
1728 | { INDEX_op_eqv_i32, { "r", "r", "rwL" } }, | |
1729 | { INDEX_op_eqv_i64, { "r", "r", "rL" } }, | |
1730 | ||
1731 | { INDEX_op_neg_i32, { "r", "r" } }, | |
1732 | { INDEX_op_neg_i64, { "r", "r" } }, | |
1733 | { INDEX_op_not_i32, { "r", "r" } }, | |
1734 | { INDEX_op_not_i64, { "r", "r" } }, | |
4a136e0a CF |
1735 | |
1736 | { INDEX_op_shl_i32, { "r", "r", "ri" } }, | |
1737 | { INDEX_op_shr_i32, { "r", "r", "ri" } }, | |
1738 | { INDEX_op_sar_i32, { "r", "r", "ri" } }, | |
1739 | { INDEX_op_rotl_i32, { "r", "r", "ri" } }, | |
1740 | { INDEX_op_rotr_i32, { "r", "r", "ri" } }, | |
1741 | { INDEX_op_shl_i64, { "r", "r", "ri" } }, | |
1742 | { INDEX_op_shr_i64, { "r", "r", "ri" } }, | |
1743 | { INDEX_op_sar_i64, { "r", "r", "ri" } }, | |
1744 | { INDEX_op_rotl_i64, { "r", "r", "ri" } }, | |
1745 | { INDEX_op_rotr_i64, { "r", "r", "ri" } }, | |
1746 | ||
90f1cd91 RH |
1747 | { INDEX_op_brcond_i32, { "r", "rwA" } }, |
1748 | { INDEX_op_brcond_i64, { "r", "rA" } }, | |
1749 | { INDEX_op_setcond_i32, { "r", "r", "rwA" } }, | |
1750 | { INDEX_op_setcond_i64, { "r", "r", "rA" } }, | |
04ce397b RH |
1751 | { INDEX_op_movcond_i32, { "r", "r", "rwA", "rZ", "rZ" } }, |
1752 | { INDEX_op_movcond_i64, { "r", "r", "rA", "rZ", "rZ" } }, | |
4a136e0a | 1753 | |
de61d14f RH |
1754 | { INDEX_op_qemu_ld_i32, { "r", "l" } }, |
1755 | { INDEX_op_qemu_ld_i64, { "r", "l" } }, | |
1756 | { INDEX_op_qemu_st_i32, { "l", "l" } }, | |
1757 | { INDEX_op_qemu_st_i64, { "l", "l" } }, | |
9c4a059d CF |
1758 | |
1759 | { INDEX_op_bswap16_i32, { "r", "r" } }, | |
1760 | { INDEX_op_bswap32_i32, { "r", "r" } }, | |
1761 | { INDEX_op_bswap16_i64, { "r", "r" } }, | |
1762 | { INDEX_op_bswap32_i64, { "r", "r" } }, | |
1763 | { INDEX_op_bswap64_i64, { "r", "r" } }, | |
1764 | ||
31f1275b CF |
1765 | { INDEX_op_ext8s_i32, { "r", "r" } }, |
1766 | { INDEX_op_ext16s_i32, { "r", "r" } }, | |
1767 | { INDEX_op_ext8u_i32, { "r", "r" } }, | |
1768 | { INDEX_op_ext16u_i32, { "r", "r" } }, | |
1769 | ||
1770 | { INDEX_op_ext8s_i64, { "r", "r" } }, | |
1771 | { INDEX_op_ext16s_i64, { "r", "r" } }, | |
1772 | { INDEX_op_ext32s_i64, { "r", "r" } }, | |
1773 | { INDEX_op_ext8u_i64, { "r", "r" } }, | |
1774 | { INDEX_op_ext16u_i64, { "r", "r" } }, | |
1775 | { INDEX_op_ext32u_i64, { "r", "r" } }, | |
1776 | ||
b3c56df7 RH |
1777 | { INDEX_op_deposit_i32, { "r", "0", "rZ" } }, |
1778 | { INDEX_op_deposit_i64, { "r", "0", "rZ" } }, | |
1779 | ||
c6e929e7 RH |
1780 | { INDEX_op_add2_i32, { "r", "r", "rZ", "rZ", "rwA", "rwMZ" } }, |
1781 | { INDEX_op_add2_i64, { "r", "r", "rZ", "rZ", "rA", "rMZ" } }, | |
1782 | { INDEX_op_sub2_i32, { "r", "r", "rZ", "rZ", "rwA", "rwMZ" } }, | |
1783 | { INDEX_op_sub2_i64, { "r", "r", "rZ", "rZ", "rA", "rMZ" } }, | |
1784 | ||
1fcc9ddf RH |
1785 | { INDEX_op_muluh_i64, { "r", "r", "r" } }, |
1786 | { INDEX_op_mulsh_i64, { "r", "r", "r" } }, | |
1787 | ||
4a136e0a CF |
1788 | { -1 }, |
1789 | }; | |
1790 | ||
1791 | static void tcg_target_init(TCGContext *s) | |
1792 | { | |
4a136e0a CF |
1793 | tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffffffff); |
1794 | tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I64], 0, 0xffffffff); | |
1795 | ||
1796 | tcg_regset_set32(tcg_target_call_clobber_regs, 0, | |
1797 | (1 << TCG_REG_X0) | (1 << TCG_REG_X1) | | |
1798 | (1 << TCG_REG_X2) | (1 << TCG_REG_X3) | | |
1799 | (1 << TCG_REG_X4) | (1 << TCG_REG_X5) | | |
1800 | (1 << TCG_REG_X6) | (1 << TCG_REG_X7) | | |
1801 | (1 << TCG_REG_X8) | (1 << TCG_REG_X9) | | |
1802 | (1 << TCG_REG_X10) | (1 << TCG_REG_X11) | | |
1803 | (1 << TCG_REG_X12) | (1 << TCG_REG_X13) | | |
1804 | (1 << TCG_REG_X14) | (1 << TCG_REG_X15) | | |
1805 | (1 << TCG_REG_X16) | (1 << TCG_REG_X17) | | |
d82b78e4 | 1806 | (1 << TCG_REG_X18) | (1 << TCG_REG_X30)); |
4a136e0a CF |
1807 | |
1808 | tcg_regset_clear(s->reserved_regs); | |
1809 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_SP); | |
1810 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_FP); | |
1811 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_TMP); | |
1812 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_X18); /* platform register */ | |
1813 | ||
1814 | tcg_add_target_add_op_defs(aarch64_op_defs); | |
1815 | } | |
1816 | ||
38d195aa RH |
1817 | /* Saving pairs: (X19, X20) .. (X27, X28), (X29(fp), X30(lr)). */ |
1818 | #define PUSH_SIZE ((30 - 19 + 1) * 8) | |
1819 | ||
1820 | #define FRAME_SIZE \ | |
1821 | ((PUSH_SIZE \ | |
1822 | + TCG_STATIC_CALL_ARGS_SIZE \ | |
1823 | + CPU_TEMP_BUF_NLONGS * sizeof(long) \ | |
1824 | + TCG_TARGET_STACK_ALIGN - 1) \ | |
1825 | & ~(TCG_TARGET_STACK_ALIGN - 1)) | |
1826 | ||
1827 | /* We're expecting a 2 byte uleb128 encoded value. */ | |
1828 | QEMU_BUILD_BUG_ON(FRAME_SIZE >= (1 << 14)); | |
1829 | ||
1830 | /* We're expecting to use a single ADDI insn. */ | |
1831 | QEMU_BUILD_BUG_ON(FRAME_SIZE - PUSH_SIZE > 0xfff); | |
1832 | ||
4a136e0a CF |
1833 | static void tcg_target_qemu_prologue(TCGContext *s) |
1834 | { | |
4a136e0a CF |
1835 | TCGReg r; |
1836 | ||
95f72aa9 RH |
1837 | /* Push (FP, LR) and allocate space for all saved registers. */ |
1838 | tcg_out_insn(s, 3314, STP, TCG_REG_FP, TCG_REG_LR, | |
38d195aa | 1839 | TCG_REG_SP, -PUSH_SIZE, 1, 1); |
4a136e0a | 1840 | |
d82b78e4 | 1841 | /* Set up frame pointer for canonical unwinding. */ |
929f8b55 | 1842 | tcg_out_movr_sp(s, TCG_TYPE_I64, TCG_REG_FP, TCG_REG_SP); |
4a136e0a | 1843 | |
d82b78e4 | 1844 | /* Store callee-preserved regs x19..x28. */ |
4a136e0a | 1845 | for (r = TCG_REG_X19; r <= TCG_REG_X27; r += 2) { |
95f72aa9 RH |
1846 | int ofs = (r - TCG_REG_X19 + 2) * 8; |
1847 | tcg_out_insn(s, 3314, STP, r, r + 1, TCG_REG_SP, ofs, 1, 0); | |
4a136e0a CF |
1848 | } |
1849 | ||
096c46c0 RH |
1850 | /* Make stack space for TCG locals. */ |
1851 | tcg_out_insn(s, 3401, SUBI, TCG_TYPE_I64, TCG_REG_SP, TCG_REG_SP, | |
38d195aa | 1852 | FRAME_SIZE - PUSH_SIZE); |
096c46c0 | 1853 | |
95f72aa9 | 1854 | /* Inform TCG about how to find TCG locals with register, offset, size. */ |
4a136e0a CF |
1855 | tcg_set_frame(s, TCG_REG_SP, TCG_STATIC_CALL_ARGS_SIZE, |
1856 | CPU_TEMP_BUF_NLONGS * sizeof(long)); | |
1857 | ||
6a91c7c9 JK |
1858 | #if defined(CONFIG_USE_GUEST_BASE) |
1859 | if (GUEST_BASE) { | |
1860 | tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_GUEST_BASE, GUEST_BASE); | |
1861 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_GUEST_BASE); | |
1862 | } | |
1863 | #endif | |
1864 | ||
4a136e0a | 1865 | tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]); |
81d8a5ee | 1866 | tcg_out_insn(s, 3207, BR, tcg_target_call_iarg_regs[1]); |
4a136e0a CF |
1867 | |
1868 | tb_ret_addr = s->code_ptr; | |
1869 | ||
096c46c0 RH |
1870 | /* Remove TCG locals stack space. */ |
1871 | tcg_out_insn(s, 3401, ADDI, TCG_TYPE_I64, TCG_REG_SP, TCG_REG_SP, | |
38d195aa | 1872 | FRAME_SIZE - PUSH_SIZE); |
4a136e0a | 1873 | |
95f72aa9 | 1874 | /* Restore registers x19..x28. */ |
4a136e0a | 1875 | for (r = TCG_REG_X19; r <= TCG_REG_X27; r += 2) { |
95f72aa9 RH |
1876 | int ofs = (r - TCG_REG_X19 + 2) * 8; |
1877 | tcg_out_insn(s, 3314, LDP, r, r + 1, TCG_REG_SP, ofs, 1, 0); | |
4a136e0a CF |
1878 | } |
1879 | ||
95f72aa9 RH |
1880 | /* Pop (FP, LR), restore SP to previous frame. */ |
1881 | tcg_out_insn(s, 3314, LDP, TCG_REG_FP, TCG_REG_LR, | |
38d195aa | 1882 | TCG_REG_SP, PUSH_SIZE, 0, 1); |
81d8a5ee | 1883 | tcg_out_insn(s, 3207, RET, TCG_REG_LR); |
4a136e0a | 1884 | } |
38d195aa RH |
1885 | |
1886 | typedef struct { | |
1887 | DebugFrameCIE cie; | |
1888 | DebugFrameFDEHeader fde; | |
1889 | uint8_t fde_def_cfa[4]; | |
1890 | uint8_t fde_reg_ofs[24]; | |
1891 | } DebugFrame; | |
1892 | ||
1893 | #define ELF_HOST_MACHINE EM_AARCH64 | |
1894 | ||
1895 | static DebugFrame debug_frame = { | |
1896 | .cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */ | |
1897 | .cie.id = -1, | |
1898 | .cie.version = 1, | |
1899 | .cie.code_align = 1, | |
1900 | .cie.data_align = 0x78, /* sleb128 -8 */ | |
1901 | .cie.return_column = TCG_REG_LR, | |
1902 | ||
1903 | /* Total FDE size does not include the "len" member. */ | |
1904 | .fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, fde.cie_offset), | |
1905 | ||
1906 | .fde_def_cfa = { | |
1907 | 12, TCG_REG_SP, /* DW_CFA_def_cfa sp, ... */ | |
1908 | (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */ | |
1909 | (FRAME_SIZE >> 7) | |
1910 | }, | |
1911 | .fde_reg_ofs = { | |
1912 | 0x80 + 28, 1, /* DW_CFA_offset, x28, -8 */ | |
1913 | 0x80 + 27, 2, /* DW_CFA_offset, x27, -16 */ | |
1914 | 0x80 + 26, 3, /* DW_CFA_offset, x26, -24 */ | |
1915 | 0x80 + 25, 4, /* DW_CFA_offset, x25, -32 */ | |
1916 | 0x80 + 24, 5, /* DW_CFA_offset, x24, -40 */ | |
1917 | 0x80 + 23, 6, /* DW_CFA_offset, x23, -48 */ | |
1918 | 0x80 + 22, 7, /* DW_CFA_offset, x22, -56 */ | |
1919 | 0x80 + 21, 8, /* DW_CFA_offset, x21, -64 */ | |
1920 | 0x80 + 20, 9, /* DW_CFA_offset, x20, -72 */ | |
1921 | 0x80 + 19, 10, /* DW_CFA_offset, x1p, -80 */ | |
1922 | 0x80 + 30, 11, /* DW_CFA_offset, lr, -88 */ | |
1923 | 0x80 + 29, 12, /* DW_CFA_offset, fp, -96 */ | |
1924 | } | |
1925 | }; | |
1926 | ||
1927 | void tcg_register_jit(void *buf, size_t buf_size) | |
1928 | { | |
1929 | debug_frame.fde.func_start = (intptr_t)buf; | |
1930 | debug_frame.fde.func_len = buf_size; | |
1931 | ||
1932 | tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame)); | |
1933 | } |