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
48 #ifdef CONFIG_USE_GUEST_BASE
49 #define TCG_GUEST_BASE_REG 30
51 #define TCG_GUEST_BASE_REG 0
55 static const char * const tcg_target_reg_names
[TCG_TARGET_NB_REGS
] = {
91 static const int tcg_target_reg_alloc_order
[] = {
106 #ifdef TCG_TARGET_CALL_DARWIN
117 #ifndef TCG_TARGET_CALL_DARWIN
130 static const int tcg_target_call_iarg_regs
[] = {
141 static const int tcg_target_call_oarg_regs
[2] = {
146 static const int tcg_target_callee_save_regs
[] = {
147 #ifdef TCG_TARGET_CALL_DARWIN
167 TCG_REG_R27
, /* currently used for the global env */
174 static uint32_t reloc_pc24_val (void *pc
, tcg_target_long target
)
176 tcg_target_long disp
;
178 disp
= target
- (tcg_target_long
) pc
;
179 if ((disp
<< 6) >> 6 != disp
)
182 return disp
& 0x3fffffc;
185 static void reloc_pc24 (void *pc
, tcg_target_long target
)
187 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0x3fffffc)
188 | reloc_pc24_val (pc
, target
);
191 static uint16_t reloc_pc14_val (void *pc
, tcg_target_long target
)
193 tcg_target_long disp
;
195 disp
= target
- (tcg_target_long
) pc
;
196 if (disp
!= (int16_t) disp
)
199 return disp
& 0xfffc;
202 static void reloc_pc14 (void *pc
, tcg_target_long target
)
204 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0xfffc)
205 | reloc_pc14_val (pc
, target
);
208 static void patch_reloc(uint8_t *code_ptr
, int type
,
209 tcg_target_long value
, tcg_target_long addend
)
214 reloc_pc14 (code_ptr
, value
);
217 reloc_pc24 (code_ptr
, value
);
224 /* parse target specific constraints */
225 static int target_parse_constraint(TCGArgConstraint
*ct
, const char **pct_str
)
231 case 'A': case 'B': case 'C': case 'D':
232 ct
->ct
|= TCG_CT_REG
;
233 tcg_regset_set_reg(ct
->u
.regs
, 3 + ct_str
[0] - 'A');
236 ct
->ct
|= TCG_CT_REG
;
237 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
239 #ifdef CONFIG_SOFTMMU
240 case 'L': /* qemu_ld constraint */
241 ct
->ct
|= TCG_CT_REG
;
242 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
243 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
244 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R4
);
245 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R5
);
246 #if TARGET_LONG_BITS == 64
247 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R6
);
248 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
249 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R7
);
253 case 'K': /* qemu_st[8..32] constraint */
254 ct
->ct
|= TCG_CT_REG
;
255 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
256 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
257 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R4
);
258 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R5
);
259 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R6
);
260 #if TARGET_LONG_BITS == 64
261 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R7
);
262 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
263 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R8
);
267 case 'M': /* qemu_st64 constraint */
268 ct
->ct
|= TCG_CT_REG
;
269 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
270 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
271 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R4
);
272 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R5
);
273 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R6
);
274 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R7
);
275 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R8
);
276 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
277 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R9
);
283 ct
->ct
|= TCG_CT_REG
;
284 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
287 ct
->ct
|= TCG_CT_REG
;
288 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
289 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
300 /* test if a constant matches the constraint */
301 static int tcg_target_const_match(tcg_target_long val
,
302 const TCGArgConstraint
*arg_ct
)
307 if (ct
& TCG_CT_CONST
)
312 #define OPCD(opc) ((opc)<<26)
313 #define XO31(opc) (OPCD(31)|((opc)<<1))
314 #define XO19(opc) (OPCD(19)|((opc)<<1))
326 #define ADDIC OPCD(12)
327 #define ADDI OPCD(14)
328 #define ADDIS OPCD(15)
330 #define ORIS OPCD(25)
331 #define XORI OPCD(26)
332 #define XORIS OPCD(27)
333 #define ANDI OPCD(28)
334 #define ANDIS OPCD(29)
335 #define MULLI OPCD( 7)
336 #define CMPLI OPCD(10)
337 #define CMPI OPCD(11)
338 #define SUBFIC OPCD( 8)
340 #define LWZU OPCD(33)
341 #define STWU OPCD(37)
343 #define RLWIMI OPCD(20)
344 #define RLWINM OPCD(21)
345 #define RLWNM OPCD(23)
347 #define BCLR XO19( 16)
348 #define BCCTR XO19(528)
349 #define CRAND XO19(257)
350 #define CRANDC XO19(129)
351 #define CRNAND XO19(225)
352 #define CROR XO19(449)
353 #define CRNOR XO19( 33)
355 #define EXTSB XO31(954)
356 #define EXTSH XO31(922)
357 #define ADD XO31(266)
358 #define ADDE XO31(138)
359 #define ADDC XO31( 10)
360 #define AND XO31( 28)
361 #define SUBF XO31( 40)
362 #define SUBFC XO31( 8)
363 #define SUBFE XO31(136)
365 #define XOR XO31(316)
366 #define MULLW XO31(235)
367 #define MULHWU XO31( 11)
368 #define DIVW XO31(491)
369 #define DIVWU XO31(459)
371 #define CMPL XO31( 32)
372 #define LHBRX XO31(790)
373 #define LWBRX XO31(534)
374 #define STHBRX XO31(918)
375 #define STWBRX XO31(662)
376 #define MFSPR XO31(339)
377 #define MTSPR XO31(467)
378 #define SRAWI XO31(824)
379 #define NEG XO31(104)
380 #define MFCR XO31( 19)
381 #define CNTLZW XO31( 26)
382 #define NOR XO31(124)
383 #define ANDC XO31( 60)
384 #define ORC XO31(412)
385 #define EQV XO31(284)
386 #define NAND XO31(476)
387 #define ISEL XO31( 15)
389 #define LBZX XO31( 87)
390 #define LHZX XO31(279)
391 #define LHAX XO31(343)
392 #define LWZX XO31( 23)
393 #define STBX XO31(215)
394 #define STHX XO31(407)
395 #define STWX XO31(151)
397 #define SPR(a,b) ((((a)<<5)|(b))<<11)
399 #define CTR SPR(9, 0)
401 #define SLW XO31( 24)
402 #define SRW XO31(536)
403 #define SRAW XO31(792)
406 #define TRAP (TW | TO (31))
408 #define RT(r) ((r)<<21)
409 #define RS(r) ((r)<<21)
410 #define RA(r) ((r)<<16)
411 #define RB(r) ((r)<<11)
412 #define TO(t) ((t)<<21)
413 #define SH(s) ((s)<<11)
414 #define MB(b) ((b)<<6)
415 #define ME(e) ((e)<<1)
416 #define BO(o) ((o)<<21)
420 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
421 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
423 #define BF(n) ((n)<<23)
424 #define BI(n, c) (((c)+((n)*4))<<16)
425 #define BT(n, c) (((c)+((n)*4))<<21)
426 #define BA(n, c) (((c)+((n)*4))<<16)
427 #define BB(n, c) (((c)+((n)*4))<<11)
429 #define BO_COND_TRUE BO (12)
430 #define BO_COND_FALSE BO (4)
431 #define BO_ALWAYS BO (20)
440 static const uint32_t tcg_to_bc
[] = {
441 [TCG_COND_EQ
] = BC
| BI (7, CR_EQ
) | BO_COND_TRUE
,
442 [TCG_COND_NE
] = BC
| BI (7, CR_EQ
) | BO_COND_FALSE
,
443 [TCG_COND_LT
] = BC
| BI (7, CR_LT
) | BO_COND_TRUE
,
444 [TCG_COND_GE
] = BC
| BI (7, CR_LT
) | BO_COND_FALSE
,
445 [TCG_COND_LE
] = BC
| BI (7, CR_GT
) | BO_COND_FALSE
,
446 [TCG_COND_GT
] = BC
| BI (7, CR_GT
) | BO_COND_TRUE
,
447 [TCG_COND_LTU
] = BC
| BI (7, CR_LT
) | BO_COND_TRUE
,
448 [TCG_COND_GEU
] = BC
| BI (7, CR_LT
) | BO_COND_FALSE
,
449 [TCG_COND_LEU
] = BC
| BI (7, CR_GT
) | BO_COND_FALSE
,
450 [TCG_COND_GTU
] = BC
| BI (7, CR_GT
) | BO_COND_TRUE
,
453 static void tcg_out_mov(TCGContext
*s
, TCGType type
, TCGReg ret
, TCGReg arg
)
455 tcg_out32 (s
, OR
| SAB (arg
, ret
, arg
));
458 static void tcg_out_movi(TCGContext
*s
, TCGType type
,
459 TCGReg ret
, tcg_target_long arg
)
461 if (arg
== (int16_t) arg
)
462 tcg_out32 (s
, ADDI
| RT (ret
) | RA (0) | (arg
& 0xffff));
464 tcg_out32 (s
, ADDIS
| RT (ret
) | RA (0) | ((arg
>> 16) & 0xffff));
466 tcg_out32 (s
, ORI
| RS (ret
) | RA (ret
) | (arg
& 0xffff));
470 static void tcg_out_ldst (TCGContext
*s
, int ret
, int addr
,
471 int offset
, int op1
, int op2
)
473 if (offset
== (int16_t) offset
)
474 tcg_out32 (s
, op1
| RT (ret
) | RA (addr
) | (offset
& 0xffff));
476 tcg_out_movi (s
, TCG_TYPE_I32
, 0, offset
);
477 tcg_out32 (s
, op2
| RT (ret
) | RA (addr
) | RB (0));
481 static void tcg_out_b (TCGContext
*s
, int mask
, tcg_target_long target
)
483 tcg_target_long disp
;
485 disp
= target
- (tcg_target_long
) s
->code_ptr
;
486 if ((disp
<< 6) >> 6 == disp
)
487 tcg_out32 (s
, B
| (disp
& 0x3fffffc) | mask
);
489 tcg_out_movi (s
, TCG_TYPE_I32
, 0, (tcg_target_long
) target
);
490 tcg_out32 (s
, MTSPR
| RS (0) | CTR
);
491 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| mask
);
495 static void tcg_out_call (TCGContext
*s
, tcg_target_long arg
, int const_arg
)
502 tcg_out_movi (s
, TCG_TYPE_I32
, reg
, arg
);
506 tcg_out32 (s
, LWZ
| RT (0) | RA (reg
));
507 tcg_out32 (s
, MTSPR
| RA (0) | CTR
);
508 tcg_out32 (s
, LWZ
| RT (2) | RA (reg
) | 4);
509 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| LK
);
512 tcg_out_b (s
, LK
, arg
);
515 tcg_out32 (s
, MTSPR
| RS (arg
) | LR
);
516 tcg_out32 (s
, BCLR
| BO_ALWAYS
| LK
);
521 #if defined(CONFIG_SOFTMMU)
523 #include "../../softmmu_defs.h"
525 /* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
527 static const void * const qemu_ld_helpers
[4] = {
534 /* helper signature: helper_st_mmu(CPUState *env, target_ulong addr,
535 uintxx_t val, int mmu_idx) */
536 static const void * const qemu_st_helpers
[4] = {
544 static void tcg_out_qemu_ld (TCGContext
*s
, const TCGArg
*args
, int opc
)
546 int addr_reg
, data_reg
, data_reg2
, r0
, r1
, rbase
, bswap
;
547 #ifdef CONFIG_SOFTMMU
548 int mem_index
, s_bits
, r2
, ir
;
549 void *label1_ptr
, *label2_ptr
;
550 #if TARGET_LONG_BITS == 64
562 #ifdef CONFIG_SOFTMMU
563 #if TARGET_LONG_BITS == 64
573 tcg_out32 (s
, (RLWINM
576 | SH (32 - (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
))
577 | MB (32 - (CPU_TLB_BITS
+ CPU_TLB_ENTRY_BITS
))
578 | ME (31 - CPU_TLB_ENTRY_BITS
)
581 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (TCG_AREG0
));
585 | offsetof (CPUArchState
, tlb_table
[mem_index
][0].addr_read
)
588 tcg_out32 (s
, (RLWINM
592 | MB ((32 - s_bits
) & 31)
593 | ME (31 - TARGET_PAGE_BITS
)
597 tcg_out32 (s
, CMP
| BF (7) | RA (r2
) | RB (r1
));
598 #if TARGET_LONG_BITS == 64
599 tcg_out32 (s
, LWZ
| RT (r1
) | RA (r0
) | 4);
600 tcg_out32 (s
, CMP
| BF (6) | RA (addr_reg2
) | RB (r1
));
601 tcg_out32 (s
, CRAND
| BT (7, CR_EQ
) | BA (6, CR_EQ
) | BB (7, CR_EQ
));
604 label1_ptr
= s
->code_ptr
;
606 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
611 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, TCG_AREG0
);
612 #if TARGET_LONG_BITS == 32
613 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, addr_reg
);
615 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
618 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, addr_reg2
);
619 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, addr_reg
);
621 tcg_out_movi (s
, TCG_TYPE_I32
, ir
, mem_index
);
623 tcg_out_call (s
, (tcg_target_long
) qemu_ld_helpers
[s_bits
], 1);
626 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (3));
629 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (3));
635 tcg_out_mov (s
, TCG_TYPE_I32
, data_reg
, 3);
639 if (data_reg2
== 4) {
640 tcg_out_mov (s
, TCG_TYPE_I32
, 0, 4);
641 tcg_out_mov (s
, TCG_TYPE_I32
, 4, 3);
642 tcg_out_mov (s
, TCG_TYPE_I32
, 3, 0);
645 tcg_out_mov (s
, TCG_TYPE_I32
, data_reg2
, 3);
646 tcg_out_mov (s
, TCG_TYPE_I32
, 3, 4);
650 if (data_reg
!= 4) tcg_out_mov (s
, TCG_TYPE_I32
, data_reg
, 4);
651 if (data_reg2
!= 3) tcg_out_mov (s
, TCG_TYPE_I32
, data_reg2
, 3);
655 label2_ptr
= s
->code_ptr
;
658 /* label1: fast path */
660 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
663 /* r0 now contains &env->tlb_table[mem_index][index].addr_read */
667 | (offsetof (CPUTLBEntry
, addend
)
668 - offsetof (CPUTLBEntry
, addr_read
))
670 /* r0 = env->tlb_table[mem_index][index].addend */
671 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
672 /* r0 = env->tlb_table[mem_index][index].addend + addr */
674 #else /* !CONFIG_SOFTMMU */
677 rbase
= GUEST_BASE
? TCG_GUEST_BASE_REG
: 0;
680 #ifdef TARGET_WORDS_BIGENDIAN
689 tcg_out32 (s
, LBZX
| TAB (data_reg
, rbase
, r0
));
692 tcg_out32 (s
, LBZX
| TAB (data_reg
, rbase
, r0
));
693 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (data_reg
));
697 tcg_out32 (s
, LHBRX
| TAB (data_reg
, rbase
, r0
));
699 tcg_out32 (s
, LHZX
| TAB (data_reg
, rbase
, r0
));
703 tcg_out32 (s
, LHBRX
| TAB (data_reg
, rbase
, r0
));
704 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (data_reg
));
706 else tcg_out32 (s
, LHAX
| TAB (data_reg
, rbase
, r0
));
710 tcg_out32 (s
, LWBRX
| TAB (data_reg
, rbase
, r0
));
712 tcg_out32 (s
, LWZX
| TAB (data_reg
, rbase
, r0
));
716 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
717 tcg_out32 (s
, LWBRX
| TAB (data_reg
, rbase
, r0
));
718 tcg_out32 (s
, LWBRX
| TAB (data_reg2
, rbase
, r1
));
721 #ifdef CONFIG_USE_GUEST_BASE
722 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
723 tcg_out32 (s
, LWZX
| TAB (data_reg2
, rbase
, r0
));
724 tcg_out32 (s
, LWZX
| TAB (data_reg
, rbase
, r1
));
726 if (r0
== data_reg2
) {
727 tcg_out32 (s
, LWZ
| RT (0) | RA (r0
));
728 tcg_out32 (s
, LWZ
| RT (data_reg
) | RA (r0
) | 4);
729 tcg_out_mov (s
, TCG_TYPE_I32
, data_reg2
, 0);
732 tcg_out32 (s
, LWZ
| RT (data_reg2
) | RA (r0
));
733 tcg_out32 (s
, LWZ
| RT (data_reg
) | RA (r0
) | 4);
740 #ifdef CONFIG_SOFTMMU
741 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
745 static void tcg_out_qemu_st (TCGContext
*s
, const TCGArg
*args
, int opc
)
747 int addr_reg
, r0
, r1
, data_reg
, data_reg2
, bswap
, rbase
;
748 #ifdef CONFIG_SOFTMMU
749 int mem_index
, r2
, ir
;
750 void *label1_ptr
, *label2_ptr
;
751 #if TARGET_LONG_BITS == 64
763 #ifdef CONFIG_SOFTMMU
764 #if TARGET_LONG_BITS == 64
773 tcg_out32 (s
, (RLWINM
776 | SH (32 - (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
))
777 | MB (32 - (CPU_TLB_ENTRY_BITS
+ CPU_TLB_BITS
))
778 | ME (31 - CPU_TLB_ENTRY_BITS
)
781 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (TCG_AREG0
));
785 | offsetof (CPUArchState
, tlb_table
[mem_index
][0].addr_write
)
788 tcg_out32 (s
, (RLWINM
792 | MB ((32 - opc
) & 31)
793 | ME (31 - TARGET_PAGE_BITS
)
797 tcg_out32 (s
, CMP
| (7 << 23) | RA (r2
) | RB (r1
));
798 #if TARGET_LONG_BITS == 64
799 tcg_out32 (s
, LWZ
| RT (r1
) | RA (r0
) | 4);
800 tcg_out32 (s
, CMP
| BF (6) | RA (addr_reg2
) | RB (r1
));
801 tcg_out32 (s
, CRAND
| BT (7, CR_EQ
) | BA (6, CR_EQ
) | BB (7, CR_EQ
));
804 label1_ptr
= s
->code_ptr
;
806 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
811 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, TCG_AREG0
);
812 #if TARGET_LONG_BITS == 32
813 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, addr_reg
);
815 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
818 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, addr_reg2
);
819 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, addr_reg
);
824 tcg_out32 (s
, (RLWINM
832 tcg_out32 (s
, (RLWINM
840 tcg_out_mov (s
, TCG_TYPE_I32
, ir
, data_reg
);
843 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
846 tcg_out_mov (s
, TCG_TYPE_I32
, ir
++, data_reg2
);
847 tcg_out_mov (s
, TCG_TYPE_I32
, ir
, data_reg
);
852 tcg_out_movi (s
, TCG_TYPE_I32
, ir
, mem_index
);
853 tcg_out_call (s
, (tcg_target_long
) qemu_st_helpers
[opc
], 1);
854 label2_ptr
= s
->code_ptr
;
857 /* label1: fast path */
859 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
865 | (offsetof (CPUTLBEntry
, addend
)
866 - offsetof (CPUTLBEntry
, addr_write
))
868 /* r0 = env->tlb_table[mem_index][index].addend */
869 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
870 /* r0 = env->tlb_table[mem_index][index].addend + addr */
872 #else /* !CONFIG_SOFTMMU */
875 rbase
= GUEST_BASE
? TCG_GUEST_BASE_REG
: 0;
878 #ifdef TARGET_WORDS_BIGENDIAN
885 tcg_out32 (s
, STBX
| SAB (data_reg
, rbase
, r0
));
889 tcg_out32 (s
, STHBRX
| SAB (data_reg
, rbase
, r0
));
891 tcg_out32 (s
, STHX
| SAB (data_reg
, rbase
, r0
));
895 tcg_out32 (s
, STWBRX
| SAB (data_reg
, rbase
, r0
));
897 tcg_out32 (s
, STWX
| SAB (data_reg
, rbase
, r0
));
901 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
902 tcg_out32 (s
, STWBRX
| SAB (data_reg
, rbase
, r0
));
903 tcg_out32 (s
, STWBRX
| SAB (data_reg2
, rbase
, r1
));
906 #ifdef CONFIG_USE_GUEST_BASE
907 tcg_out32 (s
, STWX
| SAB (data_reg2
, rbase
, r0
));
908 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
909 tcg_out32 (s
, STWX
| SAB (data_reg
, rbase
, r1
));
911 tcg_out32 (s
, STW
| RS (data_reg2
) | RA (r0
));
912 tcg_out32 (s
, STW
| RS (data_reg
) | RA (r0
) | 4);
918 #ifdef CONFIG_SOFTMMU
919 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
923 static void tcg_target_qemu_prologue (TCGContext
*s
)
929 + TCG_STATIC_CALL_ARGS_SIZE
930 + ARRAY_SIZE (tcg_target_callee_save_regs
) * 4
931 + CPU_TEMP_BUF_NLONGS
* sizeof(long)
933 frame_size
= (frame_size
+ 15) & ~15;
935 tcg_set_frame(s
, TCG_REG_CALL_STACK
, frame_size
936 - CPU_TEMP_BUF_NLONGS
* sizeof(long),
937 CPU_TEMP_BUF_NLONGS
* sizeof(long));
943 /* First emit adhoc function descriptor */
944 addr
= (uint32_t) s
->code_ptr
+ 12;
945 tcg_out32 (s
, addr
); /* entry point */
946 s
->code_ptr
+= 8; /* skip TOC and environment pointer */
949 tcg_out32 (s
, MFSPR
| RT (0) | LR
);
950 tcg_out32 (s
, STWU
| RS (1) | RA (1) | (-frame_size
& 0xffff));
951 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
953 | RS (tcg_target_callee_save_regs
[i
])
955 | (i
* 4 + LINKAGE_AREA_SIZE
+ TCG_STATIC_CALL_ARGS_SIZE
)
958 tcg_out32 (s
, STW
| RS (0) | RA (1) | (frame_size
+ LR_OFFSET
));
960 #ifdef CONFIG_USE_GUEST_BASE
962 tcg_out_movi (s
, TCG_TYPE_I32
, TCG_GUEST_BASE_REG
, GUEST_BASE
);
963 tcg_regset_set_reg(s
->reserved_regs
, TCG_GUEST_BASE_REG
);
967 tcg_out_mov (s
, TCG_TYPE_PTR
, TCG_AREG0
, tcg_target_call_iarg_regs
[0]);
968 tcg_out32 (s
, MTSPR
| RS (tcg_target_call_iarg_regs
[1]) | CTR
);
969 tcg_out32 (s
, BCCTR
| BO_ALWAYS
);
970 tb_ret_addr
= s
->code_ptr
;
972 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
974 | RT (tcg_target_callee_save_regs
[i
])
976 | (i
* 4 + LINKAGE_AREA_SIZE
+ TCG_STATIC_CALL_ARGS_SIZE
)
979 tcg_out32 (s
, LWZ
| RT (0) | RA (1) | (frame_size
+ LR_OFFSET
));
980 tcg_out32 (s
, MTSPR
| RS (0) | LR
);
981 tcg_out32 (s
, ADDI
| RT (1) | RA (1) | frame_size
);
982 tcg_out32 (s
, BCLR
| BO_ALWAYS
);
985 static void tcg_out_ld (TCGContext
*s
, TCGType type
, TCGReg ret
, TCGReg arg1
,
986 tcg_target_long arg2
)
988 tcg_out_ldst (s
, ret
, arg1
, arg2
, LWZ
, LWZX
);
991 static void tcg_out_st (TCGContext
*s
, TCGType type
, TCGReg arg
, TCGReg arg1
,
992 tcg_target_long arg2
)
994 tcg_out_ldst (s
, arg
, arg1
, arg2
, STW
, STWX
);
997 static void ppc_addi (TCGContext
*s
, int rt
, int ra
, tcg_target_long si
)
1002 if (si
== (int16_t) si
)
1003 tcg_out32 (s
, ADDI
| RT (rt
) | RA (ra
) | (si
& 0xffff));
1005 uint16_t h
= ((si
>> 16) & 0xffff) + ((uint16_t) si
>> 15);
1006 tcg_out32 (s
, ADDIS
| RT (rt
) | RA (ra
) | h
);
1007 tcg_out32 (s
, ADDI
| RT (rt
) | RA (rt
) | (si
& 0xffff));
1011 static void tcg_out_cmp (TCGContext
*s
, int cond
, TCGArg arg1
, TCGArg arg2
,
1012 int const_arg2
, int cr
)
1021 if ((int16_t) arg2
== arg2
) {
1026 else if ((uint16_t) arg2
== arg2
) {
1041 if ((int16_t) arg2
== arg2
) {
1056 if ((uint16_t) arg2
== arg2
) {
1072 tcg_out32 (s
, op
| RA (arg1
) | (arg2
& 0xffff));
1075 tcg_out_movi (s
, TCG_TYPE_I32
, 0, arg2
);
1076 tcg_out32 (s
, op
| RA (arg1
) | RB (0));
1079 tcg_out32 (s
, op
| RA (arg1
) | RB (arg2
));
1084 static void tcg_out_bc (TCGContext
*s
, int bc
, int label_index
)
1086 TCGLabel
*l
= &s
->labels
[label_index
];
1089 tcg_out32 (s
, bc
| reloc_pc14_val (s
->code_ptr
, l
->u
.value
));
1091 uint16_t val
= *(uint16_t *) &s
->code_ptr
[2];
1093 /* Thanks to Andrzej Zaborowski */
1094 tcg_out32 (s
, bc
| (val
& 0xfffc));
1095 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL14
, label_index
, 0);
1099 static void tcg_out_cr7eq_from_cond (TCGContext
*s
, const TCGArg
*args
,
1100 const int *const_args
)
1102 TCGCond cond
= args
[4];
1104 struct { int bit1
; int bit2
; int cond2
; } bits
[] = {
1105 [TCG_COND_LT
] = { CR_LT
, CR_LT
, TCG_COND_LT
},
1106 [TCG_COND_LE
] = { CR_LT
, CR_GT
, TCG_COND_LT
},
1107 [TCG_COND_GT
] = { CR_GT
, CR_GT
, TCG_COND_GT
},
1108 [TCG_COND_GE
] = { CR_GT
, CR_LT
, TCG_COND_GT
},
1109 [TCG_COND_LTU
] = { CR_LT
, CR_LT
, TCG_COND_LTU
},
1110 [TCG_COND_LEU
] = { CR_LT
, CR_GT
, TCG_COND_LTU
},
1111 [TCG_COND_GTU
] = { CR_GT
, CR_GT
, TCG_COND_GTU
},
1112 [TCG_COND_GEU
] = { CR_GT
, CR_LT
, TCG_COND_GTU
},
1113 }, *b
= &bits
[cond
];
1118 op
= (cond
== TCG_COND_EQ
) ? CRAND
: CRNAND
;
1119 tcg_out_cmp (s
, cond
, args
[0], args
[2], const_args
[2], 6);
1120 tcg_out_cmp (s
, cond
, args
[1], args
[3], const_args
[3], 7);
1121 tcg_out32 (s
, op
| BT (7, CR_EQ
) | BA (6, CR_EQ
) | BB (7, CR_EQ
));
1131 op
= (b
->bit1
!= b
->bit2
) ? CRANDC
: CRAND
;
1132 tcg_out_cmp (s
, b
->cond2
, args
[1], args
[3], const_args
[3], 5);
1133 tcg_out_cmp (s
, tcg_unsigned_cond (cond
), args
[0], args
[2],
1135 tcg_out32 (s
, op
| BT (7, CR_EQ
) | BA (5, CR_EQ
) | BB (7, b
->bit2
));
1136 tcg_out32 (s
, CROR
| BT (7, CR_EQ
) | BA (5, b
->bit1
) | BB (7, CR_EQ
));
1143 static void tcg_out_setcond (TCGContext
*s
, TCGCond cond
, TCGArg arg0
,
1144 TCGArg arg1
, TCGArg arg2
, int const_arg2
)
1156 if ((uint16_t) arg2
== arg2
) {
1157 tcg_out32 (s
, XORI
| RS (arg1
) | RA (0) | arg2
);
1160 tcg_out_movi (s
, TCG_TYPE_I32
, 0, arg2
);
1161 tcg_out32 (s
, XOR
| SAB (arg1
, 0, 0));
1167 tcg_out32 (s
, XOR
| SAB (arg1
, 0, arg2
));
1169 tcg_out32 (s
, CNTLZW
| RS (arg
) | RA (0));
1170 tcg_out32 (s
, (RLWINM
1187 if ((uint16_t) arg2
== arg2
) {
1188 tcg_out32 (s
, XORI
| RS (arg1
) | RA (0) | arg2
);
1191 tcg_out_movi (s
, TCG_TYPE_I32
, 0, arg2
);
1192 tcg_out32 (s
, XOR
| SAB (arg1
, 0, 0));
1198 tcg_out32 (s
, XOR
| SAB (arg1
, 0, arg2
));
1201 if (arg
== arg1
&& arg1
== arg0
) {
1202 tcg_out32 (s
, ADDIC
| RT (0) | RA (arg
) | 0xffff);
1203 tcg_out32 (s
, SUBFE
| TAB (arg0
, 0, arg
));
1206 tcg_out32 (s
, ADDIC
| RT (arg0
) | RA (arg
) | 0xffff);
1207 tcg_out32 (s
, SUBFE
| TAB (arg0
, arg0
, arg
));
1226 crop
= CRNOR
| BT (7, CR_EQ
) | BA (7, CR_LT
) | BB (7, CR_LT
);
1232 crop
= CRNOR
| BT (7, CR_EQ
) | BA (7, CR_GT
) | BB (7, CR_GT
);
1234 tcg_out_cmp (s
, cond
, arg1
, arg2
, const_arg2
, 7);
1235 if (crop
) tcg_out32 (s
, crop
);
1236 tcg_out32 (s
, MFCR
| RT (0));
1237 tcg_out32 (s
, (RLWINM
1252 static void tcg_out_setcond2 (TCGContext
*s
, const TCGArg
*args
,
1253 const int *const_args
)
1255 tcg_out_cr7eq_from_cond (s
, args
+ 1, const_args
+ 1);
1256 tcg_out32 (s
, MFCR
| RT (0));
1257 tcg_out32 (s
, (RLWINM
1267 static void tcg_out_movcond (TCGContext
*s
, TCGCond cond
,
1269 TCGArg c1
, TCGArg c2
,
1270 TCGArg v1
, TCGArg v2
,
1273 tcg_out_cmp (s
, cond
, c1
, c2
, const_c2
, 7);
1276 /* At least here on 7747A bit twiddling hacks are outperformed
1277 by jumpy code (the testing was not scientific) */
1279 cond
= tcg_invert_cond (cond
);
1284 tcg_out_mov (s
, TCG_TYPE_I32
, dest
, v1
);
1287 /* Branch forward over one insn */
1288 tcg_out32 (s
, tcg_to_bc
[cond
] | 8);
1289 tcg_out_mov (s
, TCG_TYPE_I32
, dest
, v2
);
1292 /* isel version, "if (1)" above should be replaced once a way
1293 to figure out availability of isel on the underlying
1294 hardware is found */
1299 tab
= TAB (dest
, v1
, v2
);
1303 tab
= TAB (dest
, v2
, v1
);
1308 tab
= TAB (dest
, v1
, v2
);
1313 tab
= TAB (dest
, v2
, v1
);
1318 tab
= TAB (dest
, v2
, v1
);
1323 tab
= TAB (dest
, v1
, v2
);
1329 tcg_out32 (s
, ISEL
| tab
| ((bc
+ 28) << 6));
1333 static void tcg_out_brcond (TCGContext
*s
, TCGCond cond
,
1334 TCGArg arg1
, TCGArg arg2
, int const_arg2
,
1337 tcg_out_cmp (s
, cond
, arg1
, arg2
, const_arg2
, 7);
1338 tcg_out_bc (s
, tcg_to_bc
[cond
], label_index
);
1341 /* XXX: we implement it at the target level to avoid having to
1342 handle cross basic blocks temporaries */
1343 static void tcg_out_brcond2 (TCGContext
*s
, const TCGArg
*args
,
1344 const int *const_args
)
1346 tcg_out_cr7eq_from_cond (s
, args
, const_args
);
1347 tcg_out_bc (s
, (BC
| BI (7, CR_EQ
) | BO_COND_TRUE
), args
[5]);
1350 void ppc_tb_set_jmp_target (unsigned long jmp_addr
, unsigned long addr
)
1353 long disp
= addr
- jmp_addr
;
1354 unsigned long patch_size
;
1356 ptr
= (uint32_t *)jmp_addr
;
1358 if ((disp
<< 6) >> 6 != disp
) {
1359 ptr
[0] = 0x3c000000 | (addr
>> 16); /* lis 0,addr@ha */
1360 ptr
[1] = 0x60000000 | (addr
& 0xffff); /* la 0,addr@l(0) */
1361 ptr
[2] = 0x7c0903a6; /* mtctr 0 */
1362 ptr
[3] = 0x4e800420; /* brctr */
1365 /* patch the branch destination */
1367 *ptr
= 0x48000000 | (disp
& 0x03fffffc); /* b disp */
1370 ptr
[0] = 0x60000000; /* nop */
1371 ptr
[1] = 0x60000000;
1372 ptr
[2] = 0x60000000;
1373 ptr
[3] = 0x60000000;
1378 flush_icache_range(jmp_addr
, jmp_addr
+ patch_size
);
1381 static void tcg_out_op(TCGContext
*s
, TCGOpcode opc
, const TCGArg
*args
,
1382 const int *const_args
)
1385 case INDEX_op_exit_tb
:
1386 tcg_out_movi (s
, TCG_TYPE_I32
, TCG_REG_R3
, args
[0]);
1387 tcg_out_b (s
, 0, (tcg_target_long
) tb_ret_addr
);
1389 case INDEX_op_goto_tb
:
1390 if (s
->tb_jmp_offset
) {
1391 /* direct jump method */
1393 s
->tb_jmp_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1399 s
->tb_next_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1403 TCGLabel
*l
= &s
->labels
[args
[0]];
1406 tcg_out_b (s
, 0, l
->u
.value
);
1409 uint32_t val
= *(uint32_t *) s
->code_ptr
;
1411 /* Thanks to Andrzej Zaborowski */
1412 tcg_out32 (s
, B
| (val
& 0x3fffffc));
1413 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL24
, args
[0], 0);
1418 tcg_out_call (s
, args
[0], const_args
[0]);
1420 case INDEX_op_movi_i32
:
1421 tcg_out_movi(s
, TCG_TYPE_I32
, args
[0], args
[1]);
1423 case INDEX_op_ld8u_i32
:
1424 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1426 case INDEX_op_ld8s_i32
:
1427 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1428 tcg_out32 (s
, EXTSB
| RS (args
[0]) | RA (args
[0]));
1430 case INDEX_op_ld16u_i32
:
1431 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHZ
, LHZX
);
1433 case INDEX_op_ld16s_i32
:
1434 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHA
, LHAX
);
1436 case INDEX_op_ld_i32
:
1437 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LWZ
, LWZX
);
1439 case INDEX_op_st8_i32
:
1440 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STB
, STBX
);
1442 case INDEX_op_st16_i32
:
1443 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STH
, STHX
);
1445 case INDEX_op_st_i32
:
1446 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STW
, STWX
);
1449 case INDEX_op_add_i32
:
1451 ppc_addi (s
, args
[0], args
[1], args
[2]);
1453 tcg_out32 (s
, ADD
| TAB (args
[0], args
[1], args
[2]));
1455 case INDEX_op_sub_i32
:
1457 ppc_addi (s
, args
[0], args
[1], -args
[2]);
1459 tcg_out32 (s
, SUBF
| TAB (args
[0], args
[2], args
[1]));
1462 case INDEX_op_and_i32
:
1463 if (const_args
[2]) {
1469 tcg_out_movi (s
, TCG_TYPE_I32
, args
[0], 0);
1479 if ((t
& (t
- 1)) == 0) {
1482 if ((c
& 0x80000001) == 0x80000001) {
1497 tcg_out32 (s
, (RLWINM
1507 #endif /* !__PPU__ */
1509 if ((c
& 0xffff) == c
)
1510 tcg_out32 (s
, ANDI
| RS (args
[1]) | RA (args
[0]) | c
);
1511 else if ((c
& 0xffff0000) == c
)
1512 tcg_out32 (s
, ANDIS
| RS (args
[1]) | RA (args
[0])
1513 | ((c
>> 16) & 0xffff));
1515 tcg_out_movi (s
, TCG_TYPE_I32
, 0, c
);
1516 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], 0));
1521 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], args
[2]));
1523 case INDEX_op_or_i32
:
1524 if (const_args
[2]) {
1525 if (args
[2] & 0xffff) {
1526 tcg_out32 (s
, ORI
| RS (args
[1]) | RA (args
[0])
1527 | (args
[2] & 0xffff));
1529 tcg_out32 (s
, ORIS
| RS (args
[0]) | RA (args
[0])
1530 | ((args
[2] >> 16) & 0xffff));
1533 tcg_out32 (s
, ORIS
| RS (args
[1]) | RA (args
[0])
1534 | ((args
[2] >> 16) & 0xffff));
1538 tcg_out32 (s
, OR
| SAB (args
[1], args
[0], args
[2]));
1540 case INDEX_op_xor_i32
:
1541 if (const_args
[2]) {
1542 if ((args
[2] & 0xffff) == args
[2])
1543 tcg_out32 (s
, XORI
| RS (args
[1]) | RA (args
[0])
1544 | (args
[2] & 0xffff));
1545 else if ((args
[2] & 0xffff0000) == args
[2])
1546 tcg_out32 (s
, XORIS
| RS (args
[1]) | RA (args
[0])
1547 | ((args
[2] >> 16) & 0xffff));
1549 tcg_out_movi (s
, TCG_TYPE_I32
, 0, args
[2]);
1550 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], 0));
1554 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], args
[2]));
1556 case INDEX_op_andc_i32
:
1557 tcg_out32 (s
, ANDC
| SAB (args
[1], args
[0], args
[2]));
1559 case INDEX_op_orc_i32
:
1560 tcg_out32 (s
, ORC
| SAB (args
[1], args
[0], args
[2]));
1562 case INDEX_op_eqv_i32
:
1563 tcg_out32 (s
, EQV
| SAB (args
[1], args
[0], args
[2]));
1565 case INDEX_op_nand_i32
:
1566 tcg_out32 (s
, NAND
| SAB (args
[1], args
[0], args
[2]));
1568 case INDEX_op_nor_i32
:
1569 tcg_out32 (s
, NOR
| SAB (args
[1], args
[0], args
[2]));
1572 case INDEX_op_mul_i32
:
1573 if (const_args
[2]) {
1574 if (args
[2] == (int16_t) args
[2])
1575 tcg_out32 (s
, MULLI
| RT (args
[0]) | RA (args
[1])
1576 | (args
[2] & 0xffff));
1578 tcg_out_movi (s
, TCG_TYPE_I32
, 0, args
[2]);
1579 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], 0));
1583 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], args
[2]));
1586 case INDEX_op_div_i32
:
1587 tcg_out32 (s
, DIVW
| TAB (args
[0], args
[1], args
[2]));
1590 case INDEX_op_divu_i32
:
1591 tcg_out32 (s
, DIVWU
| TAB (args
[0], args
[1], args
[2]));
1594 case INDEX_op_rem_i32
:
1595 tcg_out32 (s
, DIVW
| TAB (0, args
[1], args
[2]));
1596 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1597 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1600 case INDEX_op_remu_i32
:
1601 tcg_out32 (s
, DIVWU
| TAB (0, args
[1], args
[2]));
1602 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1603 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1606 case INDEX_op_mulu2_i32
:
1607 if (args
[0] == args
[2] || args
[0] == args
[3]) {
1608 tcg_out32 (s
, MULLW
| TAB (0, args
[2], args
[3]));
1609 tcg_out32 (s
, MULHWU
| TAB (args
[1], args
[2], args
[3]));
1610 tcg_out_mov (s
, TCG_TYPE_I32
, args
[0], 0);
1613 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[2], args
[3]));
1614 tcg_out32 (s
, MULHWU
| TAB (args
[1], args
[2], args
[3]));
1618 case INDEX_op_shl_i32
:
1619 if (const_args
[2]) {
1620 tcg_out32 (s
, (RLWINM
1630 tcg_out32 (s
, SLW
| SAB (args
[1], args
[0], args
[2]));
1632 case INDEX_op_shr_i32
:
1633 if (const_args
[2]) {
1634 tcg_out32 (s
, (RLWINM
1644 tcg_out32 (s
, SRW
| SAB (args
[1], args
[0], args
[2]));
1646 case INDEX_op_sar_i32
:
1648 tcg_out32 (s
, SRAWI
| RS (args
[1]) | RA (args
[0]) | SH (args
[2]));
1650 tcg_out32 (s
, SRAW
| SAB (args
[1], args
[0], args
[2]));
1652 case INDEX_op_rotl_i32
:
1659 | (const_args
[2] ? RLWINM
| SH (args
[2])
1660 : RLWNM
| RB (args
[2]))
1665 case INDEX_op_rotr_i32
:
1666 if (const_args
[2]) {
1668 tcg_out_mov (s
, TCG_TYPE_I32
, args
[0], args
[1]);
1671 tcg_out32 (s
, RLWINM
1681 tcg_out32 (s
, SUBFIC
| RT (0) | RA (args
[2]) | 32);
1692 case INDEX_op_add2_i32
:
1693 if (args
[0] == args
[3] || args
[0] == args
[5]) {
1694 tcg_out32 (s
, ADDC
| TAB (0, args
[2], args
[4]));
1695 tcg_out32 (s
, ADDE
| TAB (args
[1], args
[3], args
[5]));
1696 tcg_out_mov (s
, TCG_TYPE_I32
, args
[0], 0);
1699 tcg_out32 (s
, ADDC
| TAB (args
[0], args
[2], args
[4]));
1700 tcg_out32 (s
, ADDE
| TAB (args
[1], args
[3], args
[5]));
1703 case INDEX_op_sub2_i32
:
1704 if (args
[0] == args
[3] || args
[0] == args
[5]) {
1705 tcg_out32 (s
, SUBFC
| TAB (0, args
[4], args
[2]));
1706 tcg_out32 (s
, SUBFE
| TAB (args
[1], args
[5], args
[3]));
1707 tcg_out_mov (s
, TCG_TYPE_I32
, args
[0], 0);
1710 tcg_out32 (s
, SUBFC
| TAB (args
[0], args
[4], args
[2]));
1711 tcg_out32 (s
, SUBFE
| TAB (args
[1], args
[5], args
[3]));
1715 case INDEX_op_brcond_i32
:
1720 args[3] = r1 is const
1721 args[4] = label_index
1723 tcg_out_brcond (s
, args
[2], args
[0], args
[1], const_args
[1], args
[3]);
1725 case INDEX_op_brcond2_i32
:
1726 tcg_out_brcond2(s
, args
, const_args
);
1729 case INDEX_op_neg_i32
:
1730 tcg_out32 (s
, NEG
| RT (args
[0]) | RA (args
[1]));
1733 case INDEX_op_not_i32
:
1734 tcg_out32 (s
, NOR
| SAB (args
[1], args
[0], args
[1]));
1737 case INDEX_op_qemu_ld8u
:
1738 tcg_out_qemu_ld(s
, args
, 0);
1740 case INDEX_op_qemu_ld8s
:
1741 tcg_out_qemu_ld(s
, args
, 0 | 4);
1743 case INDEX_op_qemu_ld16u
:
1744 tcg_out_qemu_ld(s
, args
, 1);
1746 case INDEX_op_qemu_ld16s
:
1747 tcg_out_qemu_ld(s
, args
, 1 | 4);
1749 case INDEX_op_qemu_ld32
:
1750 tcg_out_qemu_ld(s
, args
, 2);
1752 case INDEX_op_qemu_ld64
:
1753 tcg_out_qemu_ld(s
, args
, 3);
1755 case INDEX_op_qemu_st8
:
1756 tcg_out_qemu_st(s
, args
, 0);
1758 case INDEX_op_qemu_st16
:
1759 tcg_out_qemu_st(s
, args
, 1);
1761 case INDEX_op_qemu_st32
:
1762 tcg_out_qemu_st(s
, args
, 2);
1764 case INDEX_op_qemu_st64
:
1765 tcg_out_qemu_st(s
, args
, 3);
1768 case INDEX_op_ext8s_i32
:
1769 tcg_out32 (s
, EXTSB
| RS (args
[1]) | RA (args
[0]));
1771 case INDEX_op_ext8u_i32
:
1772 tcg_out32 (s
, RLWINM
1780 case INDEX_op_ext16s_i32
:
1781 tcg_out32 (s
, EXTSH
| RS (args
[1]) | RA (args
[0]));
1783 case INDEX_op_ext16u_i32
:
1784 tcg_out32 (s
, RLWINM
1793 case INDEX_op_setcond_i32
:
1794 tcg_out_setcond (s
, args
[3], args
[0], args
[1], args
[2], const_args
[2]);
1796 case INDEX_op_setcond2_i32
:
1797 tcg_out_setcond2 (s
, args
, const_args
);
1800 case INDEX_op_bswap16_i32
:
1801 /* Stolen from gcc's builtin_bswap16 */
1805 /* r0 = (a1 << 8) & 0xff00 # 00d0 */
1806 tcg_out32 (s
, RLWINM
1814 /* a0 = rotate_left (a1, 24) & 0xff # 000c */
1815 tcg_out32 (s
, RLWINM
1823 /* a0 = a0 | r0 # 00dc */
1824 tcg_out32 (s
, OR
| SAB (0, args
[0], args
[0]));
1827 case INDEX_op_bswap32_i32
:
1828 /* Stolen from gcc's builtin_bswap32 */
1832 /* a1 = args[1] # abcd */
1834 if (a0
== args
[1]) {
1838 /* a0 = rotate_left (a1, 8) # bcda */
1839 tcg_out32 (s
, RLWINM
1847 /* a0 = (a0 & ~0xff000000) | ((a1 << 24) & 0xff000000) # dcda */
1848 tcg_out32 (s
, RLWIMI
1856 /* a0 = (a0 & ~0x0000ff00) | ((a1 << 24) & 0x0000ff00) # dcba */
1857 tcg_out32 (s
, RLWIMI
1866 tcg_out_mov (s
, TCG_TYPE_I32
, args
[0], a0
);
1871 case INDEX_op_deposit_i32
:
1872 tcg_out32 (s
, RLWIMI
1876 | MB (32 - args
[3] - args
[4])
1881 case INDEX_op_movcond_i32
:
1882 tcg_out_movcond (s
, args
[5], args
[0],
1894 static const TCGTargetOpDef ppc_op_defs
[] = {
1895 { INDEX_op_exit_tb
, { } },
1896 { INDEX_op_goto_tb
, { } },
1897 { INDEX_op_call
, { "ri" } },
1898 { INDEX_op_br
, { } },
1900 { INDEX_op_mov_i32
, { "r", "r" } },
1901 { INDEX_op_movi_i32
, { "r" } },
1902 { INDEX_op_ld8u_i32
, { "r", "r" } },
1903 { INDEX_op_ld8s_i32
, { "r", "r" } },
1904 { INDEX_op_ld16u_i32
, { "r", "r" } },
1905 { INDEX_op_ld16s_i32
, { "r", "r" } },
1906 { INDEX_op_ld_i32
, { "r", "r" } },
1907 { INDEX_op_st8_i32
, { "r", "r" } },
1908 { INDEX_op_st16_i32
, { "r", "r" } },
1909 { INDEX_op_st_i32
, { "r", "r" } },
1911 { INDEX_op_add_i32
, { "r", "r", "ri" } },
1912 { INDEX_op_mul_i32
, { "r", "r", "ri" } },
1913 { INDEX_op_div_i32
, { "r", "r", "r" } },
1914 { INDEX_op_divu_i32
, { "r", "r", "r" } },
1915 { INDEX_op_rem_i32
, { "r", "r", "r" } },
1916 { INDEX_op_remu_i32
, { "r", "r", "r" } },
1917 { INDEX_op_mulu2_i32
, { "r", "r", "r", "r" } },
1918 { INDEX_op_sub_i32
, { "r", "r", "ri" } },
1919 { INDEX_op_and_i32
, { "r", "r", "ri" } },
1920 { INDEX_op_or_i32
, { "r", "r", "ri" } },
1921 { INDEX_op_xor_i32
, { "r", "r", "ri" } },
1923 { INDEX_op_shl_i32
, { "r", "r", "ri" } },
1924 { INDEX_op_shr_i32
, { "r", "r", "ri" } },
1925 { INDEX_op_sar_i32
, { "r", "r", "ri" } },
1927 { INDEX_op_rotl_i32
, { "r", "r", "ri" } },
1928 { INDEX_op_rotr_i32
, { "r", "r", "ri" } },
1930 { INDEX_op_brcond_i32
, { "r", "ri" } },
1932 { INDEX_op_add2_i32
, { "r", "r", "r", "r", "r", "r" } },
1933 { INDEX_op_sub2_i32
, { "r", "r", "r", "r", "r", "r" } },
1934 { INDEX_op_brcond2_i32
, { "r", "r", "r", "r" } },
1936 { INDEX_op_neg_i32
, { "r", "r" } },
1937 { INDEX_op_not_i32
, { "r", "r" } },
1939 { INDEX_op_andc_i32
, { "r", "r", "r" } },
1940 { INDEX_op_orc_i32
, { "r", "r", "r" } },
1941 { INDEX_op_eqv_i32
, { "r", "r", "r" } },
1942 { INDEX_op_nand_i32
, { "r", "r", "r" } },
1943 { INDEX_op_nor_i32
, { "r", "r", "r" } },
1945 { INDEX_op_setcond_i32
, { "r", "r", "ri" } },
1946 { INDEX_op_setcond2_i32
, { "r", "r", "r", "ri", "ri" } },
1948 { INDEX_op_bswap16_i32
, { "r", "r" } },
1949 { INDEX_op_bswap32_i32
, { "r", "r" } },
1951 #if TARGET_LONG_BITS == 32
1952 { INDEX_op_qemu_ld8u
, { "r", "L" } },
1953 { INDEX_op_qemu_ld8s
, { "r", "L" } },
1954 { INDEX_op_qemu_ld16u
, { "r", "L" } },
1955 { INDEX_op_qemu_ld16s
, { "r", "L" } },
1956 { INDEX_op_qemu_ld32
, { "r", "L" } },
1957 { INDEX_op_qemu_ld64
, { "r", "r", "L" } },
1959 { INDEX_op_qemu_st8
, { "K", "K" } },
1960 { INDEX_op_qemu_st16
, { "K", "K" } },
1961 { INDEX_op_qemu_st32
, { "K", "K" } },
1962 { INDEX_op_qemu_st64
, { "M", "M", "M" } },
1964 { INDEX_op_qemu_ld8u
, { "r", "L", "L" } },
1965 { INDEX_op_qemu_ld8s
, { "r", "L", "L" } },
1966 { INDEX_op_qemu_ld16u
, { "r", "L", "L" } },
1967 { INDEX_op_qemu_ld16s
, { "r", "L", "L" } },
1968 { INDEX_op_qemu_ld32
, { "r", "L", "L" } },
1969 { INDEX_op_qemu_ld64
, { "r", "L", "L", "L" } },
1971 { INDEX_op_qemu_st8
, { "K", "K", "K" } },
1972 { INDEX_op_qemu_st16
, { "K", "K", "K" } },
1973 { INDEX_op_qemu_st32
, { "K", "K", "K" } },
1974 { INDEX_op_qemu_st64
, { "M", "M", "M", "M" } },
1977 { INDEX_op_ext8s_i32
, { "r", "r" } },
1978 { INDEX_op_ext8u_i32
, { "r", "r" } },
1979 { INDEX_op_ext16s_i32
, { "r", "r" } },
1980 { INDEX_op_ext16u_i32
, { "r", "r" } },
1982 { INDEX_op_deposit_i32
, { "r", "0", "r" } },
1983 { INDEX_op_movcond_i32
, { "r", "r", "ri", "r", "r" } },
1988 static void tcg_target_init(TCGContext
*s
)
1990 tcg_regset_set32(tcg_target_available_regs
[TCG_TYPE_I32
], 0, 0xffffffff);
1991 tcg_regset_set32(tcg_target_call_clobber_regs
, 0,
1993 #ifdef TCG_TARGET_CALL_DARWIN
2003 (1 << TCG_REG_R10
) |
2004 (1 << TCG_REG_R11
) |
2008 tcg_regset_clear(s
->reserved_regs
);
2009 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R0
);
2010 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R1
);
2011 #ifndef TCG_TARGET_CALL_DARWIN
2012 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R2
);
2015 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R13
);
2018 tcg_add_target_add_op_defs(ppc_op_defs
);