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
25 static uint8_t *tb_ret_addr;
27 #if defined _CALL_DARWIN || defined __APPLE__
28 #define TCG_TARGET_CALL_DARWIN
31 #ifdef TCG_TARGET_CALL_DARWIN
32 #define LINKAGE_AREA_SIZE 24
34 #elif defined _CALL_AIX
35 #define LINKAGE_AREA_SIZE 52
38 #define LINKAGE_AREA_SIZE 8
46 #ifdef CONFIG_USE_GUEST_BASE
47 #define TCG_GUEST_BASE_REG 30
49 #define TCG_GUEST_BASE_REG 0
53 static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
89 static const int tcg_target_reg_alloc_order[] = {
104 #ifdef TCG_TARGET_CALL_DARWIN
115 #ifndef TCG_TARGET_CALL_DARWIN
128 static const int tcg_target_call_iarg_regs[] = {
139 static const int tcg_target_call_oarg_regs[2] = {
144 static const int tcg_target_callee_save_regs[] = {
145 #ifdef TCG_TARGET_CALL_DARWIN
165 TCG_REG_R27, /* currently used for the global env */
172 static uint32_t reloc_pc24_val (void *pc, tcg_target_long target)
174 tcg_target_long disp;
176 disp = target - (tcg_target_long) pc;
177 if ((disp << 6) >> 6 != disp)
180 return disp & 0x3fffffc;
183 static void reloc_pc24 (void *pc, tcg_target_long target)
185 *(uint32_t *) pc = (*(uint32_t *) pc & ~0x3fffffc)
186 | reloc_pc24_val (pc, target);
189 static uint16_t reloc_pc14_val (void *pc, tcg_target_long target)
191 tcg_target_long disp;
193 disp = target - (tcg_target_long) pc;
194 if (disp != (int16_t) disp)
197 return disp & 0xfffc;
200 static void reloc_pc14 (void *pc, tcg_target_long target)
202 *(uint32_t *) pc = (*(uint32_t *) pc & ~0xfffc)
203 | reloc_pc14_val (pc, target);
206 static void patch_reloc(uint8_t *code_ptr, int type,
207 tcg_target_long value, tcg_target_long addend)
212 reloc_pc14 (code_ptr, value);
215 reloc_pc24 (code_ptr, value);
222 /* parse target specific constraints */
223 static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
229 case 'A': case 'B': case 'C': case 'D':
230 ct->ct |= TCG_CT_REG;
231 tcg_regset_set_reg(ct->u.regs, 3 + ct_str[0] - 'A');
234 ct->ct |= TCG_CT_REG;
235 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
237 #ifdef CONFIG_SOFTMMU
238 case 'L': /* qemu_ld constraint */
239 ct->ct |= TCG_CT_REG;
240 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
241 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3);
242 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R4);
243 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R5);
244 #if TARGET_LONG_BITS == 64
245 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R6);
246 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
247 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R7);
251 case 'K': /* qemu_st[8..32] constraint */
252 ct->ct |= TCG_CT_REG;
253 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
254 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3);
255 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R4);
256 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R5);
257 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R6);
258 #if TARGET_LONG_BITS == 64
259 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R7);
260 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
261 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R8);
265 case 'M': /* qemu_st64 constraint */
266 ct->ct |= TCG_CT_REG;
267 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
268 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3);
269 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R4);
270 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R5);
271 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R6);
272 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R7);
273 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R8);
274 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
275 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R9);
281 ct->ct |= TCG_CT_REG;
282 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
285 ct->ct |= TCG_CT_REG;
286 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
287 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R3);
298 /* test if a constant matches the constraint */
299 static int tcg_target_const_match(tcg_target_long val,
300 const TCGArgConstraint *arg_ct)
305 if (ct & TCG_CT_CONST)
310 #define OPCD(opc) ((opc)<<26)
311 #define XO31(opc) (OPCD(31)|((opc)<<1))
312 #define XO19(opc) (OPCD(19)|((opc)<<1))
324 #define ADDIC OPCD(12)
325 #define ADDI OPCD(14)
326 #define ADDIS OPCD(15)
328 #define ORIS OPCD(25)
329 #define XORI OPCD(26)
330 #define XORIS OPCD(27)
331 #define ANDI OPCD(28)
332 #define ANDIS OPCD(29)
333 #define MULLI OPCD( 7)
334 #define CMPLI OPCD(10)
335 #define CMPI OPCD(11)
336 #define SUBFIC OPCD( 8)
338 #define LWZU OPCD(33)
339 #define STWU OPCD(37)
341 #define RLWIMI OPCD(20)
342 #define RLWINM OPCD(21)
343 #define RLWNM OPCD(23)
345 #define BCLR XO19( 16)
346 #define BCCTR XO19(528)
347 #define CRAND XO19(257)
348 #define CRANDC XO19(129)
349 #define CRNAND XO19(225)
350 #define CROR XO19(449)
351 #define CRNOR XO19( 33)
353 #define EXTSB XO31(954)
354 #define EXTSH XO31(922)
355 #define ADD XO31(266)
356 #define ADDE XO31(138)
357 #define ADDC XO31( 10)
358 #define AND XO31( 28)
359 #define SUBF XO31( 40)
360 #define SUBFC XO31( 8)
361 #define SUBFE XO31(136)
363 #define XOR XO31(316)
364 #define MULLW XO31(235)
365 #define MULHWU XO31( 11)
366 #define DIVW XO31(491)
367 #define DIVWU XO31(459)
369 #define CMPL XO31( 32)
370 #define LHBRX XO31(790)
371 #define LWBRX XO31(534)
372 #define STHBRX XO31(918)
373 #define STWBRX XO31(662)
374 #define MFSPR XO31(339)
375 #define MTSPR XO31(467)
376 #define SRAWI XO31(824)
377 #define NEG XO31(104)
378 #define MFCR XO31( 19)
379 #define CNTLZW XO31( 26)
380 #define NOR XO31(124)
381 #define ANDC XO31( 60)
382 #define ORC XO31(412)
383 #define EQV XO31(284)
384 #define NAND XO31(476)
385 #define ISEL XO31( 15)
387 #define LBZX XO31( 87)
388 #define LHZX XO31(279)
389 #define LHAX XO31(343)
390 #define LWZX XO31( 23)
391 #define STBX XO31(215)
392 #define STHX XO31(407)
393 #define STWX XO31(151)
395 #define SPR(a,b) ((((a)<<5)|(b))<<11)
397 #define CTR SPR(9, 0)
399 #define SLW XO31( 24)
400 #define SRW XO31(536)
401 #define SRAW XO31(792)
404 #define TRAP (TW | TO (31))
406 #define RT(r) ((r)<<21)
407 #define RS(r) ((r)<<21)
408 #define RA(r) ((r)<<16)
409 #define RB(r) ((r)<<11)
410 #define TO(t) ((t)<<21)
411 #define SH(s) ((s)<<11)
412 #define MB(b) ((b)<<6)
413 #define ME(e) ((e)<<1)
414 #define BO(o) ((o)<<21)
418 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
419 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
421 #define BF(n) ((n)<<23)
422 #define BI(n, c) (((c)+((n)*4))<<16)
423 #define BT(n, c) (((c)+((n)*4))<<21)
424 #define BA(n, c) (((c)+((n)*4))<<16)
425 #define BB(n, c) (((c)+((n)*4))<<11)
427 #define BO_COND_TRUE BO (12)
428 #define BO_COND_FALSE BO (4)
429 #define BO_ALWAYS BO (20)
438 static const uint32_t tcg_to_bc[] = {
439 [TCG_COND_EQ] = BC | BI (7, CR_EQ) | BO_COND_TRUE,
440 [TCG_COND_NE] = BC | BI (7, CR_EQ) | BO_COND_FALSE,
441 [TCG_COND_LT] = BC | BI (7, CR_LT) | BO_COND_TRUE,
442 [TCG_COND_GE] = BC | BI (7, CR_LT) | BO_COND_FALSE,
443 [TCG_COND_LE] = BC | BI (7, CR_GT) | BO_COND_FALSE,
444 [TCG_COND_GT] = BC | BI (7, CR_GT) | BO_COND_TRUE,
445 [TCG_COND_LTU] = BC | BI (7, CR_LT) | BO_COND_TRUE,
446 [TCG_COND_GEU] = BC | BI (7, CR_LT) | BO_COND_FALSE,
447 [TCG_COND_LEU] = BC | BI (7, CR_GT) | BO_COND_FALSE,
448 [TCG_COND_GTU] = BC | BI (7, CR_GT) | BO_COND_TRUE,
451 static void tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg)
453 tcg_out32 (s, OR | SAB (arg, ret, arg));
456 static void tcg_out_movi(TCGContext *s, TCGType type,
457 TCGReg ret, tcg_target_long arg)
459 if (arg == (int16_t) arg)
460 tcg_out32 (s, ADDI | RT (ret) | RA (0) | (arg & 0xffff));
462 tcg_out32 (s, ADDIS | RT (ret) | RA (0) | ((arg >> 16) & 0xffff));
464 tcg_out32 (s, ORI | RS (ret) | RA (ret) | (arg & 0xffff));
468 static void tcg_out_ldst (TCGContext *s, int ret, int addr,
469 int offset, int op1, int op2)
471 if (offset == (int16_t) offset)
472 tcg_out32 (s, op1 | RT (ret) | RA (addr) | (offset & 0xffff));
474 tcg_out_movi (s, TCG_TYPE_I32, 0, offset);
475 tcg_out32 (s, op2 | RT (ret) | RA (addr) | RB (0));
479 static void tcg_out_b (TCGContext *s, int mask, tcg_target_long target)
481 tcg_target_long disp;
483 disp = target - (tcg_target_long) s->code_ptr;
484 if ((disp << 6) >> 6 == disp)
485 tcg_out32 (s, B | (disp & 0x3fffffc) | mask);
487 tcg_out_movi (s, TCG_TYPE_I32, 0, (tcg_target_long) target);
488 tcg_out32 (s, MTSPR | RS (0) | CTR);
489 tcg_out32 (s, BCCTR | BO_ALWAYS | mask);
493 static void tcg_out_call (TCGContext *s, tcg_target_long arg, int const_arg)
500 tcg_out_movi (s, TCG_TYPE_I32, reg, arg);
504 tcg_out32 (s, LWZ | RT (0) | RA (reg));
505 tcg_out32 (s, MTSPR | RA (0) | CTR);
506 tcg_out32 (s, LWZ | RT (2) | RA (reg) | 4);
507 tcg_out32 (s, BCCTR | BO_ALWAYS | LK);
510 tcg_out_b (s, LK, arg);
513 tcg_out32 (s, MTSPR | RS (arg) | LR);
514 tcg_out32 (s, BCLR | BO_ALWAYS | LK);
519 #if defined(CONFIG_SOFTMMU)
521 static void add_qemu_ldst_label (TCGContext *s,
533 TCGLabelQemuLdst *label;
535 if (s->nb_qemu_ldst_labels >= TCG_MAX_QEMU_LDST) {
539 idx = s->nb_qemu_ldst_labels++;
540 label = (TCGLabelQemuLdst *)&s->qemu_ldst_labels[idx];
541 label->is_ld = is_ld;
543 label->datalo_reg = data_reg;
544 label->datahi_reg = data_reg2;
545 label->addrlo_reg = addrlo_reg;
546 label->addrhi_reg = addrhi_reg;
547 label->mem_index = mem_index;
548 label->raddr = raddr;
549 label->label_ptr[0] = label_ptr;
552 #include "exec/softmmu_defs.h"
554 /* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
556 static const void * const qemu_ld_helpers[4] = {
563 /* helper signature: helper_st_mmu(CPUState *env, target_ulong addr,
564 uintxx_t val, int mmu_idx) */
565 static const void * const qemu_st_helpers[4] = {
572 static void *ld_trampolines[4];
573 static void *st_trampolines[4];
575 static void tcg_out_tlb_check (TCGContext *s, int r0, int r1, int r2,
576 int addr_reg, int addr_reg2, int s_bits,
577 int offset1, int offset2, uint8_t **label_ptr)
581 tcg_out32 (s, (RLWINM
584 | SH (32 - (TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS))
585 | MB (32 - (CPU_TLB_BITS + CPU_TLB_ENTRY_BITS))
586 | ME (31 - CPU_TLB_ENTRY_BITS)
589 tcg_out32 (s, ADD | RT (r0) | RA (r0) | RB (TCG_AREG0));
596 tcg_out32 (s, (RLWINM
600 | MB ((32 - s_bits) & 31)
601 | ME (31 - TARGET_PAGE_BITS)
605 tcg_out32 (s, CMP | BF (7) | RA (r2) | RB (r1));
606 #if TARGET_LONG_BITS == 64
607 tcg_out32 (s, LWZ | RT (r1) | RA (r0) | 4);
608 tcg_out32 (s, CMP | BF (6) | RA (addr_reg2) | RB (r1));
609 tcg_out32 (s, CRAND | BT (7, CR_EQ) | BA (6, CR_EQ) | BB (7, CR_EQ));
611 *label_ptr = s->code_ptr;
612 retranst = ((uint16_t *) s->code_ptr)[1] & ~3;
613 tcg_out32 (s, BC | BI (7, CR_EQ) | retranst | BO_COND_FALSE);
615 /* r0 now contains &env->tlb_table[mem_index][index].addr_x */
622 /* r0 = env->tlb_table[mem_index][index].addend */
623 tcg_out32 (s, ADD | RT (r0) | RA (r0) | RB (addr_reg));
624 /* r0 = env->tlb_table[mem_index][index].addend + addr */
629 static void tcg_out_qemu_ld (TCGContext *s, const TCGArg *args, int opc)
631 int addr_reg, data_reg, data_reg2, r0, r1, rbase, bswap;
632 #ifdef CONFIG_SOFTMMU
633 int mem_index, s_bits, r2, addr_reg2;
644 #ifdef CONFIG_SOFTMMU
645 #if TARGET_LONG_BITS == 64
658 s, r0, r1, r2, addr_reg, addr_reg2, s_bits,
659 offsetof (CPUArchState, tlb_table[mem_index][0].addr_read),
660 offsetof (CPUTLBEntry, addend) - offsetof (CPUTLBEntry, addr_read),
663 #else /* !CONFIG_SOFTMMU */
666 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0;
669 #ifdef TARGET_WORDS_BIGENDIAN
678 tcg_out32 (s, LBZX | TAB (data_reg, rbase, r0));
681 tcg_out32 (s, LBZX | TAB (data_reg, rbase, r0));
682 tcg_out32 (s, EXTSB | RA (data_reg) | RS (data_reg));
686 tcg_out32 (s, LHBRX | TAB (data_reg, rbase, r0));
688 tcg_out32 (s, LHZX | TAB (data_reg, rbase, r0));
692 tcg_out32 (s, LHBRX | TAB (data_reg, rbase, r0));
693 tcg_out32 (s, EXTSH | RA (data_reg) | RS (data_reg));
695 else tcg_out32 (s, LHAX | TAB (data_reg, rbase, r0));
699 tcg_out32 (s, LWBRX | TAB (data_reg, rbase, r0));
701 tcg_out32 (s, LWZX | TAB (data_reg, rbase, r0));
705 tcg_out32 (s, ADDI | RT (r1) | RA (r0) | 4);
706 tcg_out32 (s, LWBRX | TAB (data_reg, rbase, r0));
707 tcg_out32 (s, LWBRX | TAB (data_reg2, rbase, r1));
710 #ifdef CONFIG_USE_GUEST_BASE
711 tcg_out32 (s, ADDI | RT (r1) | RA (r0) | 4);
712 tcg_out32 (s, LWZX | TAB (data_reg2, rbase, r0));
713 tcg_out32 (s, LWZX | TAB (data_reg, rbase, r1));
715 if (r0 == data_reg2) {
716 tcg_out32 (s, LWZ | RT (0) | RA (r0));
717 tcg_out32 (s, LWZ | RT (data_reg) | RA (r0) | 4);
718 tcg_out_mov (s, TCG_TYPE_I32, data_reg2, 0);
721 tcg_out32 (s, LWZ | RT (data_reg2) | RA (r0));
722 tcg_out32 (s, LWZ | RT (data_reg) | RA (r0) | 4);
728 #ifdef CONFIG_SOFTMMU
729 add_qemu_ldst_label (s,
742 static void tcg_out_qemu_st (TCGContext *s, const TCGArg *args, int opc)
744 int addr_reg, r0, r1, data_reg, data_reg2, bswap, rbase;
745 #ifdef CONFIG_SOFTMMU
746 int mem_index, r2, addr_reg2;
757 #ifdef CONFIG_SOFTMMU
758 #if TARGET_LONG_BITS == 64
770 s, r0, r1, r2, addr_reg, addr_reg2, opc & 3,
771 offsetof (CPUArchState, tlb_table[mem_index][0].addr_write),
772 offsetof (CPUTLBEntry, addend) - offsetof (CPUTLBEntry, addr_write),
775 #else /* !CONFIG_SOFTMMU */
778 rbase = GUEST_BASE ? TCG_GUEST_BASE_REG : 0;
781 #ifdef TARGET_WORDS_BIGENDIAN
788 tcg_out32 (s, STBX | SAB (data_reg, rbase, r0));
792 tcg_out32 (s, STHBRX | SAB (data_reg, rbase, r0));
794 tcg_out32 (s, STHX | SAB (data_reg, rbase, r0));
798 tcg_out32 (s, STWBRX | SAB (data_reg, rbase, r0));
800 tcg_out32 (s, STWX | SAB (data_reg, rbase, r0));
804 tcg_out32 (s, ADDI | RT (r1) | RA (r0) | 4);
805 tcg_out32 (s, STWBRX | SAB (data_reg, rbase, r0));
806 tcg_out32 (s, STWBRX | SAB (data_reg2, rbase, r1));
809 #ifdef CONFIG_USE_GUEST_BASE
810 tcg_out32 (s, STWX | SAB (data_reg2, rbase, r0));
811 tcg_out32 (s, ADDI | RT (r1) | RA (r0) | 4);
812 tcg_out32 (s, STWX | SAB (data_reg, rbase, r1));
814 tcg_out32 (s, STW | RS (data_reg2) | RA (r0));
815 tcg_out32 (s, STW | RS (data_reg) | RA (r0) | 4);
821 #ifdef CONFIG_SOFTMMU
822 add_qemu_ldst_label (s,
835 #if defined(CONFIG_SOFTMMU)
836 static void tcg_out_qemu_ld_slow_path (TCGContext *s, TCGLabelQemuLdst *label)
840 int opc = label->opc;
841 int mem_index = label->mem_index;
842 int data_reg = label->datalo_reg;
843 int data_reg2 = label->datahi_reg;
844 int addr_reg = label->addrlo_reg;
845 uint8_t *raddr = label->raddr;
846 uint8_t **label_ptr = &label->label_ptr[0];
850 /* resolve label address */
851 reloc_pc14 (label_ptr[0], (tcg_target_long) s->code_ptr);
855 #if TARGET_LONG_BITS == 32
856 tcg_out_mov (s, TCG_TYPE_I32, ir++, addr_reg);
858 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
861 tcg_out_mov (s, TCG_TYPE_I32, ir++, label->addrhi_reg);
862 tcg_out_mov (s, TCG_TYPE_I32, ir++, addr_reg);
864 tcg_out_movi (s, TCG_TYPE_I32, ir, mem_index);
865 tcg_out_call (s, (tcg_target_long) ld_trampolines[s_bits], 1);
866 tcg_out32 (s, (tcg_target_long) raddr);
869 tcg_out32 (s, EXTSB | RA (data_reg) | RS (3));
872 tcg_out32 (s, EXTSH | RA (data_reg) | RS (3));
878 tcg_out_mov (s, TCG_TYPE_I32, data_reg, 3);
882 if (data_reg2 == 4) {
883 tcg_out_mov (s, TCG_TYPE_I32, 0, 4);
884 tcg_out_mov (s, TCG_TYPE_I32, 4, 3);
885 tcg_out_mov (s, TCG_TYPE_I32, 3, 0);
888 tcg_out_mov (s, TCG_TYPE_I32, data_reg2, 3);
889 tcg_out_mov (s, TCG_TYPE_I32, 3, 4);
893 if (data_reg != 4) tcg_out_mov (s, TCG_TYPE_I32, data_reg, 4);
894 if (data_reg2 != 3) tcg_out_mov (s, TCG_TYPE_I32, data_reg2, 3);
898 /* Jump to the code corresponding to next IR of qemu_st */
899 tcg_out_b (s, 0, (tcg_target_long) raddr);
902 static void tcg_out_qemu_st_slow_path (TCGContext *s, TCGLabelQemuLdst *label)
905 int opc = label->opc;
906 int mem_index = label->mem_index;
907 int data_reg = label->datalo_reg;
908 int data_reg2 = label->datahi_reg;
909 int addr_reg = label->addrlo_reg;
910 uint8_t *raddr = label->raddr;
911 uint8_t **label_ptr = &label->label_ptr[0];
913 /* resolve label address */
914 reloc_pc14 (label_ptr[0], (tcg_target_long) s->code_ptr);
918 #if TARGET_LONG_BITS == 32
919 tcg_out_mov (s, TCG_TYPE_I32, ir++, addr_reg);
921 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
924 tcg_out_mov (s, TCG_TYPE_I32, ir++, label->addrhi_reg);
925 tcg_out_mov (s, TCG_TYPE_I32, ir++, addr_reg);
930 tcg_out32 (s, (RLWINM
938 tcg_out32 (s, (RLWINM
946 tcg_out_mov (s, TCG_TYPE_I32, ir, data_reg);
949 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
952 tcg_out_mov (s, TCG_TYPE_I32, ir++, data_reg2);
953 tcg_out_mov (s, TCG_TYPE_I32, ir, data_reg);
958 tcg_out_movi (s, TCG_TYPE_I32, ir, mem_index);
959 tcg_out_call (s, (tcg_target_long) st_trampolines[opc], 1);
960 tcg_out32 (s, (tcg_target_long) raddr);
961 tcg_out_b (s, 0, (tcg_target_long) raddr);
964 void tcg_out_tb_finalize(TCGContext *s)
967 TCGLabelQemuLdst *label;
969 /* qemu_ld/st slow paths */
970 for (i = 0; i < s->nb_qemu_ldst_labels; i++) {
971 label = (TCGLabelQemuLdst *) &s->qemu_ldst_labels[i];
973 tcg_out_qemu_ld_slow_path (s, label);
976 tcg_out_qemu_st_slow_path (s, label);
982 #ifdef CONFIG_SOFTMMU
983 static void emit_ldst_trampoline (TCGContext *s, const void *ptr)
985 tcg_out32 (s, MFSPR | RT (3) | LR);
986 tcg_out32 (s, ADDI | RT (3) | RA (3) | 4);
987 tcg_out32 (s, MTSPR | RS (3) | LR);
988 tcg_out_mov (s, TCG_TYPE_I32, 3, TCG_AREG0);
989 tcg_out_b (s, 0, (tcg_target_long) ptr);
993 static void tcg_target_qemu_prologue (TCGContext *s)
999 + TCG_STATIC_CALL_ARGS_SIZE
1000 + ARRAY_SIZE (tcg_target_callee_save_regs) * 4
1001 + CPU_TEMP_BUF_NLONGS * sizeof(long)
1003 frame_size = (frame_size + 15) & ~15;
1005 tcg_set_frame(s, TCG_REG_CALL_STACK, frame_size
1006 - CPU_TEMP_BUF_NLONGS * sizeof(long),
1007 CPU_TEMP_BUF_NLONGS * sizeof(long));
1013 /* First emit adhoc function descriptor */
1014 addr = (uint32_t) s->code_ptr + 12;
1015 tcg_out32 (s, addr); /* entry point */
1016 s->code_ptr += 8; /* skip TOC and environment pointer */
1019 tcg_out32 (s, MFSPR | RT (0) | LR);
1020 tcg_out32 (s, STWU | RS (1) | RA (1) | (-frame_size & 0xffff));
1021 for (i = 0; i < ARRAY_SIZE (tcg_target_callee_save_regs); ++i)
1023 | RS (tcg_target_callee_save_regs[i])
1025 | (i * 4 + LINKAGE_AREA_SIZE + TCG_STATIC_CALL_ARGS_SIZE)
1028 tcg_out32 (s, STW | RS (0) | RA (1) | (frame_size + LR_OFFSET));
1030 #ifdef CONFIG_USE_GUEST_BASE
1032 tcg_out_movi (s, TCG_TYPE_I32, TCG_GUEST_BASE_REG, GUEST_BASE);
1033 tcg_regset_set_reg(s->reserved_regs, TCG_GUEST_BASE_REG);
1037 tcg_out_mov (s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
1038 tcg_out32 (s, MTSPR | RS (tcg_target_call_iarg_regs[1]) | CTR);
1039 tcg_out32 (s, BCCTR | BO_ALWAYS);
1040 tb_ret_addr = s->code_ptr;
1042 for (i = 0; i < ARRAY_SIZE (tcg_target_callee_save_regs); ++i)
1044 | RT (tcg_target_callee_save_regs[i])
1046 | (i * 4 + LINKAGE_AREA_SIZE + TCG_STATIC_CALL_ARGS_SIZE)
1049 tcg_out32 (s, LWZ | RT (0) | RA (1) | (frame_size + LR_OFFSET));
1050 tcg_out32 (s, MTSPR | RS (0) | LR);
1051 tcg_out32 (s, ADDI | RT (1) | RA (1) | frame_size);
1052 tcg_out32 (s, BCLR | BO_ALWAYS);
1054 #ifdef CONFIG_SOFTMMU
1055 for (i = 0; i < 4; ++i) {
1056 ld_trampolines[i] = s->code_ptr;
1057 emit_ldst_trampoline (s, qemu_ld_helpers[i]);
1059 st_trampolines[i] = s->code_ptr;
1060 emit_ldst_trampoline (s, qemu_st_helpers[i]);
1065 static void tcg_out_ld (TCGContext *s, TCGType type, TCGReg ret, TCGReg arg1,
1066 tcg_target_long arg2)
1068 tcg_out_ldst (s, ret, arg1, arg2, LWZ, LWZX);
1071 static void tcg_out_st (TCGContext *s, TCGType type, TCGReg arg, TCGReg arg1,
1072 tcg_target_long arg2)
1074 tcg_out_ldst (s, arg, arg1, arg2, STW, STWX);
1077 static void ppc_addi (TCGContext *s, int rt, int ra, tcg_target_long si)
1079 if (!si && rt == ra)
1082 if (si == (int16_t) si)
1083 tcg_out32 (s, ADDI | RT (rt) | RA (ra) | (si & 0xffff));
1085 uint16_t h = ((si >> 16) & 0xffff) + ((uint16_t) si >> 15);
1086 tcg_out32 (s, ADDIS | RT (rt) | RA (ra) | h);
1087 tcg_out32 (s, ADDI | RT (rt) | RA (rt) | (si & 0xffff));
1091 static void tcg_out_cmp (TCGContext *s, int cond, TCGArg arg1, TCGArg arg2,
1092 int const_arg2, int cr)
1101 if ((int16_t) arg2 == arg2) {
1106 else if ((uint16_t) arg2 == arg2) {
1121 if ((int16_t) arg2 == arg2) {
1136 if ((uint16_t) arg2 == arg2) {
1152 tcg_out32 (s, op | RA (arg1) | (arg2 & 0xffff));
1155 tcg_out_movi (s, TCG_TYPE_I32, 0, arg2);
1156 tcg_out32 (s, op | RA (arg1) | RB (0));
1159 tcg_out32 (s, op | RA (arg1) | RB (arg2));
1164 static void tcg_out_bc (TCGContext *s, int bc, int label_index)
1166 TCGLabel *l = &s->labels[label_index];
1169 tcg_out32 (s, bc | reloc_pc14_val (s->code_ptr, l->u.value));
1171 uint16_t val = *(uint16_t *) &s->code_ptr[2];
1173 /* Thanks to Andrzej Zaborowski */
1174 tcg_out32 (s, bc | (val & 0xfffc));
1175 tcg_out_reloc (s, s->code_ptr - 4, R_PPC_REL14, label_index, 0);
1179 static void tcg_out_cr7eq_from_cond (TCGContext *s, const TCGArg *args,
1180 const int *const_args)
1182 TCGCond cond = args[4];
1184 struct { int bit1; int bit2; int cond2; } bits[] = {
1185 [TCG_COND_LT ] = { CR_LT, CR_LT, TCG_COND_LT },
1186 [TCG_COND_LE ] = { CR_LT, CR_GT, TCG_COND_LT },
1187 [TCG_COND_GT ] = { CR_GT, CR_GT, TCG_COND_GT },
1188 [TCG_COND_GE ] = { CR_GT, CR_LT, TCG_COND_GT },
1189 [TCG_COND_LTU] = { CR_LT, CR_LT, TCG_COND_LTU },
1190 [TCG_COND_LEU] = { CR_LT, CR_GT, TCG_COND_LTU },
1191 [TCG_COND_GTU] = { CR_GT, CR_GT, TCG_COND_GTU },
1192 [TCG_COND_GEU] = { CR_GT, CR_LT, TCG_COND_GTU },
1193 }, *b = &bits[cond];
1198 op = (cond == TCG_COND_EQ) ? CRAND : CRNAND;
1199 tcg_out_cmp (s, cond, args[0], args[2], const_args[2], 6);
1200 tcg_out_cmp (s, cond, args[1], args[3], const_args[3], 7);
1201 tcg_out32 (s, op | BT (7, CR_EQ) | BA (6, CR_EQ) | BB (7, CR_EQ));
1211 op = (b->bit1 != b->bit2) ? CRANDC : CRAND;
1212 tcg_out_cmp (s, b->cond2, args[1], args[3], const_args[3], 5);
1213 tcg_out_cmp (s, tcg_unsigned_cond (cond), args[0], args[2],
1215 tcg_out32 (s, op | BT (7, CR_EQ) | BA (5, CR_EQ) | BB (7, b->bit2));
1216 tcg_out32 (s, CROR | BT (7, CR_EQ) | BA (5, b->bit1) | BB (7, CR_EQ));
1223 static void tcg_out_setcond (TCGContext *s, TCGCond cond, TCGArg arg0,
1224 TCGArg arg1, TCGArg arg2, int const_arg2)
1236 if ((uint16_t) arg2 == arg2) {
1237 tcg_out32 (s, XORI | RS (arg1) | RA (0) | arg2);
1240 tcg_out_movi (s, TCG_TYPE_I32, 0, arg2);
1241 tcg_out32 (s, XOR | SAB (arg1, 0, 0));
1247 tcg_out32 (s, XOR | SAB (arg1, 0, arg2));
1249 tcg_out32 (s, CNTLZW | RS (arg) | RA (0));
1250 tcg_out32 (s, (RLWINM
1267 if ((uint16_t) arg2 == arg2) {
1268 tcg_out32 (s, XORI | RS (arg1) | RA (0) | arg2);
1271 tcg_out_movi (s, TCG_TYPE_I32, 0, arg2);
1272 tcg_out32 (s, XOR | SAB (arg1, 0, 0));
1278 tcg_out32 (s, XOR | SAB (arg1, 0, arg2));
1281 if (arg == arg1 && arg1 == arg0) {
1282 tcg_out32 (s, ADDIC | RT (0) | RA (arg) | 0xffff);
1283 tcg_out32 (s, SUBFE | TAB (arg0, 0, arg));
1286 tcg_out32 (s, ADDIC | RT (arg0) | RA (arg) | 0xffff);
1287 tcg_out32 (s, SUBFE | TAB (arg0, arg0, arg));
1306 crop = CRNOR | BT (7, CR_EQ) | BA (7, CR_LT) | BB (7, CR_LT);
1312 crop = CRNOR | BT (7, CR_EQ) | BA (7, CR_GT) | BB (7, CR_GT);
1314 tcg_out_cmp (s, cond, arg1, arg2, const_arg2, 7);
1315 if (crop) tcg_out32 (s, crop);
1316 tcg_out32 (s, MFCR | RT (0));
1317 tcg_out32 (s, (RLWINM
1332 static void tcg_out_setcond2 (TCGContext *s, const TCGArg *args,
1333 const int *const_args)
1335 tcg_out_cr7eq_from_cond (s, args + 1, const_args + 1);
1336 tcg_out32 (s, MFCR | RT (0));
1337 tcg_out32 (s, (RLWINM
1347 static void tcg_out_movcond (TCGContext *s, TCGCond cond,
1349 TCGArg c1, TCGArg c2,
1350 TCGArg v1, TCGArg v2,
1353 tcg_out_cmp (s, cond, c1, c2, const_c2, 7);
1356 /* At least here on 7747A bit twiddling hacks are outperformed
1357 by jumpy code (the testing was not scientific) */
1359 cond = tcg_invert_cond (cond);
1364 tcg_out_mov (s, TCG_TYPE_I32, dest, v1);
1367 /* Branch forward over one insn */
1368 tcg_out32 (s, tcg_to_bc[cond] | 8);
1369 tcg_out_mov (s, TCG_TYPE_I32, dest, v2);
1372 /* isel version, "if (1)" above should be replaced once a way
1373 to figure out availability of isel on the underlying
1374 hardware is found */
1379 tab = TAB (dest, v1, v2);
1383 tab = TAB (dest, v2, v1);
1388 tab = TAB (dest, v1, v2);
1393 tab = TAB (dest, v2, v1);
1398 tab = TAB (dest, v2, v1);
1403 tab = TAB (dest, v1, v2);
1409 tcg_out32 (s, ISEL | tab | ((bc + 28) << 6));
1413 static void tcg_out_brcond (TCGContext *s, TCGCond cond,
1414 TCGArg arg1, TCGArg arg2, int const_arg2,
1417 tcg_out_cmp (s, cond, arg1, arg2, const_arg2, 7);
1418 tcg_out_bc (s, tcg_to_bc[cond], label_index);
1421 /* XXX: we implement it at the target level to avoid having to
1422 handle cross basic blocks temporaries */
1423 static void tcg_out_brcond2 (TCGContext *s, const TCGArg *args,
1424 const int *const_args)
1426 tcg_out_cr7eq_from_cond (s, args, const_args);
1427 tcg_out_bc (s, (BC | BI (7, CR_EQ) | BO_COND_TRUE), args[5]);
1430 void ppc_tb_set_jmp_target (unsigned long jmp_addr, unsigned long addr)
1433 long disp = addr - jmp_addr;
1434 unsigned long patch_size;
1436 ptr = (uint32_t *)jmp_addr;
1438 if ((disp << 6) >> 6 != disp) {
1439 ptr[0] = 0x3c000000 | (addr >> 16); /* lis 0,addr@ha */
1440 ptr[1] = 0x60000000 | (addr & 0xffff); /* la 0,addr@l(0) */
1441 ptr[2] = 0x7c0903a6; /* mtctr 0 */
1442 ptr[3] = 0x4e800420; /* brctr */
1445 /* patch the branch destination */
1447 *ptr = 0x48000000 | (disp & 0x03fffffc); /* b disp */
1450 ptr[0] = 0x60000000; /* nop */
1451 ptr[1] = 0x60000000;
1452 ptr[2] = 0x60000000;
1453 ptr[3] = 0x60000000;
1458 flush_icache_range(jmp_addr, jmp_addr + patch_size);
1461 static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
1462 const int *const_args)
1465 case INDEX_op_exit_tb:
1466 tcg_out_movi (s, TCG_TYPE_I32, TCG_REG_R3, args[0]);
1467 tcg_out_b (s, 0, (tcg_target_long) tb_ret_addr);
1469 case INDEX_op_goto_tb:
1470 if (s->tb_jmp_offset) {
1471 /* direct jump method */
1473 s->tb_jmp_offset[args[0]] = s->code_ptr - s->code_buf;
1479 s->tb_next_offset[args[0]] = s->code_ptr - s->code_buf;
1483 TCGLabel *l = &s->labels[args[0]];
1486 tcg_out_b (s, 0, l->u.value);
1489 uint32_t val = *(uint32_t *) s->code_ptr;
1491 /* Thanks to Andrzej Zaborowski */
1492 tcg_out32 (s, B | (val & 0x3fffffc));
1493 tcg_out_reloc (s, s->code_ptr - 4, R_PPC_REL24, args[0], 0);
1498 tcg_out_call (s, args[0], const_args[0]);
1500 case INDEX_op_movi_i32:
1501 tcg_out_movi(s, TCG_TYPE_I32, args[0], args[1]);
1503 case INDEX_op_ld8u_i32:
1504 tcg_out_ldst (s, args[0], args[1], args[2], LBZ, LBZX);
1506 case INDEX_op_ld8s_i32:
1507 tcg_out_ldst (s, args[0], args[1], args[2], LBZ, LBZX);
1508 tcg_out32 (s, EXTSB | RS (args[0]) | RA (args[0]));
1510 case INDEX_op_ld16u_i32:
1511 tcg_out_ldst (s, args[0], args[1], args[2], LHZ, LHZX);
1513 case INDEX_op_ld16s_i32:
1514 tcg_out_ldst (s, args[0], args[1], args[2], LHA, LHAX);
1516 case INDEX_op_ld_i32:
1517 tcg_out_ldst (s, args[0], args[1], args[2], LWZ, LWZX);
1519 case INDEX_op_st8_i32:
1520 tcg_out_ldst (s, args[0], args[1], args[2], STB, STBX);
1522 case INDEX_op_st16_i32:
1523 tcg_out_ldst (s, args[0], args[1], args[2], STH, STHX);
1525 case INDEX_op_st_i32:
1526 tcg_out_ldst (s, args[0], args[1], args[2], STW, STWX);
1529 case INDEX_op_add_i32:
1531 ppc_addi (s, args[0], args[1], args[2]);
1533 tcg_out32 (s, ADD | TAB (args[0], args[1], args[2]));
1535 case INDEX_op_sub_i32:
1537 ppc_addi (s, args[0], args[1], -args[2]);
1539 tcg_out32 (s, SUBF | TAB (args[0], args[2], args[1]));
1542 case INDEX_op_and_i32:
1543 if (const_args[2]) {
1549 tcg_out_movi (s, TCG_TYPE_I32, args[0], 0);
1559 if ((t & (t - 1)) == 0) {
1562 if ((c & 0x80000001) == 0x80000001) {
1577 tcg_out32 (s, (RLWINM
1587 #endif /* !__PPU__ */
1589 if ((c & 0xffff) == c)
1590 tcg_out32 (s, ANDI | RS (args[1]) | RA (args[0]) | c);
1591 else if ((c & 0xffff0000) == c)
1592 tcg_out32 (s, ANDIS | RS (args[1]) | RA (args[0])
1593 | ((c >> 16) & 0xffff));
1595 tcg_out_movi (s, TCG_TYPE_I32, 0, c);
1596 tcg_out32 (s, AND | SAB (args[1], args[0], 0));
1601 tcg_out32 (s, AND | SAB (args[1], args[0], args[2]));
1603 case INDEX_op_or_i32:
1604 if (const_args[2]) {
1605 if (args[2] & 0xffff) {
1606 tcg_out32 (s, ORI | RS (args[1]) | RA (args[0])
1607 | (args[2] & 0xffff));
1609 tcg_out32 (s, ORIS | RS (args[0]) | RA (args[0])
1610 | ((args[2] >> 16) & 0xffff));
1613 tcg_out32 (s, ORIS | RS (args[1]) | RA (args[0])
1614 | ((args[2] >> 16) & 0xffff));
1618 tcg_out32 (s, OR | SAB (args[1], args[0], args[2]));
1620 case INDEX_op_xor_i32:
1621 if (const_args[2]) {
1622 if ((args[2] & 0xffff) == args[2])
1623 tcg_out32 (s, XORI | RS (args[1]) | RA (args[0])
1624 | (args[2] & 0xffff));
1625 else if ((args[2] & 0xffff0000) == args[2])
1626 tcg_out32 (s, XORIS | RS (args[1]) | RA (args[0])
1627 | ((args[2] >> 16) & 0xffff));
1629 tcg_out_movi (s, TCG_TYPE_I32, 0, args[2]);
1630 tcg_out32 (s, XOR | SAB (args[1], args[0], 0));
1634 tcg_out32 (s, XOR | SAB (args[1], args[0], args[2]));
1636 case INDEX_op_andc_i32:
1637 tcg_out32 (s, ANDC | SAB (args[1], args[0], args[2]));
1639 case INDEX_op_orc_i32:
1640 tcg_out32 (s, ORC | SAB (args[1], args[0], args[2]));
1642 case INDEX_op_eqv_i32:
1643 tcg_out32 (s, EQV | SAB (args[1], args[0], args[2]));
1645 case INDEX_op_nand_i32:
1646 tcg_out32 (s, NAND | SAB (args[1], args[0], args[2]));
1648 case INDEX_op_nor_i32:
1649 tcg_out32 (s, NOR | SAB (args[1], args[0], args[2]));
1652 case INDEX_op_mul_i32:
1653 if (const_args[2]) {
1654 if (args[2] == (int16_t) args[2])
1655 tcg_out32 (s, MULLI | RT (args[0]) | RA (args[1])
1656 | (args[2] & 0xffff));
1658 tcg_out_movi (s, TCG_TYPE_I32, 0, args[2]);
1659 tcg_out32 (s, MULLW | TAB (args[0], args[1], 0));
1663 tcg_out32 (s, MULLW | TAB (args[0], args[1], args[2]));
1666 case INDEX_op_div_i32:
1667 tcg_out32 (s, DIVW | TAB (args[0], args[1], args[2]));
1670 case INDEX_op_divu_i32:
1671 tcg_out32 (s, DIVWU | TAB (args[0], args[1], args[2]));
1674 case INDEX_op_rem_i32:
1675 tcg_out32 (s, DIVW | TAB (0, args[1], args[2]));
1676 tcg_out32 (s, MULLW | TAB (0, 0, args[2]));
1677 tcg_out32 (s, SUBF | TAB (args[0], 0, args[1]));
1680 case INDEX_op_remu_i32:
1681 tcg_out32 (s, DIVWU | TAB (0, args[1], args[2]));
1682 tcg_out32 (s, MULLW | TAB (0, 0, args[2]));
1683 tcg_out32 (s, SUBF | TAB (args[0], 0, args[1]));
1686 case INDEX_op_mulu2_i32:
1687 if (args[0] == args[2] || args[0] == args[3]) {
1688 tcg_out32 (s, MULLW | TAB (0, args[2], args[3]));
1689 tcg_out32 (s, MULHWU | TAB (args[1], args[2], args[3]));
1690 tcg_out_mov (s, TCG_TYPE_I32, args[0], 0);
1693 tcg_out32 (s, MULLW | TAB (args[0], args[2], args[3]));
1694 tcg_out32 (s, MULHWU | TAB (args[1], args[2], args[3]));
1698 case INDEX_op_shl_i32:
1699 if (const_args[2]) {
1700 tcg_out32 (s, (RLWINM
1710 tcg_out32 (s, SLW | SAB (args[1], args[0], args[2]));
1712 case INDEX_op_shr_i32:
1713 if (const_args[2]) {
1714 tcg_out32 (s, (RLWINM
1724 tcg_out32 (s, SRW | SAB (args[1], args[0], args[2]));
1726 case INDEX_op_sar_i32:
1728 tcg_out32 (s, SRAWI | RS (args[1]) | RA (args[0]) | SH (args[2]));
1730 tcg_out32 (s, SRAW | SAB (args[1], args[0], args[2]));
1732 case INDEX_op_rotl_i32:
1739 | (const_args[2] ? RLWINM | SH (args[2])
1740 : RLWNM | RB (args[2]))
1745 case INDEX_op_rotr_i32:
1746 if (const_args[2]) {
1748 tcg_out_mov (s, TCG_TYPE_I32, args[0], args[1]);
1751 tcg_out32 (s, RLWINM
1761 tcg_out32 (s, SUBFIC | RT (0) | RA (args[2]) | 32);
1772 case INDEX_op_add2_i32:
1773 if (args[0] == args[3] || args[0] == args[5]) {
1774 tcg_out32 (s, ADDC | TAB (0, args[2], args[4]));
1775 tcg_out32 (s, ADDE | TAB (args[1], args[3], args[5]));
1776 tcg_out_mov (s, TCG_TYPE_I32, args[0], 0);
1779 tcg_out32 (s, ADDC | TAB (args[0], args[2], args[4]));
1780 tcg_out32 (s, ADDE | TAB (args[1], args[3], args[5]));
1783 case INDEX_op_sub2_i32:
1784 if (args[0] == args[3] || args[0] == args[5]) {
1785 tcg_out32 (s, SUBFC | TAB (0, args[4], args[2]));
1786 tcg_out32 (s, SUBFE | TAB (args[1], args[5], args[3]));
1787 tcg_out_mov (s, TCG_TYPE_I32, args[0], 0);
1790 tcg_out32 (s, SUBFC | TAB (args[0], args[4], args[2]));
1791 tcg_out32 (s, SUBFE | TAB (args[1], args[5], args[3]));
1795 case INDEX_op_brcond_i32:
1800 args[3] = r1 is const
1801 args[4] = label_index
1803 tcg_out_brcond (s, args[2], args[0], args[1], const_args[1], args[3]);
1805 case INDEX_op_brcond2_i32:
1806 tcg_out_brcond2(s, args, const_args);
1809 case INDEX_op_neg_i32:
1810 tcg_out32 (s, NEG | RT (args[0]) | RA (args[1]));
1813 case INDEX_op_not_i32:
1814 tcg_out32 (s, NOR | SAB (args[1], args[0], args[1]));
1817 case INDEX_op_qemu_ld8u:
1818 tcg_out_qemu_ld(s, args, 0);
1820 case INDEX_op_qemu_ld8s:
1821 tcg_out_qemu_ld(s, args, 0 | 4);
1823 case INDEX_op_qemu_ld16u:
1824 tcg_out_qemu_ld(s, args, 1);
1826 case INDEX_op_qemu_ld16s:
1827 tcg_out_qemu_ld(s, args, 1 | 4);
1829 case INDEX_op_qemu_ld32:
1830 tcg_out_qemu_ld(s, args, 2);
1832 case INDEX_op_qemu_ld64:
1833 tcg_out_qemu_ld(s, args, 3);
1835 case INDEX_op_qemu_st8:
1836 tcg_out_qemu_st(s, args, 0);
1838 case INDEX_op_qemu_st16:
1839 tcg_out_qemu_st(s, args, 1);
1841 case INDEX_op_qemu_st32:
1842 tcg_out_qemu_st(s, args, 2);
1844 case INDEX_op_qemu_st64:
1845 tcg_out_qemu_st(s, args, 3);
1848 case INDEX_op_ext8s_i32:
1849 tcg_out32 (s, EXTSB | RS (args[1]) | RA (args[0]));
1851 case INDEX_op_ext8u_i32:
1852 tcg_out32 (s, RLWINM
1860 case INDEX_op_ext16s_i32:
1861 tcg_out32 (s, EXTSH | RS (args[1]) | RA (args[0]));
1863 case INDEX_op_ext16u_i32:
1864 tcg_out32 (s, RLWINM
1873 case INDEX_op_setcond_i32:
1874 tcg_out_setcond (s, args[3], args[0], args[1], args[2], const_args[2]);
1876 case INDEX_op_setcond2_i32:
1877 tcg_out_setcond2 (s, args, const_args);
1880 case INDEX_op_bswap16_i32:
1881 /* Stolen from gcc's builtin_bswap16 */
1885 /* r0 = (a1 << 8) & 0xff00 # 00d0 */
1886 tcg_out32 (s, RLWINM
1894 /* a0 = rotate_left (a1, 24) & 0xff # 000c */
1895 tcg_out32 (s, RLWINM
1903 /* a0 = a0 | r0 # 00dc */
1904 tcg_out32 (s, OR | SAB (0, args[0], args[0]));
1907 case INDEX_op_bswap32_i32:
1908 /* Stolen from gcc's builtin_bswap32 */
1912 /* a1 = args[1] # abcd */
1914 if (a0 == args[1]) {
1918 /* a0 = rotate_left (a1, 8) # bcda */
1919 tcg_out32 (s, RLWINM
1927 /* a0 = (a0 & ~0xff000000) | ((a1 << 24) & 0xff000000) # dcda */
1928 tcg_out32 (s, RLWIMI
1936 /* a0 = (a0 & ~0x0000ff00) | ((a1 << 24) & 0x0000ff00) # dcba */
1937 tcg_out32 (s, RLWIMI
1946 tcg_out_mov (s, TCG_TYPE_I32, args[0], a0);
1951 case INDEX_op_deposit_i32:
1952 tcg_out32 (s, RLWIMI
1956 | MB (32 - args[3] - args[4])
1961 case INDEX_op_movcond_i32:
1962 tcg_out_movcond (s, args[5], args[0],
1974 static const TCGTargetOpDef ppc_op_defs[] = {
1975 { INDEX_op_exit_tb, { } },
1976 { INDEX_op_goto_tb, { } },
1977 { INDEX_op_call, { "ri" } },
1978 { INDEX_op_br, { } },
1980 { INDEX_op_mov_i32, { "r", "r" } },
1981 { INDEX_op_movi_i32, { "r" } },
1982 { INDEX_op_ld8u_i32, { "r", "r" } },
1983 { INDEX_op_ld8s_i32, { "r", "r" } },
1984 { INDEX_op_ld16u_i32, { "r", "r" } },
1985 { INDEX_op_ld16s_i32, { "r", "r" } },
1986 { INDEX_op_ld_i32, { "r", "r" } },
1987 { INDEX_op_st8_i32, { "r", "r" } },
1988 { INDEX_op_st16_i32, { "r", "r" } },
1989 { INDEX_op_st_i32, { "r", "r" } },
1991 { INDEX_op_add_i32, { "r", "r", "ri" } },
1992 { INDEX_op_mul_i32, { "r", "r", "ri" } },
1993 { INDEX_op_div_i32, { "r", "r", "r" } },
1994 { INDEX_op_divu_i32, { "r", "r", "r" } },
1995 { INDEX_op_rem_i32, { "r", "r", "r" } },
1996 { INDEX_op_remu_i32, { "r", "r", "r" } },
1997 { INDEX_op_mulu2_i32, { "r", "r", "r", "r" } },
1998 { INDEX_op_sub_i32, { "r", "r", "ri" } },
1999 { INDEX_op_and_i32, { "r", "r", "ri" } },
2000 { INDEX_op_or_i32, { "r", "r", "ri" } },
2001 { INDEX_op_xor_i32, { "r", "r", "ri" } },
2003 { INDEX_op_shl_i32, { "r", "r", "ri" } },
2004 { INDEX_op_shr_i32, { "r", "r", "ri" } },
2005 { INDEX_op_sar_i32, { "r", "r", "ri" } },
2007 { INDEX_op_rotl_i32, { "r", "r", "ri" } },
2008 { INDEX_op_rotr_i32, { "r", "r", "ri" } },
2010 { INDEX_op_brcond_i32, { "r", "ri" } },
2012 { INDEX_op_add2_i32, { "r", "r", "r", "r", "r", "r" } },
2013 { INDEX_op_sub2_i32, { "r", "r", "r", "r", "r", "r" } },
2014 { INDEX_op_brcond2_i32, { "r", "r", "r", "r" } },
2016 { INDEX_op_neg_i32, { "r", "r" } },
2017 { INDEX_op_not_i32, { "r", "r" } },
2019 { INDEX_op_andc_i32, { "r", "r", "r" } },
2020 { INDEX_op_orc_i32, { "r", "r", "r" } },
2021 { INDEX_op_eqv_i32, { "r", "r", "r" } },
2022 { INDEX_op_nand_i32, { "r", "r", "r" } },
2023 { INDEX_op_nor_i32, { "r", "r", "r" } },
2025 { INDEX_op_setcond_i32, { "r", "r", "ri" } },
2026 { INDEX_op_setcond2_i32, { "r", "r", "r", "ri", "ri" } },
2028 { INDEX_op_bswap16_i32, { "r", "r" } },
2029 { INDEX_op_bswap32_i32, { "r", "r" } },
2031 #if TARGET_LONG_BITS == 32
2032 { INDEX_op_qemu_ld8u, { "r", "L" } },
2033 { INDEX_op_qemu_ld8s, { "r", "L" } },
2034 { INDEX_op_qemu_ld16u, { "r", "L" } },
2035 { INDEX_op_qemu_ld16s, { "r", "L" } },
2036 { INDEX_op_qemu_ld32, { "r", "L" } },
2037 { INDEX_op_qemu_ld64, { "r", "r", "L" } },
2039 { INDEX_op_qemu_st8, { "K", "K" } },
2040 { INDEX_op_qemu_st16, { "K", "K" } },
2041 { INDEX_op_qemu_st32, { "K", "K" } },
2042 { INDEX_op_qemu_st64, { "M", "M", "M" } },
2044 { INDEX_op_qemu_ld8u, { "r", "L", "L" } },
2045 { INDEX_op_qemu_ld8s, { "r", "L", "L" } },
2046 { INDEX_op_qemu_ld16u, { "r", "L", "L" } },
2047 { INDEX_op_qemu_ld16s, { "r", "L", "L" } },
2048 { INDEX_op_qemu_ld32, { "r", "L", "L" } },
2049 { INDEX_op_qemu_ld64, { "r", "L", "L", "L" } },
2051 { INDEX_op_qemu_st8, { "K", "K", "K" } },
2052 { INDEX_op_qemu_st16, { "K", "K", "K" } },
2053 { INDEX_op_qemu_st32, { "K", "K", "K" } },
2054 { INDEX_op_qemu_st64, { "M", "M", "M", "M" } },
2057 { INDEX_op_ext8s_i32, { "r", "r" } },
2058 { INDEX_op_ext8u_i32, { "r", "r" } },
2059 { INDEX_op_ext16s_i32, { "r", "r" } },
2060 { INDEX_op_ext16u_i32, { "r", "r" } },
2062 { INDEX_op_deposit_i32, { "r", "0", "r" } },
2063 { INDEX_op_movcond_i32, { "r", "r", "ri", "r", "r" } },
2068 static void tcg_target_init(TCGContext *s)
2070 tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffffffff);
2071 tcg_regset_set32(tcg_target_call_clobber_regs, 0,
2073 #ifdef TCG_TARGET_CALL_DARWIN
2083 (1 << TCG_REG_R10) |
2084 (1 << TCG_REG_R11) |
2088 tcg_regset_clear(s->reserved_regs);
2089 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R0);
2090 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R1);
2091 #ifndef TCG_TARGET_CALL_DARWIN
2092 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R2);
2095 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R13);
2098 tcg_add_target_add_op_defs(ppc_op_defs);