tcg/ppc: Support tlb offsets larger than 64k
[qemu/ar7.git] / tcg / ppc / tcg-target.inc.c
blob74f9b4aa3434dbbc687ccc6ac2133190e5f805a9
1 /*
2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
25 #include "elf.h"
26 #include "tcg-pool.inc.c"
28 #if defined _CALL_DARWIN || defined __APPLE__
29 #define TCG_TARGET_CALL_DARWIN
30 #endif
31 #ifdef _CALL_SYSV
32 # define TCG_TARGET_CALL_ALIGN_ARGS 1
33 #endif
35 /* For some memory operations, we need a scratch that isn't R0. For the AIX
36 calling convention, we can re-use the TOC register since we'll be reloading
37 it at every call. Otherwise R12 will do nicely as neither a call-saved
38 register nor a parameter register. */
39 #ifdef _CALL_AIX
40 # define TCG_REG_TMP1 TCG_REG_R2
41 #else
42 # define TCG_REG_TMP1 TCG_REG_R12
43 #endif
45 #define TCG_REG_TB TCG_REG_R31
46 #define USE_REG_TB (TCG_TARGET_REG_BITS == 64)
48 /* Shorthand for size of a pointer. Avoid promotion to unsigned. */
49 #define SZP ((int)sizeof(void *))
51 /* Shorthand for size of a register. */
52 #define SZR (TCG_TARGET_REG_BITS / 8)
54 #define TCG_CT_CONST_S16 0x100
55 #define TCG_CT_CONST_U16 0x200
56 #define TCG_CT_CONST_S32 0x400
57 #define TCG_CT_CONST_U32 0x800
58 #define TCG_CT_CONST_ZERO 0x1000
59 #define TCG_CT_CONST_MONE 0x2000
60 #define TCG_CT_CONST_WSZ 0x4000
62 static tcg_insn_unit *tb_ret_addr;
64 bool have_isa_2_06;
65 bool have_isa_3_00;
67 #define HAVE_ISA_2_06 have_isa_2_06
68 #define HAVE_ISEL have_isa_2_06
70 #ifndef CONFIG_SOFTMMU
71 #define TCG_GUEST_BASE_REG 30
72 #endif
74 #ifdef CONFIG_DEBUG_TCG
75 static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
76 "r0",
77 "r1",
78 "r2",
79 "r3",
80 "r4",
81 "r5",
82 "r6",
83 "r7",
84 "r8",
85 "r9",
86 "r10",
87 "r11",
88 "r12",
89 "r13",
90 "r14",
91 "r15",
92 "r16",
93 "r17",
94 "r18",
95 "r19",
96 "r20",
97 "r21",
98 "r22",
99 "r23",
100 "r24",
101 "r25",
102 "r26",
103 "r27",
104 "r28",
105 "r29",
106 "r30",
107 "r31"
109 #endif
111 static const int tcg_target_reg_alloc_order[] = {
112 TCG_REG_R14, /* call saved registers */
113 TCG_REG_R15,
114 TCG_REG_R16,
115 TCG_REG_R17,
116 TCG_REG_R18,
117 TCG_REG_R19,
118 TCG_REG_R20,
119 TCG_REG_R21,
120 TCG_REG_R22,
121 TCG_REG_R23,
122 TCG_REG_R24,
123 TCG_REG_R25,
124 TCG_REG_R26,
125 TCG_REG_R27,
126 TCG_REG_R28,
127 TCG_REG_R29,
128 TCG_REG_R30,
129 TCG_REG_R31,
130 TCG_REG_R12, /* call clobbered, non-arguments */
131 TCG_REG_R11,
132 TCG_REG_R2,
133 TCG_REG_R13,
134 TCG_REG_R10, /* call clobbered, arguments */
135 TCG_REG_R9,
136 TCG_REG_R8,
137 TCG_REG_R7,
138 TCG_REG_R6,
139 TCG_REG_R5,
140 TCG_REG_R4,
141 TCG_REG_R3,
144 static const int tcg_target_call_iarg_regs[] = {
145 TCG_REG_R3,
146 TCG_REG_R4,
147 TCG_REG_R5,
148 TCG_REG_R6,
149 TCG_REG_R7,
150 TCG_REG_R8,
151 TCG_REG_R9,
152 TCG_REG_R10
155 static const int tcg_target_call_oarg_regs[] = {
156 TCG_REG_R3,
157 TCG_REG_R4
160 static const int tcg_target_callee_save_regs[] = {
161 #ifdef TCG_TARGET_CALL_DARWIN
162 TCG_REG_R11,
163 #endif
164 TCG_REG_R14,
165 TCG_REG_R15,
166 TCG_REG_R16,
167 TCG_REG_R17,
168 TCG_REG_R18,
169 TCG_REG_R19,
170 TCG_REG_R20,
171 TCG_REG_R21,
172 TCG_REG_R22,
173 TCG_REG_R23,
174 TCG_REG_R24,
175 TCG_REG_R25,
176 TCG_REG_R26,
177 TCG_REG_R27, /* currently used for the global env */
178 TCG_REG_R28,
179 TCG_REG_R29,
180 TCG_REG_R30,
181 TCG_REG_R31
184 static inline bool in_range_b(tcg_target_long target)
186 return target == sextract64(target, 0, 26);
189 static uint32_t reloc_pc24_val(tcg_insn_unit *pc, tcg_insn_unit *target)
191 ptrdiff_t disp = tcg_ptr_byte_diff(target, pc);
192 tcg_debug_assert(in_range_b(disp));
193 return disp & 0x3fffffc;
196 static void reloc_pc24(tcg_insn_unit *pc, tcg_insn_unit *target)
198 *pc = (*pc & ~0x3fffffc) | reloc_pc24_val(pc, target);
201 static uint16_t reloc_pc14_val(tcg_insn_unit *pc, tcg_insn_unit *target)
203 ptrdiff_t disp = tcg_ptr_byte_diff(target, pc);
204 tcg_debug_assert(disp == (int16_t) disp);
205 return disp & 0xfffc;
208 static void reloc_pc14(tcg_insn_unit *pc, tcg_insn_unit *target)
210 *pc = (*pc & ~0xfffc) | reloc_pc14_val(pc, target);
213 static inline void tcg_out_b_noaddr(TCGContext *s, int insn)
215 unsigned retrans = *s->code_ptr & 0x3fffffc;
216 tcg_out32(s, insn | retrans);
219 static inline void tcg_out_bc_noaddr(TCGContext *s, int insn)
221 unsigned retrans = *s->code_ptr & 0xfffc;
222 tcg_out32(s, insn | retrans);
225 static void patch_reloc(tcg_insn_unit *code_ptr, int type,
226 intptr_t value, intptr_t addend)
228 tcg_insn_unit *target;
229 tcg_insn_unit old;
231 value += addend;
232 target = (tcg_insn_unit *)value;
234 switch (type) {
235 case R_PPC_REL14:
236 reloc_pc14(code_ptr, target);
237 break;
238 case R_PPC_REL24:
239 reloc_pc24(code_ptr, target);
240 break;
241 case R_PPC_ADDR16:
242 assert(value == (int16_t)value);
243 old = *code_ptr;
244 old = deposit32(old, 0, 16, value);
245 *code_ptr = old;
246 break;
247 default:
248 tcg_abort();
252 /* parse target specific constraints */
253 static const char *target_parse_constraint(TCGArgConstraint *ct,
254 const char *ct_str, TCGType type)
256 switch (*ct_str++) {
257 case 'A': case 'B': case 'C': case 'D':
258 ct->ct |= TCG_CT_REG;
259 tcg_regset_set_reg(ct->u.regs, 3 + ct_str[0] - 'A');
260 break;
261 case 'r':
262 ct->ct |= TCG_CT_REG;
263 ct->u.regs = 0xffffffff;
264 break;
265 case 'L': /* qemu_ld constraint */
266 ct->ct |= TCG_CT_REG;
267 ct->u.regs = 0xffffffff;
268 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3);
269 #ifdef CONFIG_SOFTMMU
270 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R4);
271 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R5);
272 #endif
273 break;
274 case 'S': /* qemu_st constraint */
275 ct->ct |= TCG_CT_REG;
276 ct->u.regs = 0xffffffff;
277 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3);
278 #ifdef CONFIG_SOFTMMU
279 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R4);
280 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R5);
281 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R6);
282 #endif
283 break;
284 case 'I':
285 ct->ct |= TCG_CT_CONST_S16;
286 break;
287 case 'J':
288 ct->ct |= TCG_CT_CONST_U16;
289 break;
290 case 'M':
291 ct->ct |= TCG_CT_CONST_MONE;
292 break;
293 case 'T':
294 ct->ct |= TCG_CT_CONST_S32;
295 break;
296 case 'U':
297 ct->ct |= TCG_CT_CONST_U32;
298 break;
299 case 'W':
300 ct->ct |= TCG_CT_CONST_WSZ;
301 break;
302 case 'Z':
303 ct->ct |= TCG_CT_CONST_ZERO;
304 break;
305 default:
306 return NULL;
308 return ct_str;
311 /* test if a constant matches the constraint */
312 static int tcg_target_const_match(tcg_target_long val, TCGType type,
313 const TCGArgConstraint *arg_ct)
315 int ct = arg_ct->ct;
316 if (ct & TCG_CT_CONST) {
317 return 1;
320 /* The only 32-bit constraint we use aside from
321 TCG_CT_CONST is TCG_CT_CONST_S16. */
322 if (type == TCG_TYPE_I32) {
323 val = (int32_t)val;
326 if ((ct & TCG_CT_CONST_S16) && val == (int16_t)val) {
327 return 1;
328 } else if ((ct & TCG_CT_CONST_U16) && val == (uint16_t)val) {
329 return 1;
330 } else if ((ct & TCG_CT_CONST_S32) && val == (int32_t)val) {
331 return 1;
332 } else if ((ct & TCG_CT_CONST_U32) && val == (uint32_t)val) {
333 return 1;
334 } else if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
335 return 1;
336 } else if ((ct & TCG_CT_CONST_MONE) && val == -1) {
337 return 1;
338 } else if ((ct & TCG_CT_CONST_WSZ)
339 && val == (type == TCG_TYPE_I32 ? 32 : 64)) {
340 return 1;
342 return 0;
345 #define OPCD(opc) ((opc)<<26)
346 #define XO19(opc) (OPCD(19)|((opc)<<1))
347 #define MD30(opc) (OPCD(30)|((opc)<<2))
348 #define MDS30(opc) (OPCD(30)|((opc)<<1))
349 #define XO31(opc) (OPCD(31)|((opc)<<1))
350 #define XO58(opc) (OPCD(58)|(opc))
351 #define XO62(opc) (OPCD(62)|(opc))
353 #define B OPCD( 18)
354 #define BC OPCD( 16)
355 #define LBZ OPCD( 34)
356 #define LHZ OPCD( 40)
357 #define LHA OPCD( 42)
358 #define LWZ OPCD( 32)
359 #define STB OPCD( 38)
360 #define STH OPCD( 44)
361 #define STW OPCD( 36)
363 #define STD XO62( 0)
364 #define STDU XO62( 1)
365 #define STDX XO31(149)
367 #define LD XO58( 0)
368 #define LDX XO31( 21)
369 #define LDU XO58( 1)
370 #define LWA XO58( 2)
371 #define LWAX XO31(341)
373 #define ADDIC OPCD( 12)
374 #define ADDI OPCD( 14)
375 #define ADDIS OPCD( 15)
376 #define ORI OPCD( 24)
377 #define ORIS OPCD( 25)
378 #define XORI OPCD( 26)
379 #define XORIS OPCD( 27)
380 #define ANDI OPCD( 28)
381 #define ANDIS OPCD( 29)
382 #define MULLI OPCD( 7)
383 #define CMPLI OPCD( 10)
384 #define CMPI OPCD( 11)
385 #define SUBFIC OPCD( 8)
387 #define LWZU OPCD( 33)
388 #define STWU OPCD( 37)
390 #define RLWIMI OPCD( 20)
391 #define RLWINM OPCD( 21)
392 #define RLWNM OPCD( 23)
394 #define RLDICL MD30( 0)
395 #define RLDICR MD30( 1)
396 #define RLDIMI MD30( 3)
397 #define RLDCL MDS30( 8)
399 #define BCLR XO19( 16)
400 #define BCCTR XO19(528)
401 #define CRAND XO19(257)
402 #define CRANDC XO19(129)
403 #define CRNAND XO19(225)
404 #define CROR XO19(449)
405 #define CRNOR XO19( 33)
407 #define EXTSB XO31(954)
408 #define EXTSH XO31(922)
409 #define EXTSW XO31(986)
410 #define ADD XO31(266)
411 #define ADDE XO31(138)
412 #define ADDME XO31(234)
413 #define ADDZE XO31(202)
414 #define ADDC XO31( 10)
415 #define AND XO31( 28)
416 #define SUBF XO31( 40)
417 #define SUBFC XO31( 8)
418 #define SUBFE XO31(136)
419 #define SUBFME XO31(232)
420 #define SUBFZE XO31(200)
421 #define OR XO31(444)
422 #define XOR XO31(316)
423 #define MULLW XO31(235)
424 #define MULHW XO31( 75)
425 #define MULHWU XO31( 11)
426 #define DIVW XO31(491)
427 #define DIVWU XO31(459)
428 #define CMP XO31( 0)
429 #define CMPL XO31( 32)
430 #define LHBRX XO31(790)
431 #define LWBRX XO31(534)
432 #define LDBRX XO31(532)
433 #define STHBRX XO31(918)
434 #define STWBRX XO31(662)
435 #define STDBRX XO31(660)
436 #define MFSPR XO31(339)
437 #define MTSPR XO31(467)
438 #define SRAWI XO31(824)
439 #define NEG XO31(104)
440 #define MFCR XO31( 19)
441 #define MFOCRF (MFCR | (1u << 20))
442 #define NOR XO31(124)
443 #define CNTLZW XO31( 26)
444 #define CNTLZD XO31( 58)
445 #define CNTTZW XO31(538)
446 #define CNTTZD XO31(570)
447 #define CNTPOPW XO31(378)
448 #define CNTPOPD XO31(506)
449 #define ANDC XO31( 60)
450 #define ORC XO31(412)
451 #define EQV XO31(284)
452 #define NAND XO31(476)
453 #define ISEL XO31( 15)
455 #define MULLD XO31(233)
456 #define MULHD XO31( 73)
457 #define MULHDU XO31( 9)
458 #define DIVD XO31(489)
459 #define DIVDU XO31(457)
461 #define LBZX XO31( 87)
462 #define LHZX XO31(279)
463 #define LHAX XO31(343)
464 #define LWZX XO31( 23)
465 #define STBX XO31(215)
466 #define STHX XO31(407)
467 #define STWX XO31(151)
469 #define EIEIO XO31(854)
470 #define HWSYNC XO31(598)
471 #define LWSYNC (HWSYNC | (1u << 21))
473 #define SPR(a, b) ((((a)<<5)|(b))<<11)
474 #define LR SPR(8, 0)
475 #define CTR SPR(9, 0)
477 #define SLW XO31( 24)
478 #define SRW XO31(536)
479 #define SRAW XO31(792)
481 #define SLD XO31( 27)
482 #define SRD XO31(539)
483 #define SRAD XO31(794)
484 #define SRADI XO31(413<<1)
486 #define TW XO31( 4)
487 #define TRAP (TW | TO(31))
489 #define NOP ORI /* ori 0,0,0 */
491 #define RT(r) ((r)<<21)
492 #define RS(r) ((r)<<21)
493 #define RA(r) ((r)<<16)
494 #define RB(r) ((r)<<11)
495 #define TO(t) ((t)<<21)
496 #define SH(s) ((s)<<11)
497 #define MB(b) ((b)<<6)
498 #define ME(e) ((e)<<1)
499 #define BO(o) ((o)<<21)
500 #define MB64(b) ((b)<<5)
501 #define FXM(b) (1 << (19 - (b)))
503 #define LK 1
505 #define TAB(t, a, b) (RT(t) | RA(a) | RB(b))
506 #define SAB(s, a, b) (RS(s) | RA(a) | RB(b))
507 #define TAI(s, a, i) (RT(s) | RA(a) | ((i) & 0xffff))
508 #define SAI(s, a, i) (RS(s) | RA(a) | ((i) & 0xffff))
510 #define BF(n) ((n)<<23)
511 #define BI(n, c) (((c)+((n)*4))<<16)
512 #define BT(n, c) (((c)+((n)*4))<<21)
513 #define BA(n, c) (((c)+((n)*4))<<16)
514 #define BB(n, c) (((c)+((n)*4))<<11)
515 #define BC_(n, c) (((c)+((n)*4))<<6)
517 #define BO_COND_TRUE BO(12)
518 #define BO_COND_FALSE BO( 4)
519 #define BO_ALWAYS BO(20)
521 enum {
522 CR_LT,
523 CR_GT,
524 CR_EQ,
525 CR_SO
528 static const uint32_t tcg_to_bc[] = {
529 [TCG_COND_EQ] = BC | BI(7, CR_EQ) | BO_COND_TRUE,
530 [TCG_COND_NE] = BC | BI(7, CR_EQ) | BO_COND_FALSE,
531 [TCG_COND_LT] = BC | BI(7, CR_LT) | BO_COND_TRUE,
532 [TCG_COND_GE] = BC | BI(7, CR_LT) | BO_COND_FALSE,
533 [TCG_COND_LE] = BC | BI(7, CR_GT) | BO_COND_FALSE,
534 [TCG_COND_GT] = BC | BI(7, CR_GT) | BO_COND_TRUE,
535 [TCG_COND_LTU] = BC | BI(7, CR_LT) | BO_COND_TRUE,
536 [TCG_COND_GEU] = BC | BI(7, CR_LT) | BO_COND_FALSE,
537 [TCG_COND_LEU] = BC | BI(7, CR_GT) | BO_COND_FALSE,
538 [TCG_COND_GTU] = BC | BI(7, CR_GT) | BO_COND_TRUE,
541 /* The low bit here is set if the RA and RB fields must be inverted. */
542 static const uint32_t tcg_to_isel[] = {
543 [TCG_COND_EQ] = ISEL | BC_(7, CR_EQ),
544 [TCG_COND_NE] = ISEL | BC_(7, CR_EQ) | 1,
545 [TCG_COND_LT] = ISEL | BC_(7, CR_LT),
546 [TCG_COND_GE] = ISEL | BC_(7, CR_LT) | 1,
547 [TCG_COND_LE] = ISEL | BC_(7, CR_GT) | 1,
548 [TCG_COND_GT] = ISEL | BC_(7, CR_GT),
549 [TCG_COND_LTU] = ISEL | BC_(7, CR_LT),
550 [TCG_COND_GEU] = ISEL | BC_(7, CR_LT) | 1,
551 [TCG_COND_LEU] = ISEL | BC_(7, CR_GT) | 1,
552 [TCG_COND_GTU] = ISEL | BC_(7, CR_GT),
555 static void tcg_out_mem_long(TCGContext *s, int opi, int opx, TCGReg rt,
556 TCGReg base, tcg_target_long offset);
558 static void tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg)
560 tcg_debug_assert(TCG_TARGET_REG_BITS == 64 || type == TCG_TYPE_I32);
561 if (ret != arg) {
562 tcg_out32(s, OR | SAB(arg, ret, arg));
566 static inline void tcg_out_rld(TCGContext *s, int op, TCGReg ra, TCGReg rs,
567 int sh, int mb)
569 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
570 sh = SH(sh & 0x1f) | (((sh >> 5) & 1) << 1);
571 mb = MB64((mb >> 5) | ((mb << 1) & 0x3f));
572 tcg_out32(s, op | RA(ra) | RS(rs) | sh | mb);
575 static inline void tcg_out_rlw(TCGContext *s, int op, TCGReg ra, TCGReg rs,
576 int sh, int mb, int me)
578 tcg_out32(s, op | RA(ra) | RS(rs) | SH(sh) | MB(mb) | ME(me));
581 static inline void tcg_out_ext32u(TCGContext *s, TCGReg dst, TCGReg src)
583 tcg_out_rld(s, RLDICL, dst, src, 0, 32);
586 static inline void tcg_out_shli32(TCGContext *s, TCGReg dst, TCGReg src, int c)
588 tcg_out_rlw(s, RLWINM, dst, src, c, 0, 31 - c);
591 static inline void tcg_out_shli64(TCGContext *s, TCGReg dst, TCGReg src, int c)
593 tcg_out_rld(s, RLDICR, dst, src, c, 63 - c);
596 static inline void tcg_out_shri32(TCGContext *s, TCGReg dst, TCGReg src, int c)
598 tcg_out_rlw(s, RLWINM, dst, src, 32 - c, c, 31);
601 static inline void tcg_out_shri64(TCGContext *s, TCGReg dst, TCGReg src, int c)
603 tcg_out_rld(s, RLDICL, dst, src, 64 - c, c);
606 /* Emit a move into ret of arg, if it can be done in one insn. */
607 static bool tcg_out_movi_one(TCGContext *s, TCGReg ret, tcg_target_long arg)
609 if (arg == (int16_t)arg) {
610 tcg_out32(s, ADDI | TAI(ret, 0, arg));
611 return true;
613 if (arg == (int32_t)arg && (arg & 0xffff) == 0) {
614 tcg_out32(s, ADDIS | TAI(ret, 0, arg >> 16));
615 return true;
617 return false;
620 static void tcg_out_movi_int(TCGContext *s, TCGType type, TCGReg ret,
621 tcg_target_long arg, bool in_prologue)
623 intptr_t tb_diff;
624 tcg_target_long tmp;
625 int shift;
627 tcg_debug_assert(TCG_TARGET_REG_BITS == 64 || type == TCG_TYPE_I32);
629 if (TCG_TARGET_REG_BITS == 64 && type == TCG_TYPE_I32) {
630 arg = (int32_t)arg;
633 /* Load 16-bit immediates with one insn. */
634 if (tcg_out_movi_one(s, ret, arg)) {
635 return;
638 /* Load addresses within the TB with one insn. */
639 tb_diff = arg - (intptr_t)s->code_gen_ptr;
640 if (!in_prologue && USE_REG_TB && tb_diff == (int16_t)tb_diff) {
641 tcg_out32(s, ADDI | TAI(ret, TCG_REG_TB, tb_diff));
642 return;
645 /* Load 32-bit immediates with two insns. Note that we've already
646 eliminated bare ADDIS, so we know both insns are required. */
647 if (TCG_TARGET_REG_BITS == 32 || arg == (int32_t)arg) {
648 tcg_out32(s, ADDIS | TAI(ret, 0, arg >> 16));
649 tcg_out32(s, ORI | SAI(ret, ret, arg));
650 return;
652 if (arg == (uint32_t)arg && !(arg & 0x8000)) {
653 tcg_out32(s, ADDI | TAI(ret, 0, arg));
654 tcg_out32(s, ORIS | SAI(ret, ret, arg >> 16));
655 return;
658 /* Load masked 16-bit value. */
659 if (arg > 0 && (arg & 0x8000)) {
660 tmp = arg | 0x7fff;
661 if ((tmp & (tmp + 1)) == 0) {
662 int mb = clz64(tmp + 1) + 1;
663 tcg_out32(s, ADDI | TAI(ret, 0, arg));
664 tcg_out_rld(s, RLDICL, ret, ret, 0, mb);
665 return;
669 /* Load common masks with 2 insns. */
670 shift = ctz64(arg);
671 tmp = arg >> shift;
672 if (tmp == (int16_t)tmp) {
673 tcg_out32(s, ADDI | TAI(ret, 0, tmp));
674 tcg_out_shli64(s, ret, ret, shift);
675 return;
677 shift = clz64(arg);
678 if (tcg_out_movi_one(s, ret, arg << shift)) {
679 tcg_out_shri64(s, ret, ret, shift);
680 return;
683 /* Load addresses within 2GB of TB with 2 (or rarely 3) insns. */
684 if (!in_prologue && USE_REG_TB && tb_diff == (int32_t)tb_diff) {
685 tcg_out_mem_long(s, ADDI, ADD, ret, TCG_REG_TB, tb_diff);
686 return;
689 /* Use the constant pool, if possible. */
690 if (!in_prologue && USE_REG_TB) {
691 new_pool_label(s, arg, R_PPC_ADDR16, s->code_ptr,
692 -(intptr_t)s->code_gen_ptr);
693 tcg_out32(s, LD | TAI(ret, TCG_REG_TB, 0));
694 return;
697 tmp = arg >> 31 >> 1;
698 tcg_out_movi(s, TCG_TYPE_I32, ret, tmp);
699 if (tmp) {
700 tcg_out_shli64(s, ret, ret, 32);
702 if (arg & 0xffff0000) {
703 tcg_out32(s, ORIS | SAI(ret, ret, arg >> 16));
705 if (arg & 0xffff) {
706 tcg_out32(s, ORI | SAI(ret, ret, arg));
710 static inline void tcg_out_movi(TCGContext *s, TCGType type, TCGReg ret,
711 tcg_target_long arg)
713 tcg_out_movi_int(s, type, ret, arg, false);
716 static bool mask_operand(uint32_t c, int *mb, int *me)
718 uint32_t lsb, test;
720 /* Accept a bit pattern like:
721 0....01....1
722 1....10....0
723 0..01..10..0
724 Keep track of the transitions. */
725 if (c == 0 || c == -1) {
726 return false;
728 test = c;
729 lsb = test & -test;
730 test += lsb;
731 if (test & (test - 1)) {
732 return false;
735 *me = clz32(lsb);
736 *mb = test ? clz32(test & -test) + 1 : 0;
737 return true;
740 static bool mask64_operand(uint64_t c, int *mb, int *me)
742 uint64_t lsb;
744 if (c == 0) {
745 return false;
748 lsb = c & -c;
749 /* Accept 1..10..0. */
750 if (c == -lsb) {
751 *mb = 0;
752 *me = clz64(lsb);
753 return true;
755 /* Accept 0..01..1. */
756 if (lsb == 1 && (c & (c + 1)) == 0) {
757 *mb = clz64(c + 1) + 1;
758 *me = 63;
759 return true;
761 return false;
764 static void tcg_out_andi32(TCGContext *s, TCGReg dst, TCGReg src, uint32_t c)
766 int mb, me;
768 if (mask_operand(c, &mb, &me)) {
769 tcg_out_rlw(s, RLWINM, dst, src, 0, mb, me);
770 } else if ((c & 0xffff) == c) {
771 tcg_out32(s, ANDI | SAI(src, dst, c));
772 return;
773 } else if ((c & 0xffff0000) == c) {
774 tcg_out32(s, ANDIS | SAI(src, dst, c >> 16));
775 return;
776 } else {
777 tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_R0, c);
778 tcg_out32(s, AND | SAB(src, dst, TCG_REG_R0));
782 static void tcg_out_andi64(TCGContext *s, TCGReg dst, TCGReg src, uint64_t c)
784 int mb, me;
786 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
787 if (mask64_operand(c, &mb, &me)) {
788 if (mb == 0) {
789 tcg_out_rld(s, RLDICR, dst, src, 0, me);
790 } else {
791 tcg_out_rld(s, RLDICL, dst, src, 0, mb);
793 } else if ((c & 0xffff) == c) {
794 tcg_out32(s, ANDI | SAI(src, dst, c));
795 return;
796 } else if ((c & 0xffff0000) == c) {
797 tcg_out32(s, ANDIS | SAI(src, dst, c >> 16));
798 return;
799 } else {
800 tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_R0, c);
801 tcg_out32(s, AND | SAB(src, dst, TCG_REG_R0));
805 static void tcg_out_zori32(TCGContext *s, TCGReg dst, TCGReg src, uint32_t c,
806 int op_lo, int op_hi)
808 if (c >> 16) {
809 tcg_out32(s, op_hi | SAI(src, dst, c >> 16));
810 src = dst;
812 if (c & 0xffff) {
813 tcg_out32(s, op_lo | SAI(src, dst, c));
814 src = dst;
818 static void tcg_out_ori32(TCGContext *s, TCGReg dst, TCGReg src, uint32_t c)
820 tcg_out_zori32(s, dst, src, c, ORI, ORIS);
823 static void tcg_out_xori32(TCGContext *s, TCGReg dst, TCGReg src, uint32_t c)
825 tcg_out_zori32(s, dst, src, c, XORI, XORIS);
828 static void tcg_out_b(TCGContext *s, int mask, tcg_insn_unit *target)
830 ptrdiff_t disp = tcg_pcrel_diff(s, target);
831 if (in_range_b(disp)) {
832 tcg_out32(s, B | (disp & 0x3fffffc) | mask);
833 } else {
834 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R0, (uintptr_t)target);
835 tcg_out32(s, MTSPR | RS(TCG_REG_R0) | CTR);
836 tcg_out32(s, BCCTR | BO_ALWAYS | mask);
840 static void tcg_out_mem_long(TCGContext *s, int opi, int opx, TCGReg rt,
841 TCGReg base, tcg_target_long offset)
843 tcg_target_long orig = offset, l0, l1, extra = 0, align = 0;
844 bool is_store = false;
845 TCGReg rs = TCG_REG_TMP1;
847 switch (opi) {
848 case LD: case LWA:
849 align = 3;
850 /* FALLTHRU */
851 default:
852 if (rt != TCG_REG_R0) {
853 rs = rt;
854 break;
856 break;
857 case STD:
858 align = 3;
859 /* FALLTHRU */
860 case STB: case STH: case STW:
861 is_store = true;
862 break;
865 /* For unaligned, or very large offsets, use the indexed form. */
866 if (offset & align || offset != (int32_t)offset) {
867 if (rs == base) {
868 rs = TCG_REG_R0;
870 tcg_debug_assert(!is_store || rs != rt);
871 tcg_out_movi(s, TCG_TYPE_PTR, rs, orig);
872 tcg_out32(s, opx | TAB(rt, base, rs));
873 return;
876 l0 = (int16_t)offset;
877 offset = (offset - l0) >> 16;
878 l1 = (int16_t)offset;
880 if (l1 < 0 && orig >= 0) {
881 extra = 0x4000;
882 l1 = (int16_t)(offset - 0x4000);
884 if (l1) {
885 tcg_out32(s, ADDIS | TAI(rs, base, l1));
886 base = rs;
888 if (extra) {
889 tcg_out32(s, ADDIS | TAI(rs, base, extra));
890 base = rs;
892 if (opi != ADDI || base != rt || l0 != 0) {
893 tcg_out32(s, opi | TAI(rt, base, l0));
897 static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg ret,
898 TCGReg arg1, intptr_t arg2)
900 int opi, opx;
902 tcg_debug_assert(TCG_TARGET_REG_BITS == 64 || type == TCG_TYPE_I32);
903 if (type == TCG_TYPE_I32) {
904 opi = LWZ, opx = LWZX;
905 } else {
906 opi = LD, opx = LDX;
908 tcg_out_mem_long(s, opi, opx, ret, arg1, arg2);
911 static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
912 TCGReg arg1, intptr_t arg2)
914 int opi, opx;
916 tcg_debug_assert(TCG_TARGET_REG_BITS == 64 || type == TCG_TYPE_I32);
917 if (type == TCG_TYPE_I32) {
918 opi = STW, opx = STWX;
919 } else {
920 opi = STD, opx = STDX;
922 tcg_out_mem_long(s, opi, opx, arg, arg1, arg2);
925 static inline bool tcg_out_sti(TCGContext *s, TCGType type, TCGArg val,
926 TCGReg base, intptr_t ofs)
928 return false;
931 static void tcg_out_cmp(TCGContext *s, int cond, TCGArg arg1, TCGArg arg2,
932 int const_arg2, int cr, TCGType type)
934 int imm;
935 uint32_t op;
937 tcg_debug_assert(TCG_TARGET_REG_BITS == 64 || type == TCG_TYPE_I32);
939 /* Simplify the comparisons below wrt CMPI. */
940 if (type == TCG_TYPE_I32) {
941 arg2 = (int32_t)arg2;
944 switch (cond) {
945 case TCG_COND_EQ:
946 case TCG_COND_NE:
947 if (const_arg2) {
948 if ((int16_t) arg2 == arg2) {
949 op = CMPI;
950 imm = 1;
951 break;
952 } else if ((uint16_t) arg2 == arg2) {
953 op = CMPLI;
954 imm = 1;
955 break;
958 op = CMPL;
959 imm = 0;
960 break;
962 case TCG_COND_LT:
963 case TCG_COND_GE:
964 case TCG_COND_LE:
965 case TCG_COND_GT:
966 if (const_arg2) {
967 if ((int16_t) arg2 == arg2) {
968 op = CMPI;
969 imm = 1;
970 break;
973 op = CMP;
974 imm = 0;
975 break;
977 case TCG_COND_LTU:
978 case TCG_COND_GEU:
979 case TCG_COND_LEU:
980 case TCG_COND_GTU:
981 if (const_arg2) {
982 if ((uint16_t) arg2 == arg2) {
983 op = CMPLI;
984 imm = 1;
985 break;
988 op = CMPL;
989 imm = 0;
990 break;
992 default:
993 tcg_abort();
995 op |= BF(cr) | ((type == TCG_TYPE_I64) << 21);
997 if (imm) {
998 tcg_out32(s, op | RA(arg1) | (arg2 & 0xffff));
999 } else {
1000 if (const_arg2) {
1001 tcg_out_movi(s, type, TCG_REG_R0, arg2);
1002 arg2 = TCG_REG_R0;
1004 tcg_out32(s, op | RA(arg1) | RB(arg2));
1008 static void tcg_out_setcond_eq0(TCGContext *s, TCGType type,
1009 TCGReg dst, TCGReg src)
1011 if (type == TCG_TYPE_I32) {
1012 tcg_out32(s, CNTLZW | RS(src) | RA(dst));
1013 tcg_out_shri32(s, dst, dst, 5);
1014 } else {
1015 tcg_out32(s, CNTLZD | RS(src) | RA(dst));
1016 tcg_out_shri64(s, dst, dst, 6);
1020 static void tcg_out_setcond_ne0(TCGContext *s, TCGReg dst, TCGReg src)
1022 /* X != 0 implies X + -1 generates a carry. Extra addition
1023 trickery means: R = X-1 + ~X + C = X-1 + (-X+1) + C = C. */
1024 if (dst != src) {
1025 tcg_out32(s, ADDIC | TAI(dst, src, -1));
1026 tcg_out32(s, SUBFE | TAB(dst, dst, src));
1027 } else {
1028 tcg_out32(s, ADDIC | TAI(TCG_REG_R0, src, -1));
1029 tcg_out32(s, SUBFE | TAB(dst, TCG_REG_R0, src));
1033 static TCGReg tcg_gen_setcond_xor(TCGContext *s, TCGReg arg1, TCGArg arg2,
1034 bool const_arg2)
1036 if (const_arg2) {
1037 if ((uint32_t)arg2 == arg2) {
1038 tcg_out_xori32(s, TCG_REG_R0, arg1, arg2);
1039 } else {
1040 tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_R0, arg2);
1041 tcg_out32(s, XOR | SAB(arg1, TCG_REG_R0, TCG_REG_R0));
1043 } else {
1044 tcg_out32(s, XOR | SAB(arg1, TCG_REG_R0, arg2));
1046 return TCG_REG_R0;
1049 static void tcg_out_setcond(TCGContext *s, TCGType type, TCGCond cond,
1050 TCGArg arg0, TCGArg arg1, TCGArg arg2,
1051 int const_arg2)
1053 int crop, sh;
1055 tcg_debug_assert(TCG_TARGET_REG_BITS == 64 || type == TCG_TYPE_I32);
1057 /* Ignore high bits of a potential constant arg2. */
1058 if (type == TCG_TYPE_I32) {
1059 arg2 = (uint32_t)arg2;
1062 /* Handle common and trivial cases before handling anything else. */
1063 if (arg2 == 0) {
1064 switch (cond) {
1065 case TCG_COND_EQ:
1066 tcg_out_setcond_eq0(s, type, arg0, arg1);
1067 return;
1068 case TCG_COND_NE:
1069 if (TCG_TARGET_REG_BITS == 64 && type == TCG_TYPE_I32) {
1070 tcg_out_ext32u(s, TCG_REG_R0, arg1);
1071 arg1 = TCG_REG_R0;
1073 tcg_out_setcond_ne0(s, arg0, arg1);
1074 return;
1075 case TCG_COND_GE:
1076 tcg_out32(s, NOR | SAB(arg1, arg0, arg1));
1077 arg1 = arg0;
1078 /* FALLTHRU */
1079 case TCG_COND_LT:
1080 /* Extract the sign bit. */
1081 if (type == TCG_TYPE_I32) {
1082 tcg_out_shri32(s, arg0, arg1, 31);
1083 } else {
1084 tcg_out_shri64(s, arg0, arg1, 63);
1086 return;
1087 default:
1088 break;
1092 /* If we have ISEL, we can implement everything with 3 or 4 insns.
1093 All other cases below are also at least 3 insns, so speed up the
1094 code generator by not considering them and always using ISEL. */
1095 if (HAVE_ISEL) {
1096 int isel, tab;
1098 tcg_out_cmp(s, cond, arg1, arg2, const_arg2, 7, type);
1100 isel = tcg_to_isel[cond];
1102 tcg_out_movi(s, type, arg0, 1);
1103 if (isel & 1) {
1104 /* arg0 = (bc ? 0 : 1) */
1105 tab = TAB(arg0, 0, arg0);
1106 isel &= ~1;
1107 } else {
1108 /* arg0 = (bc ? 1 : 0) */
1109 tcg_out_movi(s, type, TCG_REG_R0, 0);
1110 tab = TAB(arg0, arg0, TCG_REG_R0);
1112 tcg_out32(s, isel | tab);
1113 return;
1116 switch (cond) {
1117 case TCG_COND_EQ:
1118 arg1 = tcg_gen_setcond_xor(s, arg1, arg2, const_arg2);
1119 tcg_out_setcond_eq0(s, type, arg0, arg1);
1120 return;
1122 case TCG_COND_NE:
1123 arg1 = tcg_gen_setcond_xor(s, arg1, arg2, const_arg2);
1124 /* Discard the high bits only once, rather than both inputs. */
1125 if (TCG_TARGET_REG_BITS == 64 && type == TCG_TYPE_I32) {
1126 tcg_out_ext32u(s, TCG_REG_R0, arg1);
1127 arg1 = TCG_REG_R0;
1129 tcg_out_setcond_ne0(s, arg0, arg1);
1130 return;
1132 case TCG_COND_GT:
1133 case TCG_COND_GTU:
1134 sh = 30;
1135 crop = 0;
1136 goto crtest;
1138 case TCG_COND_LT:
1139 case TCG_COND_LTU:
1140 sh = 29;
1141 crop = 0;
1142 goto crtest;
1144 case TCG_COND_GE:
1145 case TCG_COND_GEU:
1146 sh = 31;
1147 crop = CRNOR | BT(7, CR_EQ) | BA(7, CR_LT) | BB(7, CR_LT);
1148 goto crtest;
1150 case TCG_COND_LE:
1151 case TCG_COND_LEU:
1152 sh = 31;
1153 crop = CRNOR | BT(7, CR_EQ) | BA(7, CR_GT) | BB(7, CR_GT);
1154 crtest:
1155 tcg_out_cmp(s, cond, arg1, arg2, const_arg2, 7, type);
1156 if (crop) {
1157 tcg_out32(s, crop);
1159 tcg_out32(s, MFOCRF | RT(TCG_REG_R0) | FXM(7));
1160 tcg_out_rlw(s, RLWINM, arg0, TCG_REG_R0, sh, 31, 31);
1161 break;
1163 default:
1164 tcg_abort();
1168 static void tcg_out_bc(TCGContext *s, int bc, TCGLabel *l)
1170 if (l->has_value) {
1171 tcg_out32(s, bc | reloc_pc14_val(s->code_ptr, l->u.value_ptr));
1172 } else {
1173 tcg_out_reloc(s, s->code_ptr, R_PPC_REL14, l, 0);
1174 tcg_out_bc_noaddr(s, bc);
1178 static void tcg_out_brcond(TCGContext *s, TCGCond cond,
1179 TCGArg arg1, TCGArg arg2, int const_arg2,
1180 TCGLabel *l, TCGType type)
1182 tcg_out_cmp(s, cond, arg1, arg2, const_arg2, 7, type);
1183 tcg_out_bc(s, tcg_to_bc[cond], l);
1186 static void tcg_out_movcond(TCGContext *s, TCGType type, TCGCond cond,
1187 TCGArg dest, TCGArg c1, TCGArg c2, TCGArg v1,
1188 TCGArg v2, bool const_c2)
1190 /* If for some reason both inputs are zero, don't produce bad code. */
1191 if (v1 == 0 && v2 == 0) {
1192 tcg_out_movi(s, type, dest, 0);
1193 return;
1196 tcg_out_cmp(s, cond, c1, c2, const_c2, 7, type);
1198 if (HAVE_ISEL) {
1199 int isel = tcg_to_isel[cond];
1201 /* Swap the V operands if the operation indicates inversion. */
1202 if (isel & 1) {
1203 int t = v1;
1204 v1 = v2;
1205 v2 = t;
1206 isel &= ~1;
1208 /* V1 == 0 is handled by isel; V2 == 0 must be handled by hand. */
1209 if (v2 == 0) {
1210 tcg_out_movi(s, type, TCG_REG_R0, 0);
1212 tcg_out32(s, isel | TAB(dest, v1, v2));
1213 } else {
1214 if (dest == v2) {
1215 cond = tcg_invert_cond(cond);
1216 v2 = v1;
1217 } else if (dest != v1) {
1218 if (v1 == 0) {
1219 tcg_out_movi(s, type, dest, 0);
1220 } else {
1221 tcg_out_mov(s, type, dest, v1);
1224 /* Branch forward over one insn */
1225 tcg_out32(s, tcg_to_bc[cond] | 8);
1226 if (v2 == 0) {
1227 tcg_out_movi(s, type, dest, 0);
1228 } else {
1229 tcg_out_mov(s, type, dest, v2);
1234 static void tcg_out_cntxz(TCGContext *s, TCGType type, uint32_t opc,
1235 TCGArg a0, TCGArg a1, TCGArg a2, bool const_a2)
1237 if (const_a2 && a2 == (type == TCG_TYPE_I32 ? 32 : 64)) {
1238 tcg_out32(s, opc | RA(a0) | RS(a1));
1239 } else {
1240 tcg_out_cmp(s, TCG_COND_EQ, a1, 0, 1, 7, type);
1241 /* Note that the only other valid constant for a2 is 0. */
1242 if (HAVE_ISEL) {
1243 tcg_out32(s, opc | RA(TCG_REG_R0) | RS(a1));
1244 tcg_out32(s, tcg_to_isel[TCG_COND_EQ] | TAB(a0, a2, TCG_REG_R0));
1245 } else if (!const_a2 && a0 == a2) {
1246 tcg_out32(s, tcg_to_bc[TCG_COND_EQ] | 8);
1247 tcg_out32(s, opc | RA(a0) | RS(a1));
1248 } else {
1249 tcg_out32(s, opc | RA(a0) | RS(a1));
1250 tcg_out32(s, tcg_to_bc[TCG_COND_NE] | 8);
1251 if (const_a2) {
1252 tcg_out_movi(s, type, a0, 0);
1253 } else {
1254 tcg_out_mov(s, type, a0, a2);
1260 static void tcg_out_cmp2(TCGContext *s, const TCGArg *args,
1261 const int *const_args)
1263 static const struct { uint8_t bit1, bit2; } bits[] = {
1264 [TCG_COND_LT ] = { CR_LT, CR_LT },
1265 [TCG_COND_LE ] = { CR_LT, CR_GT },
1266 [TCG_COND_GT ] = { CR_GT, CR_GT },
1267 [TCG_COND_GE ] = { CR_GT, CR_LT },
1268 [TCG_COND_LTU] = { CR_LT, CR_LT },
1269 [TCG_COND_LEU] = { CR_LT, CR_GT },
1270 [TCG_COND_GTU] = { CR_GT, CR_GT },
1271 [TCG_COND_GEU] = { CR_GT, CR_LT },
1274 TCGCond cond = args[4], cond2;
1275 TCGArg al, ah, bl, bh;
1276 int blconst, bhconst;
1277 int op, bit1, bit2;
1279 al = args[0];
1280 ah = args[1];
1281 bl = args[2];
1282 bh = args[3];
1283 blconst = const_args[2];
1284 bhconst = const_args[3];
1286 switch (cond) {
1287 case TCG_COND_EQ:
1288 op = CRAND;
1289 goto do_equality;
1290 case TCG_COND_NE:
1291 op = CRNAND;
1292 do_equality:
1293 tcg_out_cmp(s, cond, al, bl, blconst, 6, TCG_TYPE_I32);
1294 tcg_out_cmp(s, cond, ah, bh, bhconst, 7, TCG_TYPE_I32);
1295 tcg_out32(s, op | BT(7, CR_EQ) | BA(6, CR_EQ) | BB(7, CR_EQ));
1296 break;
1298 case TCG_COND_LT:
1299 case TCG_COND_LE:
1300 case TCG_COND_GT:
1301 case TCG_COND_GE:
1302 case TCG_COND_LTU:
1303 case TCG_COND_LEU:
1304 case TCG_COND_GTU:
1305 case TCG_COND_GEU:
1306 bit1 = bits[cond].bit1;
1307 bit2 = bits[cond].bit2;
1308 op = (bit1 != bit2 ? CRANDC : CRAND);
1309 cond2 = tcg_unsigned_cond(cond);
1311 tcg_out_cmp(s, cond, ah, bh, bhconst, 6, TCG_TYPE_I32);
1312 tcg_out_cmp(s, cond2, al, bl, blconst, 7, TCG_TYPE_I32);
1313 tcg_out32(s, op | BT(7, CR_EQ) | BA(6, CR_EQ) | BB(7, bit2));
1314 tcg_out32(s, CROR | BT(7, CR_EQ) | BA(6, bit1) | BB(7, CR_EQ));
1315 break;
1317 default:
1318 tcg_abort();
1322 static void tcg_out_setcond2(TCGContext *s, const TCGArg *args,
1323 const int *const_args)
1325 tcg_out_cmp2(s, args + 1, const_args + 1);
1326 tcg_out32(s, MFOCRF | RT(TCG_REG_R0) | FXM(7));
1327 tcg_out_rlw(s, RLWINM, args[0], TCG_REG_R0, 31, 31, 31);
1330 static void tcg_out_brcond2 (TCGContext *s, const TCGArg *args,
1331 const int *const_args)
1333 tcg_out_cmp2(s, args, const_args);
1334 tcg_out_bc(s, BC | BI(7, CR_EQ) | BO_COND_TRUE, arg_label(args[5]));
1337 static void tcg_out_mb(TCGContext *s, TCGArg a0)
1339 uint32_t insn = HWSYNC;
1340 a0 &= TCG_MO_ALL;
1341 if (a0 == TCG_MO_LD_LD) {
1342 insn = LWSYNC;
1343 } else if (a0 == TCG_MO_ST_ST) {
1344 insn = EIEIO;
1346 tcg_out32(s, insn);
1349 void tb_target_set_jmp_target(uintptr_t tc_ptr, uintptr_t jmp_addr,
1350 uintptr_t addr)
1352 if (TCG_TARGET_REG_BITS == 64) {
1353 tcg_insn_unit i1, i2;
1354 intptr_t tb_diff = addr - tc_ptr;
1355 intptr_t br_diff = addr - (jmp_addr + 4);
1356 uint64_t pair;
1358 /* This does not exercise the range of the branch, but we do
1359 still need to be able to load the new value of TCG_REG_TB.
1360 But this does still happen quite often. */
1361 if (tb_diff == (int16_t)tb_diff) {
1362 i1 = ADDI | TAI(TCG_REG_TB, TCG_REG_TB, tb_diff);
1363 i2 = B | (br_diff & 0x3fffffc);
1364 } else {
1365 intptr_t lo = (int16_t)tb_diff;
1366 intptr_t hi = (int32_t)(tb_diff - lo);
1367 assert(tb_diff == hi + lo);
1368 i1 = ADDIS | TAI(TCG_REG_TB, TCG_REG_TB, hi >> 16);
1369 i2 = ADDI | TAI(TCG_REG_TB, TCG_REG_TB, lo);
1371 #ifdef HOST_WORDS_BIGENDIAN
1372 pair = (uint64_t)i1 << 32 | i2;
1373 #else
1374 pair = (uint64_t)i2 << 32 | i1;
1375 #endif
1377 /* As per the enclosing if, this is ppc64. Avoid the _Static_assert
1378 within atomic_set that would fail to build a ppc32 host. */
1379 atomic_set__nocheck((uint64_t *)jmp_addr, pair);
1380 flush_icache_range(jmp_addr, jmp_addr + 8);
1381 } else {
1382 intptr_t diff = addr - jmp_addr;
1383 tcg_debug_assert(in_range_b(diff));
1384 atomic_set((uint32_t *)jmp_addr, B | (diff & 0x3fffffc));
1385 flush_icache_range(jmp_addr, jmp_addr + 4);
1389 static void tcg_out_call(TCGContext *s, tcg_insn_unit *target)
1391 #ifdef _CALL_AIX
1392 /* Look through the descriptor. If the branch is in range, and we
1393 don't have to spend too much effort on building the toc. */
1394 void *tgt = ((void **)target)[0];
1395 uintptr_t toc = ((uintptr_t *)target)[1];
1396 intptr_t diff = tcg_pcrel_diff(s, tgt);
1398 if (in_range_b(diff) && toc == (uint32_t)toc) {
1399 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_TMP1, toc);
1400 tcg_out_b(s, LK, tgt);
1401 } else {
1402 /* Fold the low bits of the constant into the addresses below. */
1403 intptr_t arg = (intptr_t)target;
1404 int ofs = (int16_t)arg;
1406 if (ofs + 8 < 0x8000) {
1407 arg -= ofs;
1408 } else {
1409 ofs = 0;
1411 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_TMP1, arg);
1412 tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_R0, TCG_REG_TMP1, ofs);
1413 tcg_out32(s, MTSPR | RA(TCG_REG_R0) | CTR);
1414 tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_R2, TCG_REG_TMP1, ofs + SZP);
1415 tcg_out32(s, BCCTR | BO_ALWAYS | LK);
1417 #elif defined(_CALL_ELF) && _CALL_ELF == 2
1418 intptr_t diff;
1420 /* In the ELFv2 ABI, we have to set up r12 to contain the destination
1421 address, which the callee uses to compute its TOC address. */
1422 /* FIXME: when the branch is in range, we could avoid r12 load if we
1423 knew that the destination uses the same TOC, and what its local
1424 entry point offset is. */
1425 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R12, (intptr_t)target);
1427 diff = tcg_pcrel_diff(s, target);
1428 if (in_range_b(diff)) {
1429 tcg_out_b(s, LK, target);
1430 } else {
1431 tcg_out32(s, MTSPR | RS(TCG_REG_R12) | CTR);
1432 tcg_out32(s, BCCTR | BO_ALWAYS | LK);
1434 #else
1435 tcg_out_b(s, LK, target);
1436 #endif
1439 static const uint32_t qemu_ldx_opc[16] = {
1440 [MO_UB] = LBZX,
1441 [MO_UW] = LHZX,
1442 [MO_UL] = LWZX,
1443 [MO_Q] = LDX,
1444 [MO_SW] = LHAX,
1445 [MO_SL] = LWAX,
1446 [MO_BSWAP | MO_UB] = LBZX,
1447 [MO_BSWAP | MO_UW] = LHBRX,
1448 [MO_BSWAP | MO_UL] = LWBRX,
1449 [MO_BSWAP | MO_Q] = LDBRX,
1452 static const uint32_t qemu_stx_opc[16] = {
1453 [MO_UB] = STBX,
1454 [MO_UW] = STHX,
1455 [MO_UL] = STWX,
1456 [MO_Q] = STDX,
1457 [MO_BSWAP | MO_UB] = STBX,
1458 [MO_BSWAP | MO_UW] = STHBRX,
1459 [MO_BSWAP | MO_UL] = STWBRX,
1460 [MO_BSWAP | MO_Q] = STDBRX,
1463 static const uint32_t qemu_exts_opc[4] = {
1464 EXTSB, EXTSH, EXTSW, 0
1467 #if defined (CONFIG_SOFTMMU)
1468 #include "tcg-ldst.inc.c"
1470 /* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
1471 * int mmu_idx, uintptr_t ra)
1473 static void * const qemu_ld_helpers[16] = {
1474 [MO_UB] = helper_ret_ldub_mmu,
1475 [MO_LEUW] = helper_le_lduw_mmu,
1476 [MO_LEUL] = helper_le_ldul_mmu,
1477 [MO_LEQ] = helper_le_ldq_mmu,
1478 [MO_BEUW] = helper_be_lduw_mmu,
1479 [MO_BEUL] = helper_be_ldul_mmu,
1480 [MO_BEQ] = helper_be_ldq_mmu,
1483 /* helper signature: helper_st_mmu(CPUState *env, target_ulong addr,
1484 * uintxx_t val, int mmu_idx, uintptr_t ra)
1486 static void * const qemu_st_helpers[16] = {
1487 [MO_UB] = helper_ret_stb_mmu,
1488 [MO_LEUW] = helper_le_stw_mmu,
1489 [MO_LEUL] = helper_le_stl_mmu,
1490 [MO_LEQ] = helper_le_stq_mmu,
1491 [MO_BEUW] = helper_be_stw_mmu,
1492 [MO_BEUL] = helper_be_stl_mmu,
1493 [MO_BEQ] = helper_be_stq_mmu,
1496 /* Perform the TLB load and compare. Places the result of the comparison
1497 in CR7, loads the addend of the TLB into R3, and returns the register
1498 containing the guest address (zero-extended into R4). Clobbers R0 and R2. */
1500 static TCGReg tcg_out_tlb_read(TCGContext *s, TCGMemOp opc,
1501 TCGReg addrlo, TCGReg addrhi,
1502 int mem_index, bool is_read)
1504 int cmp_off
1505 = (is_read
1506 ? offsetof(CPUArchState, tlb_table[mem_index][0].addr_read)
1507 : offsetof(CPUArchState, tlb_table[mem_index][0].addr_write));
1508 int add_off = offsetof(CPUArchState, tlb_table[mem_index][0].addend);
1509 TCGReg base = TCG_AREG0;
1510 unsigned s_bits = opc & MO_SIZE;
1511 unsigned a_bits = get_alignment_bits(opc);
1513 /* Extract the page index, shifted into place for tlb index. */
1514 if (TCG_TARGET_REG_BITS == 64) {
1515 if (TARGET_LONG_BITS == 32) {
1516 /* Zero-extend the address into a place helpful for further use. */
1517 tcg_out_ext32u(s, TCG_REG_R4, addrlo);
1518 addrlo = TCG_REG_R4;
1519 } else {
1520 tcg_out_rld(s, RLDICL, TCG_REG_R3, addrlo,
1521 64 - TARGET_PAGE_BITS, 64 - CPU_TLB_BITS);
1525 /* Compensate for very large offsets. */
1526 if (add_off >= 0x8000) {
1527 int low = (int16_t)cmp_off;
1528 int high = cmp_off - low;
1529 assert((high & 0xffff) == 0);
1530 assert(cmp_off - high == (int16_t)(cmp_off - high));
1531 assert(add_off - high == (int16_t)(add_off - high));
1532 tcg_out32(s, ADDIS | TAI(TCG_REG_TMP1, base, high >> 16));
1533 base = TCG_REG_TMP1;
1534 cmp_off -= high;
1535 add_off -= high;
1538 /* Extraction and shifting, part 2. */
1539 if (TCG_TARGET_REG_BITS == 32 || TARGET_LONG_BITS == 32) {
1540 tcg_out_rlw(s, RLWINM, TCG_REG_R3, addrlo,
1541 32 - (TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS),
1542 32 - (CPU_TLB_BITS + CPU_TLB_ENTRY_BITS),
1543 31 - CPU_TLB_ENTRY_BITS);
1544 } else {
1545 tcg_out_shli64(s, TCG_REG_R3, TCG_REG_R3, CPU_TLB_ENTRY_BITS);
1548 tcg_out32(s, ADD | TAB(TCG_REG_R3, TCG_REG_R3, base));
1550 /* Load the tlb comparator. */
1551 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1552 tcg_out_ld(s, TCG_TYPE_I32, TCG_REG_R4, TCG_REG_R3, cmp_off);
1553 tcg_out_ld(s, TCG_TYPE_I32, TCG_REG_TMP1, TCG_REG_R3, cmp_off + 4);
1554 } else {
1555 tcg_out_ld(s, TCG_TYPE_TL, TCG_REG_TMP1, TCG_REG_R3, cmp_off);
1558 /* Load the TLB addend for use on the fast path. Do this asap
1559 to minimize any load use delay. */
1560 tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_R3, TCG_REG_R3, add_off);
1562 /* Clear the non-page, non-alignment bits from the address */
1563 if (TCG_TARGET_REG_BITS == 32) {
1564 /* We don't support unaligned accesses on 32-bits.
1565 * Preserve the bottom bits and thus trigger a comparison
1566 * failure on unaligned accesses.
1568 if (a_bits < s_bits) {
1569 a_bits = s_bits;
1571 tcg_out_rlw(s, RLWINM, TCG_REG_R0, addrlo, 0,
1572 (32 - a_bits) & 31, 31 - TARGET_PAGE_BITS);
1573 } else {
1574 TCGReg t = addrlo;
1576 /* If the access is unaligned, we need to make sure we fail if we
1577 * cross a page boundary. The trick is to add the access size-1
1578 * to the address before masking the low bits. That will make the
1579 * address overflow to the next page if we cross a page boundary,
1580 * which will then force a mismatch of the TLB compare.
1582 if (a_bits < s_bits) {
1583 unsigned a_mask = (1 << a_bits) - 1;
1584 unsigned s_mask = (1 << s_bits) - 1;
1585 tcg_out32(s, ADDI | TAI(TCG_REG_R0, t, s_mask - a_mask));
1586 t = TCG_REG_R0;
1589 /* Mask the address for the requested alignment. */
1590 if (TARGET_LONG_BITS == 32) {
1591 tcg_out_rlw(s, RLWINM, TCG_REG_R0, t, 0,
1592 (32 - a_bits) & 31, 31 - TARGET_PAGE_BITS);
1593 } else if (a_bits == 0) {
1594 tcg_out_rld(s, RLDICR, TCG_REG_R0, t, 0, 63 - TARGET_PAGE_BITS);
1595 } else {
1596 tcg_out_rld(s, RLDICL, TCG_REG_R0, t,
1597 64 - TARGET_PAGE_BITS, TARGET_PAGE_BITS - a_bits);
1598 tcg_out_rld(s, RLDICL, TCG_REG_R0, TCG_REG_R0, TARGET_PAGE_BITS, 0);
1602 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1603 tcg_out_cmp(s, TCG_COND_EQ, TCG_REG_R0, TCG_REG_TMP1,
1604 0, 7, TCG_TYPE_I32);
1605 tcg_out_cmp(s, TCG_COND_EQ, addrhi, TCG_REG_R4, 0, 6, TCG_TYPE_I32);
1606 tcg_out32(s, CRAND | BT(7, CR_EQ) | BA(6, CR_EQ) | BB(7, CR_EQ));
1607 } else {
1608 tcg_out_cmp(s, TCG_COND_EQ, TCG_REG_R0, TCG_REG_TMP1,
1609 0, 7, TCG_TYPE_TL);
1612 return addrlo;
1615 /* Record the context of a call to the out of line helper code for the slow
1616 path for a load or store, so that we can later generate the correct
1617 helper code. */
1618 static void add_qemu_ldst_label(TCGContext *s, bool is_ld, TCGMemOpIdx oi,
1619 TCGReg datalo_reg, TCGReg datahi_reg,
1620 TCGReg addrlo_reg, TCGReg addrhi_reg,
1621 tcg_insn_unit *raddr, tcg_insn_unit *lptr)
1623 TCGLabelQemuLdst *label = new_ldst_label(s);
1625 label->is_ld = is_ld;
1626 label->oi = oi;
1627 label->datalo_reg = datalo_reg;
1628 label->datahi_reg = datahi_reg;
1629 label->addrlo_reg = addrlo_reg;
1630 label->addrhi_reg = addrhi_reg;
1631 label->raddr = raddr;
1632 label->label_ptr[0] = lptr;
1635 static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *lb)
1637 TCGMemOpIdx oi = lb->oi;
1638 TCGMemOp opc = get_memop(oi);
1639 TCGReg hi, lo, arg = TCG_REG_R3;
1641 reloc_pc14(lb->label_ptr[0], s->code_ptr);
1643 tcg_out_mov(s, TCG_TYPE_PTR, arg++, TCG_AREG0);
1645 lo = lb->addrlo_reg;
1646 hi = lb->addrhi_reg;
1647 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1648 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
1649 arg |= 1;
1650 #endif
1651 tcg_out_mov(s, TCG_TYPE_I32, arg++, hi);
1652 tcg_out_mov(s, TCG_TYPE_I32, arg++, lo);
1653 } else {
1654 /* If the address needed to be zero-extended, we'll have already
1655 placed it in R4. The only remaining case is 64-bit guest. */
1656 tcg_out_mov(s, TCG_TYPE_TL, arg++, lo);
1659 tcg_out_movi(s, TCG_TYPE_I32, arg++, oi);
1660 tcg_out32(s, MFSPR | RT(arg) | LR);
1662 tcg_out_call(s, qemu_ld_helpers[opc & (MO_BSWAP | MO_SIZE)]);
1664 lo = lb->datalo_reg;
1665 hi = lb->datahi_reg;
1666 if (TCG_TARGET_REG_BITS == 32 && (opc & MO_SIZE) == MO_64) {
1667 tcg_out_mov(s, TCG_TYPE_I32, lo, TCG_REG_R4);
1668 tcg_out_mov(s, TCG_TYPE_I32, hi, TCG_REG_R3);
1669 } else if (opc & MO_SIGN) {
1670 uint32_t insn = qemu_exts_opc[opc & MO_SIZE];
1671 tcg_out32(s, insn | RA(lo) | RS(TCG_REG_R3));
1672 } else {
1673 tcg_out_mov(s, TCG_TYPE_REG, lo, TCG_REG_R3);
1676 tcg_out_b(s, 0, lb->raddr);
1679 static void tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *lb)
1681 TCGMemOpIdx oi = lb->oi;
1682 TCGMemOp opc = get_memop(oi);
1683 TCGMemOp s_bits = opc & MO_SIZE;
1684 TCGReg hi, lo, arg = TCG_REG_R3;
1686 reloc_pc14(lb->label_ptr[0], s->code_ptr);
1688 tcg_out_mov(s, TCG_TYPE_PTR, arg++, TCG_AREG0);
1690 lo = lb->addrlo_reg;
1691 hi = lb->addrhi_reg;
1692 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1693 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
1694 arg |= 1;
1695 #endif
1696 tcg_out_mov(s, TCG_TYPE_I32, arg++, hi);
1697 tcg_out_mov(s, TCG_TYPE_I32, arg++, lo);
1698 } else {
1699 /* If the address needed to be zero-extended, we'll have already
1700 placed it in R4. The only remaining case is 64-bit guest. */
1701 tcg_out_mov(s, TCG_TYPE_TL, arg++, lo);
1704 lo = lb->datalo_reg;
1705 hi = lb->datahi_reg;
1706 if (TCG_TARGET_REG_BITS == 32) {
1707 switch (s_bits) {
1708 case MO_64:
1709 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
1710 arg |= 1;
1711 #endif
1712 tcg_out_mov(s, TCG_TYPE_I32, arg++, hi);
1713 /* FALLTHRU */
1714 case MO_32:
1715 tcg_out_mov(s, TCG_TYPE_I32, arg++, lo);
1716 break;
1717 default:
1718 tcg_out_rlw(s, RLWINM, arg++, lo, 0, 32 - (8 << s_bits), 31);
1719 break;
1721 } else {
1722 if (s_bits == MO_64) {
1723 tcg_out_mov(s, TCG_TYPE_I64, arg++, lo);
1724 } else {
1725 tcg_out_rld(s, RLDICL, arg++, lo, 0, 64 - (8 << s_bits));
1729 tcg_out_movi(s, TCG_TYPE_I32, arg++, oi);
1730 tcg_out32(s, MFSPR | RT(arg) | LR);
1732 tcg_out_call(s, qemu_st_helpers[opc & (MO_BSWAP | MO_SIZE)]);
1734 tcg_out_b(s, 0, lb->raddr);
1736 #endif /* SOFTMMU */
1738 static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, bool is_64)
1740 TCGReg datalo, datahi, addrlo, rbase;
1741 TCGReg addrhi __attribute__((unused));
1742 TCGMemOpIdx oi;
1743 TCGMemOp opc, s_bits;
1744 #ifdef CONFIG_SOFTMMU
1745 int mem_index;
1746 tcg_insn_unit *label_ptr;
1747 #endif
1749 datalo = *args++;
1750 datahi = (TCG_TARGET_REG_BITS == 32 && is_64 ? *args++ : 0);
1751 addrlo = *args++;
1752 addrhi = (TCG_TARGET_REG_BITS < TARGET_LONG_BITS ? *args++ : 0);
1753 oi = *args++;
1754 opc = get_memop(oi);
1755 s_bits = opc & MO_SIZE;
1757 #ifdef CONFIG_SOFTMMU
1758 mem_index = get_mmuidx(oi);
1759 addrlo = tcg_out_tlb_read(s, opc, addrlo, addrhi, mem_index, true);
1761 /* Load a pointer into the current opcode w/conditional branch-link. */
1762 label_ptr = s->code_ptr;
1763 tcg_out_bc_noaddr(s, BC | BI(7, CR_EQ) | BO_COND_FALSE | LK);
1765 rbase = TCG_REG_R3;
1766 #else /* !CONFIG_SOFTMMU */
1767 rbase = guest_base ? TCG_GUEST_BASE_REG : 0;
1768 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1769 tcg_out_ext32u(s, TCG_REG_TMP1, addrlo);
1770 addrlo = TCG_REG_TMP1;
1772 #endif
1774 if (TCG_TARGET_REG_BITS == 32 && s_bits == MO_64) {
1775 if (opc & MO_BSWAP) {
1776 tcg_out32(s, ADDI | TAI(TCG_REG_R0, addrlo, 4));
1777 tcg_out32(s, LWBRX | TAB(datalo, rbase, addrlo));
1778 tcg_out32(s, LWBRX | TAB(datahi, rbase, TCG_REG_R0));
1779 } else if (rbase != 0) {
1780 tcg_out32(s, ADDI | TAI(TCG_REG_R0, addrlo, 4));
1781 tcg_out32(s, LWZX | TAB(datahi, rbase, addrlo));
1782 tcg_out32(s, LWZX | TAB(datalo, rbase, TCG_REG_R0));
1783 } else if (addrlo == datahi) {
1784 tcg_out32(s, LWZ | TAI(datalo, addrlo, 4));
1785 tcg_out32(s, LWZ | TAI(datahi, addrlo, 0));
1786 } else {
1787 tcg_out32(s, LWZ | TAI(datahi, addrlo, 0));
1788 tcg_out32(s, LWZ | TAI(datalo, addrlo, 4));
1790 } else {
1791 uint32_t insn = qemu_ldx_opc[opc & (MO_BSWAP | MO_SSIZE)];
1792 if (!HAVE_ISA_2_06 && insn == LDBRX) {
1793 tcg_out32(s, ADDI | TAI(TCG_REG_R0, addrlo, 4));
1794 tcg_out32(s, LWBRX | TAB(datalo, rbase, addrlo));
1795 tcg_out32(s, LWBRX | TAB(TCG_REG_R0, rbase, TCG_REG_R0));
1796 tcg_out_rld(s, RLDIMI, datalo, TCG_REG_R0, 32, 0);
1797 } else if (insn) {
1798 tcg_out32(s, insn | TAB(datalo, rbase, addrlo));
1799 } else {
1800 insn = qemu_ldx_opc[opc & (MO_SIZE | MO_BSWAP)];
1801 tcg_out32(s, insn | TAB(datalo, rbase, addrlo));
1802 insn = qemu_exts_opc[s_bits];
1803 tcg_out32(s, insn | RA(datalo) | RS(datalo));
1807 #ifdef CONFIG_SOFTMMU
1808 add_qemu_ldst_label(s, true, oi, datalo, datahi, addrlo, addrhi,
1809 s->code_ptr, label_ptr);
1810 #endif
1813 static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args, bool is_64)
1815 TCGReg datalo, datahi, addrlo, rbase;
1816 TCGReg addrhi __attribute__((unused));
1817 TCGMemOpIdx oi;
1818 TCGMemOp opc, s_bits;
1819 #ifdef CONFIG_SOFTMMU
1820 int mem_index;
1821 tcg_insn_unit *label_ptr;
1822 #endif
1824 datalo = *args++;
1825 datahi = (TCG_TARGET_REG_BITS == 32 && is_64 ? *args++ : 0);
1826 addrlo = *args++;
1827 addrhi = (TCG_TARGET_REG_BITS < TARGET_LONG_BITS ? *args++ : 0);
1828 oi = *args++;
1829 opc = get_memop(oi);
1830 s_bits = opc & MO_SIZE;
1832 #ifdef CONFIG_SOFTMMU
1833 mem_index = get_mmuidx(oi);
1834 addrlo = tcg_out_tlb_read(s, opc, addrlo, addrhi, mem_index, false);
1836 /* Load a pointer into the current opcode w/conditional branch-link. */
1837 label_ptr = s->code_ptr;
1838 tcg_out_bc_noaddr(s, BC | BI(7, CR_EQ) | BO_COND_FALSE | LK);
1840 rbase = TCG_REG_R3;
1841 #else /* !CONFIG_SOFTMMU */
1842 rbase = guest_base ? TCG_GUEST_BASE_REG : 0;
1843 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1844 tcg_out_ext32u(s, TCG_REG_TMP1, addrlo);
1845 addrlo = TCG_REG_TMP1;
1847 #endif
1849 if (TCG_TARGET_REG_BITS == 32 && s_bits == MO_64) {
1850 if (opc & MO_BSWAP) {
1851 tcg_out32(s, ADDI | TAI(TCG_REG_R0, addrlo, 4));
1852 tcg_out32(s, STWBRX | SAB(datalo, rbase, addrlo));
1853 tcg_out32(s, STWBRX | SAB(datahi, rbase, TCG_REG_R0));
1854 } else if (rbase != 0) {
1855 tcg_out32(s, ADDI | TAI(TCG_REG_R0, addrlo, 4));
1856 tcg_out32(s, STWX | SAB(datahi, rbase, addrlo));
1857 tcg_out32(s, STWX | SAB(datalo, rbase, TCG_REG_R0));
1858 } else {
1859 tcg_out32(s, STW | TAI(datahi, addrlo, 0));
1860 tcg_out32(s, STW | TAI(datalo, addrlo, 4));
1862 } else {
1863 uint32_t insn = qemu_stx_opc[opc & (MO_BSWAP | MO_SIZE)];
1864 if (!HAVE_ISA_2_06 && insn == STDBRX) {
1865 tcg_out32(s, STWBRX | SAB(datalo, rbase, addrlo));
1866 tcg_out32(s, ADDI | TAI(TCG_REG_TMP1, addrlo, 4));
1867 tcg_out_shri64(s, TCG_REG_R0, datalo, 32);
1868 tcg_out32(s, STWBRX | SAB(TCG_REG_R0, rbase, TCG_REG_TMP1));
1869 } else {
1870 tcg_out32(s, insn | SAB(datalo, rbase, addrlo));
1874 #ifdef CONFIG_SOFTMMU
1875 add_qemu_ldst_label(s, false, oi, datalo, datahi, addrlo, addrhi,
1876 s->code_ptr, label_ptr);
1877 #endif
1880 static void tcg_out_nop_fill(tcg_insn_unit *p, int count)
1882 int i;
1883 for (i = 0; i < count; ++i) {
1884 p[i] = NOP;
1888 /* Parameters for function call generation, used in tcg.c. */
1889 #define TCG_TARGET_STACK_ALIGN 16
1890 #define TCG_TARGET_EXTEND_ARGS 1
1892 #ifdef _CALL_AIX
1893 # define LINK_AREA_SIZE (6 * SZR)
1894 # define LR_OFFSET (1 * SZR)
1895 # define TCG_TARGET_CALL_STACK_OFFSET (LINK_AREA_SIZE + 8 * SZR)
1896 #elif defined(TCG_TARGET_CALL_DARWIN)
1897 # define LINK_AREA_SIZE (6 * SZR)
1898 # define LR_OFFSET (2 * SZR)
1899 #elif TCG_TARGET_REG_BITS == 64
1900 # if defined(_CALL_ELF) && _CALL_ELF == 2
1901 # define LINK_AREA_SIZE (4 * SZR)
1902 # define LR_OFFSET (1 * SZR)
1903 # endif
1904 #else /* TCG_TARGET_REG_BITS == 32 */
1905 # if defined(_CALL_SYSV)
1906 # define LINK_AREA_SIZE (2 * SZR)
1907 # define LR_OFFSET (1 * SZR)
1908 # endif
1909 #endif
1910 #ifndef LR_OFFSET
1911 # error "Unhandled abi"
1912 #endif
1913 #ifndef TCG_TARGET_CALL_STACK_OFFSET
1914 # define TCG_TARGET_CALL_STACK_OFFSET LINK_AREA_SIZE
1915 #endif
1917 #define CPU_TEMP_BUF_SIZE (CPU_TEMP_BUF_NLONGS * (int)sizeof(long))
1918 #define REG_SAVE_SIZE ((int)ARRAY_SIZE(tcg_target_callee_save_regs) * SZR)
1920 #define FRAME_SIZE ((TCG_TARGET_CALL_STACK_OFFSET \
1921 + TCG_STATIC_CALL_ARGS_SIZE \
1922 + CPU_TEMP_BUF_SIZE \
1923 + REG_SAVE_SIZE \
1924 + TCG_TARGET_STACK_ALIGN - 1) \
1925 & -TCG_TARGET_STACK_ALIGN)
1927 #define REG_SAVE_BOT (FRAME_SIZE - REG_SAVE_SIZE)
1929 static void tcg_target_qemu_prologue(TCGContext *s)
1931 int i;
1933 #ifdef _CALL_AIX
1934 void **desc = (void **)s->code_ptr;
1935 desc[0] = desc + 2; /* entry point */
1936 desc[1] = 0; /* environment pointer */
1937 s->code_ptr = (void *)(desc + 2); /* skip over descriptor */
1938 #endif
1940 tcg_set_frame(s, TCG_REG_CALL_STACK, REG_SAVE_BOT - CPU_TEMP_BUF_SIZE,
1941 CPU_TEMP_BUF_SIZE);
1943 /* Prologue */
1944 tcg_out32(s, MFSPR | RT(TCG_REG_R0) | LR);
1945 tcg_out32(s, (SZR == 8 ? STDU : STWU)
1946 | SAI(TCG_REG_R1, TCG_REG_R1, -FRAME_SIZE));
1948 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); ++i) {
1949 tcg_out_st(s, TCG_TYPE_REG, tcg_target_callee_save_regs[i],
1950 TCG_REG_R1, REG_SAVE_BOT + i * SZR);
1952 tcg_out_st(s, TCG_TYPE_PTR, TCG_REG_R0, TCG_REG_R1, FRAME_SIZE+LR_OFFSET);
1954 #ifndef CONFIG_SOFTMMU
1955 if (guest_base) {
1956 tcg_out_movi_int(s, TCG_TYPE_PTR, TCG_GUEST_BASE_REG, guest_base, true);
1957 tcg_regset_set_reg(s->reserved_regs, TCG_GUEST_BASE_REG);
1959 #endif
1961 tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
1962 tcg_out32(s, MTSPR | RS(tcg_target_call_iarg_regs[1]) | CTR);
1963 if (USE_REG_TB) {
1964 tcg_out_mov(s, TCG_TYPE_PTR, TCG_REG_TB, tcg_target_call_iarg_regs[1]);
1966 tcg_out32(s, BCCTR | BO_ALWAYS);
1968 /* Epilogue */
1969 s->code_gen_epilogue = tb_ret_addr = s->code_ptr;
1971 tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_R0, TCG_REG_R1, FRAME_SIZE+LR_OFFSET);
1972 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); ++i) {
1973 tcg_out_ld(s, TCG_TYPE_REG, tcg_target_callee_save_regs[i],
1974 TCG_REG_R1, REG_SAVE_BOT + i * SZR);
1976 tcg_out32(s, MTSPR | RS(TCG_REG_R0) | LR);
1977 tcg_out32(s, ADDI | TAI(TCG_REG_R1, TCG_REG_R1, FRAME_SIZE));
1978 tcg_out32(s, BCLR | BO_ALWAYS);
1981 static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
1982 const int *const_args)
1984 TCGArg a0, a1, a2;
1985 int c;
1987 switch (opc) {
1988 case INDEX_op_exit_tb:
1989 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R3, args[0]);
1990 tcg_out_b(s, 0, tb_ret_addr);
1991 break;
1992 case INDEX_op_goto_tb:
1993 if (s->tb_jmp_insn_offset) {
1994 /* Direct jump. */
1995 if (TCG_TARGET_REG_BITS == 64) {
1996 /* Ensure the next insns are 8-byte aligned. */
1997 if ((uintptr_t)s->code_ptr & 7) {
1998 tcg_out32(s, NOP);
2000 s->tb_jmp_insn_offset[args[0]] = tcg_current_code_size(s);
2001 tcg_out32(s, ADDIS | TAI(TCG_REG_TB, TCG_REG_TB, 0));
2002 tcg_out32(s, ADDI | TAI(TCG_REG_TB, TCG_REG_TB, 0));
2003 } else {
2004 s->tb_jmp_insn_offset[args[0]] = tcg_current_code_size(s);
2005 tcg_out32(s, B);
2006 s->tb_jmp_reset_offset[args[0]] = tcg_current_code_size(s);
2007 break;
2009 } else {
2010 /* Indirect jump. */
2011 tcg_debug_assert(s->tb_jmp_insn_offset == NULL);
2012 tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_TB, 0,
2013 (intptr_t)(s->tb_jmp_insn_offset + args[0]));
2015 tcg_out32(s, MTSPR | RS(TCG_REG_TB) | CTR);
2016 tcg_out32(s, BCCTR | BO_ALWAYS);
2017 s->tb_jmp_reset_offset[args[0]] = c = tcg_current_code_size(s);
2018 if (USE_REG_TB) {
2019 /* For the unlinked case, need to reset TCG_REG_TB. */
2020 c = -c;
2021 assert(c == (int16_t)c);
2022 tcg_out32(s, ADDI | TAI(TCG_REG_TB, TCG_REG_TB, c));
2024 break;
2025 case INDEX_op_goto_ptr:
2026 tcg_out32(s, MTSPR | RS(args[0]) | CTR);
2027 if (USE_REG_TB) {
2028 tcg_out_mov(s, TCG_TYPE_PTR, TCG_REG_TB, args[0]);
2030 tcg_out32(s, ADDI | TAI(TCG_REG_R3, 0, 0));
2031 tcg_out32(s, BCCTR | BO_ALWAYS);
2032 break;
2033 case INDEX_op_br:
2035 TCGLabel *l = arg_label(args[0]);
2037 if (l->has_value) {
2038 tcg_out_b(s, 0, l->u.value_ptr);
2039 } else {
2040 tcg_out_reloc(s, s->code_ptr, R_PPC_REL24, l, 0);
2041 tcg_out_b_noaddr(s, B);
2044 break;
2045 case INDEX_op_ld8u_i32:
2046 case INDEX_op_ld8u_i64:
2047 tcg_out_mem_long(s, LBZ, LBZX, args[0], args[1], args[2]);
2048 break;
2049 case INDEX_op_ld8s_i32:
2050 case INDEX_op_ld8s_i64:
2051 tcg_out_mem_long(s, LBZ, LBZX, args[0], args[1], args[2]);
2052 tcg_out32(s, EXTSB | RS(args[0]) | RA(args[0]));
2053 break;
2054 case INDEX_op_ld16u_i32:
2055 case INDEX_op_ld16u_i64:
2056 tcg_out_mem_long(s, LHZ, LHZX, args[0], args[1], args[2]);
2057 break;
2058 case INDEX_op_ld16s_i32:
2059 case INDEX_op_ld16s_i64:
2060 tcg_out_mem_long(s, LHA, LHAX, args[0], args[1], args[2]);
2061 break;
2062 case INDEX_op_ld_i32:
2063 case INDEX_op_ld32u_i64:
2064 tcg_out_mem_long(s, LWZ, LWZX, args[0], args[1], args[2]);
2065 break;
2066 case INDEX_op_ld32s_i64:
2067 tcg_out_mem_long(s, LWA, LWAX, args[0], args[1], args[2]);
2068 break;
2069 case INDEX_op_ld_i64:
2070 tcg_out_mem_long(s, LD, LDX, args[0], args[1], args[2]);
2071 break;
2072 case INDEX_op_st8_i32:
2073 case INDEX_op_st8_i64:
2074 tcg_out_mem_long(s, STB, STBX, args[0], args[1], args[2]);
2075 break;
2076 case INDEX_op_st16_i32:
2077 case INDEX_op_st16_i64:
2078 tcg_out_mem_long(s, STH, STHX, args[0], args[1], args[2]);
2079 break;
2080 case INDEX_op_st_i32:
2081 case INDEX_op_st32_i64:
2082 tcg_out_mem_long(s, STW, STWX, args[0], args[1], args[2]);
2083 break;
2084 case INDEX_op_st_i64:
2085 tcg_out_mem_long(s, STD, STDX, args[0], args[1], args[2]);
2086 break;
2088 case INDEX_op_add_i32:
2089 a0 = args[0], a1 = args[1], a2 = args[2];
2090 if (const_args[2]) {
2091 do_addi_32:
2092 tcg_out_mem_long(s, ADDI, ADD, a0, a1, (int32_t)a2);
2093 } else {
2094 tcg_out32(s, ADD | TAB(a0, a1, a2));
2096 break;
2097 case INDEX_op_sub_i32:
2098 a0 = args[0], a1 = args[1], a2 = args[2];
2099 if (const_args[1]) {
2100 if (const_args[2]) {
2101 tcg_out_movi(s, TCG_TYPE_I32, a0, a1 - a2);
2102 } else {
2103 tcg_out32(s, SUBFIC | TAI(a0, a2, a1));
2105 } else if (const_args[2]) {
2106 a2 = -a2;
2107 goto do_addi_32;
2108 } else {
2109 tcg_out32(s, SUBF | TAB(a0, a2, a1));
2111 break;
2113 case INDEX_op_and_i32:
2114 a0 = args[0], a1 = args[1], a2 = args[2];
2115 if (const_args[2]) {
2116 tcg_out_andi32(s, a0, a1, a2);
2117 } else {
2118 tcg_out32(s, AND | SAB(a1, a0, a2));
2120 break;
2121 case INDEX_op_and_i64:
2122 a0 = args[0], a1 = args[1], a2 = args[2];
2123 if (const_args[2]) {
2124 tcg_out_andi64(s, a0, a1, a2);
2125 } else {
2126 tcg_out32(s, AND | SAB(a1, a0, a2));
2128 break;
2129 case INDEX_op_or_i64:
2130 case INDEX_op_or_i32:
2131 a0 = args[0], a1 = args[1], a2 = args[2];
2132 if (const_args[2]) {
2133 tcg_out_ori32(s, a0, a1, a2);
2134 } else {
2135 tcg_out32(s, OR | SAB(a1, a0, a2));
2137 break;
2138 case INDEX_op_xor_i64:
2139 case INDEX_op_xor_i32:
2140 a0 = args[0], a1 = args[1], a2 = args[2];
2141 if (const_args[2]) {
2142 tcg_out_xori32(s, a0, a1, a2);
2143 } else {
2144 tcg_out32(s, XOR | SAB(a1, a0, a2));
2146 break;
2147 case INDEX_op_andc_i32:
2148 a0 = args[0], a1 = args[1], a2 = args[2];
2149 if (const_args[2]) {
2150 tcg_out_andi32(s, a0, a1, ~a2);
2151 } else {
2152 tcg_out32(s, ANDC | SAB(a1, a0, a2));
2154 break;
2155 case INDEX_op_andc_i64:
2156 a0 = args[0], a1 = args[1], a2 = args[2];
2157 if (const_args[2]) {
2158 tcg_out_andi64(s, a0, a1, ~a2);
2159 } else {
2160 tcg_out32(s, ANDC | SAB(a1, a0, a2));
2162 break;
2163 case INDEX_op_orc_i32:
2164 if (const_args[2]) {
2165 tcg_out_ori32(s, args[0], args[1], ~args[2]);
2166 break;
2168 /* FALLTHRU */
2169 case INDEX_op_orc_i64:
2170 tcg_out32(s, ORC | SAB(args[1], args[0], args[2]));
2171 break;
2172 case INDEX_op_eqv_i32:
2173 if (const_args[2]) {
2174 tcg_out_xori32(s, args[0], args[1], ~args[2]);
2175 break;
2177 /* FALLTHRU */
2178 case INDEX_op_eqv_i64:
2179 tcg_out32(s, EQV | SAB(args[1], args[0], args[2]));
2180 break;
2181 case INDEX_op_nand_i32:
2182 case INDEX_op_nand_i64:
2183 tcg_out32(s, NAND | SAB(args[1], args[0], args[2]));
2184 break;
2185 case INDEX_op_nor_i32:
2186 case INDEX_op_nor_i64:
2187 tcg_out32(s, NOR | SAB(args[1], args[0], args[2]));
2188 break;
2190 case INDEX_op_clz_i32:
2191 tcg_out_cntxz(s, TCG_TYPE_I32, CNTLZW, args[0], args[1],
2192 args[2], const_args[2]);
2193 break;
2194 case INDEX_op_ctz_i32:
2195 tcg_out_cntxz(s, TCG_TYPE_I32, CNTTZW, args[0], args[1],
2196 args[2], const_args[2]);
2197 break;
2198 case INDEX_op_ctpop_i32:
2199 tcg_out32(s, CNTPOPW | SAB(args[1], args[0], 0));
2200 break;
2202 case INDEX_op_clz_i64:
2203 tcg_out_cntxz(s, TCG_TYPE_I64, CNTLZD, args[0], args[1],
2204 args[2], const_args[2]);
2205 break;
2206 case INDEX_op_ctz_i64:
2207 tcg_out_cntxz(s, TCG_TYPE_I64, CNTTZD, args[0], args[1],
2208 args[2], const_args[2]);
2209 break;
2210 case INDEX_op_ctpop_i64:
2211 tcg_out32(s, CNTPOPD | SAB(args[1], args[0], 0));
2212 break;
2214 case INDEX_op_mul_i32:
2215 a0 = args[0], a1 = args[1], a2 = args[2];
2216 if (const_args[2]) {
2217 tcg_out32(s, MULLI | TAI(a0, a1, a2));
2218 } else {
2219 tcg_out32(s, MULLW | TAB(a0, a1, a2));
2221 break;
2223 case INDEX_op_div_i32:
2224 tcg_out32(s, DIVW | TAB(args[0], args[1], args[2]));
2225 break;
2227 case INDEX_op_divu_i32:
2228 tcg_out32(s, DIVWU | TAB(args[0], args[1], args[2]));
2229 break;
2231 case INDEX_op_shl_i32:
2232 if (const_args[2]) {
2233 tcg_out_shli32(s, args[0], args[1], args[2]);
2234 } else {
2235 tcg_out32(s, SLW | SAB(args[1], args[0], args[2]));
2237 break;
2238 case INDEX_op_shr_i32:
2239 if (const_args[2]) {
2240 tcg_out_shri32(s, args[0], args[1], args[2]);
2241 } else {
2242 tcg_out32(s, SRW | SAB(args[1], args[0], args[2]));
2244 break;
2245 case INDEX_op_sar_i32:
2246 if (const_args[2]) {
2247 tcg_out32(s, SRAWI | RS(args[1]) | RA(args[0]) | SH(args[2]));
2248 } else {
2249 tcg_out32(s, SRAW | SAB(args[1], args[0], args[2]));
2251 break;
2252 case INDEX_op_rotl_i32:
2253 if (const_args[2]) {
2254 tcg_out_rlw(s, RLWINM, args[0], args[1], args[2], 0, 31);
2255 } else {
2256 tcg_out32(s, RLWNM | SAB(args[1], args[0], args[2])
2257 | MB(0) | ME(31));
2259 break;
2260 case INDEX_op_rotr_i32:
2261 if (const_args[2]) {
2262 tcg_out_rlw(s, RLWINM, args[0], args[1], 32 - args[2], 0, 31);
2263 } else {
2264 tcg_out32(s, SUBFIC | TAI(TCG_REG_R0, args[2], 32));
2265 tcg_out32(s, RLWNM | SAB(args[1], args[0], TCG_REG_R0)
2266 | MB(0) | ME(31));
2268 break;
2270 case INDEX_op_brcond_i32:
2271 tcg_out_brcond(s, args[2], args[0], args[1], const_args[1],
2272 arg_label(args[3]), TCG_TYPE_I32);
2273 break;
2274 case INDEX_op_brcond_i64:
2275 tcg_out_brcond(s, args[2], args[0], args[1], const_args[1],
2276 arg_label(args[3]), TCG_TYPE_I64);
2277 break;
2278 case INDEX_op_brcond2_i32:
2279 tcg_out_brcond2(s, args, const_args);
2280 break;
2282 case INDEX_op_neg_i32:
2283 case INDEX_op_neg_i64:
2284 tcg_out32(s, NEG | RT(args[0]) | RA(args[1]));
2285 break;
2287 case INDEX_op_not_i32:
2288 case INDEX_op_not_i64:
2289 tcg_out32(s, NOR | SAB(args[1], args[0], args[1]));
2290 break;
2292 case INDEX_op_add_i64:
2293 a0 = args[0], a1 = args[1], a2 = args[2];
2294 if (const_args[2]) {
2295 do_addi_64:
2296 tcg_out_mem_long(s, ADDI, ADD, a0, a1, a2);
2297 } else {
2298 tcg_out32(s, ADD | TAB(a0, a1, a2));
2300 break;
2301 case INDEX_op_sub_i64:
2302 a0 = args[0], a1 = args[1], a2 = args[2];
2303 if (const_args[1]) {
2304 if (const_args[2]) {
2305 tcg_out_movi(s, TCG_TYPE_I64, a0, a1 - a2);
2306 } else {
2307 tcg_out32(s, SUBFIC | TAI(a0, a2, a1));
2309 } else if (const_args[2]) {
2310 a2 = -a2;
2311 goto do_addi_64;
2312 } else {
2313 tcg_out32(s, SUBF | TAB(a0, a2, a1));
2315 break;
2317 case INDEX_op_shl_i64:
2318 if (const_args[2]) {
2319 tcg_out_shli64(s, args[0], args[1], args[2]);
2320 } else {
2321 tcg_out32(s, SLD | SAB(args[1], args[0], args[2]));
2323 break;
2324 case INDEX_op_shr_i64:
2325 if (const_args[2]) {
2326 tcg_out_shri64(s, args[0], args[1], args[2]);
2327 } else {
2328 tcg_out32(s, SRD | SAB(args[1], args[0], args[2]));
2330 break;
2331 case INDEX_op_sar_i64:
2332 if (const_args[2]) {
2333 int sh = SH(args[2] & 0x1f) | (((args[2] >> 5) & 1) << 1);
2334 tcg_out32(s, SRADI | RA(args[0]) | RS(args[1]) | sh);
2335 } else {
2336 tcg_out32(s, SRAD | SAB(args[1], args[0], args[2]));
2338 break;
2339 case INDEX_op_rotl_i64:
2340 if (const_args[2]) {
2341 tcg_out_rld(s, RLDICL, args[0], args[1], args[2], 0);
2342 } else {
2343 tcg_out32(s, RLDCL | SAB(args[1], args[0], args[2]) | MB64(0));
2345 break;
2346 case INDEX_op_rotr_i64:
2347 if (const_args[2]) {
2348 tcg_out_rld(s, RLDICL, args[0], args[1], 64 - args[2], 0);
2349 } else {
2350 tcg_out32(s, SUBFIC | TAI(TCG_REG_R0, args[2], 64));
2351 tcg_out32(s, RLDCL | SAB(args[1], args[0], TCG_REG_R0) | MB64(0));
2353 break;
2355 case INDEX_op_mul_i64:
2356 a0 = args[0], a1 = args[1], a2 = args[2];
2357 if (const_args[2]) {
2358 tcg_out32(s, MULLI | TAI(a0, a1, a2));
2359 } else {
2360 tcg_out32(s, MULLD | TAB(a0, a1, a2));
2362 break;
2363 case INDEX_op_div_i64:
2364 tcg_out32(s, DIVD | TAB(args[0], args[1], args[2]));
2365 break;
2366 case INDEX_op_divu_i64:
2367 tcg_out32(s, DIVDU | TAB(args[0], args[1], args[2]));
2368 break;
2370 case INDEX_op_qemu_ld_i32:
2371 tcg_out_qemu_ld(s, args, false);
2372 break;
2373 case INDEX_op_qemu_ld_i64:
2374 tcg_out_qemu_ld(s, args, true);
2375 break;
2376 case INDEX_op_qemu_st_i32:
2377 tcg_out_qemu_st(s, args, false);
2378 break;
2379 case INDEX_op_qemu_st_i64:
2380 tcg_out_qemu_st(s, args, true);
2381 break;
2383 case INDEX_op_ext8s_i32:
2384 case INDEX_op_ext8s_i64:
2385 c = EXTSB;
2386 goto gen_ext;
2387 case INDEX_op_ext16s_i32:
2388 case INDEX_op_ext16s_i64:
2389 c = EXTSH;
2390 goto gen_ext;
2391 case INDEX_op_ext_i32_i64:
2392 case INDEX_op_ext32s_i64:
2393 c = EXTSW;
2394 goto gen_ext;
2395 gen_ext:
2396 tcg_out32(s, c | RS(args[1]) | RA(args[0]));
2397 break;
2398 case INDEX_op_extu_i32_i64:
2399 tcg_out_ext32u(s, args[0], args[1]);
2400 break;
2402 case INDEX_op_setcond_i32:
2403 tcg_out_setcond(s, TCG_TYPE_I32, args[3], args[0], args[1], args[2],
2404 const_args[2]);
2405 break;
2406 case INDEX_op_setcond_i64:
2407 tcg_out_setcond(s, TCG_TYPE_I64, args[3], args[0], args[1], args[2],
2408 const_args[2]);
2409 break;
2410 case INDEX_op_setcond2_i32:
2411 tcg_out_setcond2(s, args, const_args);
2412 break;
2414 case INDEX_op_bswap16_i32:
2415 case INDEX_op_bswap16_i64:
2416 a0 = args[0], a1 = args[1];
2417 /* a1 = abcd */
2418 if (a0 != a1) {
2419 /* a0 = (a1 r<< 24) & 0xff # 000c */
2420 tcg_out_rlw(s, RLWINM, a0, a1, 24, 24, 31);
2421 /* a0 = (a0 & ~0xff00) | (a1 r<< 8) & 0xff00 # 00dc */
2422 tcg_out_rlw(s, RLWIMI, a0, a1, 8, 16, 23);
2423 } else {
2424 /* r0 = (a1 r<< 8) & 0xff00 # 00d0 */
2425 tcg_out_rlw(s, RLWINM, TCG_REG_R0, a1, 8, 16, 23);
2426 /* a0 = (a1 r<< 24) & 0xff # 000c */
2427 tcg_out_rlw(s, RLWINM, a0, a1, 24, 24, 31);
2428 /* a0 = a0 | r0 # 00dc */
2429 tcg_out32(s, OR | SAB(TCG_REG_R0, a0, a0));
2431 break;
2433 case INDEX_op_bswap32_i32:
2434 case INDEX_op_bswap32_i64:
2435 /* Stolen from gcc's builtin_bswap32 */
2436 a1 = args[1];
2437 a0 = args[0] == a1 ? TCG_REG_R0 : args[0];
2439 /* a1 = args[1] # abcd */
2440 /* a0 = rotate_left (a1, 8) # bcda */
2441 tcg_out_rlw(s, RLWINM, a0, a1, 8, 0, 31);
2442 /* a0 = (a0 & ~0xff000000) | ((a1 r<< 24) & 0xff000000) # dcda */
2443 tcg_out_rlw(s, RLWIMI, a0, a1, 24, 0, 7);
2444 /* a0 = (a0 & ~0x0000ff00) | ((a1 r<< 24) & 0x0000ff00) # dcba */
2445 tcg_out_rlw(s, RLWIMI, a0, a1, 24, 16, 23);
2447 if (a0 == TCG_REG_R0) {
2448 tcg_out_mov(s, TCG_TYPE_REG, args[0], a0);
2450 break;
2452 case INDEX_op_bswap64_i64:
2453 a0 = args[0], a1 = args[1], a2 = TCG_REG_R0;
2454 if (a0 == a1) {
2455 a0 = TCG_REG_R0;
2456 a2 = a1;
2459 /* a1 = # abcd efgh */
2460 /* a0 = rl32(a1, 8) # 0000 fghe */
2461 tcg_out_rlw(s, RLWINM, a0, a1, 8, 0, 31);
2462 /* a0 = dep(a0, rl32(a1, 24), 0xff000000) # 0000 hghe */
2463 tcg_out_rlw(s, RLWIMI, a0, a1, 24, 0, 7);
2464 /* a0 = dep(a0, rl32(a1, 24), 0x0000ff00) # 0000 hgfe */
2465 tcg_out_rlw(s, RLWIMI, a0, a1, 24, 16, 23);
2467 /* a0 = rl64(a0, 32) # hgfe 0000 */
2468 /* a2 = rl64(a1, 32) # efgh abcd */
2469 tcg_out_rld(s, RLDICL, a0, a0, 32, 0);
2470 tcg_out_rld(s, RLDICL, a2, a1, 32, 0);
2472 /* a0 = dep(a0, rl32(a2, 8), 0xffffffff) # hgfe bcda */
2473 tcg_out_rlw(s, RLWIMI, a0, a2, 8, 0, 31);
2474 /* a0 = dep(a0, rl32(a2, 24), 0xff000000) # hgfe dcda */
2475 tcg_out_rlw(s, RLWIMI, a0, a2, 24, 0, 7);
2476 /* a0 = dep(a0, rl32(a2, 24), 0x0000ff00) # hgfe dcba */
2477 tcg_out_rlw(s, RLWIMI, a0, a2, 24, 16, 23);
2479 if (a0 == 0) {
2480 tcg_out_mov(s, TCG_TYPE_REG, args[0], a0);
2482 break;
2484 case INDEX_op_deposit_i32:
2485 if (const_args[2]) {
2486 uint32_t mask = ((2u << (args[4] - 1)) - 1) << args[3];
2487 tcg_out_andi32(s, args[0], args[0], ~mask);
2488 } else {
2489 tcg_out_rlw(s, RLWIMI, args[0], args[2], args[3],
2490 32 - args[3] - args[4], 31 - args[3]);
2492 break;
2493 case INDEX_op_deposit_i64:
2494 if (const_args[2]) {
2495 uint64_t mask = ((2ull << (args[4] - 1)) - 1) << args[3];
2496 tcg_out_andi64(s, args[0], args[0], ~mask);
2497 } else {
2498 tcg_out_rld(s, RLDIMI, args[0], args[2], args[3],
2499 64 - args[3] - args[4]);
2501 break;
2503 case INDEX_op_extract_i32:
2504 tcg_out_rlw(s, RLWINM, args[0], args[1],
2505 32 - args[2], 32 - args[3], 31);
2506 break;
2507 case INDEX_op_extract_i64:
2508 tcg_out_rld(s, RLDICL, args[0], args[1], 64 - args[2], 64 - args[3]);
2509 break;
2511 case INDEX_op_movcond_i32:
2512 tcg_out_movcond(s, TCG_TYPE_I32, args[5], args[0], args[1], args[2],
2513 args[3], args[4], const_args[2]);
2514 break;
2515 case INDEX_op_movcond_i64:
2516 tcg_out_movcond(s, TCG_TYPE_I64, args[5], args[0], args[1], args[2],
2517 args[3], args[4], const_args[2]);
2518 break;
2520 #if TCG_TARGET_REG_BITS == 64
2521 case INDEX_op_add2_i64:
2522 #else
2523 case INDEX_op_add2_i32:
2524 #endif
2525 /* Note that the CA bit is defined based on the word size of the
2526 environment. So in 64-bit mode it's always carry-out of bit 63.
2527 The fallback code using deposit works just as well for 32-bit. */
2528 a0 = args[0], a1 = args[1];
2529 if (a0 == args[3] || (!const_args[5] && a0 == args[5])) {
2530 a0 = TCG_REG_R0;
2532 if (const_args[4]) {
2533 tcg_out32(s, ADDIC | TAI(a0, args[2], args[4]));
2534 } else {
2535 tcg_out32(s, ADDC | TAB(a0, args[2], args[4]));
2537 if (const_args[5]) {
2538 tcg_out32(s, (args[5] ? ADDME : ADDZE) | RT(a1) | RA(args[3]));
2539 } else {
2540 tcg_out32(s, ADDE | TAB(a1, args[3], args[5]));
2542 if (a0 != args[0]) {
2543 tcg_out_mov(s, TCG_TYPE_REG, args[0], a0);
2545 break;
2547 #if TCG_TARGET_REG_BITS == 64
2548 case INDEX_op_sub2_i64:
2549 #else
2550 case INDEX_op_sub2_i32:
2551 #endif
2552 a0 = args[0], a1 = args[1];
2553 if (a0 == args[5] || (!const_args[3] && a0 == args[3])) {
2554 a0 = TCG_REG_R0;
2556 if (const_args[2]) {
2557 tcg_out32(s, SUBFIC | TAI(a0, args[4], args[2]));
2558 } else {
2559 tcg_out32(s, SUBFC | TAB(a0, args[4], args[2]));
2561 if (const_args[3]) {
2562 tcg_out32(s, (args[3] ? SUBFME : SUBFZE) | RT(a1) | RA(args[5]));
2563 } else {
2564 tcg_out32(s, SUBFE | TAB(a1, args[5], args[3]));
2566 if (a0 != args[0]) {
2567 tcg_out_mov(s, TCG_TYPE_REG, args[0], a0);
2569 break;
2571 case INDEX_op_muluh_i32:
2572 tcg_out32(s, MULHWU | TAB(args[0], args[1], args[2]));
2573 break;
2574 case INDEX_op_mulsh_i32:
2575 tcg_out32(s, MULHW | TAB(args[0], args[1], args[2]));
2576 break;
2577 case INDEX_op_muluh_i64:
2578 tcg_out32(s, MULHDU | TAB(args[0], args[1], args[2]));
2579 break;
2580 case INDEX_op_mulsh_i64:
2581 tcg_out32(s, MULHD | TAB(args[0], args[1], args[2]));
2582 break;
2584 case INDEX_op_mb:
2585 tcg_out_mb(s, args[0]);
2586 break;
2588 case INDEX_op_mov_i32: /* Always emitted via tcg_out_mov. */
2589 case INDEX_op_mov_i64:
2590 case INDEX_op_movi_i32: /* Always emitted via tcg_out_movi. */
2591 case INDEX_op_movi_i64:
2592 case INDEX_op_call: /* Always emitted via tcg_out_call. */
2593 default:
2594 tcg_abort();
2598 static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
2600 static const TCGTargetOpDef r = { .args_ct_str = { "r" } };
2601 static const TCGTargetOpDef r_r = { .args_ct_str = { "r", "r" } };
2602 static const TCGTargetOpDef r_L = { .args_ct_str = { "r", "L" } };
2603 static const TCGTargetOpDef S_S = { .args_ct_str = { "S", "S" } };
2604 static const TCGTargetOpDef r_ri = { .args_ct_str = { "r", "ri" } };
2605 static const TCGTargetOpDef r_r_r = { .args_ct_str = { "r", "r", "r" } };
2606 static const TCGTargetOpDef r_L_L = { .args_ct_str = { "r", "L", "L" } };
2607 static const TCGTargetOpDef L_L_L = { .args_ct_str = { "L", "L", "L" } };
2608 static const TCGTargetOpDef S_S_S = { .args_ct_str = { "S", "S", "S" } };
2609 static const TCGTargetOpDef r_r_ri = { .args_ct_str = { "r", "r", "ri" } };
2610 static const TCGTargetOpDef r_r_rI = { .args_ct_str = { "r", "r", "rI" } };
2611 static const TCGTargetOpDef r_r_rT = { .args_ct_str = { "r", "r", "rT" } };
2612 static const TCGTargetOpDef r_r_rU = { .args_ct_str = { "r", "r", "rU" } };
2613 static const TCGTargetOpDef r_rI_ri
2614 = { .args_ct_str = { "r", "rI", "ri" } };
2615 static const TCGTargetOpDef r_rI_rT
2616 = { .args_ct_str = { "r", "rI", "rT" } };
2617 static const TCGTargetOpDef r_r_rZW
2618 = { .args_ct_str = { "r", "r", "rZW" } };
2619 static const TCGTargetOpDef L_L_L_L
2620 = { .args_ct_str = { "L", "L", "L", "L" } };
2621 static const TCGTargetOpDef S_S_S_S
2622 = { .args_ct_str = { "S", "S", "S", "S" } };
2623 static const TCGTargetOpDef movc
2624 = { .args_ct_str = { "r", "r", "ri", "rZ", "rZ" } };
2625 static const TCGTargetOpDef dep
2626 = { .args_ct_str = { "r", "0", "rZ" } };
2627 static const TCGTargetOpDef br2
2628 = { .args_ct_str = { "r", "r", "ri", "ri" } };
2629 static const TCGTargetOpDef setc2
2630 = { .args_ct_str = { "r", "r", "r", "ri", "ri" } };
2631 static const TCGTargetOpDef add2
2632 = { .args_ct_str = { "r", "r", "r", "r", "rI", "rZM" } };
2633 static const TCGTargetOpDef sub2
2634 = { .args_ct_str = { "r", "r", "rI", "rZM", "r", "r" } };
2636 switch (op) {
2637 case INDEX_op_goto_ptr:
2638 return &r;
2640 case INDEX_op_ld8u_i32:
2641 case INDEX_op_ld8s_i32:
2642 case INDEX_op_ld16u_i32:
2643 case INDEX_op_ld16s_i32:
2644 case INDEX_op_ld_i32:
2645 case INDEX_op_st8_i32:
2646 case INDEX_op_st16_i32:
2647 case INDEX_op_st_i32:
2648 case INDEX_op_ctpop_i32:
2649 case INDEX_op_neg_i32:
2650 case INDEX_op_not_i32:
2651 case INDEX_op_ext8s_i32:
2652 case INDEX_op_ext16s_i32:
2653 case INDEX_op_bswap16_i32:
2654 case INDEX_op_bswap32_i32:
2655 case INDEX_op_extract_i32:
2656 case INDEX_op_ld8u_i64:
2657 case INDEX_op_ld8s_i64:
2658 case INDEX_op_ld16u_i64:
2659 case INDEX_op_ld16s_i64:
2660 case INDEX_op_ld32u_i64:
2661 case INDEX_op_ld32s_i64:
2662 case INDEX_op_ld_i64:
2663 case INDEX_op_st8_i64:
2664 case INDEX_op_st16_i64:
2665 case INDEX_op_st32_i64:
2666 case INDEX_op_st_i64:
2667 case INDEX_op_ctpop_i64:
2668 case INDEX_op_neg_i64:
2669 case INDEX_op_not_i64:
2670 case INDEX_op_ext8s_i64:
2671 case INDEX_op_ext16s_i64:
2672 case INDEX_op_ext32s_i64:
2673 case INDEX_op_ext_i32_i64:
2674 case INDEX_op_extu_i32_i64:
2675 case INDEX_op_bswap16_i64:
2676 case INDEX_op_bswap32_i64:
2677 case INDEX_op_bswap64_i64:
2678 case INDEX_op_extract_i64:
2679 return &r_r;
2681 case INDEX_op_add_i32:
2682 case INDEX_op_and_i32:
2683 case INDEX_op_or_i32:
2684 case INDEX_op_xor_i32:
2685 case INDEX_op_andc_i32:
2686 case INDEX_op_orc_i32:
2687 case INDEX_op_eqv_i32:
2688 case INDEX_op_shl_i32:
2689 case INDEX_op_shr_i32:
2690 case INDEX_op_sar_i32:
2691 case INDEX_op_rotl_i32:
2692 case INDEX_op_rotr_i32:
2693 case INDEX_op_setcond_i32:
2694 case INDEX_op_and_i64:
2695 case INDEX_op_andc_i64:
2696 case INDEX_op_shl_i64:
2697 case INDEX_op_shr_i64:
2698 case INDEX_op_sar_i64:
2699 case INDEX_op_rotl_i64:
2700 case INDEX_op_rotr_i64:
2701 case INDEX_op_setcond_i64:
2702 return &r_r_ri;
2703 case INDEX_op_mul_i32:
2704 case INDEX_op_mul_i64:
2705 return &r_r_rI;
2706 case INDEX_op_div_i32:
2707 case INDEX_op_divu_i32:
2708 case INDEX_op_nand_i32:
2709 case INDEX_op_nor_i32:
2710 case INDEX_op_muluh_i32:
2711 case INDEX_op_mulsh_i32:
2712 case INDEX_op_orc_i64:
2713 case INDEX_op_eqv_i64:
2714 case INDEX_op_nand_i64:
2715 case INDEX_op_nor_i64:
2716 case INDEX_op_div_i64:
2717 case INDEX_op_divu_i64:
2718 case INDEX_op_mulsh_i64:
2719 case INDEX_op_muluh_i64:
2720 return &r_r_r;
2721 case INDEX_op_sub_i32:
2722 return &r_rI_ri;
2723 case INDEX_op_add_i64:
2724 return &r_r_rT;
2725 case INDEX_op_or_i64:
2726 case INDEX_op_xor_i64:
2727 return &r_r_rU;
2728 case INDEX_op_sub_i64:
2729 return &r_rI_rT;
2730 case INDEX_op_clz_i32:
2731 case INDEX_op_ctz_i32:
2732 case INDEX_op_clz_i64:
2733 case INDEX_op_ctz_i64:
2734 return &r_r_rZW;
2736 case INDEX_op_brcond_i32:
2737 case INDEX_op_brcond_i64:
2738 return &r_ri;
2740 case INDEX_op_movcond_i32:
2741 case INDEX_op_movcond_i64:
2742 return &movc;
2743 case INDEX_op_deposit_i32:
2744 case INDEX_op_deposit_i64:
2745 return &dep;
2746 case INDEX_op_brcond2_i32:
2747 return &br2;
2748 case INDEX_op_setcond2_i32:
2749 return &setc2;
2750 case INDEX_op_add2_i64:
2751 case INDEX_op_add2_i32:
2752 return &add2;
2753 case INDEX_op_sub2_i64:
2754 case INDEX_op_sub2_i32:
2755 return &sub2;
2757 case INDEX_op_qemu_ld_i32:
2758 return (TCG_TARGET_REG_BITS == 64 || TARGET_LONG_BITS == 32
2759 ? &r_L : &r_L_L);
2760 case INDEX_op_qemu_st_i32:
2761 return (TCG_TARGET_REG_BITS == 64 || TARGET_LONG_BITS == 32
2762 ? &S_S : &S_S_S);
2763 case INDEX_op_qemu_ld_i64:
2764 return (TCG_TARGET_REG_BITS == 64 ? &r_L
2765 : TARGET_LONG_BITS == 32 ? &L_L_L : &L_L_L_L);
2766 case INDEX_op_qemu_st_i64:
2767 return (TCG_TARGET_REG_BITS == 64 ? &S_S
2768 : TARGET_LONG_BITS == 32 ? &S_S_S : &S_S_S_S);
2770 default:
2771 return NULL;
2775 static void tcg_target_init(TCGContext *s)
2777 unsigned long hwcap = qemu_getauxval(AT_HWCAP);
2778 unsigned long hwcap2 = qemu_getauxval(AT_HWCAP2);
2780 if (hwcap & PPC_FEATURE_ARCH_2_06) {
2781 have_isa_2_06 = true;
2783 #ifdef PPC_FEATURE2_ARCH_3_00
2784 if (hwcap2 & PPC_FEATURE2_ARCH_3_00) {
2785 have_isa_3_00 = true;
2787 #endif
2789 tcg_target_available_regs[TCG_TYPE_I32] = 0xffffffff;
2790 tcg_target_available_regs[TCG_TYPE_I64] = 0xffffffff;
2792 tcg_target_call_clobber_regs = 0;
2793 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R0);
2794 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R2);
2795 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R3);
2796 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R4);
2797 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R5);
2798 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R6);
2799 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R7);
2800 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R8);
2801 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R9);
2802 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R10);
2803 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R11);
2804 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R12);
2806 s->reserved_regs = 0;
2807 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R0); /* tcg temp */
2808 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R1); /* stack pointer */
2809 #if defined(_CALL_SYSV)
2810 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R2); /* toc pointer */
2811 #endif
2812 #if defined(_CALL_SYSV) || TCG_TARGET_REG_BITS == 64
2813 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R13); /* thread pointer */
2814 #endif
2815 tcg_regset_set_reg(s->reserved_regs, TCG_REG_TMP1); /* mem temp */
2816 if (USE_REG_TB) {
2817 tcg_regset_set_reg(s->reserved_regs, TCG_REG_TB); /* tb->tc_ptr */
2821 #ifdef __ELF__
2822 typedef struct {
2823 DebugFrameCIE cie;
2824 DebugFrameFDEHeader fde;
2825 uint8_t fde_def_cfa[4];
2826 uint8_t fde_reg_ofs[ARRAY_SIZE(tcg_target_callee_save_regs) * 2 + 3];
2827 } DebugFrame;
2829 /* We're expecting a 2 byte uleb128 encoded value. */
2830 QEMU_BUILD_BUG_ON(FRAME_SIZE >= (1 << 14));
2832 #if TCG_TARGET_REG_BITS == 64
2833 # define ELF_HOST_MACHINE EM_PPC64
2834 #else
2835 # define ELF_HOST_MACHINE EM_PPC
2836 #endif
2838 static DebugFrame debug_frame = {
2839 .cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */
2840 .cie.id = -1,
2841 .cie.version = 1,
2842 .cie.code_align = 1,
2843 .cie.data_align = (-SZR & 0x7f), /* sleb128 -SZR */
2844 .cie.return_column = 65,
2846 /* Total FDE size does not include the "len" member. */
2847 .fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, fde.cie_offset),
2849 .fde_def_cfa = {
2850 12, TCG_REG_R1, /* DW_CFA_def_cfa r1, ... */
2851 (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */
2852 (FRAME_SIZE >> 7)
2854 .fde_reg_ofs = {
2855 /* DW_CFA_offset_extended_sf, lr, LR_OFFSET */
2856 0x11, 65, (LR_OFFSET / -SZR) & 0x7f,
2860 void tcg_register_jit(void *buf, size_t buf_size)
2862 uint8_t *p = &debug_frame.fde_reg_ofs[3];
2863 int i;
2865 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); ++i, p += 2) {
2866 p[0] = 0x80 + tcg_target_callee_save_regs[i];
2867 p[1] = (FRAME_SIZE - (REG_SAVE_BOT + i * SZR)) / SZR;
2870 debug_frame.fde.func_start = (uintptr_t)buf;
2871 debug_frame.fde.func_len = buf_size;
2873 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));
2875 #endif /* __ELF__ */
2877 void flush_icache_range(uintptr_t start, uintptr_t stop)
2879 uintptr_t p, start1, stop1;
2880 size_t dsize = qemu_dcache_linesize;
2881 size_t isize = qemu_icache_linesize;
2883 start1 = start & ~(dsize - 1);
2884 stop1 = (stop + dsize - 1) & ~(dsize - 1);
2885 for (p = start1; p < stop1; p += dsize) {
2886 asm volatile ("dcbst 0,%0" : : "r"(p) : "memory");
2888 asm volatile ("sync" : : : "memory");
2890 start &= start & ~(isize - 1);
2891 stop1 = (stop + isize - 1) & ~(isize - 1);
2892 for (p = start1; p < stop1; p += isize) {
2893 asm volatile ("icbi 0,%0" : : "r"(p) : "memory");
2895 asm volatile ("sync" : : : "memory");
2896 asm volatile ("isync" : : : "memory");