]> git.proxmox.com Git - mirror_qemu.git/blob - tcg/arm/tcg-target.inc.c
tcg/arm: Restrict constant pool displacement to 12 bits
[mirror_qemu.git] / tcg / arm / tcg-target.inc.c
1 /*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2008 Andrzej Zaborowski
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25 #include "elf.h"
26 #include "tcg-pool.inc.c"
27
28 int arm_arch = __ARM_ARCH;
29
30 #ifndef use_idiv_instructions
31 bool use_idiv_instructions;
32 #endif
33
34 /* ??? Ought to think about changing CONFIG_SOFTMMU to always defined. */
35 #ifdef CONFIG_SOFTMMU
36 # define USING_SOFTMMU 1
37 #else
38 # define USING_SOFTMMU 0
39 #endif
40
41 #ifdef CONFIG_DEBUG_TCG
42 static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
43 "%r0",
44 "%r1",
45 "%r2",
46 "%r3",
47 "%r4",
48 "%r5",
49 "%r6",
50 "%r7",
51 "%r8",
52 "%r9",
53 "%r10",
54 "%r11",
55 "%r12",
56 "%r13",
57 "%r14",
58 "%pc",
59 };
60 #endif
61
62 static const int tcg_target_reg_alloc_order[] = {
63 TCG_REG_R4,
64 TCG_REG_R5,
65 TCG_REG_R6,
66 TCG_REG_R7,
67 TCG_REG_R8,
68 TCG_REG_R9,
69 TCG_REG_R10,
70 TCG_REG_R11,
71 TCG_REG_R13,
72 TCG_REG_R0,
73 TCG_REG_R1,
74 TCG_REG_R2,
75 TCG_REG_R3,
76 TCG_REG_R12,
77 TCG_REG_R14,
78 };
79
80 static const int tcg_target_call_iarg_regs[4] = {
81 TCG_REG_R0, TCG_REG_R1, TCG_REG_R2, TCG_REG_R3
82 };
83 static const int tcg_target_call_oarg_regs[2] = {
84 TCG_REG_R0, TCG_REG_R1
85 };
86
87 #define TCG_REG_TMP TCG_REG_R12
88
89 enum arm_cond_code_e {
90 COND_EQ = 0x0,
91 COND_NE = 0x1,
92 COND_CS = 0x2, /* Unsigned greater or equal */
93 COND_CC = 0x3, /* Unsigned less than */
94 COND_MI = 0x4, /* Negative */
95 COND_PL = 0x5, /* Zero or greater */
96 COND_VS = 0x6, /* Overflow */
97 COND_VC = 0x7, /* No overflow */
98 COND_HI = 0x8, /* Unsigned greater than */
99 COND_LS = 0x9, /* Unsigned less or equal */
100 COND_GE = 0xa,
101 COND_LT = 0xb,
102 COND_GT = 0xc,
103 COND_LE = 0xd,
104 COND_AL = 0xe,
105 };
106
107 #define TO_CPSR (1 << 20)
108
109 #define SHIFT_IMM_LSL(im) (((im) << 7) | 0x00)
110 #define SHIFT_IMM_LSR(im) (((im) << 7) | 0x20)
111 #define SHIFT_IMM_ASR(im) (((im) << 7) | 0x40)
112 #define SHIFT_IMM_ROR(im) (((im) << 7) | 0x60)
113 #define SHIFT_REG_LSL(rs) (((rs) << 8) | 0x10)
114 #define SHIFT_REG_LSR(rs) (((rs) << 8) | 0x30)
115 #define SHIFT_REG_ASR(rs) (((rs) << 8) | 0x50)
116 #define SHIFT_REG_ROR(rs) (((rs) << 8) | 0x70)
117
118 typedef enum {
119 ARITH_AND = 0x0 << 21,
120 ARITH_EOR = 0x1 << 21,
121 ARITH_SUB = 0x2 << 21,
122 ARITH_RSB = 0x3 << 21,
123 ARITH_ADD = 0x4 << 21,
124 ARITH_ADC = 0x5 << 21,
125 ARITH_SBC = 0x6 << 21,
126 ARITH_RSC = 0x7 << 21,
127 ARITH_TST = 0x8 << 21 | TO_CPSR,
128 ARITH_CMP = 0xa << 21 | TO_CPSR,
129 ARITH_CMN = 0xb << 21 | TO_CPSR,
130 ARITH_ORR = 0xc << 21,
131 ARITH_MOV = 0xd << 21,
132 ARITH_BIC = 0xe << 21,
133 ARITH_MVN = 0xf << 21,
134
135 INSN_CLZ = 0x016f0f10,
136 INSN_RBIT = 0x06ff0f30,
137
138 INSN_LDR_IMM = 0x04100000,
139 INSN_LDR_REG = 0x06100000,
140 INSN_STR_IMM = 0x04000000,
141 INSN_STR_REG = 0x06000000,
142
143 INSN_LDRH_IMM = 0x005000b0,
144 INSN_LDRH_REG = 0x001000b0,
145 INSN_LDRSH_IMM = 0x005000f0,
146 INSN_LDRSH_REG = 0x001000f0,
147 INSN_STRH_IMM = 0x004000b0,
148 INSN_STRH_REG = 0x000000b0,
149
150 INSN_LDRB_IMM = 0x04500000,
151 INSN_LDRB_REG = 0x06500000,
152 INSN_LDRSB_IMM = 0x005000d0,
153 INSN_LDRSB_REG = 0x001000d0,
154 INSN_STRB_IMM = 0x04400000,
155 INSN_STRB_REG = 0x06400000,
156
157 INSN_LDRD_IMM = 0x004000d0,
158 INSN_LDRD_REG = 0x000000d0,
159 INSN_STRD_IMM = 0x004000f0,
160 INSN_STRD_REG = 0x000000f0,
161
162 INSN_DMB_ISH = 0xf57ff05b,
163 INSN_DMB_MCR = 0xee070fba,
164
165 /* Architected nop introduced in v6k. */
166 /* ??? This is an MSR (imm) 0,0,0 insn. Anyone know if this
167 also Just So Happened to do nothing on pre-v6k so that we
168 don't need to conditionalize it? */
169 INSN_NOP_v6k = 0xe320f000,
170 /* Otherwise the assembler uses mov r0,r0 */
171 INSN_NOP_v4 = (COND_AL << 28) | ARITH_MOV,
172 } ARMInsn;
173
174 #define INSN_NOP (use_armv7_instructions ? INSN_NOP_v6k : INSN_NOP_v4)
175
176 static const uint8_t tcg_cond_to_arm_cond[] = {
177 [TCG_COND_EQ] = COND_EQ,
178 [TCG_COND_NE] = COND_NE,
179 [TCG_COND_LT] = COND_LT,
180 [TCG_COND_GE] = COND_GE,
181 [TCG_COND_LE] = COND_LE,
182 [TCG_COND_GT] = COND_GT,
183 /* unsigned */
184 [TCG_COND_LTU] = COND_CC,
185 [TCG_COND_GEU] = COND_CS,
186 [TCG_COND_LEU] = COND_LS,
187 [TCG_COND_GTU] = COND_HI,
188 };
189
190 static inline bool reloc_pc24(tcg_insn_unit *code_ptr, tcg_insn_unit *target)
191 {
192 ptrdiff_t offset = (tcg_ptr_byte_diff(target, code_ptr) - 8) >> 2;
193 if (offset == sextract32(offset, 0, 24)) {
194 *code_ptr = (*code_ptr & ~0xffffff) | (offset & 0xffffff);
195 return true;
196 }
197 return false;
198 }
199
200 static inline bool reloc_pc13(tcg_insn_unit *code_ptr, tcg_insn_unit *target)
201 {
202 ptrdiff_t offset = tcg_ptr_byte_diff(target, code_ptr) - 8;
203
204 if (offset >= -0xfff && offset <= 0xfff) {
205 tcg_insn_unit insn = *code_ptr;
206 bool u = (offset >= 0);
207 if (!u) {
208 offset = -offset;
209 }
210 insn = deposit32(insn, 23, 1, u);
211 insn = deposit32(insn, 0, 12, offset);
212 *code_ptr = insn;
213 return true;
214 }
215 return false;
216 }
217
218 static bool patch_reloc(tcg_insn_unit *code_ptr, int type,
219 intptr_t value, intptr_t addend)
220 {
221 tcg_debug_assert(addend == 0);
222
223 if (type == R_ARM_PC24) {
224 return reloc_pc24(code_ptr, (tcg_insn_unit *)value);
225 } else if (type == R_ARM_PC13) {
226 return reloc_pc13(code_ptr, (tcg_insn_unit *)value);
227 } else {
228 g_assert_not_reached();
229 }
230 }
231
232 #define TCG_CT_CONST_ARM 0x100
233 #define TCG_CT_CONST_INV 0x200
234 #define TCG_CT_CONST_NEG 0x400
235 #define TCG_CT_CONST_ZERO 0x800
236
237 /* parse target specific constraints */
238 static const char *target_parse_constraint(TCGArgConstraint *ct,
239 const char *ct_str, TCGType type)
240 {
241 switch (*ct_str++) {
242 case 'I':
243 ct->ct |= TCG_CT_CONST_ARM;
244 break;
245 case 'K':
246 ct->ct |= TCG_CT_CONST_INV;
247 break;
248 case 'N': /* The gcc constraint letter is L, already used here. */
249 ct->ct |= TCG_CT_CONST_NEG;
250 break;
251 case 'Z':
252 ct->ct |= TCG_CT_CONST_ZERO;
253 break;
254
255 case 'r':
256 ct->ct |= TCG_CT_REG;
257 ct->u.regs = 0xffff;
258 break;
259
260 /* qemu_ld address */
261 case 'l':
262 ct->ct |= TCG_CT_REG;
263 ct->u.regs = 0xffff;
264 #ifdef CONFIG_SOFTMMU
265 /* r0-r2,lr will be overwritten when reading the tlb entry,
266 so don't use these. */
267 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R0);
268 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R1);
269 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R2);
270 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R14);
271 #endif
272 break;
273
274 /* qemu_st address & data */
275 case 's':
276 ct->ct |= TCG_CT_REG;
277 ct->u.regs = 0xffff;
278 /* r0-r2 will be overwritten when reading the tlb entry (softmmu only)
279 and r0-r1 doing the byte swapping, so don't use these. */
280 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R0);
281 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R1);
282 #if defined(CONFIG_SOFTMMU)
283 /* Avoid clashes with registers being used for helper args */
284 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R2);
285 #if TARGET_LONG_BITS == 64
286 /* Avoid clashes with registers being used for helper args */
287 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3);
288 #endif
289 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R14);
290 #endif
291 break;
292
293 default:
294 return NULL;
295 }
296 return ct_str;
297 }
298
299 static inline uint32_t rotl(uint32_t val, int n)
300 {
301 return (val << n) | (val >> (32 - n));
302 }
303
304 /* ARM immediates for ALU instructions are made of an unsigned 8-bit
305 right-rotated by an even amount between 0 and 30. */
306 static inline int encode_imm(uint32_t imm)
307 {
308 int shift;
309
310 /* simple case, only lower bits */
311 if ((imm & ~0xff) == 0)
312 return 0;
313 /* then try a simple even shift */
314 shift = ctz32(imm) & ~1;
315 if (((imm >> shift) & ~0xff) == 0)
316 return 32 - shift;
317 /* now try harder with rotations */
318 if ((rotl(imm, 2) & ~0xff) == 0)
319 return 2;
320 if ((rotl(imm, 4) & ~0xff) == 0)
321 return 4;
322 if ((rotl(imm, 6) & ~0xff) == 0)
323 return 6;
324 /* imm can't be encoded */
325 return -1;
326 }
327
328 static inline int check_fit_imm(uint32_t imm)
329 {
330 return encode_imm(imm) >= 0;
331 }
332
333 /* Test if a constant matches the constraint.
334 * TODO: define constraints for:
335 *
336 * ldr/str offset: between -0xfff and 0xfff
337 * ldrh/strh offset: between -0xff and 0xff
338 * mov operand2: values represented with x << (2 * y), x < 0x100
339 * add, sub, eor...: ditto
340 */
341 static inline int tcg_target_const_match(tcg_target_long val, TCGType type,
342 const TCGArgConstraint *arg_ct)
343 {
344 int ct;
345 ct = arg_ct->ct;
346 if (ct & TCG_CT_CONST) {
347 return 1;
348 } else if ((ct & TCG_CT_CONST_ARM) && check_fit_imm(val)) {
349 return 1;
350 } else if ((ct & TCG_CT_CONST_INV) && check_fit_imm(~val)) {
351 return 1;
352 } else if ((ct & TCG_CT_CONST_NEG) && check_fit_imm(-val)) {
353 return 1;
354 } else if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
355 return 1;
356 } else {
357 return 0;
358 }
359 }
360
361 static inline void tcg_out_b(TCGContext *s, int cond, int32_t offset)
362 {
363 tcg_out32(s, (cond << 28) | 0x0a000000 |
364 (((offset - 8) >> 2) & 0x00ffffff));
365 }
366
367 static inline void tcg_out_bl(TCGContext *s, int cond, int32_t offset)
368 {
369 tcg_out32(s, (cond << 28) | 0x0b000000 |
370 (((offset - 8) >> 2) & 0x00ffffff));
371 }
372
373 static inline void tcg_out_blx(TCGContext *s, int cond, int rn)
374 {
375 tcg_out32(s, (cond << 28) | 0x012fff30 | rn);
376 }
377
378 static inline void tcg_out_blx_imm(TCGContext *s, int32_t offset)
379 {
380 tcg_out32(s, 0xfa000000 | ((offset & 2) << 23) |
381 (((offset - 8) >> 2) & 0x00ffffff));
382 }
383
384 static inline void tcg_out_dat_reg(TCGContext *s,
385 int cond, int opc, int rd, int rn, int rm, int shift)
386 {
387 tcg_out32(s, (cond << 28) | (0 << 25) | opc |
388 (rn << 16) | (rd << 12) | shift | rm);
389 }
390
391 static inline void tcg_out_nop(TCGContext *s)
392 {
393 tcg_out32(s, INSN_NOP);
394 }
395
396 static inline void tcg_out_mov_reg(TCGContext *s, int cond, int rd, int rm)
397 {
398 /* Simple reg-reg move, optimising out the 'do nothing' case */
399 if (rd != rm) {
400 tcg_out_dat_reg(s, cond, ARITH_MOV, rd, 0, rm, SHIFT_IMM_LSL(0));
401 }
402 }
403
404 static inline void tcg_out_bx(TCGContext *s, int cond, TCGReg rn)
405 {
406 /* Unless the C portion of QEMU is compiled as thumb, we don't
407 actually need true BX semantics; merely a branch to an address
408 held in a register. */
409 if (use_armv5t_instructions) {
410 tcg_out32(s, (cond << 28) | 0x012fff10 | rn);
411 } else {
412 tcg_out_mov_reg(s, cond, TCG_REG_PC, rn);
413 }
414 }
415
416 static inline void tcg_out_dat_imm(TCGContext *s,
417 int cond, int opc, int rd, int rn, int im)
418 {
419 tcg_out32(s, (cond << 28) | (1 << 25) | opc |
420 (rn << 16) | (rd << 12) | im);
421 }
422
423 /* Note that this routine is used for both LDR and LDRH formats, so we do
424 not wish to include an immediate shift at this point. */
425 static void tcg_out_memop_r(TCGContext *s, int cond, ARMInsn opc, TCGReg rt,
426 TCGReg rn, TCGReg rm, bool u, bool p, bool w)
427 {
428 tcg_out32(s, (cond << 28) | opc | (u << 23) | (p << 24)
429 | (w << 21) | (rn << 16) | (rt << 12) | rm);
430 }
431
432 static void tcg_out_memop_8(TCGContext *s, int cond, ARMInsn opc, TCGReg rt,
433 TCGReg rn, int imm8, bool p, bool w)
434 {
435 bool u = 1;
436 if (imm8 < 0) {
437 imm8 = -imm8;
438 u = 0;
439 }
440 tcg_out32(s, (cond << 28) | opc | (u << 23) | (p << 24) | (w << 21) |
441 (rn << 16) | (rt << 12) | ((imm8 & 0xf0) << 4) | (imm8 & 0xf));
442 }
443
444 static void tcg_out_memop_12(TCGContext *s, int cond, ARMInsn opc, TCGReg rt,
445 TCGReg rn, int imm12, bool p, bool w)
446 {
447 bool u = 1;
448 if (imm12 < 0) {
449 imm12 = -imm12;
450 u = 0;
451 }
452 tcg_out32(s, (cond << 28) | opc | (u << 23) | (p << 24) | (w << 21) |
453 (rn << 16) | (rt << 12) | imm12);
454 }
455
456 static inline void tcg_out_ld32_12(TCGContext *s, int cond, TCGReg rt,
457 TCGReg rn, int imm12)
458 {
459 tcg_out_memop_12(s, cond, INSN_LDR_IMM, rt, rn, imm12, 1, 0);
460 }
461
462 static inline void tcg_out_st32_12(TCGContext *s, int cond, TCGReg rt,
463 TCGReg rn, int imm12)
464 {
465 tcg_out_memop_12(s, cond, INSN_STR_IMM, rt, rn, imm12, 1, 0);
466 }
467
468 static inline void tcg_out_ld32_r(TCGContext *s, int cond, TCGReg rt,
469 TCGReg rn, TCGReg rm)
470 {
471 tcg_out_memop_r(s, cond, INSN_LDR_REG, rt, rn, rm, 1, 1, 0);
472 }
473
474 static inline void tcg_out_st32_r(TCGContext *s, int cond, TCGReg rt,
475 TCGReg rn, TCGReg rm)
476 {
477 tcg_out_memop_r(s, cond, INSN_STR_REG, rt, rn, rm, 1, 1, 0);
478 }
479
480 static inline void tcg_out_ldrd_8(TCGContext *s, int cond, TCGReg rt,
481 TCGReg rn, int imm8)
482 {
483 tcg_out_memop_8(s, cond, INSN_LDRD_IMM, rt, rn, imm8, 1, 0);
484 }
485
486 static inline void tcg_out_ldrd_r(TCGContext *s, int cond, TCGReg rt,
487 TCGReg rn, TCGReg rm)
488 {
489 tcg_out_memop_r(s, cond, INSN_LDRD_REG, rt, rn, rm, 1, 1, 0);
490 }
491
492 static inline void tcg_out_ldrd_rwb(TCGContext *s, int cond, TCGReg rt,
493 TCGReg rn, TCGReg rm)
494 {
495 tcg_out_memop_r(s, cond, INSN_LDRD_REG, rt, rn, rm, 1, 1, 1);
496 }
497
498 static inline void tcg_out_strd_8(TCGContext *s, int cond, TCGReg rt,
499 TCGReg rn, int imm8)
500 {
501 tcg_out_memop_8(s, cond, INSN_STRD_IMM, rt, rn, imm8, 1, 0);
502 }
503
504 static inline void tcg_out_strd_r(TCGContext *s, int cond, TCGReg rt,
505 TCGReg rn, TCGReg rm)
506 {
507 tcg_out_memop_r(s, cond, INSN_STRD_REG, rt, rn, rm, 1, 1, 0);
508 }
509
510 /* Register pre-increment with base writeback. */
511 static inline void tcg_out_ld32_rwb(TCGContext *s, int cond, TCGReg rt,
512 TCGReg rn, TCGReg rm)
513 {
514 tcg_out_memop_r(s, cond, INSN_LDR_REG, rt, rn, rm, 1, 1, 1);
515 }
516
517 static inline void tcg_out_st32_rwb(TCGContext *s, int cond, TCGReg rt,
518 TCGReg rn, TCGReg rm)
519 {
520 tcg_out_memop_r(s, cond, INSN_STR_REG, rt, rn, rm, 1, 1, 1);
521 }
522
523 static inline void tcg_out_ld16u_8(TCGContext *s, int cond, TCGReg rt,
524 TCGReg rn, int imm8)
525 {
526 tcg_out_memop_8(s, cond, INSN_LDRH_IMM, rt, rn, imm8, 1, 0);
527 }
528
529 static inline void tcg_out_st16_8(TCGContext *s, int cond, TCGReg rt,
530 TCGReg rn, int imm8)
531 {
532 tcg_out_memop_8(s, cond, INSN_STRH_IMM, rt, rn, imm8, 1, 0);
533 }
534
535 static inline void tcg_out_ld16u_r(TCGContext *s, int cond, TCGReg rt,
536 TCGReg rn, TCGReg rm)
537 {
538 tcg_out_memop_r(s, cond, INSN_LDRH_REG, rt, rn, rm, 1, 1, 0);
539 }
540
541 static inline void tcg_out_st16_r(TCGContext *s, int cond, TCGReg rt,
542 TCGReg rn, TCGReg rm)
543 {
544 tcg_out_memop_r(s, cond, INSN_STRH_REG, rt, rn, rm, 1, 1, 0);
545 }
546
547 static inline void tcg_out_ld16s_8(TCGContext *s, int cond, TCGReg rt,
548 TCGReg rn, int imm8)
549 {
550 tcg_out_memop_8(s, cond, INSN_LDRSH_IMM, rt, rn, imm8, 1, 0);
551 }
552
553 static inline void tcg_out_ld16s_r(TCGContext *s, int cond, TCGReg rt,
554 TCGReg rn, TCGReg rm)
555 {
556 tcg_out_memop_r(s, cond, INSN_LDRSH_REG, rt, rn, rm, 1, 1, 0);
557 }
558
559 static inline void tcg_out_ld8_12(TCGContext *s, int cond, TCGReg rt,
560 TCGReg rn, int imm12)
561 {
562 tcg_out_memop_12(s, cond, INSN_LDRB_IMM, rt, rn, imm12, 1, 0);
563 }
564
565 static inline void tcg_out_st8_12(TCGContext *s, int cond, TCGReg rt,
566 TCGReg rn, int imm12)
567 {
568 tcg_out_memop_12(s, cond, INSN_STRB_IMM, rt, rn, imm12, 1, 0);
569 }
570
571 static inline void tcg_out_ld8_r(TCGContext *s, int cond, TCGReg rt,
572 TCGReg rn, TCGReg rm)
573 {
574 tcg_out_memop_r(s, cond, INSN_LDRB_REG, rt, rn, rm, 1, 1, 0);
575 }
576
577 static inline void tcg_out_st8_r(TCGContext *s, int cond, TCGReg rt,
578 TCGReg rn, TCGReg rm)
579 {
580 tcg_out_memop_r(s, cond, INSN_STRB_REG, rt, rn, rm, 1, 1, 0);
581 }
582
583 static inline void tcg_out_ld8s_8(TCGContext *s, int cond, TCGReg rt,
584 TCGReg rn, int imm8)
585 {
586 tcg_out_memop_8(s, cond, INSN_LDRSB_IMM, rt, rn, imm8, 1, 0);
587 }
588
589 static inline void tcg_out_ld8s_r(TCGContext *s, int cond, TCGReg rt,
590 TCGReg rn, TCGReg rm)
591 {
592 tcg_out_memop_r(s, cond, INSN_LDRSB_REG, rt, rn, rm, 1, 1, 0);
593 }
594
595 static void tcg_out_movi_pool(TCGContext *s, int cond, int rd, uint32_t arg)
596 {
597 new_pool_label(s, arg, R_ARM_PC13, s->code_ptr, 0);
598 tcg_out_ld32_12(s, cond, rd, TCG_REG_PC, 0);
599 }
600
601 static void tcg_out_movi32(TCGContext *s, int cond, int rd, uint32_t arg)
602 {
603 int rot, diff, opc, sh1, sh2;
604 uint32_t tt0, tt1, tt2;
605
606 /* Check a single MOV/MVN before anything else. */
607 rot = encode_imm(arg);
608 if (rot >= 0) {
609 tcg_out_dat_imm(s, cond, ARITH_MOV, rd, 0,
610 rotl(arg, rot) | (rot << 7));
611 return;
612 }
613 rot = encode_imm(~arg);
614 if (rot >= 0) {
615 tcg_out_dat_imm(s, cond, ARITH_MVN, rd, 0,
616 rotl(~arg, rot) | (rot << 7));
617 return;
618 }
619
620 /* Check for a pc-relative address. This will usually be the TB,
621 or within the TB, which is immediately before the code block. */
622 diff = arg - ((intptr_t)s->code_ptr + 8);
623 if (diff >= 0) {
624 rot = encode_imm(diff);
625 if (rot >= 0) {
626 tcg_out_dat_imm(s, cond, ARITH_ADD, rd, TCG_REG_PC,
627 rotl(diff, rot) | (rot << 7));
628 return;
629 }
630 } else {
631 rot = encode_imm(-diff);
632 if (rot >= 0) {
633 tcg_out_dat_imm(s, cond, ARITH_SUB, rd, TCG_REG_PC,
634 rotl(-diff, rot) | (rot << 7));
635 return;
636 }
637 }
638
639 /* Use movw + movt. */
640 if (use_armv7_instructions) {
641 /* movw */
642 tcg_out32(s, (cond << 28) | 0x03000000 | (rd << 12)
643 | ((arg << 4) & 0x000f0000) | (arg & 0xfff));
644 if (arg & 0xffff0000) {
645 /* movt */
646 tcg_out32(s, (cond << 28) | 0x03400000 | (rd << 12)
647 | ((arg >> 12) & 0x000f0000) | ((arg >> 16) & 0xfff));
648 }
649 return;
650 }
651
652 /* Look for sequences of two insns. If we have lots of 1's, we can
653 shorten the sequence by beginning with mvn and then clearing
654 higher bits with eor. */
655 tt0 = arg;
656 opc = ARITH_MOV;
657 if (ctpop32(arg) > 16) {
658 tt0 = ~arg;
659 opc = ARITH_MVN;
660 }
661 sh1 = ctz32(tt0) & ~1;
662 tt1 = tt0 & ~(0xff << sh1);
663 sh2 = ctz32(tt1) & ~1;
664 tt2 = tt1 & ~(0xff << sh2);
665 if (tt2 == 0) {
666 rot = ((32 - sh1) << 7) & 0xf00;
667 tcg_out_dat_imm(s, cond, opc, rd, 0, ((tt0 >> sh1) & 0xff) | rot);
668 rot = ((32 - sh2) << 7) & 0xf00;
669 tcg_out_dat_imm(s, cond, ARITH_EOR, rd, rd,
670 ((tt0 >> sh2) & 0xff) | rot);
671 return;
672 }
673
674 /* Otherwise, drop it into the constant pool. */
675 tcg_out_movi_pool(s, cond, rd, arg);
676 }
677
678 static inline void tcg_out_dat_rI(TCGContext *s, int cond, int opc, TCGArg dst,
679 TCGArg lhs, TCGArg rhs, int rhs_is_const)
680 {
681 /* Emit either the reg,imm or reg,reg form of a data-processing insn.
682 * rhs must satisfy the "rI" constraint.
683 */
684 if (rhs_is_const) {
685 int rot = encode_imm(rhs);
686 tcg_debug_assert(rot >= 0);
687 tcg_out_dat_imm(s, cond, opc, dst, lhs, rotl(rhs, rot) | (rot << 7));
688 } else {
689 tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0));
690 }
691 }
692
693 static void tcg_out_dat_rIK(TCGContext *s, int cond, int opc, int opinv,
694 TCGReg dst, TCGReg lhs, TCGArg rhs,
695 bool rhs_is_const)
696 {
697 /* Emit either the reg,imm or reg,reg form of a data-processing insn.
698 * rhs must satisfy the "rIK" constraint.
699 */
700 if (rhs_is_const) {
701 int rot = encode_imm(rhs);
702 if (rot < 0) {
703 rhs = ~rhs;
704 rot = encode_imm(rhs);
705 tcg_debug_assert(rot >= 0);
706 opc = opinv;
707 }
708 tcg_out_dat_imm(s, cond, opc, dst, lhs, rotl(rhs, rot) | (rot << 7));
709 } else {
710 tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0));
711 }
712 }
713
714 static void tcg_out_dat_rIN(TCGContext *s, int cond, int opc, int opneg,
715 TCGArg dst, TCGArg lhs, TCGArg rhs,
716 bool rhs_is_const)
717 {
718 /* Emit either the reg,imm or reg,reg form of a data-processing insn.
719 * rhs must satisfy the "rIN" constraint.
720 */
721 if (rhs_is_const) {
722 int rot = encode_imm(rhs);
723 if (rot < 0) {
724 rhs = -rhs;
725 rot = encode_imm(rhs);
726 tcg_debug_assert(rot >= 0);
727 opc = opneg;
728 }
729 tcg_out_dat_imm(s, cond, opc, dst, lhs, rotl(rhs, rot) | (rot << 7));
730 } else {
731 tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0));
732 }
733 }
734
735 static inline void tcg_out_mul32(TCGContext *s, int cond, TCGReg rd,
736 TCGReg rn, TCGReg rm)
737 {
738 /* if ArchVersion() < 6 && d == n then UNPREDICTABLE; */
739 if (!use_armv6_instructions && rd == rn) {
740 if (rd == rm) {
741 /* rd == rn == rm; copy an input to tmp first. */
742 tcg_out_mov_reg(s, cond, TCG_REG_TMP, rn);
743 rm = rn = TCG_REG_TMP;
744 } else {
745 rn = rm;
746 rm = rd;
747 }
748 }
749 /* mul */
750 tcg_out32(s, (cond << 28) | 0x90 | (rd << 16) | (rm << 8) | rn);
751 }
752
753 static inline void tcg_out_umull32(TCGContext *s, int cond, TCGReg rd0,
754 TCGReg rd1, TCGReg rn, TCGReg rm)
755 {
756 /* if ArchVersion() < 6 && (dHi == n || dLo == n) then UNPREDICTABLE; */
757 if (!use_armv6_instructions && (rd0 == rn || rd1 == rn)) {
758 if (rd0 == rm || rd1 == rm) {
759 tcg_out_mov_reg(s, cond, TCG_REG_TMP, rn);
760 rn = TCG_REG_TMP;
761 } else {
762 TCGReg t = rn;
763 rn = rm;
764 rm = t;
765 }
766 }
767 /* umull */
768 tcg_out32(s, (cond << 28) | 0x00800090 |
769 (rd1 << 16) | (rd0 << 12) | (rm << 8) | rn);
770 }
771
772 static inline void tcg_out_smull32(TCGContext *s, int cond, TCGReg rd0,
773 TCGReg rd1, TCGReg rn, TCGReg rm)
774 {
775 /* if ArchVersion() < 6 && (dHi == n || dLo == n) then UNPREDICTABLE; */
776 if (!use_armv6_instructions && (rd0 == rn || rd1 == rn)) {
777 if (rd0 == rm || rd1 == rm) {
778 tcg_out_mov_reg(s, cond, TCG_REG_TMP, rn);
779 rn = TCG_REG_TMP;
780 } else {
781 TCGReg t = rn;
782 rn = rm;
783 rm = t;
784 }
785 }
786 /* smull */
787 tcg_out32(s, (cond << 28) | 0x00c00090 |
788 (rd1 << 16) | (rd0 << 12) | (rm << 8) | rn);
789 }
790
791 static inline void tcg_out_sdiv(TCGContext *s, int cond, int rd, int rn, int rm)
792 {
793 tcg_out32(s, 0x0710f010 | (cond << 28) | (rd << 16) | rn | (rm << 8));
794 }
795
796 static inline void tcg_out_udiv(TCGContext *s, int cond, int rd, int rn, int rm)
797 {
798 tcg_out32(s, 0x0730f010 | (cond << 28) | (rd << 16) | rn | (rm << 8));
799 }
800
801 static inline void tcg_out_ext8s(TCGContext *s, int cond,
802 int rd, int rn)
803 {
804 if (use_armv6_instructions) {
805 /* sxtb */
806 tcg_out32(s, 0x06af0070 | (cond << 28) | (rd << 12) | rn);
807 } else {
808 tcg_out_dat_reg(s, cond, ARITH_MOV,
809 rd, 0, rn, SHIFT_IMM_LSL(24));
810 tcg_out_dat_reg(s, cond, ARITH_MOV,
811 rd, 0, rd, SHIFT_IMM_ASR(24));
812 }
813 }
814
815 static inline void tcg_out_ext8u(TCGContext *s, int cond,
816 int rd, int rn)
817 {
818 tcg_out_dat_imm(s, cond, ARITH_AND, rd, rn, 0xff);
819 }
820
821 static inline void tcg_out_ext16s(TCGContext *s, int cond,
822 int rd, int rn)
823 {
824 if (use_armv6_instructions) {
825 /* sxth */
826 tcg_out32(s, 0x06bf0070 | (cond << 28) | (rd << 12) | rn);
827 } else {
828 tcg_out_dat_reg(s, cond, ARITH_MOV,
829 rd, 0, rn, SHIFT_IMM_LSL(16));
830 tcg_out_dat_reg(s, cond, ARITH_MOV,
831 rd, 0, rd, SHIFT_IMM_ASR(16));
832 }
833 }
834
835 static inline void tcg_out_ext16u(TCGContext *s, int cond,
836 int rd, int rn)
837 {
838 if (use_armv6_instructions) {
839 /* uxth */
840 tcg_out32(s, 0x06ff0070 | (cond << 28) | (rd << 12) | rn);
841 } else {
842 tcg_out_dat_reg(s, cond, ARITH_MOV,
843 rd, 0, rn, SHIFT_IMM_LSL(16));
844 tcg_out_dat_reg(s, cond, ARITH_MOV,
845 rd, 0, rd, SHIFT_IMM_LSR(16));
846 }
847 }
848
849 static inline void tcg_out_bswap16s(TCGContext *s, int cond, int rd, int rn)
850 {
851 if (use_armv6_instructions) {
852 /* revsh */
853 tcg_out32(s, 0x06ff0fb0 | (cond << 28) | (rd << 12) | rn);
854 } else {
855 tcg_out_dat_reg(s, cond, ARITH_MOV,
856 TCG_REG_TMP, 0, rn, SHIFT_IMM_LSL(24));
857 tcg_out_dat_reg(s, cond, ARITH_MOV,
858 TCG_REG_TMP, 0, TCG_REG_TMP, SHIFT_IMM_ASR(16));
859 tcg_out_dat_reg(s, cond, ARITH_ORR,
860 rd, TCG_REG_TMP, rn, SHIFT_IMM_LSR(8));
861 }
862 }
863
864 static inline void tcg_out_bswap16(TCGContext *s, int cond, int rd, int rn)
865 {
866 if (use_armv6_instructions) {
867 /* rev16 */
868 tcg_out32(s, 0x06bf0fb0 | (cond << 28) | (rd << 12) | rn);
869 } else {
870 tcg_out_dat_reg(s, cond, ARITH_MOV,
871 TCG_REG_TMP, 0, rn, SHIFT_IMM_LSL(24));
872 tcg_out_dat_reg(s, cond, ARITH_MOV,
873 TCG_REG_TMP, 0, TCG_REG_TMP, SHIFT_IMM_LSR(16));
874 tcg_out_dat_reg(s, cond, ARITH_ORR,
875 rd, TCG_REG_TMP, rn, SHIFT_IMM_LSR(8));
876 }
877 }
878
879 /* swap the two low bytes assuming that the two high input bytes and the
880 two high output bit can hold any value. */
881 static inline void tcg_out_bswap16st(TCGContext *s, int cond, int rd, int rn)
882 {
883 if (use_armv6_instructions) {
884 /* rev16 */
885 tcg_out32(s, 0x06bf0fb0 | (cond << 28) | (rd << 12) | rn);
886 } else {
887 tcg_out_dat_reg(s, cond, ARITH_MOV,
888 TCG_REG_TMP, 0, rn, SHIFT_IMM_LSR(8));
889 tcg_out_dat_imm(s, cond, ARITH_AND, TCG_REG_TMP, TCG_REG_TMP, 0xff);
890 tcg_out_dat_reg(s, cond, ARITH_ORR,
891 rd, TCG_REG_TMP, rn, SHIFT_IMM_LSL(8));
892 }
893 }
894
895 static inline void tcg_out_bswap32(TCGContext *s, int cond, int rd, int rn)
896 {
897 if (use_armv6_instructions) {
898 /* rev */
899 tcg_out32(s, 0x06bf0f30 | (cond << 28) | (rd << 12) | rn);
900 } else {
901 tcg_out_dat_reg(s, cond, ARITH_EOR,
902 TCG_REG_TMP, rn, rn, SHIFT_IMM_ROR(16));
903 tcg_out_dat_imm(s, cond, ARITH_BIC,
904 TCG_REG_TMP, TCG_REG_TMP, 0xff | 0x800);
905 tcg_out_dat_reg(s, cond, ARITH_MOV,
906 rd, 0, rn, SHIFT_IMM_ROR(8));
907 tcg_out_dat_reg(s, cond, ARITH_EOR,
908 rd, rd, TCG_REG_TMP, SHIFT_IMM_LSR(8));
909 }
910 }
911
912 static inline void tcg_out_deposit(TCGContext *s, int cond, TCGReg rd,
913 TCGArg a1, int ofs, int len, bool const_a1)
914 {
915 if (const_a1) {
916 /* bfi becomes bfc with rn == 15. */
917 a1 = 15;
918 }
919 /* bfi/bfc */
920 tcg_out32(s, 0x07c00010 | (cond << 28) | (rd << 12) | a1
921 | (ofs << 7) | ((ofs + len - 1) << 16));
922 }
923
924 static inline void tcg_out_extract(TCGContext *s, int cond, TCGReg rd,
925 TCGArg a1, int ofs, int len)
926 {
927 /* ubfx */
928 tcg_out32(s, 0x07e00050 | (cond << 28) | (rd << 12) | a1
929 | (ofs << 7) | ((len - 1) << 16));
930 }
931
932 static inline void tcg_out_sextract(TCGContext *s, int cond, TCGReg rd,
933 TCGArg a1, int ofs, int len)
934 {
935 /* sbfx */
936 tcg_out32(s, 0x07a00050 | (cond << 28) | (rd << 12) | a1
937 | (ofs << 7) | ((len - 1) << 16));
938 }
939
940 static inline void tcg_out_ld32u(TCGContext *s, int cond,
941 int rd, int rn, int32_t offset)
942 {
943 if (offset > 0xfff || offset < -0xfff) {
944 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
945 tcg_out_ld32_r(s, cond, rd, rn, TCG_REG_TMP);
946 } else
947 tcg_out_ld32_12(s, cond, rd, rn, offset);
948 }
949
950 static inline void tcg_out_st32(TCGContext *s, int cond,
951 int rd, int rn, int32_t offset)
952 {
953 if (offset > 0xfff || offset < -0xfff) {
954 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
955 tcg_out_st32_r(s, cond, rd, rn, TCG_REG_TMP);
956 } else
957 tcg_out_st32_12(s, cond, rd, rn, offset);
958 }
959
960 static inline void tcg_out_ld16u(TCGContext *s, int cond,
961 int rd, int rn, int32_t offset)
962 {
963 if (offset > 0xff || offset < -0xff) {
964 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
965 tcg_out_ld16u_r(s, cond, rd, rn, TCG_REG_TMP);
966 } else
967 tcg_out_ld16u_8(s, cond, rd, rn, offset);
968 }
969
970 static inline void tcg_out_ld16s(TCGContext *s, int cond,
971 int rd, int rn, int32_t offset)
972 {
973 if (offset > 0xff || offset < -0xff) {
974 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
975 tcg_out_ld16s_r(s, cond, rd, rn, TCG_REG_TMP);
976 } else
977 tcg_out_ld16s_8(s, cond, rd, rn, offset);
978 }
979
980 static inline void tcg_out_st16(TCGContext *s, int cond,
981 int rd, int rn, int32_t offset)
982 {
983 if (offset > 0xff || offset < -0xff) {
984 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
985 tcg_out_st16_r(s, cond, rd, rn, TCG_REG_TMP);
986 } else
987 tcg_out_st16_8(s, cond, rd, rn, offset);
988 }
989
990 static inline void tcg_out_ld8u(TCGContext *s, int cond,
991 int rd, int rn, int32_t offset)
992 {
993 if (offset > 0xfff || offset < -0xfff) {
994 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
995 tcg_out_ld8_r(s, cond, rd, rn, TCG_REG_TMP);
996 } else
997 tcg_out_ld8_12(s, cond, rd, rn, offset);
998 }
999
1000 static inline void tcg_out_ld8s(TCGContext *s, int cond,
1001 int rd, int rn, int32_t offset)
1002 {
1003 if (offset > 0xff || offset < -0xff) {
1004 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
1005 tcg_out_ld8s_r(s, cond, rd, rn, TCG_REG_TMP);
1006 } else
1007 tcg_out_ld8s_8(s, cond, rd, rn, offset);
1008 }
1009
1010 static inline void tcg_out_st8(TCGContext *s, int cond,
1011 int rd, int rn, int32_t offset)
1012 {
1013 if (offset > 0xfff || offset < -0xfff) {
1014 tcg_out_movi32(s, cond, TCG_REG_TMP, offset);
1015 tcg_out_st8_r(s, cond, rd, rn, TCG_REG_TMP);
1016 } else
1017 tcg_out_st8_12(s, cond, rd, rn, offset);
1018 }
1019
1020 /* The _goto case is normally between TBs within the same code buffer, and
1021 * with the code buffer limited to 16MB we wouldn't need the long case.
1022 * But we also use it for the tail-call to the qemu_ld/st helpers, which does.
1023 */
1024 static void tcg_out_goto(TCGContext *s, int cond, tcg_insn_unit *addr)
1025 {
1026 intptr_t addri = (intptr_t)addr;
1027 ptrdiff_t disp = tcg_pcrel_diff(s, addr);
1028
1029 if ((addri & 1) == 0 && disp - 8 < 0x01fffffd && disp - 8 > -0x01fffffd) {
1030 tcg_out_b(s, cond, disp);
1031 return;
1032 }
1033 tcg_out_movi_pool(s, cond, TCG_REG_PC, addri);
1034 }
1035
1036 /* The call case is mostly used for helpers - so it's not unreasonable
1037 * for them to be beyond branch range */
1038 static void tcg_out_call(TCGContext *s, tcg_insn_unit *addr)
1039 {
1040 intptr_t addri = (intptr_t)addr;
1041 ptrdiff_t disp = tcg_pcrel_diff(s, addr);
1042
1043 if (disp - 8 < 0x02000000 && disp - 8 >= -0x02000000) {
1044 if (addri & 1) {
1045 /* Use BLX if the target is in Thumb mode */
1046 if (!use_armv5t_instructions) {
1047 tcg_abort();
1048 }
1049 tcg_out_blx_imm(s, disp);
1050 } else {
1051 tcg_out_bl(s, COND_AL, disp);
1052 }
1053 } else if (use_armv7_instructions) {
1054 tcg_out_movi32(s, COND_AL, TCG_REG_TMP, addri);
1055 tcg_out_blx(s, COND_AL, TCG_REG_TMP);
1056 } else {
1057 /* ??? Know that movi_pool emits exactly 1 insn. */
1058 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R14, TCG_REG_PC, 0);
1059 tcg_out_movi_pool(s, COND_AL, TCG_REG_PC, addri);
1060 }
1061 }
1062
1063 static inline void tcg_out_goto_label(TCGContext *s, int cond, TCGLabel *l)
1064 {
1065 if (l->has_value) {
1066 tcg_out_goto(s, cond, l->u.value_ptr);
1067 } else {
1068 tcg_out_reloc(s, s->code_ptr, R_ARM_PC24, l, 0);
1069 tcg_out_b(s, cond, 0);
1070 }
1071 }
1072
1073 static inline void tcg_out_mb(TCGContext *s, TCGArg a0)
1074 {
1075 if (use_armv7_instructions) {
1076 tcg_out32(s, INSN_DMB_ISH);
1077 } else if (use_armv6_instructions) {
1078 tcg_out32(s, INSN_DMB_MCR);
1079 }
1080 }
1081
1082 static TCGCond tcg_out_cmp2(TCGContext *s, const TCGArg *args,
1083 const int *const_args)
1084 {
1085 TCGReg al = args[0];
1086 TCGReg ah = args[1];
1087 TCGArg bl = args[2];
1088 TCGArg bh = args[3];
1089 TCGCond cond = args[4];
1090 int const_bl = const_args[2];
1091 int const_bh = const_args[3];
1092
1093 switch (cond) {
1094 case TCG_COND_EQ:
1095 case TCG_COND_NE:
1096 case TCG_COND_LTU:
1097 case TCG_COND_LEU:
1098 case TCG_COND_GTU:
1099 case TCG_COND_GEU:
1100 /* We perform a conditional comparision. If the high half is
1101 equal, then overwrite the flags with the comparison of the
1102 low half. The resulting flags cover the whole. */
1103 tcg_out_dat_rI(s, COND_AL, ARITH_CMP, 0, ah, bh, const_bh);
1104 tcg_out_dat_rI(s, COND_EQ, ARITH_CMP, 0, al, bl, const_bl);
1105 return cond;
1106
1107 case TCG_COND_LT:
1108 case TCG_COND_GE:
1109 /* We perform a double-word subtraction and examine the result.
1110 We do not actually need the result of the subtract, so the
1111 low part "subtract" is a compare. For the high half we have
1112 no choice but to compute into a temporary. */
1113 tcg_out_dat_rI(s, COND_AL, ARITH_CMP, 0, al, bl, const_bl);
1114 tcg_out_dat_rI(s, COND_AL, ARITH_SBC | TO_CPSR,
1115 TCG_REG_TMP, ah, bh, const_bh);
1116 return cond;
1117
1118 case TCG_COND_LE:
1119 case TCG_COND_GT:
1120 /* Similar, but with swapped arguments, via reversed subtract. */
1121 tcg_out_dat_rI(s, COND_AL, ARITH_RSB | TO_CPSR,
1122 TCG_REG_TMP, al, bl, const_bl);
1123 tcg_out_dat_rI(s, COND_AL, ARITH_RSC | TO_CPSR,
1124 TCG_REG_TMP, ah, bh, const_bh);
1125 return tcg_swap_cond(cond);
1126
1127 default:
1128 g_assert_not_reached();
1129 }
1130 }
1131
1132 #ifdef CONFIG_SOFTMMU
1133 #include "tcg-ldst.inc.c"
1134
1135 /* helper signature: helper_ret_ld_mmu(CPUState *env, target_ulong addr,
1136 * int mmu_idx, uintptr_t ra)
1137 */
1138 static void * const qemu_ld_helpers[16] = {
1139 [MO_UB] = helper_ret_ldub_mmu,
1140 [MO_SB] = helper_ret_ldsb_mmu,
1141
1142 [MO_LEUW] = helper_le_lduw_mmu,
1143 [MO_LEUL] = helper_le_ldul_mmu,
1144 [MO_LEQ] = helper_le_ldq_mmu,
1145 [MO_LESW] = helper_le_ldsw_mmu,
1146 [MO_LESL] = helper_le_ldul_mmu,
1147
1148 [MO_BEUW] = helper_be_lduw_mmu,
1149 [MO_BEUL] = helper_be_ldul_mmu,
1150 [MO_BEQ] = helper_be_ldq_mmu,
1151 [MO_BESW] = helper_be_ldsw_mmu,
1152 [MO_BESL] = helper_be_ldul_mmu,
1153 };
1154
1155 /* helper signature: helper_ret_st_mmu(CPUState *env, target_ulong addr,
1156 * uintxx_t val, int mmu_idx, uintptr_t ra)
1157 */
1158 static void * const qemu_st_helpers[16] = {
1159 [MO_UB] = helper_ret_stb_mmu,
1160 [MO_LEUW] = helper_le_stw_mmu,
1161 [MO_LEUL] = helper_le_stl_mmu,
1162 [MO_LEQ] = helper_le_stq_mmu,
1163 [MO_BEUW] = helper_be_stw_mmu,
1164 [MO_BEUL] = helper_be_stl_mmu,
1165 [MO_BEQ] = helper_be_stq_mmu,
1166 };
1167
1168 /* Helper routines for marshalling helper function arguments into
1169 * the correct registers and stack.
1170 * argreg is where we want to put this argument, arg is the argument itself.
1171 * Return value is the updated argreg ready for the next call.
1172 * Note that argreg 0..3 is real registers, 4+ on stack.
1173 *
1174 * We provide routines for arguments which are: immediate, 32 bit
1175 * value in register, 16 and 8 bit values in register (which must be zero
1176 * extended before use) and 64 bit value in a lo:hi register pair.
1177 */
1178 #define DEFINE_TCG_OUT_ARG(NAME, ARGTYPE, MOV_ARG, EXT_ARG) \
1179 static TCGReg NAME(TCGContext *s, TCGReg argreg, ARGTYPE arg) \
1180 { \
1181 if (argreg < 4) { \
1182 MOV_ARG(s, COND_AL, argreg, arg); \
1183 } else { \
1184 int ofs = (argreg - 4) * 4; \
1185 EXT_ARG; \
1186 tcg_debug_assert(ofs + 4 <= TCG_STATIC_CALL_ARGS_SIZE); \
1187 tcg_out_st32_12(s, COND_AL, arg, TCG_REG_CALL_STACK, ofs); \
1188 } \
1189 return argreg + 1; \
1190 }
1191
1192 DEFINE_TCG_OUT_ARG(tcg_out_arg_imm32, uint32_t, tcg_out_movi32,
1193 (tcg_out_movi32(s, COND_AL, TCG_REG_TMP, arg), arg = TCG_REG_TMP))
1194 DEFINE_TCG_OUT_ARG(tcg_out_arg_reg8, TCGReg, tcg_out_ext8u,
1195 (tcg_out_ext8u(s, COND_AL, TCG_REG_TMP, arg), arg = TCG_REG_TMP))
1196 DEFINE_TCG_OUT_ARG(tcg_out_arg_reg16, TCGReg, tcg_out_ext16u,
1197 (tcg_out_ext16u(s, COND_AL, TCG_REG_TMP, arg), arg = TCG_REG_TMP))
1198 DEFINE_TCG_OUT_ARG(tcg_out_arg_reg32, TCGReg, tcg_out_mov_reg, )
1199
1200 static TCGReg tcg_out_arg_reg64(TCGContext *s, TCGReg argreg,
1201 TCGReg arglo, TCGReg arghi)
1202 {
1203 /* 64 bit arguments must go in even/odd register pairs
1204 * and in 8-aligned stack slots.
1205 */
1206 if (argreg & 1) {
1207 argreg++;
1208 }
1209 if (use_armv6_instructions && argreg >= 4
1210 && (arglo & 1) == 0 && arghi == arglo + 1) {
1211 tcg_out_strd_8(s, COND_AL, arglo,
1212 TCG_REG_CALL_STACK, (argreg - 4) * 4);
1213 return argreg + 2;
1214 } else {
1215 argreg = tcg_out_arg_reg32(s, argreg, arglo);
1216 argreg = tcg_out_arg_reg32(s, argreg, arghi);
1217 return argreg;
1218 }
1219 }
1220
1221 #define TLB_SHIFT (CPU_TLB_ENTRY_BITS + CPU_TLB_BITS)
1222
1223 /* We expect tlb_mask to be before tlb_table. */
1224 QEMU_BUILD_BUG_ON(offsetof(CPUArchState, tlb_table) <
1225 offsetof(CPUArchState, tlb_mask));
1226
1227 /* We expect to use a 20-bit unsigned offset from ENV. */
1228 QEMU_BUILD_BUG_ON(offsetof(CPUArchState, tlb_table[NB_MMU_MODES - 1])
1229 > 0xfffff);
1230
1231 /* Load and compare a TLB entry, leaving the flags set. Returns the register
1232 containing the addend of the tlb entry. Clobbers R0, R1, R2, TMP. */
1233
1234 static TCGReg tcg_out_tlb_read(TCGContext *s, TCGReg addrlo, TCGReg addrhi,
1235 TCGMemOp opc, int mem_index, bool is_load)
1236 {
1237 int cmp_off = (is_load ? offsetof(CPUTLBEntry, addr_read)
1238 : offsetof(CPUTLBEntry, addr_write));
1239 int mask_off = offsetof(CPUArchState, tlb_mask[mem_index]);
1240 int table_off = offsetof(CPUArchState, tlb_table[mem_index]);
1241 TCGReg mask_base = TCG_AREG0, table_base = TCG_AREG0;
1242 unsigned s_bits = opc & MO_SIZE;
1243 unsigned a_bits = get_alignment_bits(opc);
1244
1245 if (table_off > 0xfff) {
1246 int mask_hi = mask_off & ~0xfff;
1247 int table_hi = table_off & ~0xfff;
1248 int rot;
1249
1250 table_base = TCG_REG_R2;
1251 if (mask_hi == table_hi) {
1252 mask_base = table_base;
1253 } else if (mask_hi) {
1254 mask_base = TCG_REG_TMP;
1255 rot = encode_imm(mask_hi);
1256 assert(rot >= 0);
1257 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, mask_base, TCG_AREG0,
1258 rotl(mask_hi, rot) | (rot << 7));
1259 }
1260 rot = encode_imm(table_hi);
1261 assert(rot >= 0);
1262 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, table_base, TCG_AREG0,
1263 rotl(table_hi, rot) | (rot << 7));
1264
1265 mask_off -= mask_hi;
1266 table_off -= table_hi;
1267 }
1268
1269 /* Load tlb_mask[mmu_idx] and tlb_table[mmu_idx]. */
1270 tcg_out_ld(s, TCG_TYPE_I32, TCG_REG_TMP, mask_base, mask_off);
1271 tcg_out_ld(s, TCG_TYPE_I32, TCG_REG_R2, table_base, table_off);
1272
1273 /* Extract the tlb index from the address into TMP. */
1274 tcg_out_dat_reg(s, COND_AL, ARITH_AND, TCG_REG_TMP, TCG_REG_TMP, addrlo,
1275 SHIFT_IMM_LSR(TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS));
1276
1277 /*
1278 * Add the tlb_table pointer, creating the CPUTLBEntry address in R2.
1279 * Load the tlb comparator into R0/R1 and the fast path addend into R2.
1280 */
1281 if (cmp_off == 0) {
1282 if (use_armv6_instructions && TARGET_LONG_BITS == 64) {
1283 tcg_out_ldrd_rwb(s, COND_AL, TCG_REG_R0, TCG_REG_R2, TCG_REG_TMP);
1284 } else {
1285 tcg_out_ld32_rwb(s, COND_AL, TCG_REG_R0, TCG_REG_R2, TCG_REG_TMP);
1286 }
1287 } else {
1288 tcg_out_dat_reg(s, COND_AL, ARITH_ADD,
1289 TCG_REG_R2, TCG_REG_R2, TCG_REG_TMP, 0);
1290 if (use_armv6_instructions && TARGET_LONG_BITS == 64) {
1291 tcg_out_ldrd_8(s, COND_AL, TCG_REG_R0, TCG_REG_R2, cmp_off);
1292 } else {
1293 tcg_out_ld32_12(s, COND_AL, TCG_REG_R0, TCG_REG_R2, cmp_off);
1294 }
1295 }
1296 if (!use_armv6_instructions && TARGET_LONG_BITS == 64) {
1297 tcg_out_ld32_12(s, COND_AL, TCG_REG_R1, TCG_REG_R2, cmp_off + 4);
1298 }
1299
1300 /* Load the tlb addend. */
1301 tcg_out_ld32_12(s, COND_AL, TCG_REG_R2, TCG_REG_R2,
1302 offsetof(CPUTLBEntry, addend));
1303
1304 /* Check alignment. We don't support inline unaligned acceses,
1305 but we can easily support overalignment checks. */
1306 if (a_bits < s_bits) {
1307 a_bits = s_bits;
1308 }
1309
1310 if (use_armv7_instructions) {
1311 tcg_target_ulong mask = ~(TARGET_PAGE_MASK | ((1 << a_bits) - 1));
1312 int rot = encode_imm(mask);
1313
1314 if (rot >= 0) {
1315 tcg_out_dat_imm(s, COND_AL, ARITH_BIC, TCG_REG_TMP, addrlo,
1316 rotl(mask, rot) | (rot << 7));
1317 } else {
1318 tcg_out_movi32(s, COND_AL, TCG_REG_TMP, mask);
1319 tcg_out_dat_reg(s, COND_AL, ARITH_BIC, TCG_REG_TMP,
1320 addrlo, TCG_REG_TMP, 0);
1321 }
1322 tcg_out_dat_reg(s, COND_AL, ARITH_CMP, 0, TCG_REG_R0, TCG_REG_TMP, 0);
1323 } else {
1324 if (a_bits) {
1325 tcg_out_dat_imm(s, COND_AL, ARITH_TST, 0, addrlo,
1326 (1 << a_bits) - 1);
1327 }
1328 tcg_out_dat_reg(s, (a_bits ? COND_EQ : COND_AL), ARITH_CMP,
1329 0, TCG_REG_R0, TCG_REG_TMP,
1330 SHIFT_IMM_LSL(TARGET_PAGE_BITS));
1331 }
1332
1333 if (TARGET_LONG_BITS == 64) {
1334 tcg_out_dat_reg(s, COND_EQ, ARITH_CMP, 0, TCG_REG_R1, addrhi, 0);
1335 }
1336
1337 return TCG_REG_R2;
1338 }
1339
1340 /* Record the context of a call to the out of line helper code for the slow
1341 path for a load or store, so that we can later generate the correct
1342 helper code. */
1343 static void add_qemu_ldst_label(TCGContext *s, bool is_ld, TCGMemOpIdx oi,
1344 TCGReg datalo, TCGReg datahi, TCGReg addrlo,
1345 TCGReg addrhi, tcg_insn_unit *raddr,
1346 tcg_insn_unit *label_ptr)
1347 {
1348 TCGLabelQemuLdst *label = new_ldst_label(s);
1349
1350 label->is_ld = is_ld;
1351 label->oi = oi;
1352 label->datalo_reg = datalo;
1353 label->datahi_reg = datahi;
1354 label->addrlo_reg = addrlo;
1355 label->addrhi_reg = addrhi;
1356 label->raddr = raddr;
1357 label->label_ptr[0] = label_ptr;
1358 }
1359
1360 static bool tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *lb)
1361 {
1362 TCGReg argreg, datalo, datahi;
1363 TCGMemOpIdx oi = lb->oi;
1364 TCGMemOp opc = get_memop(oi);
1365 void *func;
1366
1367 if (!reloc_pc24(lb->label_ptr[0], s->code_ptr)) {
1368 return false;
1369 }
1370
1371 argreg = tcg_out_arg_reg32(s, TCG_REG_R0, TCG_AREG0);
1372 if (TARGET_LONG_BITS == 64) {
1373 argreg = tcg_out_arg_reg64(s, argreg, lb->addrlo_reg, lb->addrhi_reg);
1374 } else {
1375 argreg = tcg_out_arg_reg32(s, argreg, lb->addrlo_reg);
1376 }
1377 argreg = tcg_out_arg_imm32(s, argreg, oi);
1378 argreg = tcg_out_arg_reg32(s, argreg, TCG_REG_R14);
1379
1380 /* For armv6 we can use the canonical unsigned helpers and minimize
1381 icache usage. For pre-armv6, use the signed helpers since we do
1382 not have a single insn sign-extend. */
1383 if (use_armv6_instructions) {
1384 func = qemu_ld_helpers[opc & (MO_BSWAP | MO_SIZE)];
1385 } else {
1386 func = qemu_ld_helpers[opc & (MO_BSWAP | MO_SSIZE)];
1387 if (opc & MO_SIGN) {
1388 opc = MO_UL;
1389 }
1390 }
1391 tcg_out_call(s, func);
1392
1393 datalo = lb->datalo_reg;
1394 datahi = lb->datahi_reg;
1395 switch (opc & MO_SSIZE) {
1396 case MO_SB:
1397 tcg_out_ext8s(s, COND_AL, datalo, TCG_REG_R0);
1398 break;
1399 case MO_SW:
1400 tcg_out_ext16s(s, COND_AL, datalo, TCG_REG_R0);
1401 break;
1402 default:
1403 tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_R0);
1404 break;
1405 case MO_Q:
1406 if (datalo != TCG_REG_R1) {
1407 tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_R0);
1408 tcg_out_mov_reg(s, COND_AL, datahi, TCG_REG_R1);
1409 } else if (datahi != TCG_REG_R0) {
1410 tcg_out_mov_reg(s, COND_AL, datahi, TCG_REG_R1);
1411 tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_R0);
1412 } else {
1413 tcg_out_mov_reg(s, COND_AL, TCG_REG_TMP, TCG_REG_R0);
1414 tcg_out_mov_reg(s, COND_AL, datahi, TCG_REG_R1);
1415 tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_TMP);
1416 }
1417 break;
1418 }
1419
1420 tcg_out_goto(s, COND_AL, lb->raddr);
1421 return true;
1422 }
1423
1424 static bool tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *lb)
1425 {
1426 TCGReg argreg, datalo, datahi;
1427 TCGMemOpIdx oi = lb->oi;
1428 TCGMemOp opc = get_memop(oi);
1429
1430 if (!reloc_pc24(lb->label_ptr[0], s->code_ptr)) {
1431 return false;
1432 }
1433
1434 argreg = TCG_REG_R0;
1435 argreg = tcg_out_arg_reg32(s, argreg, TCG_AREG0);
1436 if (TARGET_LONG_BITS == 64) {
1437 argreg = tcg_out_arg_reg64(s, argreg, lb->addrlo_reg, lb->addrhi_reg);
1438 } else {
1439 argreg = tcg_out_arg_reg32(s, argreg, lb->addrlo_reg);
1440 }
1441
1442 datalo = lb->datalo_reg;
1443 datahi = lb->datahi_reg;
1444 switch (opc & MO_SIZE) {
1445 case MO_8:
1446 argreg = tcg_out_arg_reg8(s, argreg, datalo);
1447 break;
1448 case MO_16:
1449 argreg = tcg_out_arg_reg16(s, argreg, datalo);
1450 break;
1451 case MO_32:
1452 default:
1453 argreg = tcg_out_arg_reg32(s, argreg, datalo);
1454 break;
1455 case MO_64:
1456 argreg = tcg_out_arg_reg64(s, argreg, datalo, datahi);
1457 break;
1458 }
1459
1460 argreg = tcg_out_arg_imm32(s, argreg, oi);
1461 argreg = tcg_out_arg_reg32(s, argreg, TCG_REG_R14);
1462
1463 /* Tail-call to the helper, which will return to the fast path. */
1464 tcg_out_goto(s, COND_AL, qemu_st_helpers[opc & (MO_BSWAP | MO_SIZE)]);
1465 return true;
1466 }
1467 #endif /* SOFTMMU */
1468
1469 static inline void tcg_out_qemu_ld_index(TCGContext *s, TCGMemOp opc,
1470 TCGReg datalo, TCGReg datahi,
1471 TCGReg addrlo, TCGReg addend)
1472 {
1473 TCGMemOp bswap = opc & MO_BSWAP;
1474
1475 switch (opc & MO_SSIZE) {
1476 case MO_UB:
1477 tcg_out_ld8_r(s, COND_AL, datalo, addrlo, addend);
1478 break;
1479 case MO_SB:
1480 tcg_out_ld8s_r(s, COND_AL, datalo, addrlo, addend);
1481 break;
1482 case MO_UW:
1483 tcg_out_ld16u_r(s, COND_AL, datalo, addrlo, addend);
1484 if (bswap) {
1485 tcg_out_bswap16(s, COND_AL, datalo, datalo);
1486 }
1487 break;
1488 case MO_SW:
1489 if (bswap) {
1490 tcg_out_ld16u_r(s, COND_AL, datalo, addrlo, addend);
1491 tcg_out_bswap16s(s, COND_AL, datalo, datalo);
1492 } else {
1493 tcg_out_ld16s_r(s, COND_AL, datalo, addrlo, addend);
1494 }
1495 break;
1496 case MO_UL:
1497 default:
1498 tcg_out_ld32_r(s, COND_AL, datalo, addrlo, addend);
1499 if (bswap) {
1500 tcg_out_bswap32(s, COND_AL, datalo, datalo);
1501 }
1502 break;
1503 case MO_Q:
1504 {
1505 TCGReg dl = (bswap ? datahi : datalo);
1506 TCGReg dh = (bswap ? datalo : datahi);
1507
1508 /* Avoid ldrd for user-only emulation, to handle unaligned. */
1509 if (USING_SOFTMMU && use_armv6_instructions
1510 && (dl & 1) == 0 && dh == dl + 1) {
1511 tcg_out_ldrd_r(s, COND_AL, dl, addrlo, addend);
1512 } else if (dl != addend) {
1513 tcg_out_ld32_rwb(s, COND_AL, dl, addend, addrlo);
1514 tcg_out_ld32_12(s, COND_AL, dh, addend, 4);
1515 } else {
1516 tcg_out_dat_reg(s, COND_AL, ARITH_ADD, TCG_REG_TMP,
1517 addend, addrlo, SHIFT_IMM_LSL(0));
1518 tcg_out_ld32_12(s, COND_AL, dl, TCG_REG_TMP, 0);
1519 tcg_out_ld32_12(s, COND_AL, dh, TCG_REG_TMP, 4);
1520 }
1521 if (bswap) {
1522 tcg_out_bswap32(s, COND_AL, dl, dl);
1523 tcg_out_bswap32(s, COND_AL, dh, dh);
1524 }
1525 }
1526 break;
1527 }
1528 }
1529
1530 static inline void tcg_out_qemu_ld_direct(TCGContext *s, TCGMemOp opc,
1531 TCGReg datalo, TCGReg datahi,
1532 TCGReg addrlo)
1533 {
1534 TCGMemOp bswap = opc & MO_BSWAP;
1535
1536 switch (opc & MO_SSIZE) {
1537 case MO_UB:
1538 tcg_out_ld8_12(s, COND_AL, datalo, addrlo, 0);
1539 break;
1540 case MO_SB:
1541 tcg_out_ld8s_8(s, COND_AL, datalo, addrlo, 0);
1542 break;
1543 case MO_UW:
1544 tcg_out_ld16u_8(s, COND_AL, datalo, addrlo, 0);
1545 if (bswap) {
1546 tcg_out_bswap16(s, COND_AL, datalo, datalo);
1547 }
1548 break;
1549 case MO_SW:
1550 if (bswap) {
1551 tcg_out_ld16u_8(s, COND_AL, datalo, addrlo, 0);
1552 tcg_out_bswap16s(s, COND_AL, datalo, datalo);
1553 } else {
1554 tcg_out_ld16s_8(s, COND_AL, datalo, addrlo, 0);
1555 }
1556 break;
1557 case MO_UL:
1558 default:
1559 tcg_out_ld32_12(s, COND_AL, datalo, addrlo, 0);
1560 if (bswap) {
1561 tcg_out_bswap32(s, COND_AL, datalo, datalo);
1562 }
1563 break;
1564 case MO_Q:
1565 {
1566 TCGReg dl = (bswap ? datahi : datalo);
1567 TCGReg dh = (bswap ? datalo : datahi);
1568
1569 /* Avoid ldrd for user-only emulation, to handle unaligned. */
1570 if (USING_SOFTMMU && use_armv6_instructions
1571 && (dl & 1) == 0 && dh == dl + 1) {
1572 tcg_out_ldrd_8(s, COND_AL, dl, addrlo, 0);
1573 } else if (dl == addrlo) {
1574 tcg_out_ld32_12(s, COND_AL, dh, addrlo, bswap ? 0 : 4);
1575 tcg_out_ld32_12(s, COND_AL, dl, addrlo, bswap ? 4 : 0);
1576 } else {
1577 tcg_out_ld32_12(s, COND_AL, dl, addrlo, bswap ? 4 : 0);
1578 tcg_out_ld32_12(s, COND_AL, dh, addrlo, bswap ? 0 : 4);
1579 }
1580 if (bswap) {
1581 tcg_out_bswap32(s, COND_AL, dl, dl);
1582 tcg_out_bswap32(s, COND_AL, dh, dh);
1583 }
1584 }
1585 break;
1586 }
1587 }
1588
1589 static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, bool is64)
1590 {
1591 TCGReg addrlo, datalo, datahi, addrhi __attribute__((unused));
1592 TCGMemOpIdx oi;
1593 TCGMemOp opc;
1594 #ifdef CONFIG_SOFTMMU
1595 int mem_index;
1596 TCGReg addend;
1597 tcg_insn_unit *label_ptr;
1598 #endif
1599
1600 datalo = *args++;
1601 datahi = (is64 ? *args++ : 0);
1602 addrlo = *args++;
1603 addrhi = (TARGET_LONG_BITS == 64 ? *args++ : 0);
1604 oi = *args++;
1605 opc = get_memop(oi);
1606
1607 #ifdef CONFIG_SOFTMMU
1608 mem_index = get_mmuidx(oi);
1609 addend = tcg_out_tlb_read(s, addrlo, addrhi, opc, mem_index, 1);
1610
1611 /* This a conditional BL only to load a pointer within this opcode into LR
1612 for the slow path. We will not be using the value for a tail call. */
1613 label_ptr = s->code_ptr;
1614 tcg_out_bl(s, COND_NE, 0);
1615
1616 tcg_out_qemu_ld_index(s, opc, datalo, datahi, addrlo, addend);
1617
1618 add_qemu_ldst_label(s, true, oi, datalo, datahi, addrlo, addrhi,
1619 s->code_ptr, label_ptr);
1620 #else /* !CONFIG_SOFTMMU */
1621 if (guest_base) {
1622 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_TMP, guest_base);
1623 tcg_out_qemu_ld_index(s, opc, datalo, datahi, addrlo, TCG_REG_TMP);
1624 } else {
1625 tcg_out_qemu_ld_direct(s, opc, datalo, datahi, addrlo);
1626 }
1627 #endif
1628 }
1629
1630 static inline void tcg_out_qemu_st_index(TCGContext *s, int cond, TCGMemOp opc,
1631 TCGReg datalo, TCGReg datahi,
1632 TCGReg addrlo, TCGReg addend)
1633 {
1634 TCGMemOp bswap = opc & MO_BSWAP;
1635
1636 switch (opc & MO_SIZE) {
1637 case MO_8:
1638 tcg_out_st8_r(s, cond, datalo, addrlo, addend);
1639 break;
1640 case MO_16:
1641 if (bswap) {
1642 tcg_out_bswap16st(s, cond, TCG_REG_R0, datalo);
1643 tcg_out_st16_r(s, cond, TCG_REG_R0, addrlo, addend);
1644 } else {
1645 tcg_out_st16_r(s, cond, datalo, addrlo, addend);
1646 }
1647 break;
1648 case MO_32:
1649 default:
1650 if (bswap) {
1651 tcg_out_bswap32(s, cond, TCG_REG_R0, datalo);
1652 tcg_out_st32_r(s, cond, TCG_REG_R0, addrlo, addend);
1653 } else {
1654 tcg_out_st32_r(s, cond, datalo, addrlo, addend);
1655 }
1656 break;
1657 case MO_64:
1658 /* Avoid strd for user-only emulation, to handle unaligned. */
1659 if (bswap) {
1660 tcg_out_bswap32(s, cond, TCG_REG_R0, datahi);
1661 tcg_out_st32_rwb(s, cond, TCG_REG_R0, addend, addrlo);
1662 tcg_out_bswap32(s, cond, TCG_REG_R0, datalo);
1663 tcg_out_st32_12(s, cond, TCG_REG_R0, addend, 4);
1664 } else if (USING_SOFTMMU && use_armv6_instructions
1665 && (datalo & 1) == 0 && datahi == datalo + 1) {
1666 tcg_out_strd_r(s, cond, datalo, addrlo, addend);
1667 } else {
1668 tcg_out_st32_rwb(s, cond, datalo, addend, addrlo);
1669 tcg_out_st32_12(s, cond, datahi, addend, 4);
1670 }
1671 break;
1672 }
1673 }
1674
1675 static inline void tcg_out_qemu_st_direct(TCGContext *s, TCGMemOp opc,
1676 TCGReg datalo, TCGReg datahi,
1677 TCGReg addrlo)
1678 {
1679 TCGMemOp bswap = opc & MO_BSWAP;
1680
1681 switch (opc & MO_SIZE) {
1682 case MO_8:
1683 tcg_out_st8_12(s, COND_AL, datalo, addrlo, 0);
1684 break;
1685 case MO_16:
1686 if (bswap) {
1687 tcg_out_bswap16st(s, COND_AL, TCG_REG_R0, datalo);
1688 tcg_out_st16_8(s, COND_AL, TCG_REG_R0, addrlo, 0);
1689 } else {
1690 tcg_out_st16_8(s, COND_AL, datalo, addrlo, 0);
1691 }
1692 break;
1693 case MO_32:
1694 default:
1695 if (bswap) {
1696 tcg_out_bswap32(s, COND_AL, TCG_REG_R0, datalo);
1697 tcg_out_st32_12(s, COND_AL, TCG_REG_R0, addrlo, 0);
1698 } else {
1699 tcg_out_st32_12(s, COND_AL, datalo, addrlo, 0);
1700 }
1701 break;
1702 case MO_64:
1703 /* Avoid strd for user-only emulation, to handle unaligned. */
1704 if (bswap) {
1705 tcg_out_bswap32(s, COND_AL, TCG_REG_R0, datahi);
1706 tcg_out_st32_12(s, COND_AL, TCG_REG_R0, addrlo, 0);
1707 tcg_out_bswap32(s, COND_AL, TCG_REG_R0, datalo);
1708 tcg_out_st32_12(s, COND_AL, TCG_REG_R0, addrlo, 4);
1709 } else if (USING_SOFTMMU && use_armv6_instructions
1710 && (datalo & 1) == 0 && datahi == datalo + 1) {
1711 tcg_out_strd_8(s, COND_AL, datalo, addrlo, 0);
1712 } else {
1713 tcg_out_st32_12(s, COND_AL, datalo, addrlo, 0);
1714 tcg_out_st32_12(s, COND_AL, datahi, addrlo, 4);
1715 }
1716 break;
1717 }
1718 }
1719
1720 static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args, bool is64)
1721 {
1722 TCGReg addrlo, datalo, datahi, addrhi __attribute__((unused));
1723 TCGMemOpIdx oi;
1724 TCGMemOp opc;
1725 #ifdef CONFIG_SOFTMMU
1726 int mem_index;
1727 TCGReg addend;
1728 tcg_insn_unit *label_ptr;
1729 #endif
1730
1731 datalo = *args++;
1732 datahi = (is64 ? *args++ : 0);
1733 addrlo = *args++;
1734 addrhi = (TARGET_LONG_BITS == 64 ? *args++ : 0);
1735 oi = *args++;
1736 opc = get_memop(oi);
1737
1738 #ifdef CONFIG_SOFTMMU
1739 mem_index = get_mmuidx(oi);
1740 addend = tcg_out_tlb_read(s, addrlo, addrhi, opc, mem_index, 0);
1741
1742 tcg_out_qemu_st_index(s, COND_EQ, opc, datalo, datahi, addrlo, addend);
1743
1744 /* The conditional call must come last, as we're going to return here. */
1745 label_ptr = s->code_ptr;
1746 tcg_out_bl(s, COND_NE, 0);
1747
1748 add_qemu_ldst_label(s, false, oi, datalo, datahi, addrlo, addrhi,
1749 s->code_ptr, label_ptr);
1750 #else /* !CONFIG_SOFTMMU */
1751 if (guest_base) {
1752 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_TMP, guest_base);
1753 tcg_out_qemu_st_index(s, COND_AL, opc, datalo,
1754 datahi, addrlo, TCG_REG_TMP);
1755 } else {
1756 tcg_out_qemu_st_direct(s, opc, datalo, datahi, addrlo);
1757 }
1758 #endif
1759 }
1760
1761 static tcg_insn_unit *tb_ret_addr;
1762
1763 static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
1764 const TCGArg *args, const int *const_args)
1765 {
1766 TCGArg a0, a1, a2, a3, a4, a5;
1767 int c;
1768
1769 switch (opc) {
1770 case INDEX_op_exit_tb:
1771 /* Reuse the zeroing that exists for goto_ptr. */
1772 a0 = args[0];
1773 if (a0 == 0) {
1774 tcg_out_goto(s, COND_AL, s->code_gen_epilogue);
1775 } else {
1776 tcg_out_movi32(s, COND_AL, TCG_REG_R0, args[0]);
1777 tcg_out_goto(s, COND_AL, tb_ret_addr);
1778 }
1779 break;
1780 case INDEX_op_goto_tb:
1781 {
1782 /* Indirect jump method */
1783 intptr_t ptr, dif, dil;
1784 TCGReg base = TCG_REG_PC;
1785
1786 tcg_debug_assert(s->tb_jmp_insn_offset == 0);
1787 ptr = (intptr_t)(s->tb_jmp_target_addr + args[0]);
1788 dif = ptr - ((intptr_t)s->code_ptr + 8);
1789 dil = sextract32(dif, 0, 12);
1790 if (dif != dil) {
1791 /* The TB is close, but outside the 12 bits addressable by
1792 the load. We can extend this to 20 bits with a sub of a
1793 shifted immediate from pc. In the vastly unlikely event
1794 the code requires more than 1MB, we'll use 2 insns and
1795 be no worse off. */
1796 base = TCG_REG_R0;
1797 tcg_out_movi32(s, COND_AL, base, ptr - dil);
1798 }
1799 tcg_out_ld32_12(s, COND_AL, TCG_REG_PC, base, dil);
1800 set_jmp_reset_offset(s, args[0]);
1801 }
1802 break;
1803 case INDEX_op_goto_ptr:
1804 tcg_out_bx(s, COND_AL, args[0]);
1805 break;
1806 case INDEX_op_br:
1807 tcg_out_goto_label(s, COND_AL, arg_label(args[0]));
1808 break;
1809
1810 case INDEX_op_ld8u_i32:
1811 tcg_out_ld8u(s, COND_AL, args[0], args[1], args[2]);
1812 break;
1813 case INDEX_op_ld8s_i32:
1814 tcg_out_ld8s(s, COND_AL, args[0], args[1], args[2]);
1815 break;
1816 case INDEX_op_ld16u_i32:
1817 tcg_out_ld16u(s, COND_AL, args[0], args[1], args[2]);
1818 break;
1819 case INDEX_op_ld16s_i32:
1820 tcg_out_ld16s(s, COND_AL, args[0], args[1], args[2]);
1821 break;
1822 case INDEX_op_ld_i32:
1823 tcg_out_ld32u(s, COND_AL, args[0], args[1], args[2]);
1824 break;
1825 case INDEX_op_st8_i32:
1826 tcg_out_st8(s, COND_AL, args[0], args[1], args[2]);
1827 break;
1828 case INDEX_op_st16_i32:
1829 tcg_out_st16(s, COND_AL, args[0], args[1], args[2]);
1830 break;
1831 case INDEX_op_st_i32:
1832 tcg_out_st32(s, COND_AL, args[0], args[1], args[2]);
1833 break;
1834
1835 case INDEX_op_movcond_i32:
1836 /* Constraints mean that v2 is always in the same register as dest,
1837 * so we only need to do "if condition passed, move v1 to dest".
1838 */
1839 tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0,
1840 args[1], args[2], const_args[2]);
1841 tcg_out_dat_rIK(s, tcg_cond_to_arm_cond[args[5]], ARITH_MOV,
1842 ARITH_MVN, args[0], 0, args[3], const_args[3]);
1843 break;
1844 case INDEX_op_add_i32:
1845 tcg_out_dat_rIN(s, COND_AL, ARITH_ADD, ARITH_SUB,
1846 args[0], args[1], args[2], const_args[2]);
1847 break;
1848 case INDEX_op_sub_i32:
1849 if (const_args[1]) {
1850 if (const_args[2]) {
1851 tcg_out_movi32(s, COND_AL, args[0], args[1] - args[2]);
1852 } else {
1853 tcg_out_dat_rI(s, COND_AL, ARITH_RSB,
1854 args[0], args[2], args[1], 1);
1855 }
1856 } else {
1857 tcg_out_dat_rIN(s, COND_AL, ARITH_SUB, ARITH_ADD,
1858 args[0], args[1], args[2], const_args[2]);
1859 }
1860 break;
1861 case INDEX_op_and_i32:
1862 tcg_out_dat_rIK(s, COND_AL, ARITH_AND, ARITH_BIC,
1863 args[0], args[1], args[2], const_args[2]);
1864 break;
1865 case INDEX_op_andc_i32:
1866 tcg_out_dat_rIK(s, COND_AL, ARITH_BIC, ARITH_AND,
1867 args[0], args[1], args[2], const_args[2]);
1868 break;
1869 case INDEX_op_or_i32:
1870 c = ARITH_ORR;
1871 goto gen_arith;
1872 case INDEX_op_xor_i32:
1873 c = ARITH_EOR;
1874 /* Fall through. */
1875 gen_arith:
1876 tcg_out_dat_rI(s, COND_AL, c, args[0], args[1], args[2], const_args[2]);
1877 break;
1878 case INDEX_op_add2_i32:
1879 a0 = args[0], a1 = args[1], a2 = args[2];
1880 a3 = args[3], a4 = args[4], a5 = args[5];
1881 if (a0 == a3 || (a0 == a5 && !const_args[5])) {
1882 a0 = TCG_REG_TMP;
1883 }
1884 tcg_out_dat_rIN(s, COND_AL, ARITH_ADD | TO_CPSR, ARITH_SUB | TO_CPSR,
1885 a0, a2, a4, const_args[4]);
1886 tcg_out_dat_rIK(s, COND_AL, ARITH_ADC, ARITH_SBC,
1887 a1, a3, a5, const_args[5]);
1888 tcg_out_mov_reg(s, COND_AL, args[0], a0);
1889 break;
1890 case INDEX_op_sub2_i32:
1891 a0 = args[0], a1 = args[1], a2 = args[2];
1892 a3 = args[3], a4 = args[4], a5 = args[5];
1893 if ((a0 == a3 && !const_args[3]) || (a0 == a5 && !const_args[5])) {
1894 a0 = TCG_REG_TMP;
1895 }
1896 if (const_args[2]) {
1897 if (const_args[4]) {
1898 tcg_out_movi32(s, COND_AL, a0, a4);
1899 a4 = a0;
1900 }
1901 tcg_out_dat_rI(s, COND_AL, ARITH_RSB | TO_CPSR, a0, a4, a2, 1);
1902 } else {
1903 tcg_out_dat_rIN(s, COND_AL, ARITH_SUB | TO_CPSR,
1904 ARITH_ADD | TO_CPSR, a0, a2, a4, const_args[4]);
1905 }
1906 if (const_args[3]) {
1907 if (const_args[5]) {
1908 tcg_out_movi32(s, COND_AL, a1, a5);
1909 a5 = a1;
1910 }
1911 tcg_out_dat_rI(s, COND_AL, ARITH_RSC, a1, a5, a3, 1);
1912 } else {
1913 tcg_out_dat_rIK(s, COND_AL, ARITH_SBC, ARITH_ADC,
1914 a1, a3, a5, const_args[5]);
1915 }
1916 tcg_out_mov_reg(s, COND_AL, args[0], a0);
1917 break;
1918 case INDEX_op_neg_i32:
1919 tcg_out_dat_imm(s, COND_AL, ARITH_RSB, args[0], args[1], 0);
1920 break;
1921 case INDEX_op_not_i32:
1922 tcg_out_dat_reg(s, COND_AL,
1923 ARITH_MVN, args[0], 0, args[1], SHIFT_IMM_LSL(0));
1924 break;
1925 case INDEX_op_mul_i32:
1926 tcg_out_mul32(s, COND_AL, args[0], args[1], args[2]);
1927 break;
1928 case INDEX_op_mulu2_i32:
1929 tcg_out_umull32(s, COND_AL, args[0], args[1], args[2], args[3]);
1930 break;
1931 case INDEX_op_muls2_i32:
1932 tcg_out_smull32(s, COND_AL, args[0], args[1], args[2], args[3]);
1933 break;
1934 /* XXX: Perhaps args[2] & 0x1f is wrong */
1935 case INDEX_op_shl_i32:
1936 c = const_args[2] ?
1937 SHIFT_IMM_LSL(args[2] & 0x1f) : SHIFT_REG_LSL(args[2]);
1938 goto gen_shift32;
1939 case INDEX_op_shr_i32:
1940 c = const_args[2] ? (args[2] & 0x1f) ? SHIFT_IMM_LSR(args[2] & 0x1f) :
1941 SHIFT_IMM_LSL(0) : SHIFT_REG_LSR(args[2]);
1942 goto gen_shift32;
1943 case INDEX_op_sar_i32:
1944 c = const_args[2] ? (args[2] & 0x1f) ? SHIFT_IMM_ASR(args[2] & 0x1f) :
1945 SHIFT_IMM_LSL(0) : SHIFT_REG_ASR(args[2]);
1946 goto gen_shift32;
1947 case INDEX_op_rotr_i32:
1948 c = const_args[2] ? (args[2] & 0x1f) ? SHIFT_IMM_ROR(args[2] & 0x1f) :
1949 SHIFT_IMM_LSL(0) : SHIFT_REG_ROR(args[2]);
1950 /* Fall through. */
1951 gen_shift32:
1952 tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0, args[1], c);
1953 break;
1954
1955 case INDEX_op_rotl_i32:
1956 if (const_args[2]) {
1957 tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0, args[1],
1958 ((0x20 - args[2]) & 0x1f) ?
1959 SHIFT_IMM_ROR((0x20 - args[2]) & 0x1f) :
1960 SHIFT_IMM_LSL(0));
1961 } else {
1962 tcg_out_dat_imm(s, COND_AL, ARITH_RSB, TCG_REG_TMP, args[2], 0x20);
1963 tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0, args[1],
1964 SHIFT_REG_ROR(TCG_REG_TMP));
1965 }
1966 break;
1967
1968 case INDEX_op_ctz_i32:
1969 tcg_out_dat_reg(s, COND_AL, INSN_RBIT, TCG_REG_TMP, 0, args[1], 0);
1970 a1 = TCG_REG_TMP;
1971 goto do_clz;
1972
1973 case INDEX_op_clz_i32:
1974 a1 = args[1];
1975 do_clz:
1976 a0 = args[0];
1977 a2 = args[2];
1978 c = const_args[2];
1979 if (c && a2 == 32) {
1980 tcg_out_dat_reg(s, COND_AL, INSN_CLZ, a0, 0, a1, 0);
1981 break;
1982 }
1983 tcg_out_dat_imm(s, COND_AL, ARITH_CMP, 0, a1, 0);
1984 tcg_out_dat_reg(s, COND_NE, INSN_CLZ, a0, 0, a1, 0);
1985 if (c || a0 != a2) {
1986 tcg_out_dat_rIK(s, COND_EQ, ARITH_MOV, ARITH_MVN, a0, 0, a2, c);
1987 }
1988 break;
1989
1990 case INDEX_op_brcond_i32:
1991 tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0,
1992 args[0], args[1], const_args[1]);
1993 tcg_out_goto_label(s, tcg_cond_to_arm_cond[args[2]],
1994 arg_label(args[3]));
1995 break;
1996 case INDEX_op_setcond_i32:
1997 tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0,
1998 args[1], args[2], const_args[2]);
1999 tcg_out_dat_imm(s, tcg_cond_to_arm_cond[args[3]],
2000 ARITH_MOV, args[0], 0, 1);
2001 tcg_out_dat_imm(s, tcg_cond_to_arm_cond[tcg_invert_cond(args[3])],
2002 ARITH_MOV, args[0], 0, 0);
2003 break;
2004
2005 case INDEX_op_brcond2_i32:
2006 c = tcg_out_cmp2(s, args, const_args);
2007 tcg_out_goto_label(s, tcg_cond_to_arm_cond[c], arg_label(args[5]));
2008 break;
2009 case INDEX_op_setcond2_i32:
2010 c = tcg_out_cmp2(s, args + 1, const_args + 1);
2011 tcg_out_dat_imm(s, tcg_cond_to_arm_cond[c], ARITH_MOV, args[0], 0, 1);
2012 tcg_out_dat_imm(s, tcg_cond_to_arm_cond[tcg_invert_cond(c)],
2013 ARITH_MOV, args[0], 0, 0);
2014 break;
2015
2016 case INDEX_op_qemu_ld_i32:
2017 tcg_out_qemu_ld(s, args, 0);
2018 break;
2019 case INDEX_op_qemu_ld_i64:
2020 tcg_out_qemu_ld(s, args, 1);
2021 break;
2022 case INDEX_op_qemu_st_i32:
2023 tcg_out_qemu_st(s, args, 0);
2024 break;
2025 case INDEX_op_qemu_st_i64:
2026 tcg_out_qemu_st(s, args, 1);
2027 break;
2028
2029 case INDEX_op_bswap16_i32:
2030 tcg_out_bswap16(s, COND_AL, args[0], args[1]);
2031 break;
2032 case INDEX_op_bswap32_i32:
2033 tcg_out_bswap32(s, COND_AL, args[0], args[1]);
2034 break;
2035
2036 case INDEX_op_ext8s_i32:
2037 tcg_out_ext8s(s, COND_AL, args[0], args[1]);
2038 break;
2039 case INDEX_op_ext16s_i32:
2040 tcg_out_ext16s(s, COND_AL, args[0], args[1]);
2041 break;
2042 case INDEX_op_ext16u_i32:
2043 tcg_out_ext16u(s, COND_AL, args[0], args[1]);
2044 break;
2045
2046 case INDEX_op_deposit_i32:
2047 tcg_out_deposit(s, COND_AL, args[0], args[2],
2048 args[3], args[4], const_args[2]);
2049 break;
2050 case INDEX_op_extract_i32:
2051 tcg_out_extract(s, COND_AL, args[0], args[1], args[2], args[3]);
2052 break;
2053 case INDEX_op_sextract_i32:
2054 tcg_out_sextract(s, COND_AL, args[0], args[1], args[2], args[3]);
2055 break;
2056 case INDEX_op_extract2_i32:
2057 /* ??? These optimization vs zero should be generic. */
2058 /* ??? But we can't substitute 2 for 1 in the opcode stream yet. */
2059 if (const_args[1]) {
2060 if (const_args[2]) {
2061 tcg_out_movi(s, TCG_TYPE_REG, args[0], 0);
2062 } else {
2063 tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0,
2064 args[2], SHIFT_IMM_LSL(32 - args[3]));
2065 }
2066 } else if (const_args[2]) {
2067 tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0,
2068 args[1], SHIFT_IMM_LSR(args[3]));
2069 } else {
2070 /* We can do extract2 in 2 insns, vs the 3 required otherwise. */
2071 tcg_out_dat_reg(s, COND_AL, ARITH_MOV, TCG_REG_TMP, 0,
2072 args[2], SHIFT_IMM_LSL(32 - args[3]));
2073 tcg_out_dat_reg(s, COND_AL, ARITH_ORR, args[0], TCG_REG_TMP,
2074 args[1], SHIFT_IMM_LSR(args[3]));
2075 }
2076 break;
2077
2078 case INDEX_op_div_i32:
2079 tcg_out_sdiv(s, COND_AL, args[0], args[1], args[2]);
2080 break;
2081 case INDEX_op_divu_i32:
2082 tcg_out_udiv(s, COND_AL, args[0], args[1], args[2]);
2083 break;
2084
2085 case INDEX_op_mb:
2086 tcg_out_mb(s, args[0]);
2087 break;
2088
2089 case INDEX_op_mov_i32: /* Always emitted via tcg_out_mov. */
2090 case INDEX_op_movi_i32: /* Always emitted via tcg_out_movi. */
2091 case INDEX_op_call: /* Always emitted via tcg_out_call. */
2092 default:
2093 tcg_abort();
2094 }
2095 }
2096
2097 static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
2098 {
2099 static const TCGTargetOpDef r = { .args_ct_str = { "r" } };
2100 static const TCGTargetOpDef r_r = { .args_ct_str = { "r", "r" } };
2101 static const TCGTargetOpDef s_s = { .args_ct_str = { "s", "s" } };
2102 static const TCGTargetOpDef r_l = { .args_ct_str = { "r", "l" } };
2103 static const TCGTargetOpDef r_r_r = { .args_ct_str = { "r", "r", "r" } };
2104 static const TCGTargetOpDef r_r_l = { .args_ct_str = { "r", "r", "l" } };
2105 static const TCGTargetOpDef r_l_l = { .args_ct_str = { "r", "l", "l" } };
2106 static const TCGTargetOpDef s_s_s = { .args_ct_str = { "s", "s", "s" } };
2107 static const TCGTargetOpDef r_r_ri = { .args_ct_str = { "r", "r", "ri" } };
2108 static const TCGTargetOpDef r_r_rI = { .args_ct_str = { "r", "r", "rI" } };
2109 static const TCGTargetOpDef r_r_rIN
2110 = { .args_ct_str = { "r", "r", "rIN" } };
2111 static const TCGTargetOpDef r_r_rIK
2112 = { .args_ct_str = { "r", "r", "rIK" } };
2113 static const TCGTargetOpDef r_r_r_r
2114 = { .args_ct_str = { "r", "r", "r", "r" } };
2115 static const TCGTargetOpDef r_r_l_l
2116 = { .args_ct_str = { "r", "r", "l", "l" } };
2117 static const TCGTargetOpDef s_s_s_s
2118 = { .args_ct_str = { "s", "s", "s", "s" } };
2119 static const TCGTargetOpDef br
2120 = { .args_ct_str = { "r", "rIN" } };
2121 static const TCGTargetOpDef ext2
2122 = { .args_ct_str = { "r", "rZ", "rZ" } };
2123 static const TCGTargetOpDef dep
2124 = { .args_ct_str = { "r", "0", "rZ" } };
2125 static const TCGTargetOpDef movc
2126 = { .args_ct_str = { "r", "r", "rIN", "rIK", "0" } };
2127 static const TCGTargetOpDef add2
2128 = { .args_ct_str = { "r", "r", "r", "r", "rIN", "rIK" } };
2129 static const TCGTargetOpDef sub2
2130 = { .args_ct_str = { "r", "r", "rI", "rI", "rIN", "rIK" } };
2131 static const TCGTargetOpDef br2
2132 = { .args_ct_str = { "r", "r", "rI", "rI" } };
2133 static const TCGTargetOpDef setc2
2134 = { .args_ct_str = { "r", "r", "r", "rI", "rI" } };
2135
2136 switch (op) {
2137 case INDEX_op_goto_ptr:
2138 return &r;
2139
2140 case INDEX_op_ld8u_i32:
2141 case INDEX_op_ld8s_i32:
2142 case INDEX_op_ld16u_i32:
2143 case INDEX_op_ld16s_i32:
2144 case INDEX_op_ld_i32:
2145 case INDEX_op_st8_i32:
2146 case INDEX_op_st16_i32:
2147 case INDEX_op_st_i32:
2148 case INDEX_op_neg_i32:
2149 case INDEX_op_not_i32:
2150 case INDEX_op_bswap16_i32:
2151 case INDEX_op_bswap32_i32:
2152 case INDEX_op_ext8s_i32:
2153 case INDEX_op_ext16s_i32:
2154 case INDEX_op_ext16u_i32:
2155 case INDEX_op_extract_i32:
2156 case INDEX_op_sextract_i32:
2157 return &r_r;
2158
2159 case INDEX_op_add_i32:
2160 case INDEX_op_sub_i32:
2161 case INDEX_op_setcond_i32:
2162 return &r_r_rIN;
2163 case INDEX_op_and_i32:
2164 case INDEX_op_andc_i32:
2165 case INDEX_op_clz_i32:
2166 case INDEX_op_ctz_i32:
2167 return &r_r_rIK;
2168 case INDEX_op_mul_i32:
2169 case INDEX_op_div_i32:
2170 case INDEX_op_divu_i32:
2171 return &r_r_r;
2172 case INDEX_op_mulu2_i32:
2173 case INDEX_op_muls2_i32:
2174 return &r_r_r_r;
2175 case INDEX_op_or_i32:
2176 case INDEX_op_xor_i32:
2177 return &r_r_rI;
2178 case INDEX_op_shl_i32:
2179 case INDEX_op_shr_i32:
2180 case INDEX_op_sar_i32:
2181 case INDEX_op_rotl_i32:
2182 case INDEX_op_rotr_i32:
2183 return &r_r_ri;
2184
2185 case INDEX_op_brcond_i32:
2186 return &br;
2187 case INDEX_op_deposit_i32:
2188 return &dep;
2189 case INDEX_op_extract2_i32:
2190 return &ext2;
2191 case INDEX_op_movcond_i32:
2192 return &movc;
2193 case INDEX_op_add2_i32:
2194 return &add2;
2195 case INDEX_op_sub2_i32:
2196 return &sub2;
2197 case INDEX_op_brcond2_i32:
2198 return &br2;
2199 case INDEX_op_setcond2_i32:
2200 return &setc2;
2201
2202 case INDEX_op_qemu_ld_i32:
2203 return TARGET_LONG_BITS == 32 ? &r_l : &r_l_l;
2204 case INDEX_op_qemu_ld_i64:
2205 return TARGET_LONG_BITS == 32 ? &r_r_l : &r_r_l_l;
2206 case INDEX_op_qemu_st_i32:
2207 return TARGET_LONG_BITS == 32 ? &s_s : &s_s_s;
2208 case INDEX_op_qemu_st_i64:
2209 return TARGET_LONG_BITS == 32 ? &s_s_s : &s_s_s_s;
2210
2211 default:
2212 return NULL;
2213 }
2214 }
2215
2216 static void tcg_target_init(TCGContext *s)
2217 {
2218 /* Only probe for the platform and capabilities if we havn't already
2219 determined maximum values at compile time. */
2220 #ifndef use_idiv_instructions
2221 {
2222 unsigned long hwcap = qemu_getauxval(AT_HWCAP);
2223 use_idiv_instructions = (hwcap & HWCAP_ARM_IDIVA) != 0;
2224 }
2225 #endif
2226 if (__ARM_ARCH < 7) {
2227 const char *pl = (const char *)qemu_getauxval(AT_PLATFORM);
2228 if (pl != NULL && pl[0] == 'v' && pl[1] >= '4' && pl[1] <= '9') {
2229 arm_arch = pl[1] - '0';
2230 }
2231 }
2232
2233 tcg_target_available_regs[TCG_TYPE_I32] = 0xffff;
2234
2235 tcg_target_call_clobber_regs = 0;
2236 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R0);
2237 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R1);
2238 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R2);
2239 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R3);
2240 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R12);
2241 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R14);
2242
2243 s->reserved_regs = 0;
2244 tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK);
2245 tcg_regset_set_reg(s->reserved_regs, TCG_REG_TMP);
2246 tcg_regset_set_reg(s->reserved_regs, TCG_REG_PC);
2247 }
2248
2249 static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
2250 TCGReg arg1, intptr_t arg2)
2251 {
2252 tcg_out_ld32u(s, COND_AL, arg, arg1, arg2);
2253 }
2254
2255 static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
2256 TCGReg arg1, intptr_t arg2)
2257 {
2258 tcg_out_st32(s, COND_AL, arg, arg1, arg2);
2259 }
2260
2261 static inline bool tcg_out_sti(TCGContext *s, TCGType type, TCGArg val,
2262 TCGReg base, intptr_t ofs)
2263 {
2264 return false;
2265 }
2266
2267 static inline void tcg_out_mov(TCGContext *s, TCGType type,
2268 TCGReg ret, TCGReg arg)
2269 {
2270 tcg_out_dat_reg(s, COND_AL, ARITH_MOV, ret, 0, arg, SHIFT_IMM_LSL(0));
2271 }
2272
2273 static inline void tcg_out_movi(TCGContext *s, TCGType type,
2274 TCGReg ret, tcg_target_long arg)
2275 {
2276 tcg_out_movi32(s, COND_AL, ret, arg);
2277 }
2278
2279 static void tcg_out_nop_fill(tcg_insn_unit *p, int count)
2280 {
2281 int i;
2282 for (i = 0; i < count; ++i) {
2283 p[i] = INSN_NOP;
2284 }
2285 }
2286
2287 /* Compute frame size via macros, to share between tcg_target_qemu_prologue
2288 and tcg_register_jit. */
2289
2290 #define PUSH_SIZE ((11 - 4 + 1 + 1) * sizeof(tcg_target_long))
2291
2292 #define FRAME_SIZE \
2293 ((PUSH_SIZE \
2294 + TCG_STATIC_CALL_ARGS_SIZE \
2295 + CPU_TEMP_BUF_NLONGS * sizeof(long) \
2296 + TCG_TARGET_STACK_ALIGN - 1) \
2297 & -TCG_TARGET_STACK_ALIGN)
2298
2299 static void tcg_target_qemu_prologue(TCGContext *s)
2300 {
2301 int stack_addend;
2302
2303 /* Calling convention requires us to save r4-r11 and lr. */
2304 /* stmdb sp!, { r4 - r11, lr } */
2305 tcg_out32(s, (COND_AL << 28) | 0x092d4ff0);
2306
2307 /* Reserve callee argument and tcg temp space. */
2308 stack_addend = FRAME_SIZE - PUSH_SIZE;
2309
2310 tcg_out_dat_rI(s, COND_AL, ARITH_SUB, TCG_REG_CALL_STACK,
2311 TCG_REG_CALL_STACK, stack_addend, 1);
2312 tcg_set_frame(s, TCG_REG_CALL_STACK, TCG_STATIC_CALL_ARGS_SIZE,
2313 CPU_TEMP_BUF_NLONGS * sizeof(long));
2314
2315 tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
2316
2317 tcg_out_bx(s, COND_AL, tcg_target_call_iarg_regs[1]);
2318
2319 /*
2320 * Return path for goto_ptr. Set return value to 0, a-la exit_tb,
2321 * and fall through to the rest of the epilogue.
2322 */
2323 s->code_gen_epilogue = s->code_ptr;
2324 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R0, 0);
2325
2326 /* TB epilogue */
2327 tb_ret_addr = s->code_ptr;
2328 tcg_out_dat_rI(s, COND_AL, ARITH_ADD, TCG_REG_CALL_STACK,
2329 TCG_REG_CALL_STACK, stack_addend, 1);
2330
2331 /* ldmia sp!, { r4 - r11, pc } */
2332 tcg_out32(s, (COND_AL << 28) | 0x08bd8ff0);
2333 }
2334
2335 typedef struct {
2336 DebugFrameHeader h;
2337 uint8_t fde_def_cfa[4];
2338 uint8_t fde_reg_ofs[18];
2339 } DebugFrame;
2340
2341 #define ELF_HOST_MACHINE EM_ARM
2342
2343 /* We're expecting a 2 byte uleb128 encoded value. */
2344 QEMU_BUILD_BUG_ON(FRAME_SIZE >= (1 << 14));
2345
2346 static const DebugFrame debug_frame = {
2347 .h.cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */
2348 .h.cie.id = -1,
2349 .h.cie.version = 1,
2350 .h.cie.code_align = 1,
2351 .h.cie.data_align = 0x7c, /* sleb128 -4 */
2352 .h.cie.return_column = 14,
2353
2354 /* Total FDE size does not include the "len" member. */
2355 .h.fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, h.fde.cie_offset),
2356
2357 .fde_def_cfa = {
2358 12, 13, /* DW_CFA_def_cfa sp, ... */
2359 (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */
2360 (FRAME_SIZE >> 7)
2361 },
2362 .fde_reg_ofs = {
2363 /* The following must match the stmdb in the prologue. */
2364 0x8e, 1, /* DW_CFA_offset, lr, -4 */
2365 0x8b, 2, /* DW_CFA_offset, r11, -8 */
2366 0x8a, 3, /* DW_CFA_offset, r10, -12 */
2367 0x89, 4, /* DW_CFA_offset, r9, -16 */
2368 0x88, 5, /* DW_CFA_offset, r8, -20 */
2369 0x87, 6, /* DW_CFA_offset, r7, -24 */
2370 0x86, 7, /* DW_CFA_offset, r6, -28 */
2371 0x85, 8, /* DW_CFA_offset, r5, -32 */
2372 0x84, 9, /* DW_CFA_offset, r4, -36 */
2373 }
2374 };
2375
2376 void tcg_register_jit(void *buf, size_t buf_size)
2377 {
2378 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));
2379 }