]>
Commit | Line | Data |
---|---|---|
811d4cf4 AZ |
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 | */ | |
d4a9eb1f | 24 | |
41d9ea80 | 25 | #include "elf.h" |
9ecefc84 RH |
26 | #include "tcg-be-ldst.h" |
27 | ||
cb91021a RH |
28 | /* The __ARM_ARCH define is provided by gcc 4.8. Construct it otherwise. */ |
29 | #ifndef __ARM_ARCH | |
30 | # if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) \ | |
31 | || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) \ | |
32 | || defined(__ARM_ARCH_7EM__) | |
33 | # define __ARM_ARCH 7 | |
34 | # elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) \ | |
35 | || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) \ | |
36 | || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) | |
37 | # define __ARM_ARCH 6 | |
38 | # elif defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5E__) \ | |
39 | || defined(__ARM_ARCH_5T__) || defined(__ARM_ARCH_5TE__) \ | |
40 | || defined(__ARM_ARCH_5TEJ__) | |
41 | # define __ARM_ARCH 5 | |
42 | # else | |
43 | # define __ARM_ARCH 4 | |
44 | # endif | |
45 | #endif | |
46 | ||
1e709f38 RH |
47 | static int arm_arch = __ARM_ARCH; |
48 | ||
cb91021a RH |
49 | #if defined(__ARM_ARCH_5T__) \ |
50 | || defined(__ARM_ARCH_5TE__) || defined(__ARM_ARCH_5TEJ__) | |
51 | # define use_armv5t_instructions 1 | |
ac34fb5c | 52 | #else |
cb91021a | 53 | # define use_armv5t_instructions use_armv6_instructions |
ac34fb5c | 54 | #endif |
ac34fb5c | 55 | |
1e709f38 RH |
56 | #define use_armv6_instructions (__ARM_ARCH >= 6 || arm_arch >= 6) |
57 | #define use_armv7_instructions (__ARM_ARCH >= 7 || arm_arch >= 7) | |
ac34fb5c | 58 | |
72e1ccfc RH |
59 | #ifndef use_idiv_instructions |
60 | bool use_idiv_instructions; | |
61 | #endif | |
72e1ccfc | 62 | |
1a8e80d7 RH |
63 | /* ??? Ought to think about changing CONFIG_SOFTMMU to always defined. */ |
64 | #ifdef CONFIG_SOFTMMU | |
65 | # define USING_SOFTMMU 1 | |
66 | #else | |
67 | # define USING_SOFTMMU 0 | |
68 | #endif | |
69 | ||
d4a9eb1f BS |
70 | #ifndef NDEBUG |
71 | static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = { | |
811d4cf4 AZ |
72 | "%r0", |
73 | "%r1", | |
74 | "%r2", | |
75 | "%r3", | |
76 | "%r4", | |
77 | "%r5", | |
78 | "%r6", | |
79 | "%r7", | |
80 | "%r8", | |
81 | "%r9", | |
82 | "%r10", | |
83 | "%r11", | |
84 | "%r12", | |
85 | "%r13", | |
86 | "%r14", | |
e4a7d5e8 | 87 | "%pc", |
811d4cf4 | 88 | }; |
d4a9eb1f | 89 | #endif |
811d4cf4 | 90 | |
d4a9eb1f | 91 | static const int tcg_target_reg_alloc_order[] = { |
811d4cf4 AZ |
92 | TCG_REG_R4, |
93 | TCG_REG_R5, | |
94 | TCG_REG_R6, | |
95 | TCG_REG_R7, | |
96 | TCG_REG_R8, | |
97 | TCG_REG_R9, | |
98 | TCG_REG_R10, | |
99 | TCG_REG_R11, | |
811d4cf4 | 100 | TCG_REG_R13, |
914ccf51 AJ |
101 | TCG_REG_R0, |
102 | TCG_REG_R1, | |
103 | TCG_REG_R2, | |
104 | TCG_REG_R3, | |
105 | TCG_REG_R12, | |
811d4cf4 AZ |
106 | TCG_REG_R14, |
107 | }; | |
108 | ||
d4a9eb1f | 109 | static const int tcg_target_call_iarg_regs[4] = { |
811d4cf4 AZ |
110 | TCG_REG_R0, TCG_REG_R1, TCG_REG_R2, TCG_REG_R3 |
111 | }; | |
d4a9eb1f | 112 | static const int tcg_target_call_oarg_regs[2] = { |
811d4cf4 AZ |
113 | TCG_REG_R0, TCG_REG_R1 |
114 | }; | |
115 | ||
13dd6fb9 | 116 | #define TCG_REG_TMP TCG_REG_R12 |
4346457a | 117 | |
267c9319 | 118 | static inline void reloc_pc24(tcg_insn_unit *code_ptr, tcg_insn_unit *target) |
c69806ab | 119 | { |
267c9319 RH |
120 | ptrdiff_t offset = (tcg_ptr_byte_diff(target, code_ptr) - 8) >> 2; |
121 | *code_ptr = (*code_ptr & ~0xffffff) | (offset & 0xffffff); | |
c69806ab AJ |
122 | } |
123 | ||
267c9319 | 124 | static void patch_reloc(tcg_insn_unit *code_ptr, int type, |
2ba7fae2 | 125 | intptr_t value, intptr_t addend) |
811d4cf4 | 126 | { |
267c9319 RH |
127 | assert(type == R_ARM_PC24); |
128 | assert(addend == 0); | |
129 | reloc_pc24(code_ptr, (tcg_insn_unit *)value); | |
811d4cf4 AZ |
130 | } |
131 | ||
b6b24cb0 RH |
132 | #define TCG_CT_CONST_ARM 0x100 |
133 | #define TCG_CT_CONST_INV 0x200 | |
134 | #define TCG_CT_CONST_NEG 0x400 | |
135 | #define TCG_CT_CONST_ZERO 0x800 | |
19b62bf4 | 136 | |
811d4cf4 | 137 | /* parse target specific constraints */ |
d4a9eb1f | 138 | static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str) |
811d4cf4 AZ |
139 | { |
140 | const char *ct_str; | |
141 | ||
142 | ct_str = *pct_str; | |
143 | switch (ct_str[0]) { | |
cb4e581f | 144 | case 'I': |
19b62bf4 RH |
145 | ct->ct |= TCG_CT_CONST_ARM; |
146 | break; | |
147 | case 'K': | |
148 | ct->ct |= TCG_CT_CONST_INV; | |
149 | break; | |
a9a86ae9 RH |
150 | case 'N': /* The gcc constraint letter is L, already used here. */ |
151 | ct->ct |= TCG_CT_CONST_NEG; | |
152 | break; | |
b6b24cb0 RH |
153 | case 'Z': |
154 | ct->ct |= TCG_CT_CONST_ZERO; | |
155 | break; | |
cb4e581f | 156 | |
811d4cf4 | 157 | case 'r': |
811d4cf4 AZ |
158 | ct->ct |= TCG_CT_REG; |
159 | tcg_regset_set32(ct->u.regs, 0, (1 << TCG_TARGET_NB_REGS) - 1); | |
160 | break; | |
161 | ||
67dcab73 AJ |
162 | /* qemu_ld address */ |
163 | case 'l': | |
811d4cf4 AZ |
164 | ct->ct |= TCG_CT_REG; |
165 | tcg_regset_set32(ct->u.regs, 0, (1 << TCG_TARGET_NB_REGS) - 1); | |
67dcab73 | 166 | #ifdef CONFIG_SOFTMMU |
d9f4dde4 | 167 | /* r0-r2,lr will be overwritten when reading the tlb entry, |
67dcab73 | 168 | so don't use these. */ |
811d4cf4 AZ |
169 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R0); |
170 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R1); | |
9716ef3b | 171 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R2); |
d9f4dde4 | 172 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R14); |
67dcab73 | 173 | #endif |
d0660ed4 AZ |
174 | break; |
175 | ||
a485cff0 | 176 | /* qemu_st address & data */ |
67dcab73 | 177 | case 's': |
811d4cf4 AZ |
178 | ct->ct |= TCG_CT_REG; |
179 | tcg_regset_set32(ct->u.regs, 0, (1 << TCG_TARGET_NB_REGS) - 1); | |
702b33b1 RH |
180 | /* r0-r2 will be overwritten when reading the tlb entry (softmmu only) |
181 | and r0-r1 doing the byte swapping, so don't use these. */ | |
811d4cf4 | 182 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R0); |
811d4cf4 | 183 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R1); |
702b33b1 RH |
184 | #if defined(CONFIG_SOFTMMU) |
185 | /* Avoid clashes with registers being used for helper args */ | |
67dcab73 | 186 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R2); |
89c33337 | 187 | #if TARGET_LONG_BITS == 64 |
9716ef3b PM |
188 | /* Avoid clashes with registers being used for helper args */ |
189 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3); | |
190 | #endif | |
d9f4dde4 | 191 | tcg_regset_reset_reg(ct->u.regs, TCG_REG_R14); |
811d4cf4 | 192 | #endif |
67dcab73 | 193 | break; |
811d4cf4 | 194 | |
811d4cf4 AZ |
195 | default: |
196 | return -1; | |
197 | } | |
198 | ct_str++; | |
199 | *pct_str = ct_str; | |
200 | ||
201 | return 0; | |
202 | } | |
203 | ||
94953e6d LD |
204 | static inline uint32_t rotl(uint32_t val, int n) |
205 | { | |
206 | return (val << n) | (val >> (32 - n)); | |
207 | } | |
208 | ||
209 | /* ARM immediates for ALU instructions are made of an unsigned 8-bit | |
210 | right-rotated by an even amount between 0 and 30. */ | |
211 | static inline int encode_imm(uint32_t imm) | |
212 | { | |
4e6f6d4c LD |
213 | int shift; |
214 | ||
94953e6d LD |
215 | /* simple case, only lower bits */ |
216 | if ((imm & ~0xff) == 0) | |
217 | return 0; | |
218 | /* then try a simple even shift */ | |
219 | shift = ctz32(imm) & ~1; | |
220 | if (((imm >> shift) & ~0xff) == 0) | |
221 | return 32 - shift; | |
222 | /* now try harder with rotations */ | |
223 | if ((rotl(imm, 2) & ~0xff) == 0) | |
224 | return 2; | |
225 | if ((rotl(imm, 4) & ~0xff) == 0) | |
226 | return 4; | |
227 | if ((rotl(imm, 6) & ~0xff) == 0) | |
228 | return 6; | |
229 | /* imm can't be encoded */ | |
230 | return -1; | |
231 | } | |
cb4e581f LD |
232 | |
233 | static inline int check_fit_imm(uint32_t imm) | |
234 | { | |
94953e6d | 235 | return encode_imm(imm) >= 0; |
cb4e581f LD |
236 | } |
237 | ||
811d4cf4 AZ |
238 | /* Test if a constant matches the constraint. |
239 | * TODO: define constraints for: | |
240 | * | |
241 | * ldr/str offset: between -0xfff and 0xfff | |
242 | * ldrh/strh offset: between -0xff and 0xff | |
243 | * mov operand2: values represented with x << (2 * y), x < 0x100 | |
244 | * add, sub, eor...: ditto | |
245 | */ | |
f6c6afc1 | 246 | static inline int tcg_target_const_match(tcg_target_long val, TCGType type, |
19b62bf4 | 247 | const TCGArgConstraint *arg_ct) |
811d4cf4 AZ |
248 | { |
249 | int ct; | |
250 | ct = arg_ct->ct; | |
19b62bf4 | 251 | if (ct & TCG_CT_CONST) { |
811d4cf4 | 252 | return 1; |
19b62bf4 | 253 | } else if ((ct & TCG_CT_CONST_ARM) && check_fit_imm(val)) { |
cb4e581f | 254 | return 1; |
19b62bf4 RH |
255 | } else if ((ct & TCG_CT_CONST_INV) && check_fit_imm(~val)) { |
256 | return 1; | |
a9a86ae9 RH |
257 | } else if ((ct & TCG_CT_CONST_NEG) && check_fit_imm(-val)) { |
258 | return 1; | |
b6b24cb0 RH |
259 | } else if ((ct & TCG_CT_CONST_ZERO) && val == 0) { |
260 | return 1; | |
19b62bf4 | 261 | } else { |
811d4cf4 | 262 | return 0; |
19b62bf4 | 263 | } |
811d4cf4 AZ |
264 | } |
265 | ||
2df3f1ee RH |
266 | #define TO_CPSR (1 << 20) |
267 | ||
9feac1d7 | 268 | typedef enum { |
2df3f1ee RH |
269 | ARITH_AND = 0x0 << 21, |
270 | ARITH_EOR = 0x1 << 21, | |
271 | ARITH_SUB = 0x2 << 21, | |
272 | ARITH_RSB = 0x3 << 21, | |
273 | ARITH_ADD = 0x4 << 21, | |
274 | ARITH_ADC = 0x5 << 21, | |
275 | ARITH_SBC = 0x6 << 21, | |
276 | ARITH_RSC = 0x7 << 21, | |
277 | ARITH_TST = 0x8 << 21 | TO_CPSR, | |
278 | ARITH_CMP = 0xa << 21 | TO_CPSR, | |
279 | ARITH_CMN = 0xb << 21 | TO_CPSR, | |
280 | ARITH_ORR = 0xc << 21, | |
281 | ARITH_MOV = 0xd << 21, | |
282 | ARITH_BIC = 0xe << 21, | |
283 | ARITH_MVN = 0xf << 21, | |
9feac1d7 RH |
284 | |
285 | INSN_LDR_IMM = 0x04100000, | |
286 | INSN_LDR_REG = 0x06100000, | |
287 | INSN_STR_IMM = 0x04000000, | |
288 | INSN_STR_REG = 0x06000000, | |
289 | ||
290 | INSN_LDRH_IMM = 0x005000b0, | |
291 | INSN_LDRH_REG = 0x001000b0, | |
292 | INSN_LDRSH_IMM = 0x005000f0, | |
293 | INSN_LDRSH_REG = 0x001000f0, | |
294 | INSN_STRH_IMM = 0x004000b0, | |
295 | INSN_STRH_REG = 0x000000b0, | |
296 | ||
297 | INSN_LDRB_IMM = 0x04500000, | |
298 | INSN_LDRB_REG = 0x06500000, | |
299 | INSN_LDRSB_IMM = 0x005000d0, | |
300 | INSN_LDRSB_REG = 0x001000d0, | |
301 | INSN_STRB_IMM = 0x04400000, | |
302 | INSN_STRB_REG = 0x06400000, | |
702b33b1 RH |
303 | |
304 | INSN_LDRD_IMM = 0x004000d0, | |
23bbc250 RH |
305 | INSN_LDRD_REG = 0x000000d0, |
306 | INSN_STRD_IMM = 0x004000f0, | |
307 | INSN_STRD_REG = 0x000000f0, | |
9feac1d7 | 308 | } ARMInsn; |
811d4cf4 | 309 | |
811d4cf4 AZ |
310 | #define SHIFT_IMM_LSL(im) (((im) << 7) | 0x00) |
311 | #define SHIFT_IMM_LSR(im) (((im) << 7) | 0x20) | |
312 | #define SHIFT_IMM_ASR(im) (((im) << 7) | 0x40) | |
313 | #define SHIFT_IMM_ROR(im) (((im) << 7) | 0x60) | |
314 | #define SHIFT_REG_LSL(rs) (((rs) << 8) | 0x10) | |
315 | #define SHIFT_REG_LSR(rs) (((rs) << 8) | 0x30) | |
316 | #define SHIFT_REG_ASR(rs) (((rs) << 8) | 0x50) | |
317 | #define SHIFT_REG_ROR(rs) (((rs) << 8) | 0x70) | |
318 | ||
319 | enum arm_cond_code_e { | |
320 | COND_EQ = 0x0, | |
321 | COND_NE = 0x1, | |
322 | COND_CS = 0x2, /* Unsigned greater or equal */ | |
323 | COND_CC = 0x3, /* Unsigned less than */ | |
324 | COND_MI = 0x4, /* Negative */ | |
325 | COND_PL = 0x5, /* Zero or greater */ | |
326 | COND_VS = 0x6, /* Overflow */ | |
327 | COND_VC = 0x7, /* No overflow */ | |
328 | COND_HI = 0x8, /* Unsigned greater than */ | |
329 | COND_LS = 0x9, /* Unsigned less or equal */ | |
330 | COND_GE = 0xa, | |
331 | COND_LT = 0xb, | |
332 | COND_GT = 0xc, | |
333 | COND_LE = 0xd, | |
334 | COND_AL = 0xe, | |
335 | }; | |
336 | ||
0aed257f | 337 | static const uint8_t tcg_cond_to_arm_cond[] = { |
811d4cf4 AZ |
338 | [TCG_COND_EQ] = COND_EQ, |
339 | [TCG_COND_NE] = COND_NE, | |
340 | [TCG_COND_LT] = COND_LT, | |
341 | [TCG_COND_GE] = COND_GE, | |
342 | [TCG_COND_LE] = COND_LE, | |
343 | [TCG_COND_GT] = COND_GT, | |
344 | /* unsigned */ | |
345 | [TCG_COND_LTU] = COND_CC, | |
346 | [TCG_COND_GEU] = COND_CS, | |
347 | [TCG_COND_LEU] = COND_LS, | |
348 | [TCG_COND_GTU] = COND_HI, | |
349 | }; | |
350 | ||
351 | static inline void tcg_out_bx(TCGContext *s, int cond, int rn) | |
352 | { | |
353 | tcg_out32(s, (cond << 28) | 0x012fff10 | rn); | |
354 | } | |
355 | ||
356 | static inline void tcg_out_b(TCGContext *s, int cond, int32_t offset) | |
357 | { | |
358 | tcg_out32(s, (cond << 28) | 0x0a000000 | | |
359 | (((offset - 8) >> 2) & 0x00ffffff)); | |
360 | } | |
361 | ||
e936243a AZ |
362 | static inline void tcg_out_b_noaddr(TCGContext *s, int cond) |
363 | { | |
267c9319 RH |
364 | /* We pay attention here to not modify the branch target by masking |
365 | the corresponding bytes. This ensure that caches and memory are | |
56779034 | 366 | kept coherent during retranslation. */ |
267c9319 | 367 | tcg_out32(s, deposit32(*s->code_ptr, 24, 8, (cond << 4) | 0x0a)); |
d9f4dde4 RH |
368 | } |
369 | ||
370 | static inline void tcg_out_bl_noaddr(TCGContext *s, int cond) | |
371 | { | |
267c9319 RH |
372 | /* We pay attention here to not modify the branch target by masking |
373 | the corresponding bytes. This ensure that caches and memory are | |
d9f4dde4 | 374 | kept coherent during retranslation. */ |
267c9319 | 375 | tcg_out32(s, deposit32(*s->code_ptr, 24, 8, (cond << 4) | 0x0b)); |
e936243a AZ |
376 | } |
377 | ||
811d4cf4 AZ |
378 | static inline void tcg_out_bl(TCGContext *s, int cond, int32_t offset) |
379 | { | |
380 | tcg_out32(s, (cond << 28) | 0x0b000000 | | |
381 | (((offset - 8) >> 2) & 0x00ffffff)); | |
382 | } | |
383 | ||
23401b58 AJ |
384 | static inline void tcg_out_blx(TCGContext *s, int cond, int rn) |
385 | { | |
386 | tcg_out32(s, (cond << 28) | 0x012fff30 | rn); | |
387 | } | |
388 | ||
24e838b7 PM |
389 | static inline void tcg_out_blx_imm(TCGContext *s, int32_t offset) |
390 | { | |
391 | tcg_out32(s, 0xfa000000 | ((offset & 2) << 23) | | |
392 | (((offset - 8) >> 2) & 0x00ffffff)); | |
393 | } | |
394 | ||
811d4cf4 AZ |
395 | static inline void tcg_out_dat_reg(TCGContext *s, |
396 | int cond, int opc, int rd, int rn, int rm, int shift) | |
397 | { | |
2df3f1ee | 398 | tcg_out32(s, (cond << 28) | (0 << 25) | opc | |
811d4cf4 AZ |
399 | (rn << 16) | (rd << 12) | shift | rm); |
400 | } | |
401 | ||
df5e0ef7 RH |
402 | static inline void tcg_out_nop(TCGContext *s) |
403 | { | |
404 | if (use_armv7_instructions) { | |
405 | /* Architected nop introduced in v6k. */ | |
406 | /* ??? This is an MSR (imm) 0,0,0 insn. Anyone know if this | |
407 | also Just So Happened to do nothing on pre-v6k so that we | |
408 | don't need to conditionalize it? */ | |
409 | tcg_out32(s, 0xe320f000); | |
410 | } else { | |
411 | /* Prior to that the assembler uses mov r0, r0. */ | |
412 | tcg_out_dat_reg(s, COND_AL, ARITH_MOV, 0, 0, 0, SHIFT_IMM_LSL(0)); | |
413 | } | |
414 | } | |
415 | ||
9716ef3b PM |
416 | static inline void tcg_out_mov_reg(TCGContext *s, int cond, int rd, int rm) |
417 | { | |
418 | /* Simple reg-reg move, optimising out the 'do nothing' case */ | |
419 | if (rd != rm) { | |
420 | tcg_out_dat_reg(s, cond, ARITH_MOV, rd, 0, rm, SHIFT_IMM_LSL(0)); | |
421 | } | |
422 | } | |
423 | ||
811d4cf4 AZ |
424 | static inline void tcg_out_dat_imm(TCGContext *s, |
425 | int cond, int opc, int rd, int rn, int im) | |
426 | { | |
2df3f1ee | 427 | tcg_out32(s, (cond << 28) | (1 << 25) | opc | |
811d4cf4 AZ |
428 | (rn << 16) | (rd << 12) | im); |
429 | } | |
430 | ||
e86e0f28 | 431 | static void tcg_out_movi32(TCGContext *s, int cond, int rd, uint32_t arg) |
811d4cf4 | 432 | { |
e86e0f28 RH |
433 | int rot, opc, rn; |
434 | ||
435 | /* For armv7, make sure not to use movw+movt when mov/mvn would do. | |
436 | Speed things up by only checking when movt would be required. | |
437 | Prior to armv7, have one go at fully rotated immediates before | |
438 | doing the decomposition thing below. */ | |
439 | if (!use_armv7_instructions || (arg & 0xffff0000)) { | |
440 | rot = encode_imm(arg); | |
441 | if (rot >= 0) { | |
442 | tcg_out_dat_imm(s, cond, ARITH_MOV, rd, 0, | |
443 | rotl(arg, rot) | (rot << 7)); | |
444 | return; | |
445 | } | |
446 | rot = encode_imm(~arg); | |
447 | if (rot >= 0) { | |
448 | tcg_out_dat_imm(s, cond, ARITH_MVN, rd, 0, | |
449 | rotl(~arg, rot) | (rot << 7)); | |
450 | return; | |
451 | } | |
452 | } | |
453 | ||
454 | /* Use movw + movt. */ | |
455 | if (use_armv7_instructions) { | |
ac34fb5c AJ |
456 | /* movw */ |
457 | tcg_out32(s, (cond << 28) | 0x03000000 | (rd << 12) | |
458 | | ((arg << 4) & 0x000f0000) | (arg & 0xfff)); | |
0f11f25a | 459 | if (arg & 0xffff0000) { |
ac34fb5c AJ |
460 | /* movt */ |
461 | tcg_out32(s, (cond << 28) | 0x03400000 | (rd << 12) | |
462 | | ((arg >> 12) & 0x000f0000) | ((arg >> 16) & 0xfff)); | |
ac34fb5c | 463 | } |
e86e0f28 RH |
464 | return; |
465 | } | |
0f11f25a | 466 | |
e86e0f28 RH |
467 | /* TODO: This is very suboptimal, we can easily have a constant |
468 | pool somewhere after all the instructions. */ | |
469 | opc = ARITH_MOV; | |
470 | rn = 0; | |
471 | /* If we have lots of leading 1's, we can shorten the sequence by | |
472 | beginning with mvn and then clearing higher bits with eor. */ | |
473 | if (clz32(~arg) > clz32(arg)) { | |
474 | opc = ARITH_MVN, arg = ~arg; | |
0f11f25a | 475 | } |
e86e0f28 RH |
476 | do { |
477 | int i = ctz32(arg) & ~1; | |
478 | rot = ((32 - i) << 7) & 0xf00; | |
479 | tcg_out_dat_imm(s, cond, opc, rd, rn, ((arg >> i) & 0xff) | rot); | |
480 | arg &= ~(0xff << i); | |
481 | ||
482 | opc = ARITH_EOR; | |
483 | rn = rd; | |
484 | } while (arg); | |
811d4cf4 AZ |
485 | } |
486 | ||
7fc645bf PM |
487 | static inline void tcg_out_dat_rI(TCGContext *s, int cond, int opc, TCGArg dst, |
488 | TCGArg lhs, TCGArg rhs, int rhs_is_const) | |
489 | { | |
490 | /* Emit either the reg,imm or reg,reg form of a data-processing insn. | |
491 | * rhs must satisfy the "rI" constraint. | |
492 | */ | |
493 | if (rhs_is_const) { | |
494 | int rot = encode_imm(rhs); | |
495 | assert(rot >= 0); | |
496 | tcg_out_dat_imm(s, cond, opc, dst, lhs, rotl(rhs, rot) | (rot << 7)); | |
497 | } else { | |
498 | tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0)); | |
499 | } | |
500 | } | |
501 | ||
19b62bf4 RH |
502 | static void tcg_out_dat_rIK(TCGContext *s, int cond, int opc, int opinv, |
503 | TCGReg dst, TCGReg lhs, TCGArg rhs, | |
504 | bool rhs_is_const) | |
505 | { | |
506 | /* Emit either the reg,imm or reg,reg form of a data-processing insn. | |
507 | * rhs must satisfy the "rIK" constraint. | |
508 | */ | |
509 | if (rhs_is_const) { | |
510 | int rot = encode_imm(rhs); | |
511 | if (rot < 0) { | |
512 | rhs = ~rhs; | |
513 | rot = encode_imm(rhs); | |
514 | assert(rot >= 0); | |
515 | opc = opinv; | |
516 | } | |
517 | tcg_out_dat_imm(s, cond, opc, dst, lhs, rotl(rhs, rot) | (rot << 7)); | |
518 | } else { | |
519 | tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0)); | |
520 | } | |
521 | } | |
522 | ||
a9a86ae9 RH |
523 | static void tcg_out_dat_rIN(TCGContext *s, int cond, int opc, int opneg, |
524 | TCGArg dst, TCGArg lhs, TCGArg rhs, | |
525 | bool rhs_is_const) | |
526 | { | |
527 | /* Emit either the reg,imm or reg,reg form of a data-processing insn. | |
528 | * rhs must satisfy the "rIN" constraint. | |
529 | */ | |
530 | if (rhs_is_const) { | |
531 | int rot = encode_imm(rhs); | |
532 | if (rot < 0) { | |
533 | rhs = -rhs; | |
534 | rot = encode_imm(rhs); | |
535 | assert(rot >= 0); | |
536 | opc = opneg; | |
537 | } | |
538 | tcg_out_dat_imm(s, cond, opc, dst, lhs, rotl(rhs, rot) | (rot << 7)); | |
539 | } else { | |
540 | tcg_out_dat_reg(s, cond, opc, dst, lhs, rhs, SHIFT_IMM_LSL(0)); | |
541 | } | |
542 | } | |
543 | ||
34358a12 RH |
544 | static inline void tcg_out_mul32(TCGContext *s, int cond, TCGReg rd, |
545 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 546 | { |
34358a12 RH |
547 | /* if ArchVersion() < 6 && d == n then UNPREDICTABLE; */ |
548 | if (!use_armv6_instructions && rd == rn) { | |
549 | if (rd == rm) { | |
550 | /* rd == rn == rm; copy an input to tmp first. */ | |
551 | tcg_out_mov_reg(s, cond, TCG_REG_TMP, rn); | |
552 | rm = rn = TCG_REG_TMP; | |
553 | } else { | |
554 | rn = rm; | |
555 | rm = rd; | |
556 | } | |
811d4cf4 | 557 | } |
34358a12 RH |
558 | /* mul */ |
559 | tcg_out32(s, (cond << 28) | 0x90 | (rd << 16) | (rm << 8) | rn); | |
811d4cf4 AZ |
560 | } |
561 | ||
34358a12 RH |
562 | static inline void tcg_out_umull32(TCGContext *s, int cond, TCGReg rd0, |
563 | TCGReg rd1, TCGReg rn, TCGReg rm) | |
811d4cf4 | 564 | { |
34358a12 RH |
565 | /* if ArchVersion() < 6 && (dHi == n || dLo == n) then UNPREDICTABLE; */ |
566 | if (!use_armv6_instructions && (rd0 == rn || rd1 == rn)) { | |
567 | if (rd0 == rm || rd1 == rm) { | |
568 | tcg_out_mov_reg(s, cond, TCG_REG_TMP, rn); | |
569 | rn = TCG_REG_TMP; | |
570 | } else { | |
571 | TCGReg t = rn; | |
572 | rn = rm; | |
573 | rm = t; | |
574 | } | |
811d4cf4 | 575 | } |
34358a12 RH |
576 | /* umull */ |
577 | tcg_out32(s, (cond << 28) | 0x00800090 | | |
578 | (rd1 << 16) | (rd0 << 12) | (rm << 8) | rn); | |
811d4cf4 AZ |
579 | } |
580 | ||
34358a12 RH |
581 | static inline void tcg_out_smull32(TCGContext *s, int cond, TCGReg rd0, |
582 | TCGReg rd1, TCGReg rn, TCGReg rm) | |
811d4cf4 | 583 | { |
34358a12 RH |
584 | /* if ArchVersion() < 6 && (dHi == n || dLo == n) then UNPREDICTABLE; */ |
585 | if (!use_armv6_instructions && (rd0 == rn || rd1 == rn)) { | |
586 | if (rd0 == rm || rd1 == rm) { | |
587 | tcg_out_mov_reg(s, cond, TCG_REG_TMP, rn); | |
588 | rn = TCG_REG_TMP; | |
589 | } else { | |
590 | TCGReg t = rn; | |
591 | rn = rm; | |
592 | rm = t; | |
593 | } | |
811d4cf4 | 594 | } |
34358a12 RH |
595 | /* smull */ |
596 | tcg_out32(s, (cond << 28) | 0x00c00090 | | |
597 | (rd1 << 16) | (rd0 << 12) | (rm << 8) | rn); | |
811d4cf4 AZ |
598 | } |
599 | ||
0637c56c RH |
600 | static inline void tcg_out_sdiv(TCGContext *s, int cond, int rd, int rn, int rm) |
601 | { | |
602 | tcg_out32(s, 0x0710f010 | (cond << 28) | (rd << 16) | rn | (rm << 8)); | |
603 | } | |
604 | ||
605 | static inline void tcg_out_udiv(TCGContext *s, int cond, int rd, int rn, int rm) | |
606 | { | |
607 | tcg_out32(s, 0x0730f010 | (cond << 28) | (rd << 16) | rn | (rm << 8)); | |
608 | } | |
609 | ||
9517094f AJ |
610 | static inline void tcg_out_ext8s(TCGContext *s, int cond, |
611 | int rd, int rn) | |
612 | { | |
613 | if (use_armv6_instructions) { | |
614 | /* sxtb */ | |
615 | tcg_out32(s, 0x06af0070 | (cond << 28) | (rd << 12) | rn); | |
616 | } else { | |
e23886a9 | 617 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
9517094f | 618 | rd, 0, rn, SHIFT_IMM_LSL(24)); |
e23886a9 | 619 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
9517094f AJ |
620 | rd, 0, rd, SHIFT_IMM_ASR(24)); |
621 | } | |
622 | } | |
623 | ||
e854b6d3 AJ |
624 | static inline void tcg_out_ext8u(TCGContext *s, int cond, |
625 | int rd, int rn) | |
626 | { | |
627 | tcg_out_dat_imm(s, cond, ARITH_AND, rd, rn, 0xff); | |
628 | } | |
629 | ||
9517094f AJ |
630 | static inline void tcg_out_ext16s(TCGContext *s, int cond, |
631 | int rd, int rn) | |
632 | { | |
633 | if (use_armv6_instructions) { | |
634 | /* sxth */ | |
635 | tcg_out32(s, 0x06bf0070 | (cond << 28) | (rd << 12) | rn); | |
636 | } else { | |
e23886a9 | 637 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
9517094f | 638 | rd, 0, rn, SHIFT_IMM_LSL(16)); |
e23886a9 | 639 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
9517094f AJ |
640 | rd, 0, rd, SHIFT_IMM_ASR(16)); |
641 | } | |
642 | } | |
643 | ||
644 | static inline void tcg_out_ext16u(TCGContext *s, int cond, | |
645 | int rd, int rn) | |
646 | { | |
647 | if (use_armv6_instructions) { | |
648 | /* uxth */ | |
649 | tcg_out32(s, 0x06ff0070 | (cond << 28) | (rd << 12) | rn); | |
650 | } else { | |
e23886a9 | 651 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
9517094f | 652 | rd, 0, rn, SHIFT_IMM_LSL(16)); |
e23886a9 | 653 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
9517094f AJ |
654 | rd, 0, rd, SHIFT_IMM_LSR(16)); |
655 | } | |
656 | } | |
657 | ||
67dcab73 AJ |
658 | static inline void tcg_out_bswap16s(TCGContext *s, int cond, int rd, int rn) |
659 | { | |
660 | if (use_armv6_instructions) { | |
661 | /* revsh */ | |
662 | tcg_out32(s, 0x06ff0fb0 | (cond << 28) | (rd << 12) | rn); | |
663 | } else { | |
664 | tcg_out_dat_reg(s, cond, ARITH_MOV, | |
4346457a | 665 | TCG_REG_TMP, 0, rn, SHIFT_IMM_LSL(24)); |
67dcab73 | 666 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
4346457a | 667 | TCG_REG_TMP, 0, TCG_REG_TMP, SHIFT_IMM_ASR(16)); |
67dcab73 | 668 | tcg_out_dat_reg(s, cond, ARITH_ORR, |
4346457a | 669 | rd, TCG_REG_TMP, rn, SHIFT_IMM_LSR(8)); |
67dcab73 AJ |
670 | } |
671 | } | |
672 | ||
244b1e81 AJ |
673 | static inline void tcg_out_bswap16(TCGContext *s, int cond, int rd, int rn) |
674 | { | |
675 | if (use_armv6_instructions) { | |
676 | /* rev16 */ | |
677 | tcg_out32(s, 0x06bf0fb0 | (cond << 28) | (rd << 12) | rn); | |
678 | } else { | |
679 | tcg_out_dat_reg(s, cond, ARITH_MOV, | |
4346457a | 680 | TCG_REG_TMP, 0, rn, SHIFT_IMM_LSL(24)); |
244b1e81 | 681 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
4346457a | 682 | TCG_REG_TMP, 0, TCG_REG_TMP, SHIFT_IMM_LSR(16)); |
244b1e81 | 683 | tcg_out_dat_reg(s, cond, ARITH_ORR, |
4346457a | 684 | rd, TCG_REG_TMP, rn, SHIFT_IMM_LSR(8)); |
244b1e81 AJ |
685 | } |
686 | } | |
687 | ||
7aab08aa AJ |
688 | /* swap the two low bytes assuming that the two high input bytes and the |
689 | two high output bit can hold any value. */ | |
690 | static inline void tcg_out_bswap16st(TCGContext *s, int cond, int rd, int rn) | |
691 | { | |
692 | if (use_armv6_instructions) { | |
693 | /* rev16 */ | |
694 | tcg_out32(s, 0x06bf0fb0 | (cond << 28) | (rd << 12) | rn); | |
695 | } else { | |
696 | tcg_out_dat_reg(s, cond, ARITH_MOV, | |
4346457a RH |
697 | TCG_REG_TMP, 0, rn, SHIFT_IMM_LSR(8)); |
698 | tcg_out_dat_imm(s, cond, ARITH_AND, TCG_REG_TMP, TCG_REG_TMP, 0xff); | |
7aab08aa | 699 | tcg_out_dat_reg(s, cond, ARITH_ORR, |
4346457a | 700 | rd, TCG_REG_TMP, rn, SHIFT_IMM_LSL(8)); |
7aab08aa AJ |
701 | } |
702 | } | |
703 | ||
244b1e81 AJ |
704 | static inline void tcg_out_bswap32(TCGContext *s, int cond, int rd, int rn) |
705 | { | |
706 | if (use_armv6_instructions) { | |
707 | /* rev */ | |
708 | tcg_out32(s, 0x06bf0f30 | (cond << 28) | (rd << 12) | rn); | |
709 | } else { | |
710 | tcg_out_dat_reg(s, cond, ARITH_EOR, | |
4346457a | 711 | TCG_REG_TMP, rn, rn, SHIFT_IMM_ROR(16)); |
244b1e81 | 712 | tcg_out_dat_imm(s, cond, ARITH_BIC, |
4346457a | 713 | TCG_REG_TMP, TCG_REG_TMP, 0xff | 0x800); |
244b1e81 AJ |
714 | tcg_out_dat_reg(s, cond, ARITH_MOV, |
715 | rd, 0, rn, SHIFT_IMM_ROR(8)); | |
716 | tcg_out_dat_reg(s, cond, ARITH_EOR, | |
4346457a | 717 | rd, rd, TCG_REG_TMP, SHIFT_IMM_LSR(8)); |
244b1e81 AJ |
718 | } |
719 | } | |
720 | ||
b6b24cb0 RH |
721 | bool tcg_target_deposit_valid(int ofs, int len) |
722 | { | |
723 | /* ??? Without bfi, we could improve over generic code by combining | |
724 | the right-shift from a non-zero ofs with the orr. We do run into | |
725 | problems when rd == rs, and the mask generated from ofs+len doesn't | |
726 | fit into an immediate. We would have to be careful not to pessimize | |
727 | wrt the optimizations performed on the expanded code. */ | |
728 | return use_armv7_instructions; | |
729 | } | |
730 | ||
731 | static inline void tcg_out_deposit(TCGContext *s, int cond, TCGReg rd, | |
732 | TCGArg a1, int ofs, int len, bool const_a1) | |
733 | { | |
734 | if (const_a1) { | |
735 | /* bfi becomes bfc with rn == 15. */ | |
736 | a1 = 15; | |
737 | } | |
738 | /* bfi/bfc */ | |
739 | tcg_out32(s, 0x07c00010 | (cond << 28) | (rd << 12) | a1 | |
740 | | (ofs << 7) | ((ofs + len - 1) << 16)); | |
741 | } | |
742 | ||
9feac1d7 RH |
743 | /* Note that this routine is used for both LDR and LDRH formats, so we do |
744 | not wish to include an immediate shift at this point. */ | |
745 | static void tcg_out_memop_r(TCGContext *s, int cond, ARMInsn opc, TCGReg rt, | |
746 | TCGReg rn, TCGReg rm, bool u, bool p, bool w) | |
747 | { | |
748 | tcg_out32(s, (cond << 28) | opc | (u << 23) | (p << 24) | |
749 | | (w << 21) | (rn << 16) | (rt << 12) | rm); | |
750 | } | |
751 | ||
752 | static void tcg_out_memop_8(TCGContext *s, int cond, ARMInsn opc, TCGReg rt, | |
753 | TCGReg rn, int imm8, bool p, bool w) | |
754 | { | |
755 | bool u = 1; | |
756 | if (imm8 < 0) { | |
757 | imm8 = -imm8; | |
758 | u = 0; | |
759 | } | |
760 | tcg_out32(s, (cond << 28) | opc | (u << 23) | (p << 24) | (w << 21) | | |
761 | (rn << 16) | (rt << 12) | ((imm8 & 0xf0) << 4) | (imm8 & 0xf)); | |
762 | } | |
763 | ||
764 | static void tcg_out_memop_12(TCGContext *s, int cond, ARMInsn opc, TCGReg rt, | |
765 | TCGReg rn, int imm12, bool p, bool w) | |
811d4cf4 | 766 | { |
9feac1d7 RH |
767 | bool u = 1; |
768 | if (imm12 < 0) { | |
769 | imm12 = -imm12; | |
770 | u = 0; | |
771 | } | |
772 | tcg_out32(s, (cond << 28) | opc | (u << 23) | (p << 24) | (w << 21) | | |
773 | (rn << 16) | (rt << 12) | imm12); | |
774 | } | |
775 | ||
776 | static inline void tcg_out_ld32_12(TCGContext *s, int cond, TCGReg rt, | |
777 | TCGReg rn, int imm12) | |
778 | { | |
779 | tcg_out_memop_12(s, cond, INSN_LDR_IMM, rt, rn, imm12, 1, 0); | |
811d4cf4 AZ |
780 | } |
781 | ||
9feac1d7 RH |
782 | static inline void tcg_out_st32_12(TCGContext *s, int cond, TCGReg rt, |
783 | TCGReg rn, int imm12) | |
811d4cf4 | 784 | { |
9feac1d7 | 785 | tcg_out_memop_12(s, cond, INSN_STR_IMM, rt, rn, imm12, 1, 0); |
811d4cf4 AZ |
786 | } |
787 | ||
9feac1d7 RH |
788 | static inline void tcg_out_ld32_r(TCGContext *s, int cond, TCGReg rt, |
789 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 790 | { |
9feac1d7 | 791 | tcg_out_memop_r(s, cond, INSN_LDR_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
792 | } |
793 | ||
9feac1d7 RH |
794 | static inline void tcg_out_st32_r(TCGContext *s, int cond, TCGReg rt, |
795 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 796 | { |
9feac1d7 | 797 | tcg_out_memop_r(s, cond, INSN_STR_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
798 | } |
799 | ||
23bbc250 RH |
800 | static inline void tcg_out_ldrd_8(TCGContext *s, int cond, TCGReg rt, |
801 | TCGReg rn, int imm8) | |
802 | { | |
803 | tcg_out_memop_8(s, cond, INSN_LDRD_IMM, rt, rn, imm8, 1, 0); | |
804 | } | |
805 | ||
806 | static inline void tcg_out_ldrd_r(TCGContext *s, int cond, TCGReg rt, | |
807 | TCGReg rn, TCGReg rm) | |
808 | { | |
809 | tcg_out_memop_r(s, cond, INSN_LDRD_REG, rt, rn, rm, 1, 1, 0); | |
810 | } | |
811 | ||
812 | static inline void tcg_out_strd_8(TCGContext *s, int cond, TCGReg rt, | |
813 | TCGReg rn, int imm8) | |
814 | { | |
815 | tcg_out_memop_8(s, cond, INSN_STRD_IMM, rt, rn, imm8, 1, 0); | |
816 | } | |
817 | ||
818 | static inline void tcg_out_strd_r(TCGContext *s, int cond, TCGReg rt, | |
819 | TCGReg rn, TCGReg rm) | |
820 | { | |
821 | tcg_out_memop_r(s, cond, INSN_STRD_REG, rt, rn, rm, 1, 1, 0); | |
822 | } | |
823 | ||
3979144c | 824 | /* Register pre-increment with base writeback. */ |
9feac1d7 RH |
825 | static inline void tcg_out_ld32_rwb(TCGContext *s, int cond, TCGReg rt, |
826 | TCGReg rn, TCGReg rm) | |
3979144c | 827 | { |
9feac1d7 | 828 | tcg_out_memop_r(s, cond, INSN_LDR_REG, rt, rn, rm, 1, 1, 1); |
3979144c PB |
829 | } |
830 | ||
9feac1d7 RH |
831 | static inline void tcg_out_st32_rwb(TCGContext *s, int cond, TCGReg rt, |
832 | TCGReg rn, TCGReg rm) | |
3979144c | 833 | { |
9feac1d7 | 834 | tcg_out_memop_r(s, cond, INSN_STR_REG, rt, rn, rm, 1, 1, 1); |
3979144c PB |
835 | } |
836 | ||
9feac1d7 RH |
837 | static inline void tcg_out_ld16u_8(TCGContext *s, int cond, TCGReg rt, |
838 | TCGReg rn, int imm8) | |
811d4cf4 | 839 | { |
9feac1d7 | 840 | tcg_out_memop_8(s, cond, INSN_LDRH_IMM, rt, rn, imm8, 1, 0); |
811d4cf4 AZ |
841 | } |
842 | ||
9feac1d7 RH |
843 | static inline void tcg_out_st16_8(TCGContext *s, int cond, TCGReg rt, |
844 | TCGReg rn, int imm8) | |
811d4cf4 | 845 | { |
9feac1d7 | 846 | tcg_out_memop_8(s, cond, INSN_STRH_IMM, rt, rn, imm8, 1, 0); |
811d4cf4 AZ |
847 | } |
848 | ||
9feac1d7 RH |
849 | static inline void tcg_out_ld16u_r(TCGContext *s, int cond, TCGReg rt, |
850 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 851 | { |
9feac1d7 | 852 | tcg_out_memop_r(s, cond, INSN_LDRH_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
853 | } |
854 | ||
9feac1d7 RH |
855 | static inline void tcg_out_st16_r(TCGContext *s, int cond, TCGReg rt, |
856 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 857 | { |
9feac1d7 | 858 | tcg_out_memop_r(s, cond, INSN_STRH_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
859 | } |
860 | ||
9feac1d7 RH |
861 | static inline void tcg_out_ld16s_8(TCGContext *s, int cond, TCGReg rt, |
862 | TCGReg rn, int imm8) | |
811d4cf4 | 863 | { |
9feac1d7 | 864 | tcg_out_memop_8(s, cond, INSN_LDRSH_IMM, rt, rn, imm8, 1, 0); |
811d4cf4 AZ |
865 | } |
866 | ||
9feac1d7 RH |
867 | static inline void tcg_out_ld16s_r(TCGContext *s, int cond, TCGReg rt, |
868 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 869 | { |
9feac1d7 | 870 | tcg_out_memop_r(s, cond, INSN_LDRSH_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
871 | } |
872 | ||
9feac1d7 RH |
873 | static inline void tcg_out_ld8_12(TCGContext *s, int cond, TCGReg rt, |
874 | TCGReg rn, int imm12) | |
811d4cf4 | 875 | { |
9feac1d7 | 876 | tcg_out_memop_12(s, cond, INSN_LDRB_IMM, rt, rn, imm12, 1, 0); |
811d4cf4 AZ |
877 | } |
878 | ||
9feac1d7 RH |
879 | static inline void tcg_out_st8_12(TCGContext *s, int cond, TCGReg rt, |
880 | TCGReg rn, int imm12) | |
811d4cf4 | 881 | { |
9feac1d7 | 882 | tcg_out_memop_12(s, cond, INSN_STRB_IMM, rt, rn, imm12, 1, 0); |
811d4cf4 AZ |
883 | } |
884 | ||
9feac1d7 RH |
885 | static inline void tcg_out_ld8_r(TCGContext *s, int cond, TCGReg rt, |
886 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 887 | { |
9feac1d7 | 888 | tcg_out_memop_r(s, cond, INSN_LDRB_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
889 | } |
890 | ||
9feac1d7 RH |
891 | static inline void tcg_out_st8_r(TCGContext *s, int cond, TCGReg rt, |
892 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 893 | { |
9feac1d7 | 894 | tcg_out_memop_r(s, cond, INSN_STRB_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
895 | } |
896 | ||
9feac1d7 RH |
897 | static inline void tcg_out_ld8s_8(TCGContext *s, int cond, TCGReg rt, |
898 | TCGReg rn, int imm8) | |
811d4cf4 | 899 | { |
9feac1d7 | 900 | tcg_out_memop_8(s, cond, INSN_LDRSB_IMM, rt, rn, imm8, 1, 0); |
811d4cf4 AZ |
901 | } |
902 | ||
9feac1d7 RH |
903 | static inline void tcg_out_ld8s_r(TCGContext *s, int cond, TCGReg rt, |
904 | TCGReg rn, TCGReg rm) | |
811d4cf4 | 905 | { |
9feac1d7 | 906 | tcg_out_memop_r(s, cond, INSN_LDRSB_REG, rt, rn, rm, 1, 1, 0); |
811d4cf4 AZ |
907 | } |
908 | ||
811d4cf4 AZ |
909 | static inline void tcg_out_ld32u(TCGContext *s, int cond, |
910 | int rd, int rn, int32_t offset) | |
911 | { | |
912 | if (offset > 0xfff || offset < -0xfff) { | |
4346457a RH |
913 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
914 | tcg_out_ld32_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 AZ |
915 | } else |
916 | tcg_out_ld32_12(s, cond, rd, rn, offset); | |
917 | } | |
918 | ||
919 | static inline void tcg_out_st32(TCGContext *s, int cond, | |
920 | int rd, int rn, int32_t offset) | |
921 | { | |
922 | if (offset > 0xfff || offset < -0xfff) { | |
4346457a RH |
923 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
924 | tcg_out_st32_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 AZ |
925 | } else |
926 | tcg_out_st32_12(s, cond, rd, rn, offset); | |
927 | } | |
928 | ||
929 | static inline void tcg_out_ld16u(TCGContext *s, int cond, | |
930 | int rd, int rn, int32_t offset) | |
931 | { | |
932 | if (offset > 0xff || offset < -0xff) { | |
4346457a RH |
933 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
934 | tcg_out_ld16u_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 AZ |
935 | } else |
936 | tcg_out_ld16u_8(s, cond, rd, rn, offset); | |
937 | } | |
938 | ||
939 | static inline void tcg_out_ld16s(TCGContext *s, int cond, | |
940 | int rd, int rn, int32_t offset) | |
941 | { | |
942 | if (offset > 0xff || offset < -0xff) { | |
4346457a RH |
943 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
944 | tcg_out_ld16s_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 AZ |
945 | } else |
946 | tcg_out_ld16s_8(s, cond, rd, rn, offset); | |
947 | } | |
948 | ||
f694a27e | 949 | static inline void tcg_out_st16(TCGContext *s, int cond, |
811d4cf4 AZ |
950 | int rd, int rn, int32_t offset) |
951 | { | |
952 | if (offset > 0xff || offset < -0xff) { | |
4346457a RH |
953 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
954 | tcg_out_st16_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 | 955 | } else |
f694a27e | 956 | tcg_out_st16_8(s, cond, rd, rn, offset); |
811d4cf4 AZ |
957 | } |
958 | ||
959 | static inline void tcg_out_ld8u(TCGContext *s, int cond, | |
960 | int rd, int rn, int32_t offset) | |
961 | { | |
962 | if (offset > 0xfff || offset < -0xfff) { | |
4346457a RH |
963 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
964 | tcg_out_ld8_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 AZ |
965 | } else |
966 | tcg_out_ld8_12(s, cond, rd, rn, offset); | |
967 | } | |
968 | ||
969 | static inline void tcg_out_ld8s(TCGContext *s, int cond, | |
970 | int rd, int rn, int32_t offset) | |
971 | { | |
972 | if (offset > 0xff || offset < -0xff) { | |
4346457a RH |
973 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
974 | tcg_out_ld8s_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 AZ |
975 | } else |
976 | tcg_out_ld8s_8(s, cond, rd, rn, offset); | |
977 | } | |
978 | ||
f694a27e | 979 | static inline void tcg_out_st8(TCGContext *s, int cond, |
811d4cf4 AZ |
980 | int rd, int rn, int32_t offset) |
981 | { | |
982 | if (offset > 0xfff || offset < -0xfff) { | |
4346457a RH |
983 | tcg_out_movi32(s, cond, TCG_REG_TMP, offset); |
984 | tcg_out_st8_r(s, cond, rd, rn, TCG_REG_TMP); | |
811d4cf4 AZ |
985 | } else |
986 | tcg_out_st8_12(s, cond, rd, rn, offset); | |
987 | } | |
988 | ||
d9f4dde4 RH |
989 | /* The _goto case is normally between TBs within the same code buffer, and |
990 | * with the code buffer limited to 16MB we wouldn't need the long case. | |
991 | * But we also use it for the tail-call to the qemu_ld/st helpers, which does. | |
222f23f5 | 992 | */ |
267c9319 | 993 | static inline void tcg_out_goto(TCGContext *s, int cond, tcg_insn_unit *addr) |
811d4cf4 | 994 | { |
267c9319 RH |
995 | intptr_t addri = (intptr_t)addr; |
996 | ptrdiff_t disp = tcg_pcrel_diff(s, addr); | |
811d4cf4 | 997 | |
267c9319 | 998 | if ((addri & 1) == 0 && disp - 8 < 0x01fffffd && disp - 8 > -0x01fffffd) { |
d9f4dde4 RH |
999 | tcg_out_b(s, cond, disp); |
1000 | return; | |
24e838b7 PM |
1001 | } |
1002 | ||
267c9319 | 1003 | tcg_out_movi32(s, cond, TCG_REG_TMP, addri); |
d9f4dde4 RH |
1004 | if (use_armv5t_instructions) { |
1005 | tcg_out_bx(s, cond, TCG_REG_TMP); | |
1006 | } else { | |
267c9319 | 1007 | if (addri & 1) { |
d9f4dde4 | 1008 | tcg_abort(); |
811d4cf4 | 1009 | } |
d9f4dde4 | 1010 | tcg_out_mov_reg(s, cond, TCG_REG_PC, TCG_REG_TMP); |
811d4cf4 AZ |
1011 | } |
1012 | } | |
1013 | ||
222f23f5 DDAG |
1014 | /* The call case is mostly used for helpers - so it's not unreasonable |
1015 | * for them to be beyond branch range */ | |
267c9319 | 1016 | static void tcg_out_call(TCGContext *s, tcg_insn_unit *addr) |
811d4cf4 | 1017 | { |
267c9319 RH |
1018 | intptr_t addri = (intptr_t)addr; |
1019 | ptrdiff_t disp = tcg_pcrel_diff(s, addr); | |
811d4cf4 | 1020 | |
267c9319 RH |
1021 | if (disp - 8 < 0x02000000 && disp - 8 >= -0x02000000) { |
1022 | if (addri & 1) { | |
24e838b7 | 1023 | /* Use BLX if the target is in Thumb mode */ |
fb822738 | 1024 | if (!use_armv5t_instructions) { |
24e838b7 PM |
1025 | tcg_abort(); |
1026 | } | |
267c9319 | 1027 | tcg_out_blx_imm(s, disp); |
24e838b7 | 1028 | } else { |
267c9319 | 1029 | tcg_out_bl(s, COND_AL, disp); |
24e838b7 | 1030 | } |
302fdde7 | 1031 | } else if (use_armv7_instructions) { |
267c9319 | 1032 | tcg_out_movi32(s, COND_AL, TCG_REG_TMP, addri); |
302fdde7 | 1033 | tcg_out_blx(s, COND_AL, TCG_REG_TMP); |
24e838b7 | 1034 | } else { |
222f23f5 DDAG |
1035 | tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R14, TCG_REG_PC, 4); |
1036 | tcg_out_ld32_12(s, COND_AL, TCG_REG_PC, TCG_REG_PC, -4); | |
267c9319 | 1037 | tcg_out32(s, addri); |
811d4cf4 | 1038 | } |
811d4cf4 AZ |
1039 | } |
1040 | ||
811d4cf4 AZ |
1041 | static inline void tcg_out_goto_label(TCGContext *s, int cond, int label_index) |
1042 | { | |
1043 | TCGLabel *l = &s->labels[label_index]; | |
1044 | ||
96fbd7de | 1045 | if (l->has_value) { |
267c9319 | 1046 | tcg_out_goto(s, cond, l->u.value_ptr); |
811d4cf4 | 1047 | } else { |
267c9319 | 1048 | tcg_out_reloc(s, s->code_ptr, R_ARM_PC24, label_index, 0); |
e936243a | 1049 | tcg_out_b_noaddr(s, cond); |
811d4cf4 AZ |
1050 | } |
1051 | } | |
1052 | ||
811d4cf4 | 1053 | #ifdef CONFIG_SOFTMMU |
d9f4dde4 RH |
1054 | /* helper signature: helper_ret_ld_mmu(CPUState *env, target_ulong addr, |
1055 | * int mmu_idx, uintptr_t ra) | |
1056 | */ | |
267c9319 | 1057 | static void * const qemu_ld_helpers[16] = { |
0315c51e RH |
1058 | [MO_UB] = helper_ret_ldub_mmu, |
1059 | [MO_SB] = helper_ret_ldsb_mmu, | |
1060 | ||
1061 | [MO_LEUW] = helper_le_lduw_mmu, | |
1062 | [MO_LEUL] = helper_le_ldul_mmu, | |
1063 | [MO_LEQ] = helper_le_ldq_mmu, | |
1064 | [MO_LESW] = helper_le_ldsw_mmu, | |
1065 | [MO_LESL] = helper_le_ldul_mmu, | |
1066 | ||
1067 | [MO_BEUW] = helper_be_lduw_mmu, | |
1068 | [MO_BEUL] = helper_be_ldul_mmu, | |
1069 | [MO_BEQ] = helper_be_ldq_mmu, | |
1070 | [MO_BESW] = helper_be_ldsw_mmu, | |
1071 | [MO_BESL] = helper_be_ldul_mmu, | |
e141ab52 BS |
1072 | }; |
1073 | ||
d9f4dde4 RH |
1074 | /* helper signature: helper_ret_st_mmu(CPUState *env, target_ulong addr, |
1075 | * uintxx_t val, int mmu_idx, uintptr_t ra) | |
1076 | */ | |
267c9319 | 1077 | static void * const qemu_st_helpers[16] = { |
0315c51e RH |
1078 | [MO_UB] = helper_ret_stb_mmu, |
1079 | [MO_LEUW] = helper_le_stw_mmu, | |
1080 | [MO_LEUL] = helper_le_stl_mmu, | |
1081 | [MO_LEQ] = helper_le_stq_mmu, | |
1082 | [MO_BEUW] = helper_be_stw_mmu, | |
1083 | [MO_BEUL] = helper_be_stl_mmu, | |
1084 | [MO_BEQ] = helper_be_stq_mmu, | |
e141ab52 | 1085 | }; |
9716ef3b PM |
1086 | |
1087 | /* Helper routines for marshalling helper function arguments into | |
1088 | * the correct registers and stack. | |
1089 | * argreg is where we want to put this argument, arg is the argument itself. | |
1090 | * Return value is the updated argreg ready for the next call. | |
1091 | * Note that argreg 0..3 is real registers, 4+ on stack. | |
9716ef3b PM |
1092 | * |
1093 | * We provide routines for arguments which are: immediate, 32 bit | |
1094 | * value in register, 16 and 8 bit values in register (which must be zero | |
1095 | * extended before use) and 64 bit value in a lo:hi register pair. | |
1096 | */ | |
fc4d60ee RH |
1097 | #define DEFINE_TCG_OUT_ARG(NAME, ARGTYPE, MOV_ARG, EXT_ARG) \ |
1098 | static TCGReg NAME(TCGContext *s, TCGReg argreg, ARGTYPE arg) \ | |
1099 | { \ | |
1100 | if (argreg < 4) { \ | |
1101 | MOV_ARG(s, COND_AL, argreg, arg); \ | |
1102 | } else { \ | |
1103 | int ofs = (argreg - 4) * 4; \ | |
1104 | EXT_ARG; \ | |
1105 | assert(ofs + 4 <= TCG_STATIC_CALL_ARGS_SIZE); \ | |
1106 | tcg_out_st32_12(s, COND_AL, arg, TCG_REG_CALL_STACK, ofs); \ | |
1107 | } \ | |
1108 | return argreg + 1; \ | |
1109 | } | |
1110 | ||
1111 | DEFINE_TCG_OUT_ARG(tcg_out_arg_imm32, uint32_t, tcg_out_movi32, | |
4346457a | 1112 | (tcg_out_movi32(s, COND_AL, TCG_REG_TMP, arg), arg = TCG_REG_TMP)) |
fc4d60ee | 1113 | DEFINE_TCG_OUT_ARG(tcg_out_arg_reg8, TCGReg, tcg_out_ext8u, |
4346457a | 1114 | (tcg_out_ext8u(s, COND_AL, TCG_REG_TMP, arg), arg = TCG_REG_TMP)) |
fc4d60ee | 1115 | DEFINE_TCG_OUT_ARG(tcg_out_arg_reg16, TCGReg, tcg_out_ext16u, |
4346457a | 1116 | (tcg_out_ext16u(s, COND_AL, TCG_REG_TMP, arg), arg = TCG_REG_TMP)) |
fc4d60ee RH |
1117 | DEFINE_TCG_OUT_ARG(tcg_out_arg_reg32, TCGReg, tcg_out_mov_reg, ) |
1118 | ||
1119 | static TCGReg tcg_out_arg_reg64(TCGContext *s, TCGReg argreg, | |
1120 | TCGReg arglo, TCGReg arghi) | |
9716ef3b PM |
1121 | { |
1122 | /* 64 bit arguments must go in even/odd register pairs | |
1123 | * and in 8-aligned stack slots. | |
1124 | */ | |
1125 | if (argreg & 1) { | |
1126 | argreg++; | |
1127 | } | |
e5e2e4a7 RH |
1128 | if (use_armv6_instructions && argreg >= 4 |
1129 | && (arglo & 1) == 0 && arghi == arglo + 1) { | |
1130 | tcg_out_strd_8(s, COND_AL, arglo, | |
1131 | TCG_REG_CALL_STACK, (argreg - 4) * 4); | |
1132 | return argreg + 2; | |
1133 | } else { | |
1134 | argreg = tcg_out_arg_reg32(s, argreg, arglo); | |
1135 | argreg = tcg_out_arg_reg32(s, argreg, arghi); | |
1136 | return argreg; | |
1137 | } | |
9716ef3b | 1138 | } |
811d4cf4 | 1139 | |
3979144c PB |
1140 | #define TLB_SHIFT (CPU_TLB_ENTRY_BITS + CPU_TLB_BITS) |
1141 | ||
f2488736 RH |
1142 | /* We're expecting to use an 8-bit immediate and to mask. */ |
1143 | QEMU_BUILD_BUG_ON(CPU_TLB_BITS > 8); | |
1144 | ||
1145 | /* We're expecting to use an 8-bit immediate add + 8-bit ldrd offset. | |
1146 | Using the offset of the second entry in the last tlb table ensures | |
1147 | that we can index all of the elements of the first entry. */ | |
1148 | QEMU_BUILD_BUG_ON(offsetof(CPUArchState, tlb_table[NB_MMU_MODES - 1][1]) | |
1149 | > 0xffff); | |
1150 | ||
d3e440be RH |
1151 | /* Load and compare a TLB entry, leaving the flags set. Returns the register |
1152 | containing the addend of the tlb entry. Clobbers R0, R1, R2, TMP. */ | |
811d4cf4 | 1153 | |
d3e440be | 1154 | static TCGReg tcg_out_tlb_read(TCGContext *s, TCGReg addrlo, TCGReg addrhi, |
099fcf2e | 1155 | TCGMemOp s_bits, int mem_index, bool is_load) |
cee87be8 | 1156 | { |
702b33b1 | 1157 | TCGReg base = TCG_AREG0; |
d0ebde22 RH |
1158 | int cmp_off = |
1159 | (is_load | |
1160 | ? offsetof(CPUArchState, tlb_table[mem_index][0].addr_read) | |
1161 | : offsetof(CPUArchState, tlb_table[mem_index][0].addr_write)); | |
1162 | int add_off = offsetof(CPUArchState, tlb_table[mem_index][0].addend); | |
702b33b1 | 1163 | |
91a3c1b0 | 1164 | /* Should generate something like the following: |
a485cff0 | 1165 | * shr tmp, addrlo, #TARGET_PAGE_BITS (1) |
d0ebde22 | 1166 | * add r2, env, #high |
702b33b1 RH |
1167 | * and r0, tmp, #(CPU_TLB_SIZE - 1) (2) |
1168 | * add r2, r2, r0, lsl #CPU_TLB_ENTRY_BITS (3) | |
d0ebde22 | 1169 | * ldr r0, [r2, #cmp] (4) |
a485cff0 RH |
1170 | * tst addrlo, #s_mask |
1171 | * ldr r2, [r2, #add] (5) | |
ee06e230 | 1172 | * cmpeq r0, tmp, lsl #TARGET_PAGE_BITS |
91a3c1b0 | 1173 | */ |
4346457a | 1174 | tcg_out_dat_reg(s, COND_AL, ARITH_MOV, TCG_REG_TMP, |
cee87be8 | 1175 | 0, addrlo, SHIFT_IMM_LSR(TARGET_PAGE_BITS)); |
702b33b1 | 1176 | |
f2488736 | 1177 | /* We checked that the offset is contained within 16 bits above. */ |
d0ebde22 | 1178 | if (add_off > 0xfff || (use_armv6_instructions && cmp_off > 0xff)) { |
702b33b1 | 1179 | tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R2, base, |
d0ebde22 | 1180 | (24 << 7) | (cmp_off >> 8)); |
702b33b1 | 1181 | base = TCG_REG_R2; |
d0ebde22 RH |
1182 | add_off -= cmp_off & 0xff00; |
1183 | cmp_off &= 0xff; | |
702b33b1 RH |
1184 | } |
1185 | ||
811d4cf4 | 1186 | tcg_out_dat_imm(s, COND_AL, ARITH_AND, |
4346457a | 1187 | TCG_REG_R0, TCG_REG_TMP, CPU_TLB_SIZE - 1); |
702b33b1 | 1188 | tcg_out_dat_reg(s, COND_AL, ARITH_ADD, TCG_REG_R2, base, |
c8d80cef | 1189 | TCG_REG_R0, SHIFT_IMM_LSL(CPU_TLB_ENTRY_BITS)); |
cee87be8 | 1190 | |
702b33b1 RH |
1191 | /* Load the tlb comparator. Use ldrd if needed and available, |
1192 | but due to how the pointer needs setting up, ldm isn't useful. | |
1193 | Base arm5 doesn't have ldrd, but armv5te does. */ | |
1194 | if (use_armv6_instructions && TARGET_LONG_BITS == 64) { | |
d0ebde22 | 1195 | tcg_out_ldrd_8(s, COND_AL, TCG_REG_R0, TCG_REG_R2, cmp_off); |
702b33b1 | 1196 | } else { |
d0ebde22 | 1197 | tcg_out_ld32_12(s, COND_AL, TCG_REG_R0, TCG_REG_R2, cmp_off); |
702b33b1 | 1198 | if (TARGET_LONG_BITS == 64) { |
d0ebde22 | 1199 | tcg_out_ld32_12(s, COND_AL, TCG_REG_R1, TCG_REG_R2, cmp_off + 4); |
702b33b1 | 1200 | } |
d17bd1d8 | 1201 | } |
cee87be8 | 1202 | |
3979144c | 1203 | /* Check alignment. */ |
cee87be8 | 1204 | if (s_bits) { |
702b33b1 | 1205 | tcg_out_dat_imm(s, COND_AL, ARITH_TST, |
cee87be8 RH |
1206 | 0, addrlo, (1 << s_bits) - 1); |
1207 | } | |
1208 | ||
ee06e230 RH |
1209 | /* Load the tlb addend. */ |
1210 | tcg_out_ld32_12(s, COND_AL, TCG_REG_R2, TCG_REG_R2, add_off); | |
1211 | ||
702b33b1 RH |
1212 | tcg_out_dat_reg(s, (s_bits ? COND_EQ : COND_AL), ARITH_CMP, 0, |
1213 | TCG_REG_R0, TCG_REG_TMP, SHIFT_IMM_LSL(TARGET_PAGE_BITS)); | |
1214 | ||
cee87be8 | 1215 | if (TARGET_LONG_BITS == 64) { |
cee87be8 RH |
1216 | tcg_out_dat_reg(s, COND_EQ, ARITH_CMP, 0, |
1217 | TCG_REG_R1, addrhi, SHIFT_IMM_LSL(0)); | |
1218 | } | |
d0ebde22 | 1219 | |
ee06e230 | 1220 | return TCG_REG_R2; |
cee87be8 | 1221 | } |
df5e0ef7 RH |
1222 | |
1223 | /* Record the context of a call to the out of line helper code for the slow | |
1224 | path for a load or store, so that we can later generate the correct | |
1225 | helper code. */ | |
ad5171db | 1226 | static void add_qemu_ldst_label(TCGContext *s, bool is_ld, TCGMemOp opc, |
a485cff0 RH |
1227 | TCGReg datalo, TCGReg datahi, TCGReg addrlo, |
1228 | TCGReg addrhi, int mem_index, | |
267c9319 | 1229 | tcg_insn_unit *raddr, tcg_insn_unit *label_ptr) |
df5e0ef7 | 1230 | { |
9ecefc84 | 1231 | TCGLabelQemuLdst *label = new_ldst_label(s); |
df5e0ef7 | 1232 | |
df5e0ef7 RH |
1233 | label->is_ld = is_ld; |
1234 | label->opc = opc; | |
a485cff0 RH |
1235 | label->datalo_reg = datalo; |
1236 | label->datahi_reg = datahi; | |
1237 | label->addrlo_reg = addrlo; | |
1238 | label->addrhi_reg = addrhi; | |
df5e0ef7 RH |
1239 | label->mem_index = mem_index; |
1240 | label->raddr = raddr; | |
1241 | label->label_ptr[0] = label_ptr; | |
1242 | } | |
1243 | ||
1244 | static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *lb) | |
1245 | { | |
a485cff0 | 1246 | TCGReg argreg, datalo, datahi; |
0315c51e | 1247 | TCGMemOp opc = lb->opc; |
267c9319 | 1248 | void *func; |
df5e0ef7 | 1249 | |
267c9319 | 1250 | reloc_pc24(lb->label_ptr[0], s->code_ptr); |
df5e0ef7 RH |
1251 | |
1252 | argreg = tcg_out_arg_reg32(s, TCG_REG_R0, TCG_AREG0); | |
1253 | if (TARGET_LONG_BITS == 64) { | |
1254 | argreg = tcg_out_arg_reg64(s, argreg, lb->addrlo_reg, lb->addrhi_reg); | |
1255 | } else { | |
1256 | argreg = tcg_out_arg_reg32(s, argreg, lb->addrlo_reg); | |
1257 | } | |
1258 | argreg = tcg_out_arg_imm32(s, argreg, lb->mem_index); | |
d9f4dde4 RH |
1259 | argreg = tcg_out_arg_reg32(s, argreg, TCG_REG_R14); |
1260 | ||
1261 | /* For armv6 we can use the canonical unsigned helpers and minimize | |
1262 | icache usage. For pre-armv6, use the signed helpers since we do | |
1263 | not have a single insn sign-extend. */ | |
1264 | if (use_armv6_instructions) { | |
267c9319 | 1265 | func = qemu_ld_helpers[opc & ~MO_SIGN]; |
d9f4dde4 | 1266 | } else { |
267c9319 | 1267 | func = qemu_ld_helpers[opc]; |
099fcf2e RH |
1268 | if (opc & MO_SIGN) { |
1269 | opc = MO_UL; | |
d9f4dde4 RH |
1270 | } |
1271 | } | |
1272 | tcg_out_call(s, func); | |
df5e0ef7 | 1273 | |
a485cff0 RH |
1274 | datalo = lb->datalo_reg; |
1275 | datahi = lb->datahi_reg; | |
0315c51e | 1276 | switch (opc & MO_SSIZE) { |
099fcf2e | 1277 | case MO_SB: |
a485cff0 | 1278 | tcg_out_ext8s(s, COND_AL, datalo, TCG_REG_R0); |
df5e0ef7 | 1279 | break; |
099fcf2e | 1280 | case MO_SW: |
a485cff0 | 1281 | tcg_out_ext16s(s, COND_AL, datalo, TCG_REG_R0); |
df5e0ef7 | 1282 | break; |
df5e0ef7 | 1283 | default: |
a485cff0 | 1284 | tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_R0); |
df5e0ef7 | 1285 | break; |
099fcf2e | 1286 | case MO_Q: |
a485cff0 RH |
1287 | if (datalo != TCG_REG_R1) { |
1288 | tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_R0); | |
1289 | tcg_out_mov_reg(s, COND_AL, datahi, TCG_REG_R1); | |
1290 | } else if (datahi != TCG_REG_R0) { | |
1291 | tcg_out_mov_reg(s, COND_AL, datahi, TCG_REG_R1); | |
1292 | tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_R0); | |
66c2056f RH |
1293 | } else { |
1294 | tcg_out_mov_reg(s, COND_AL, TCG_REG_TMP, TCG_REG_R0); | |
a485cff0 RH |
1295 | tcg_out_mov_reg(s, COND_AL, datahi, TCG_REG_R1); |
1296 | tcg_out_mov_reg(s, COND_AL, datalo, TCG_REG_TMP); | |
66c2056f | 1297 | } |
df5e0ef7 RH |
1298 | break; |
1299 | } | |
1300 | ||
267c9319 | 1301 | tcg_out_goto(s, COND_AL, lb->raddr); |
df5e0ef7 RH |
1302 | } |
1303 | ||
1304 | static void tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *lb) | |
1305 | { | |
a485cff0 | 1306 | TCGReg argreg, datalo, datahi; |
0315c51e | 1307 | TCGMemOp opc = lb->opc; |
df5e0ef7 | 1308 | |
267c9319 | 1309 | reloc_pc24(lb->label_ptr[0], s->code_ptr); |
df5e0ef7 RH |
1310 | |
1311 | argreg = TCG_REG_R0; | |
1312 | argreg = tcg_out_arg_reg32(s, argreg, TCG_AREG0); | |
1313 | if (TARGET_LONG_BITS == 64) { | |
1314 | argreg = tcg_out_arg_reg64(s, argreg, lb->addrlo_reg, lb->addrhi_reg); | |
1315 | } else { | |
1316 | argreg = tcg_out_arg_reg32(s, argreg, lb->addrlo_reg); | |
1317 | } | |
1318 | ||
a485cff0 RH |
1319 | datalo = lb->datalo_reg; |
1320 | datahi = lb->datahi_reg; | |
0315c51e | 1321 | switch (opc & MO_SIZE) { |
099fcf2e | 1322 | case MO_8: |
a485cff0 | 1323 | argreg = tcg_out_arg_reg8(s, argreg, datalo); |
df5e0ef7 | 1324 | break; |
099fcf2e | 1325 | case MO_16: |
a485cff0 | 1326 | argreg = tcg_out_arg_reg16(s, argreg, datalo); |
df5e0ef7 | 1327 | break; |
099fcf2e RH |
1328 | case MO_32: |
1329 | default: | |
a485cff0 | 1330 | argreg = tcg_out_arg_reg32(s, argreg, datalo); |
df5e0ef7 | 1331 | break; |
099fcf2e | 1332 | case MO_64: |
a485cff0 | 1333 | argreg = tcg_out_arg_reg64(s, argreg, datalo, datahi); |
df5e0ef7 RH |
1334 | break; |
1335 | } | |
1336 | ||
1337 | argreg = tcg_out_arg_imm32(s, argreg, lb->mem_index); | |
d9f4dde4 | 1338 | argreg = tcg_out_arg_reg32(s, argreg, TCG_REG_R14); |
df5e0ef7 | 1339 | |
d9f4dde4 | 1340 | /* Tail-call to the helper, which will return to the fast path. */ |
267c9319 | 1341 | tcg_out_goto(s, COND_AL, qemu_st_helpers[opc]); |
df5e0ef7 | 1342 | } |
cee87be8 RH |
1343 | #endif /* SOFTMMU */ |
1344 | ||
091d5677 RH |
1345 | static inline void tcg_out_qemu_ld_index(TCGContext *s, TCGMemOp opc, |
1346 | TCGReg datalo, TCGReg datahi, | |
1347 | TCGReg addrlo, TCGReg addend) | |
cee87be8 | 1348 | { |
091d5677 | 1349 | TCGMemOp bswap = opc & MO_BSWAP; |
df5e0ef7 | 1350 | |
099fcf2e RH |
1351 | switch (opc & MO_SSIZE) { |
1352 | case MO_UB: | |
a485cff0 | 1353 | tcg_out_ld8_r(s, COND_AL, datalo, addrlo, addend); |
811d4cf4 | 1354 | break; |
099fcf2e | 1355 | case MO_SB: |
a485cff0 | 1356 | tcg_out_ld8s_r(s, COND_AL, datalo, addrlo, addend); |
811d4cf4 | 1357 | break; |
099fcf2e | 1358 | case MO_UW: |
a485cff0 | 1359 | tcg_out_ld16u_r(s, COND_AL, datalo, addrlo, addend); |
67dcab73 | 1360 | if (bswap) { |
a485cff0 | 1361 | tcg_out_bswap16(s, COND_AL, datalo, datalo); |
67dcab73 | 1362 | } |
811d4cf4 | 1363 | break; |
099fcf2e | 1364 | case MO_SW: |
67dcab73 | 1365 | if (bswap) { |
a485cff0 RH |
1366 | tcg_out_ld16u_r(s, COND_AL, datalo, addrlo, addend); |
1367 | tcg_out_bswap16s(s, COND_AL, datalo, datalo); | |
67dcab73 | 1368 | } else { |
a485cff0 | 1369 | tcg_out_ld16s_r(s, COND_AL, datalo, addrlo, addend); |
67dcab73 | 1370 | } |
811d4cf4 | 1371 | break; |
099fcf2e | 1372 | case MO_UL: |
811d4cf4 | 1373 | default: |
a485cff0 | 1374 | tcg_out_ld32_r(s, COND_AL, datalo, addrlo, addend); |
67dcab73 | 1375 | if (bswap) { |
a485cff0 | 1376 | tcg_out_bswap32(s, COND_AL, datalo, datalo); |
67dcab73 | 1377 | } |
811d4cf4 | 1378 | break; |
099fcf2e | 1379 | case MO_Q: |
66c2056f | 1380 | { |
a485cff0 RH |
1381 | TCGReg dl = (bswap ? datahi : datalo); |
1382 | TCGReg dh = (bswap ? datalo : datahi); | |
66c2056f | 1383 | |
1a8e80d7 RH |
1384 | /* Avoid ldrd for user-only emulation, to handle unaligned. */ |
1385 | if (USING_SOFTMMU && use_armv6_instructions | |
1386 | && (dl & 1) == 0 && dh == dl + 1) { | |
a485cff0 | 1387 | tcg_out_ldrd_r(s, COND_AL, dl, addrlo, addend); |
66c2056f | 1388 | } else if (dl != addend) { |
a485cff0 | 1389 | tcg_out_ld32_rwb(s, COND_AL, dl, addend, addrlo); |
66c2056f RH |
1390 | tcg_out_ld32_12(s, COND_AL, dh, addend, 4); |
1391 | } else { | |
1392 | tcg_out_dat_reg(s, COND_AL, ARITH_ADD, TCG_REG_TMP, | |
a485cff0 | 1393 | addend, addrlo, SHIFT_IMM_LSL(0)); |
66c2056f RH |
1394 | tcg_out_ld32_12(s, COND_AL, dl, TCG_REG_TMP, 0); |
1395 | tcg_out_ld32_12(s, COND_AL, dh, TCG_REG_TMP, 4); | |
1396 | } | |
1397 | if (bswap) { | |
66c2056f | 1398 | tcg_out_bswap32(s, COND_AL, dl, dl); |
091d5677 | 1399 | tcg_out_bswap32(s, COND_AL, dh, dh); |
66c2056f | 1400 | } |
67dcab73 | 1401 | } |
811d4cf4 AZ |
1402 | break; |
1403 | } | |
091d5677 | 1404 | } |
811d4cf4 | 1405 | |
091d5677 RH |
1406 | static inline void tcg_out_qemu_ld_direct(TCGContext *s, TCGMemOp opc, |
1407 | TCGReg datalo, TCGReg datahi, | |
1408 | TCGReg addrlo) | |
1409 | { | |
1410 | TCGMemOp bswap = opc & MO_BSWAP; | |
379f6698 | 1411 | |
099fcf2e RH |
1412 | switch (opc & MO_SSIZE) { |
1413 | case MO_UB: | |
a485cff0 | 1414 | tcg_out_ld8_12(s, COND_AL, datalo, addrlo, 0); |
811d4cf4 | 1415 | break; |
099fcf2e | 1416 | case MO_SB: |
a485cff0 | 1417 | tcg_out_ld8s_8(s, COND_AL, datalo, addrlo, 0); |
811d4cf4 | 1418 | break; |
099fcf2e | 1419 | case MO_UW: |
a485cff0 | 1420 | tcg_out_ld16u_8(s, COND_AL, datalo, addrlo, 0); |
67dcab73 | 1421 | if (bswap) { |
a485cff0 | 1422 | tcg_out_bswap16(s, COND_AL, datalo, datalo); |
67dcab73 | 1423 | } |
811d4cf4 | 1424 | break; |
099fcf2e | 1425 | case MO_SW: |
67dcab73 | 1426 | if (bswap) { |
a485cff0 RH |
1427 | tcg_out_ld16u_8(s, COND_AL, datalo, addrlo, 0); |
1428 | tcg_out_bswap16s(s, COND_AL, datalo, datalo); | |
67dcab73 | 1429 | } else { |
a485cff0 | 1430 | tcg_out_ld16s_8(s, COND_AL, datalo, addrlo, 0); |
67dcab73 | 1431 | } |
811d4cf4 | 1432 | break; |
099fcf2e | 1433 | case MO_UL: |
811d4cf4 | 1434 | default: |
a485cff0 | 1435 | tcg_out_ld32_12(s, COND_AL, datalo, addrlo, 0); |
67dcab73 | 1436 | if (bswap) { |
a485cff0 | 1437 | tcg_out_bswap32(s, COND_AL, datalo, datalo); |
67dcab73 | 1438 | } |
811d4cf4 | 1439 | break; |
099fcf2e | 1440 | case MO_Q: |
091d5677 RH |
1441 | { |
1442 | TCGReg dl = (bswap ? datahi : datalo); | |
1443 | TCGReg dh = (bswap ? datalo : datahi); | |
1444 | ||
1a8e80d7 RH |
1445 | /* Avoid ldrd for user-only emulation, to handle unaligned. */ |
1446 | if (USING_SOFTMMU && use_armv6_instructions | |
1447 | && (dl & 1) == 0 && dh == dl + 1) { | |
091d5677 RH |
1448 | tcg_out_ldrd_8(s, COND_AL, dl, addrlo, 0); |
1449 | } else if (dl == addrlo) { | |
1450 | tcg_out_ld32_12(s, COND_AL, dh, addrlo, bswap ? 0 : 4); | |
1451 | tcg_out_ld32_12(s, COND_AL, dl, addrlo, bswap ? 4 : 0); | |
1452 | } else { | |
1453 | tcg_out_ld32_12(s, COND_AL, dl, addrlo, bswap ? 4 : 0); | |
1454 | tcg_out_ld32_12(s, COND_AL, dh, addrlo, bswap ? 0 : 4); | |
1455 | } | |
1456 | if (bswap) { | |
1457 | tcg_out_bswap32(s, COND_AL, dl, dl); | |
1458 | tcg_out_bswap32(s, COND_AL, dh, dh); | |
1459 | } | |
419bafa5 | 1460 | } |
811d4cf4 AZ |
1461 | break; |
1462 | } | |
811d4cf4 AZ |
1463 | } |
1464 | ||
091d5677 | 1465 | static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, bool is64) |
811d4cf4 | 1466 | { |
15ecf6e3 | 1467 | TCGReg addrlo, datalo, datahi, addrhi __attribute__((unused)); |
091d5677 | 1468 | TCGMemOp opc; |
811d4cf4 | 1469 | #ifdef CONFIG_SOFTMMU |
099fcf2e | 1470 | int mem_index; |
15ecf6e3 | 1471 | TCGReg addend; |
267c9319 | 1472 | tcg_insn_unit *label_ptr; |
811d4cf4 | 1473 | #endif |
cee87be8 | 1474 | |
a485cff0 | 1475 | datalo = *args++; |
15ecf6e3 | 1476 | datahi = (is64 ? *args++ : 0); |
a485cff0 | 1477 | addrlo = *args++; |
a485cff0 | 1478 | addrhi = (TARGET_LONG_BITS == 64 ? *args++ : 0); |
15ecf6e3 | 1479 | opc = *args++; |
811d4cf4 | 1480 | |
15ecf6e3 RH |
1481 | #ifdef CONFIG_SOFTMMU |
1482 | mem_index = *args; | |
091d5677 RH |
1483 | addend = tcg_out_tlb_read(s, addrlo, addrhi, opc & MO_SIZE, mem_index, 1); |
1484 | ||
1485 | /* This a conditional BL only to load a pointer within this opcode into LR | |
1486 | for the slow path. We will not be using the value for a tail call. */ | |
1487 | label_ptr = s->code_ptr; | |
1488 | tcg_out_bl_noaddr(s, COND_NE); | |
1489 | ||
1490 | tcg_out_qemu_ld_index(s, opc, datalo, datahi, addrlo, addend); | |
811d4cf4 | 1491 | |
ad5171db | 1492 | add_qemu_ldst_label(s, true, opc, datalo, datahi, addrlo, addrhi, |
091d5677 RH |
1493 | mem_index, s->code_ptr, label_ptr); |
1494 | #else /* !CONFIG_SOFTMMU */ | |
1495 | if (GUEST_BASE) { | |
1496 | tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_TMP, GUEST_BASE); | |
1497 | tcg_out_qemu_ld_index(s, opc, datalo, datahi, addrlo, TCG_REG_TMP); | |
1498 | } else { | |
1499 | tcg_out_qemu_ld_direct(s, opc, datalo, datahi, addrlo); | |
1500 | } | |
1501 | #endif | |
1502 | } | |
1503 | ||
1504 | static inline void tcg_out_qemu_st_index(TCGContext *s, int cond, TCGMemOp opc, | |
1505 | TCGReg datalo, TCGReg datahi, | |
1506 | TCGReg addrlo, TCGReg addend) | |
1507 | { | |
1508 | TCGMemOp bswap = opc & MO_BSWAP; | |
1509 | ||
1510 | switch (opc & MO_SIZE) { | |
099fcf2e | 1511 | case MO_8: |
091d5677 | 1512 | tcg_out_st8_r(s, cond, datalo, addrlo, addend); |
811d4cf4 | 1513 | break; |
099fcf2e | 1514 | case MO_16: |
67dcab73 | 1515 | if (bswap) { |
091d5677 RH |
1516 | tcg_out_bswap16st(s, cond, TCG_REG_R0, datalo); |
1517 | tcg_out_st16_r(s, cond, TCG_REG_R0, addrlo, addend); | |
67dcab73 | 1518 | } else { |
091d5677 | 1519 | tcg_out_st16_r(s, cond, datalo, addrlo, addend); |
67dcab73 | 1520 | } |
811d4cf4 | 1521 | break; |
099fcf2e | 1522 | case MO_32: |
811d4cf4 | 1523 | default: |
67dcab73 | 1524 | if (bswap) { |
091d5677 RH |
1525 | tcg_out_bswap32(s, cond, TCG_REG_R0, datalo); |
1526 | tcg_out_st32_r(s, cond, TCG_REG_R0, addrlo, addend); | |
67dcab73 | 1527 | } else { |
091d5677 | 1528 | tcg_out_st32_r(s, cond, datalo, addrlo, addend); |
67dcab73 | 1529 | } |
811d4cf4 | 1530 | break; |
099fcf2e | 1531 | case MO_64: |
1a8e80d7 | 1532 | /* Avoid strd for user-only emulation, to handle unaligned. */ |
67dcab73 | 1533 | if (bswap) { |
091d5677 RH |
1534 | tcg_out_bswap32(s, cond, TCG_REG_R0, datahi); |
1535 | tcg_out_st32_rwb(s, cond, TCG_REG_R0, addend, addrlo); | |
1536 | tcg_out_bswap32(s, cond, TCG_REG_R0, datalo); | |
1537 | tcg_out_st32_12(s, cond, TCG_REG_R0, addend, 4); | |
1a8e80d7 | 1538 | } else if (USING_SOFTMMU && use_armv6_instructions |
a485cff0 | 1539 | && (datalo & 1) == 0 && datahi == datalo + 1) { |
091d5677 | 1540 | tcg_out_strd_r(s, cond, datalo, addrlo, addend); |
67dcab73 | 1541 | } else { |
091d5677 RH |
1542 | tcg_out_st32_rwb(s, cond, datalo, addend, addrlo); |
1543 | tcg_out_st32_12(s, cond, datahi, addend, 4); | |
67dcab73 | 1544 | } |
811d4cf4 AZ |
1545 | break; |
1546 | } | |
091d5677 | 1547 | } |
811d4cf4 | 1548 | |
091d5677 RH |
1549 | static inline void tcg_out_qemu_st_direct(TCGContext *s, TCGMemOp opc, |
1550 | TCGReg datalo, TCGReg datahi, | |
1551 | TCGReg addrlo) | |
1552 | { | |
1553 | TCGMemOp bswap = opc & MO_BSWAP; | |
d9f4dde4 | 1554 | |
091d5677 | 1555 | switch (opc & MO_SIZE) { |
099fcf2e | 1556 | case MO_8: |
a485cff0 | 1557 | tcg_out_st8_12(s, COND_AL, datalo, addrlo, 0); |
811d4cf4 | 1558 | break; |
099fcf2e | 1559 | case MO_16: |
67dcab73 | 1560 | if (bswap) { |
a485cff0 RH |
1561 | tcg_out_bswap16st(s, COND_AL, TCG_REG_R0, datalo); |
1562 | tcg_out_st16_8(s, COND_AL, TCG_REG_R0, addrlo, 0); | |
67dcab73 | 1563 | } else { |
a485cff0 | 1564 | tcg_out_st16_8(s, COND_AL, datalo, addrlo, 0); |
67dcab73 | 1565 | } |
811d4cf4 | 1566 | break; |
099fcf2e | 1567 | case MO_32: |
811d4cf4 | 1568 | default: |
67dcab73 | 1569 | if (bswap) { |
a485cff0 RH |
1570 | tcg_out_bswap32(s, COND_AL, TCG_REG_R0, datalo); |
1571 | tcg_out_st32_12(s, COND_AL, TCG_REG_R0, addrlo, 0); | |
67dcab73 | 1572 | } else { |
a485cff0 | 1573 | tcg_out_st32_12(s, COND_AL, datalo, addrlo, 0); |
67dcab73 | 1574 | } |
811d4cf4 | 1575 | break; |
099fcf2e | 1576 | case MO_64: |
1a8e80d7 | 1577 | /* Avoid strd for user-only emulation, to handle unaligned. */ |
67dcab73 | 1578 | if (bswap) { |
a485cff0 RH |
1579 | tcg_out_bswap32(s, COND_AL, TCG_REG_R0, datahi); |
1580 | tcg_out_st32_12(s, COND_AL, TCG_REG_R0, addrlo, 0); | |
1581 | tcg_out_bswap32(s, COND_AL, TCG_REG_R0, datalo); | |
1582 | tcg_out_st32_12(s, COND_AL, TCG_REG_R0, addrlo, 4); | |
1a8e80d7 | 1583 | } else if (USING_SOFTMMU && use_armv6_instructions |
a485cff0 RH |
1584 | && (datalo & 1) == 0 && datahi == datalo + 1) { |
1585 | tcg_out_strd_8(s, COND_AL, datalo, addrlo, 0); | |
67dcab73 | 1586 | } else { |
a485cff0 RH |
1587 | tcg_out_st32_12(s, COND_AL, datalo, addrlo, 0); |
1588 | tcg_out_st32_12(s, COND_AL, datahi, addrlo, 4); | |
67dcab73 | 1589 | } |
811d4cf4 AZ |
1590 | break; |
1591 | } | |
091d5677 RH |
1592 | } |
1593 | ||
1594 | static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args, bool is64) | |
1595 | { | |
1596 | TCGReg addrlo, datalo, datahi, addrhi __attribute__((unused)); | |
1597 | TCGMemOp opc; | |
1598 | #ifdef CONFIG_SOFTMMU | |
1599 | int mem_index; | |
1600 | TCGReg addend; | |
267c9319 | 1601 | tcg_insn_unit *label_ptr; |
091d5677 RH |
1602 | #endif |
1603 | ||
1604 | datalo = *args++; | |
1605 | datahi = (is64 ? *args++ : 0); | |
1606 | addrlo = *args++; | |
1607 | addrhi = (TARGET_LONG_BITS == 64 ? *args++ : 0); | |
1608 | opc = *args++; | |
1609 | ||
1610 | #ifdef CONFIG_SOFTMMU | |
1611 | mem_index = *args; | |
1612 | addend = tcg_out_tlb_read(s, addrlo, addrhi, opc & MO_SIZE, mem_index, 0); | |
1613 | ||
1614 | tcg_out_qemu_st_index(s, COND_EQ, opc, datalo, datahi, addrlo, addend); | |
1615 | ||
1616 | /* The conditional call must come last, as we're going to return here. */ | |
1617 | label_ptr = s->code_ptr; | |
1618 | tcg_out_bl_noaddr(s, COND_NE); | |
1619 | ||
ad5171db | 1620 | add_qemu_ldst_label(s, false, opc, datalo, datahi, addrlo, addrhi, |
091d5677 RH |
1621 | mem_index, s->code_ptr, label_ptr); |
1622 | #else /* !CONFIG_SOFTMMU */ | |
1623 | if (GUEST_BASE) { | |
1624 | tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_TMP, GUEST_BASE); | |
1625 | tcg_out_qemu_st_index(s, COND_AL, opc, datalo, | |
1626 | datahi, addrlo, TCG_REG_TMP); | |
1627 | } else { | |
1628 | tcg_out_qemu_st_direct(s, opc, datalo, datahi, addrlo); | |
1629 | } | |
811d4cf4 AZ |
1630 | #endif |
1631 | } | |
1632 | ||
267c9319 | 1633 | static tcg_insn_unit *tb_ret_addr; |
811d4cf4 | 1634 | |
a9751609 | 1635 | static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, |
811d4cf4 AZ |
1636 | const TCGArg *args, const int *const_args) |
1637 | { | |
2df3f1ee | 1638 | TCGArg a0, a1, a2, a3, a4, a5; |
811d4cf4 AZ |
1639 | int c; |
1640 | ||
1641 | switch (opc) { | |
1642 | case INDEX_op_exit_tb: | |
267c9319 RH |
1643 | tcg_out_movi32(s, COND_AL, TCG_REG_R0, args[0]); |
1644 | tcg_out_goto(s, COND_AL, tb_ret_addr); | |
811d4cf4 AZ |
1645 | break; |
1646 | case INDEX_op_goto_tb: | |
1647 | if (s->tb_jmp_offset) { | |
1648 | /* Direct jump method */ | |
267c9319 | 1649 | s->tb_jmp_offset[args[0]] = tcg_current_code_size(s); |
c69806ab | 1650 | tcg_out_b_noaddr(s, COND_AL); |
811d4cf4 AZ |
1651 | } else { |
1652 | /* Indirect jump method */ | |
267c9319 RH |
1653 | intptr_t ptr = (intptr_t)(s->tb_next + args[0]); |
1654 | tcg_out_movi32(s, COND_AL, TCG_REG_R0, ptr & ~0xfff); | |
1655 | tcg_out_ld32_12(s, COND_AL, TCG_REG_PC, TCG_REG_R0, ptr & 0xfff); | |
811d4cf4 | 1656 | } |
267c9319 | 1657 | s->tb_next_offset[args[0]] = tcg_current_code_size(s); |
811d4cf4 | 1658 | break; |
811d4cf4 AZ |
1659 | case INDEX_op_br: |
1660 | tcg_out_goto_label(s, COND_AL, args[0]); | |
1661 | break; | |
1662 | ||
1663 | case INDEX_op_ld8u_i32: | |
1664 | tcg_out_ld8u(s, COND_AL, args[0], args[1], args[2]); | |
1665 | break; | |
1666 | case INDEX_op_ld8s_i32: | |
1667 | tcg_out_ld8s(s, COND_AL, args[0], args[1], args[2]); | |
1668 | break; | |
1669 | case INDEX_op_ld16u_i32: | |
1670 | tcg_out_ld16u(s, COND_AL, args[0], args[1], args[2]); | |
1671 | break; | |
1672 | case INDEX_op_ld16s_i32: | |
1673 | tcg_out_ld16s(s, COND_AL, args[0], args[1], args[2]); | |
1674 | break; | |
1675 | case INDEX_op_ld_i32: | |
1676 | tcg_out_ld32u(s, COND_AL, args[0], args[1], args[2]); | |
1677 | break; | |
1678 | case INDEX_op_st8_i32: | |
f694a27e | 1679 | tcg_out_st8(s, COND_AL, args[0], args[1], args[2]); |
811d4cf4 AZ |
1680 | break; |
1681 | case INDEX_op_st16_i32: | |
f694a27e | 1682 | tcg_out_st16(s, COND_AL, args[0], args[1], args[2]); |
811d4cf4 AZ |
1683 | break; |
1684 | case INDEX_op_st_i32: | |
1685 | tcg_out_st32(s, COND_AL, args[0], args[1], args[2]); | |
1686 | break; | |
1687 | ||
4a1d241e PM |
1688 | case INDEX_op_movcond_i32: |
1689 | /* Constraints mean that v2 is always in the same register as dest, | |
1690 | * so we only need to do "if condition passed, move v1 to dest". | |
1691 | */ | |
5d53b4c9 RH |
1692 | tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0, |
1693 | args[1], args[2], const_args[2]); | |
1694 | tcg_out_dat_rIK(s, tcg_cond_to_arm_cond[args[5]], ARITH_MOV, | |
1695 | ARITH_MVN, args[0], 0, args[3], const_args[3]); | |
4a1d241e | 1696 | break; |
811d4cf4 | 1697 | case INDEX_op_add_i32: |
a9a86ae9 RH |
1698 | tcg_out_dat_rIN(s, COND_AL, ARITH_ADD, ARITH_SUB, |
1699 | args[0], args[1], args[2], const_args[2]); | |
1700 | break; | |
811d4cf4 | 1701 | case INDEX_op_sub_i32: |
d9fda575 RH |
1702 | if (const_args[1]) { |
1703 | if (const_args[2]) { | |
1704 | tcg_out_movi32(s, COND_AL, args[0], args[1] - args[2]); | |
1705 | } else { | |
1706 | tcg_out_dat_rI(s, COND_AL, ARITH_RSB, | |
1707 | args[0], args[2], args[1], 1); | |
1708 | } | |
1709 | } else { | |
1710 | tcg_out_dat_rIN(s, COND_AL, ARITH_SUB, ARITH_ADD, | |
1711 | args[0], args[1], args[2], const_args[2]); | |
1712 | } | |
a9a86ae9 | 1713 | break; |
811d4cf4 | 1714 | case INDEX_op_and_i32: |
19b62bf4 RH |
1715 | tcg_out_dat_rIK(s, COND_AL, ARITH_AND, ARITH_BIC, |
1716 | args[0], args[1], args[2], const_args[2]); | |
1717 | break; | |
932234f6 | 1718 | case INDEX_op_andc_i32: |
19b62bf4 RH |
1719 | tcg_out_dat_rIK(s, COND_AL, ARITH_BIC, ARITH_AND, |
1720 | args[0], args[1], args[2], const_args[2]); | |
1721 | break; | |
811d4cf4 AZ |
1722 | case INDEX_op_or_i32: |
1723 | c = ARITH_ORR; | |
1724 | goto gen_arith; | |
1725 | case INDEX_op_xor_i32: | |
1726 | c = ARITH_EOR; | |
1727 | /* Fall through. */ | |
1728 | gen_arith: | |
7fc645bf | 1729 | tcg_out_dat_rI(s, COND_AL, c, args[0], args[1], args[2], const_args[2]); |
811d4cf4 AZ |
1730 | break; |
1731 | case INDEX_op_add2_i32: | |
2df3f1ee RH |
1732 | a0 = args[0], a1 = args[1], a2 = args[2]; |
1733 | a3 = args[3], a4 = args[4], a5 = args[5]; | |
1734 | if (a0 == a3 || (a0 == a5 && !const_args[5])) { | |
4346457a | 1735 | a0 = TCG_REG_TMP; |
2df3f1ee RH |
1736 | } |
1737 | tcg_out_dat_rIN(s, COND_AL, ARITH_ADD | TO_CPSR, ARITH_SUB | TO_CPSR, | |
1738 | a0, a2, a4, const_args[4]); | |
1739 | tcg_out_dat_rIK(s, COND_AL, ARITH_ADC, ARITH_SBC, | |
1740 | a1, a3, a5, const_args[5]); | |
1741 | tcg_out_mov_reg(s, COND_AL, args[0], a0); | |
811d4cf4 AZ |
1742 | break; |
1743 | case INDEX_op_sub2_i32: | |
2df3f1ee RH |
1744 | a0 = args[0], a1 = args[1], a2 = args[2]; |
1745 | a3 = args[3], a4 = args[4], a5 = args[5]; | |
1746 | if ((a0 == a3 && !const_args[3]) || (a0 == a5 && !const_args[5])) { | |
4346457a | 1747 | a0 = TCG_REG_TMP; |
2df3f1ee RH |
1748 | } |
1749 | if (const_args[2]) { | |
1750 | if (const_args[4]) { | |
1751 | tcg_out_movi32(s, COND_AL, a0, a4); | |
1752 | a4 = a0; | |
1753 | } | |
1754 | tcg_out_dat_rI(s, COND_AL, ARITH_RSB | TO_CPSR, a0, a4, a2, 1); | |
1755 | } else { | |
1756 | tcg_out_dat_rIN(s, COND_AL, ARITH_SUB | TO_CPSR, | |
1757 | ARITH_ADD | TO_CPSR, a0, a2, a4, const_args[4]); | |
1758 | } | |
1759 | if (const_args[3]) { | |
1760 | if (const_args[5]) { | |
1761 | tcg_out_movi32(s, COND_AL, a1, a5); | |
1762 | a5 = a1; | |
1763 | } | |
1764 | tcg_out_dat_rI(s, COND_AL, ARITH_RSC, a1, a5, a3, 1); | |
1765 | } else { | |
1766 | tcg_out_dat_rIK(s, COND_AL, ARITH_SBC, ARITH_ADC, | |
1767 | a1, a3, a5, const_args[5]); | |
1768 | } | |
1769 | tcg_out_mov_reg(s, COND_AL, args[0], a0); | |
811d4cf4 | 1770 | break; |
650bbb36 AZ |
1771 | case INDEX_op_neg_i32: |
1772 | tcg_out_dat_imm(s, COND_AL, ARITH_RSB, args[0], args[1], 0); | |
1773 | break; | |
f878d2d2 LD |
1774 | case INDEX_op_not_i32: |
1775 | tcg_out_dat_reg(s, COND_AL, | |
1776 | ARITH_MVN, args[0], 0, args[1], SHIFT_IMM_LSL(0)); | |
1777 | break; | |
811d4cf4 AZ |
1778 | case INDEX_op_mul_i32: |
1779 | tcg_out_mul32(s, COND_AL, args[0], args[1], args[2]); | |
1780 | break; | |
1781 | case INDEX_op_mulu2_i32: | |
1782 | tcg_out_umull32(s, COND_AL, args[0], args[1], args[2], args[3]); | |
1783 | break; | |
d693e147 RH |
1784 | case INDEX_op_muls2_i32: |
1785 | tcg_out_smull32(s, COND_AL, args[0], args[1], args[2], args[3]); | |
1786 | break; | |
811d4cf4 AZ |
1787 | /* XXX: Perhaps args[2] & 0x1f is wrong */ |
1788 | case INDEX_op_shl_i32: | |
1789 | c = const_args[2] ? | |
1790 | SHIFT_IMM_LSL(args[2] & 0x1f) : SHIFT_REG_LSL(args[2]); | |
1791 | goto gen_shift32; | |
1792 | case INDEX_op_shr_i32: | |
1793 | c = const_args[2] ? (args[2] & 0x1f) ? SHIFT_IMM_LSR(args[2] & 0x1f) : | |
1794 | SHIFT_IMM_LSL(0) : SHIFT_REG_LSR(args[2]); | |
1795 | goto gen_shift32; | |
1796 | case INDEX_op_sar_i32: | |
1797 | c = const_args[2] ? (args[2] & 0x1f) ? SHIFT_IMM_ASR(args[2] & 0x1f) : | |
1798 | SHIFT_IMM_LSL(0) : SHIFT_REG_ASR(args[2]); | |
293579e5 AJ |
1799 | goto gen_shift32; |
1800 | case INDEX_op_rotr_i32: | |
1801 | c = const_args[2] ? (args[2] & 0x1f) ? SHIFT_IMM_ROR(args[2] & 0x1f) : | |
1802 | SHIFT_IMM_LSL(0) : SHIFT_REG_ROR(args[2]); | |
811d4cf4 AZ |
1803 | /* Fall through. */ |
1804 | gen_shift32: | |
1805 | tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0, args[1], c); | |
1806 | break; | |
1807 | ||
293579e5 AJ |
1808 | case INDEX_op_rotl_i32: |
1809 | if (const_args[2]) { | |
1810 | tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0, args[1], | |
1811 | ((0x20 - args[2]) & 0x1f) ? | |
1812 | SHIFT_IMM_ROR((0x20 - args[2]) & 0x1f) : | |
1813 | SHIFT_IMM_LSL(0)); | |
1814 | } else { | |
7a3a0097 | 1815 | tcg_out_dat_imm(s, COND_AL, ARITH_RSB, TCG_REG_TMP, args[2], 0x20); |
293579e5 | 1816 | tcg_out_dat_reg(s, COND_AL, ARITH_MOV, args[0], 0, args[1], |
4346457a | 1817 | SHIFT_REG_ROR(TCG_REG_TMP)); |
293579e5 AJ |
1818 | } |
1819 | break; | |
1820 | ||
811d4cf4 | 1821 | case INDEX_op_brcond_i32: |
5d53b4c9 | 1822 | tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0, |
7fc645bf | 1823 | args[0], args[1], const_args[1]); |
811d4cf4 AZ |
1824 | tcg_out_goto_label(s, tcg_cond_to_arm_cond[args[2]], args[3]); |
1825 | break; | |
1826 | case INDEX_op_brcond2_i32: | |
1827 | /* The resulting conditions are: | |
1828 | * TCG_COND_EQ --> a0 == a2 && a1 == a3, | |
1829 | * TCG_COND_NE --> (a0 != a2 && a1 == a3) || a1 != a3, | |
1830 | * TCG_COND_LT(U) --> (a0 < a2 && a1 == a3) || a1 < a3, | |
1831 | * TCG_COND_GE(U) --> (a0 >= a2 && a1 == a3) || (a1 >= a3 && a1 != a3), | |
1832 | * TCG_COND_LE(U) --> (a0 <= a2 && a1 == a3) || (a1 <= a3 && a1 != a3), | |
1833 | * TCG_COND_GT(U) --> (a0 > a2 && a1 == a3) || a1 > a3, | |
1834 | */ | |
5d53b4c9 RH |
1835 | tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0, |
1836 | args[1], args[3], const_args[3]); | |
1837 | tcg_out_dat_rIN(s, COND_EQ, ARITH_CMP, ARITH_CMN, 0, | |
1838 | args[0], args[2], const_args[2]); | |
811d4cf4 AZ |
1839 | tcg_out_goto_label(s, tcg_cond_to_arm_cond[args[4]], args[5]); |
1840 | break; | |
f72a6cd7 | 1841 | case INDEX_op_setcond_i32: |
5d53b4c9 RH |
1842 | tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0, |
1843 | args[1], args[2], const_args[2]); | |
f72a6cd7 AJ |
1844 | tcg_out_dat_imm(s, tcg_cond_to_arm_cond[args[3]], |
1845 | ARITH_MOV, args[0], 0, 1); | |
1846 | tcg_out_dat_imm(s, tcg_cond_to_arm_cond[tcg_invert_cond(args[3])], | |
1847 | ARITH_MOV, args[0], 0, 0); | |
1848 | break; | |
e0404769 AJ |
1849 | case INDEX_op_setcond2_i32: |
1850 | /* See brcond2_i32 comment */ | |
5d53b4c9 RH |
1851 | tcg_out_dat_rIN(s, COND_AL, ARITH_CMP, ARITH_CMN, 0, |
1852 | args[2], args[4], const_args[4]); | |
1853 | tcg_out_dat_rIN(s, COND_EQ, ARITH_CMP, ARITH_CMN, 0, | |
1854 | args[1], args[3], const_args[3]); | |
e0404769 AJ |
1855 | tcg_out_dat_imm(s, tcg_cond_to_arm_cond[args[5]], |
1856 | ARITH_MOV, args[0], 0, 1); | |
1857 | tcg_out_dat_imm(s, tcg_cond_to_arm_cond[tcg_invert_cond(args[5])], | |
1858 | ARITH_MOV, args[0], 0, 0); | |
b525f0a9 | 1859 | break; |
811d4cf4 | 1860 | |
15ecf6e3 RH |
1861 | case INDEX_op_qemu_ld_i32: |
1862 | tcg_out_qemu_ld(s, args, 0); | |
811d4cf4 | 1863 | break; |
15ecf6e3 RH |
1864 | case INDEX_op_qemu_ld_i64: |
1865 | tcg_out_qemu_ld(s, args, 1); | |
811d4cf4 | 1866 | break; |
15ecf6e3 RH |
1867 | case INDEX_op_qemu_st_i32: |
1868 | tcg_out_qemu_st(s, args, 0); | |
811d4cf4 | 1869 | break; |
15ecf6e3 RH |
1870 | case INDEX_op_qemu_st_i64: |
1871 | tcg_out_qemu_st(s, args, 1); | |
811d4cf4 AZ |
1872 | break; |
1873 | ||
244b1e81 AJ |
1874 | case INDEX_op_bswap16_i32: |
1875 | tcg_out_bswap16(s, COND_AL, args[0], args[1]); | |
1876 | break; | |
1877 | case INDEX_op_bswap32_i32: | |
1878 | tcg_out_bswap32(s, COND_AL, args[0], args[1]); | |
1879 | break; | |
1880 | ||
811d4cf4 | 1881 | case INDEX_op_ext8s_i32: |
9517094f | 1882 | tcg_out_ext8s(s, COND_AL, args[0], args[1]); |
811d4cf4 AZ |
1883 | break; |
1884 | case INDEX_op_ext16s_i32: | |
9517094f AJ |
1885 | tcg_out_ext16s(s, COND_AL, args[0], args[1]); |
1886 | break; | |
1887 | case INDEX_op_ext16u_i32: | |
1888 | tcg_out_ext16u(s, COND_AL, args[0], args[1]); | |
811d4cf4 AZ |
1889 | break; |
1890 | ||
b6b24cb0 RH |
1891 | case INDEX_op_deposit_i32: |
1892 | tcg_out_deposit(s, COND_AL, args[0], args[2], | |
1893 | args[3], args[4], const_args[2]); | |
1894 | break; | |
1895 | ||
0637c56c RH |
1896 | case INDEX_op_div_i32: |
1897 | tcg_out_sdiv(s, COND_AL, args[0], args[1], args[2]); | |
1898 | break; | |
1899 | case INDEX_op_divu_i32: | |
1900 | tcg_out_udiv(s, COND_AL, args[0], args[1], args[2]); | |
1901 | break; | |
0637c56c | 1902 | |
96d0ee7f RH |
1903 | case INDEX_op_mov_i32: /* Always emitted via tcg_out_mov. */ |
1904 | case INDEX_op_movi_i32: /* Always emitted via tcg_out_movi. */ | |
1905 | case INDEX_op_call: /* Always emitted via tcg_out_call. */ | |
811d4cf4 AZ |
1906 | default: |
1907 | tcg_abort(); | |
1908 | } | |
1909 | } | |
1910 | ||
1911 | static const TCGTargetOpDef arm_op_defs[] = { | |
1912 | { INDEX_op_exit_tb, { } }, | |
1913 | { INDEX_op_goto_tb, { } }, | |
811d4cf4 AZ |
1914 | { INDEX_op_br, { } }, |
1915 | ||
811d4cf4 AZ |
1916 | { INDEX_op_ld8u_i32, { "r", "r" } }, |
1917 | { INDEX_op_ld8s_i32, { "r", "r" } }, | |
1918 | { INDEX_op_ld16u_i32, { "r", "r" } }, | |
1919 | { INDEX_op_ld16s_i32, { "r", "r" } }, | |
1920 | { INDEX_op_ld_i32, { "r", "r" } }, | |
1921 | { INDEX_op_st8_i32, { "r", "r" } }, | |
1922 | { INDEX_op_st16_i32, { "r", "r" } }, | |
1923 | { INDEX_op_st_i32, { "r", "r" } }, | |
1924 | ||
1925 | /* TODO: "r", "r", "ri" */ | |
a9a86ae9 | 1926 | { INDEX_op_add_i32, { "r", "r", "rIN" } }, |
d9fda575 | 1927 | { INDEX_op_sub_i32, { "r", "rI", "rIN" } }, |
811d4cf4 AZ |
1928 | { INDEX_op_mul_i32, { "r", "r", "r" } }, |
1929 | { INDEX_op_mulu2_i32, { "r", "r", "r", "r" } }, | |
d693e147 | 1930 | { INDEX_op_muls2_i32, { "r", "r", "r", "r" } }, |
19b62bf4 RH |
1931 | { INDEX_op_and_i32, { "r", "r", "rIK" } }, |
1932 | { INDEX_op_andc_i32, { "r", "r", "rIK" } }, | |
cb4e581f LD |
1933 | { INDEX_op_or_i32, { "r", "r", "rI" } }, |
1934 | { INDEX_op_xor_i32, { "r", "r", "rI" } }, | |
650bbb36 | 1935 | { INDEX_op_neg_i32, { "r", "r" } }, |
f878d2d2 | 1936 | { INDEX_op_not_i32, { "r", "r" } }, |
811d4cf4 AZ |
1937 | |
1938 | { INDEX_op_shl_i32, { "r", "r", "ri" } }, | |
1939 | { INDEX_op_shr_i32, { "r", "r", "ri" } }, | |
1940 | { INDEX_op_sar_i32, { "r", "r", "ri" } }, | |
293579e5 AJ |
1941 | { INDEX_op_rotl_i32, { "r", "r", "ri" } }, |
1942 | { INDEX_op_rotr_i32, { "r", "r", "ri" } }, | |
811d4cf4 | 1943 | |
5d53b4c9 RH |
1944 | { INDEX_op_brcond_i32, { "r", "rIN" } }, |
1945 | { INDEX_op_setcond_i32, { "r", "r", "rIN" } }, | |
1946 | { INDEX_op_movcond_i32, { "r", "r", "rIN", "rIK", "0" } }, | |
811d4cf4 | 1947 | |
2df3f1ee RH |
1948 | { INDEX_op_add2_i32, { "r", "r", "r", "r", "rIN", "rIK" } }, |
1949 | { INDEX_op_sub2_i32, { "r", "r", "rI", "rI", "rIN", "rIK" } }, | |
5d53b4c9 RH |
1950 | { INDEX_op_brcond2_i32, { "r", "r", "rIN", "rIN" } }, |
1951 | { INDEX_op_setcond2_i32, { "r", "r", "r", "rIN", "rIN" } }, | |
811d4cf4 | 1952 | |
26c5d372 | 1953 | #if TARGET_LONG_BITS == 32 |
15ecf6e3 RH |
1954 | { INDEX_op_qemu_ld_i32, { "r", "l" } }, |
1955 | { INDEX_op_qemu_ld_i64, { "r", "r", "l" } }, | |
1956 | { INDEX_op_qemu_st_i32, { "s", "s" } }, | |
1957 | { INDEX_op_qemu_st_i64, { "s", "s", "s" } }, | |
26c5d372 | 1958 | #else |
15ecf6e3 RH |
1959 | { INDEX_op_qemu_ld_i32, { "r", "l", "l" } }, |
1960 | { INDEX_op_qemu_ld_i64, { "r", "r", "l", "l" } }, | |
1961 | { INDEX_op_qemu_st_i32, { "s", "s", "s" } }, | |
1962 | { INDEX_op_qemu_st_i64, { "s", "s", "s", "s" } }, | |
26c5d372 | 1963 | #endif |
811d4cf4 | 1964 | |
244b1e81 AJ |
1965 | { INDEX_op_bswap16_i32, { "r", "r" } }, |
1966 | { INDEX_op_bswap32_i32, { "r", "r" } }, | |
1967 | ||
811d4cf4 AZ |
1968 | { INDEX_op_ext8s_i32, { "r", "r" } }, |
1969 | { INDEX_op_ext16s_i32, { "r", "r" } }, | |
9517094f | 1970 | { INDEX_op_ext16u_i32, { "r", "r" } }, |
811d4cf4 | 1971 | |
b6b24cb0 RH |
1972 | { INDEX_op_deposit_i32, { "r", "0", "rZ" } }, |
1973 | ||
0637c56c | 1974 | { INDEX_op_div_i32, { "r", "r", "r" } }, |
0637c56c | 1975 | { INDEX_op_divu_i32, { "r", "r", "r" } }, |
0637c56c | 1976 | |
811d4cf4 AZ |
1977 | { -1 }, |
1978 | }; | |
1979 | ||
e4d58b41 | 1980 | static void tcg_target_init(TCGContext *s) |
811d4cf4 | 1981 | { |
1e709f38 RH |
1982 | /* Only probe for the platform and capabilities if we havn't already |
1983 | determined maximum values at compile time. */ | |
41d9ea80 | 1984 | #ifndef use_idiv_instructions |
72e1ccfc | 1985 | { |
41d9ea80 | 1986 | unsigned long hwcap = qemu_getauxval(AT_HWCAP); |
72e1ccfc RH |
1987 | use_idiv_instructions = (hwcap & HWCAP_ARM_IDIVA) != 0; |
1988 | } | |
41d9ea80 | 1989 | #endif |
1e709f38 | 1990 | if (__ARM_ARCH < 7) { |
41d9ea80 | 1991 | const char *pl = (const char *)qemu_getauxval(AT_PLATFORM); |
1e709f38 RH |
1992 | if (pl != NULL && pl[0] == 'v' && pl[1] >= '4' && pl[1] <= '9') { |
1993 | arm_arch = pl[1] - '0'; | |
1994 | } | |
1995 | } | |
72e1ccfc | 1996 | |
e4a7d5e8 | 1997 | tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffff); |
811d4cf4 | 1998 | tcg_regset_set32(tcg_target_call_clobber_regs, 0, |
e4a7d5e8 AJ |
1999 | (1 << TCG_REG_R0) | |
2000 | (1 << TCG_REG_R1) | | |
2001 | (1 << TCG_REG_R2) | | |
2002 | (1 << TCG_REG_R3) | | |
2003 | (1 << TCG_REG_R12) | | |
2004 | (1 << TCG_REG_R14)); | |
811d4cf4 AZ |
2005 | |
2006 | tcg_regset_clear(s->reserved_regs); | |
811d4cf4 | 2007 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK); |
4346457a | 2008 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_TMP); |
e4a7d5e8 | 2009 | tcg_regset_set_reg(s->reserved_regs, TCG_REG_PC); |
811d4cf4 AZ |
2010 | |
2011 | tcg_add_target_add_op_defs(arm_op_defs); | |
2012 | } | |
2013 | ||
2a534aff | 2014 | static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg, |
a05b5b9b | 2015 | TCGReg arg1, intptr_t arg2) |
811d4cf4 AZ |
2016 | { |
2017 | tcg_out_ld32u(s, COND_AL, arg, arg1, arg2); | |
2018 | } | |
2019 | ||
2a534aff | 2020 | static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg, |
a05b5b9b | 2021 | TCGReg arg1, intptr_t arg2) |
811d4cf4 AZ |
2022 | { |
2023 | tcg_out_st32(s, COND_AL, arg, arg1, arg2); | |
2024 | } | |
2025 | ||
2a534aff RH |
2026 | static inline void tcg_out_mov(TCGContext *s, TCGType type, |
2027 | TCGReg ret, TCGReg arg) | |
811d4cf4 AZ |
2028 | { |
2029 | tcg_out_dat_reg(s, COND_AL, ARITH_MOV, ret, 0, arg, SHIFT_IMM_LSL(0)); | |
2030 | } | |
2031 | ||
2032 | static inline void tcg_out_movi(TCGContext *s, TCGType type, | |
2a534aff | 2033 | TCGReg ret, tcg_target_long arg) |
811d4cf4 AZ |
2034 | { |
2035 | tcg_out_movi32(s, COND_AL, ret, arg); | |
2036 | } | |
2037 | ||
0caa91fe RH |
2038 | /* Compute frame size via macros, to share between tcg_target_qemu_prologue |
2039 | and tcg_register_jit. */ | |
2040 | ||
2041 | #define PUSH_SIZE ((11 - 4 + 1 + 1) * sizeof(tcg_target_long)) | |
2042 | ||
2043 | #define FRAME_SIZE \ | |
2044 | ((PUSH_SIZE \ | |
2045 | + TCG_STATIC_CALL_ARGS_SIZE \ | |
2046 | + CPU_TEMP_BUF_NLONGS * sizeof(long) \ | |
2047 | + TCG_TARGET_STACK_ALIGN - 1) \ | |
2048 | & -TCG_TARGET_STACK_ALIGN) | |
2049 | ||
e4d58b41 | 2050 | static void tcg_target_qemu_prologue(TCGContext *s) |
811d4cf4 | 2051 | { |
0caa91fe | 2052 | int stack_addend; |
fc4d60ee RH |
2053 | |
2054 | /* Calling convention requires us to save r4-r11 and lr. */ | |
2055 | /* stmdb sp!, { r4 - r11, lr } */ | |
2056 | tcg_out32(s, (COND_AL << 28) | 0x092d4ff0); | |
cea5f9a2 | 2057 | |
0caa91fe RH |
2058 | /* Reserve callee argument and tcg temp space. */ |
2059 | stack_addend = FRAME_SIZE - PUSH_SIZE; | |
fc4d60ee RH |
2060 | |
2061 | tcg_out_dat_rI(s, COND_AL, ARITH_SUB, TCG_REG_CALL_STACK, | |
0caa91fe | 2062 | TCG_REG_CALL_STACK, stack_addend, 1); |
fc4d60ee RH |
2063 | tcg_set_frame(s, TCG_REG_CALL_STACK, TCG_STATIC_CALL_ARGS_SIZE, |
2064 | CPU_TEMP_BUF_NLONGS * sizeof(long)); | |
4e17eae9 | 2065 | |
cea5f9a2 | 2066 | tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]); |
811d4cf4 | 2067 | |
cea5f9a2 | 2068 | tcg_out_bx(s, COND_AL, tcg_target_call_iarg_regs[1]); |
811d4cf4 AZ |
2069 | tb_ret_addr = s->code_ptr; |
2070 | ||
fc4d60ee RH |
2071 | /* Epilogue. We branch here via tb_ret_addr. */ |
2072 | tcg_out_dat_rI(s, COND_AL, ARITH_ADD, TCG_REG_CALL_STACK, | |
0caa91fe | 2073 | TCG_REG_CALL_STACK, stack_addend, 1); |
fc4d60ee RH |
2074 | |
2075 | /* ldmia sp!, { r4 - r11, pc } */ | |
2076 | tcg_out32(s, (COND_AL << 28) | 0x08bd8ff0); | |
811d4cf4 | 2077 | } |
0caa91fe RH |
2078 | |
2079 | typedef struct { | |
16959741 | 2080 | DebugFrameHeader h; |
0caa91fe RH |
2081 | uint8_t fde_def_cfa[4]; |
2082 | uint8_t fde_reg_ofs[18]; | |
2083 | } DebugFrame; | |
2084 | ||
2085 | #define ELF_HOST_MACHINE EM_ARM | |
2086 | ||
2087 | /* We're expecting a 2 byte uleb128 encoded value. */ | |
2088 | QEMU_BUILD_BUG_ON(FRAME_SIZE >= (1 << 14)); | |
2089 | ||
16959741 RH |
2090 | static const DebugFrame debug_frame = { |
2091 | .h.cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */ | |
2092 | .h.cie.id = -1, | |
2093 | .h.cie.version = 1, | |
2094 | .h.cie.code_align = 1, | |
2095 | .h.cie.data_align = 0x7c, /* sleb128 -4 */ | |
2096 | .h.cie.return_column = 14, | |
0caa91fe RH |
2097 | |
2098 | /* Total FDE size does not include the "len" member. */ | |
16959741 | 2099 | .h.fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, h.fde.cie_offset), |
0caa91fe RH |
2100 | |
2101 | .fde_def_cfa = { | |
2102 | 12, 13, /* DW_CFA_def_cfa sp, ... */ | |
2103 | (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */ | |
2104 | (FRAME_SIZE >> 7) | |
2105 | }, | |
2106 | .fde_reg_ofs = { | |
2107 | /* The following must match the stmdb in the prologue. */ | |
2108 | 0x8e, 1, /* DW_CFA_offset, lr, -4 */ | |
2109 | 0x8b, 2, /* DW_CFA_offset, r11, -8 */ | |
2110 | 0x8a, 3, /* DW_CFA_offset, r10, -12 */ | |
2111 | 0x89, 4, /* DW_CFA_offset, r9, -16 */ | |
2112 | 0x88, 5, /* DW_CFA_offset, r8, -20 */ | |
2113 | 0x87, 6, /* DW_CFA_offset, r7, -24 */ | |
2114 | 0x86, 7, /* DW_CFA_offset, r6, -28 */ | |
2115 | 0x85, 8, /* DW_CFA_offset, r5, -32 */ | |
2116 | 0x84, 9, /* DW_CFA_offset, r4, -36 */ | |
2117 | } | |
2118 | }; | |
2119 | ||
2120 | void tcg_register_jit(void *buf, size_t buf_size) | |
2121 | { | |
0caa91fe RH |
2122 | tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame)); |
2123 | } |