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 #define TCG_CT_CONST_U32 0x100
27 static uint8_t *tb_ret_addr
;
31 #if TARGET_LONG_BITS == 32
43 #ifdef CONFIG_USE_GUEST_BASE
44 #define TCG_GUEST_BASE_REG 30
46 #define TCG_GUEST_BASE_REG 0
50 static const char * const tcg_target_reg_names
[TCG_TARGET_NB_REGS
] = {
86 static const int tcg_target_reg_alloc_order
[] = {
122 static const int tcg_target_call_iarg_regs
[] = {
133 static const int tcg_target_call_oarg_regs
[2] = {
137 static const int tcg_target_callee_save_regs
[] = {
154 TCG_REG_R27
, /* currently used for the global env */
161 static uint32_t reloc_pc24_val (void *pc
, tcg_target_long target
)
163 tcg_target_long disp
;
165 disp
= target
- (tcg_target_long
) pc
;
166 if ((disp
<< 38) >> 38 != disp
)
169 return disp
& 0x3fffffc;
172 static void reloc_pc24 (void *pc
, tcg_target_long target
)
174 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0x3fffffc)
175 | reloc_pc24_val (pc
, target
);
178 static uint16_t reloc_pc14_val (void *pc
, tcg_target_long target
)
180 tcg_target_long disp
;
182 disp
= target
- (tcg_target_long
) pc
;
183 if (disp
!= (int16_t) disp
)
186 return disp
& 0xfffc;
189 static void reloc_pc14 (void *pc
, tcg_target_long target
)
191 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0xfffc)
192 | reloc_pc14_val (pc
, target
);
195 static void patch_reloc (uint8_t *code_ptr
, int type
,
196 tcg_target_long value
, tcg_target_long addend
)
201 reloc_pc14 (code_ptr
, value
);
204 reloc_pc24 (code_ptr
, value
);
211 /* maximum number of register used for input function arguments */
212 static int tcg_target_get_call_iarg_regs_count (int flags
)
214 return ARRAY_SIZE (tcg_target_call_iarg_regs
);
217 /* parse target specific constraints */
218 static int target_parse_constraint (TCGArgConstraint
*ct
, const char **pct_str
)
224 case 'A': case 'B': case 'C': case 'D':
225 ct
->ct
|= TCG_CT_REG
;
226 tcg_regset_set_reg (ct
->u
.regs
, 3 + ct_str
[0] - 'A');
229 ct
->ct
|= TCG_CT_REG
;
230 tcg_regset_set32 (ct
->u
.regs
, 0, 0xffffffff);
232 case 'L': /* qemu_ld constraint */
233 ct
->ct
|= TCG_CT_REG
;
234 tcg_regset_set32 (ct
->u
.regs
, 0, 0xffffffff);
235 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R3
);
236 #ifdef CONFIG_SOFTMMU
237 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R4
);
240 case 'S': /* qemu_st 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 #ifdef CONFIG_SOFTMMU
245 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R4
);
246 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R5
);
250 ct
->ct
|= TCG_CT_CONST_U32
;
260 /* test if a constant matches the constraint */
261 static int tcg_target_const_match (tcg_target_long val
,
262 const TCGArgConstraint
*arg_ct
)
267 if (ct
& TCG_CT_CONST
)
269 else if ((ct
& TCG_CT_CONST_U32
) && (val
== (uint32_t) val
))
274 #define OPCD(opc) ((opc)<<26)
275 #define XO19(opc) (OPCD(19)|((opc)<<1))
276 #define XO30(opc) (OPCD(30)|((opc)<<2))
277 #define XO31(opc) (OPCD(31)|((opc)<<1))
278 #define XO58(opc) (OPCD(58)|(opc))
279 #define XO62(opc) (OPCD(62)|(opc))
283 #define LBZ OPCD( 34)
284 #define LHZ OPCD( 40)
285 #define LHA OPCD( 42)
286 #define LWZ OPCD( 32)
287 #define STB OPCD( 38)
288 #define STH OPCD( 44)
289 #define STW OPCD( 36)
292 #define STDU XO62( 1)
293 #define STDX XO31(149)
296 #define LDX XO31( 21)
299 #define LWAX XO31(341)
301 #define ADDIC OPCD( 12)
302 #define ADDI OPCD( 14)
303 #define ADDIS OPCD( 15)
304 #define ORI OPCD( 24)
305 #define ORIS OPCD( 25)
306 #define XORI OPCD( 26)
307 #define XORIS OPCD( 27)
308 #define ANDI OPCD( 28)
309 #define ANDIS OPCD( 29)
310 #define MULLI OPCD( 7)
311 #define CMPLI OPCD( 10)
312 #define CMPI OPCD( 11)
314 #define LWZU OPCD( 33)
315 #define STWU OPCD( 37)
317 #define RLWINM OPCD( 21)
319 #define RLDICL XO30( 0)
320 #define RLDICR XO30( 1)
321 #define RLDIMI XO30( 3)
323 #define BCLR XO19( 16)
324 #define BCCTR XO19(528)
325 #define CRAND XO19(257)
326 #define CRANDC XO19(129)
327 #define CRNAND XO19(225)
328 #define CROR XO19(449)
329 #define CRNOR XO19( 33)
331 #define EXTSB XO31(954)
332 #define EXTSH XO31(922)
333 #define EXTSW XO31(986)
334 #define ADD XO31(266)
335 #define ADDE XO31(138)
336 #define ADDC XO31( 10)
337 #define AND XO31( 28)
338 #define SUBF XO31( 40)
339 #define SUBFC XO31( 8)
340 #define SUBFE XO31(136)
342 #define XOR XO31(316)
343 #define MULLW XO31(235)
344 #define MULHWU XO31( 11)
345 #define DIVW XO31(491)
346 #define DIVWU XO31(459)
348 #define CMPL XO31( 32)
349 #define LHBRX XO31(790)
350 #define LWBRX XO31(534)
351 #define STHBRX XO31(918)
352 #define STWBRX XO31(662)
353 #define MFSPR XO31(339)
354 #define MTSPR XO31(467)
355 #define SRAWI XO31(824)
356 #define NEG XO31(104)
357 #define MFCR XO31( 19)
358 #define NOR XO31(124)
359 #define CNTLZW XO31( 26)
360 #define CNTLZD XO31( 58)
362 #define MULLD XO31(233)
363 #define MULHD XO31( 73)
364 #define MULHDU XO31( 9)
365 #define DIVD XO31(489)
366 #define DIVDU XO31(457)
368 #define LBZX XO31( 87)
369 #define LHZX XO31(279)
370 #define LHAX XO31(343)
371 #define LWZX XO31( 23)
372 #define STBX XO31(215)
373 #define STHX XO31(407)
374 #define STWX XO31(151)
376 #define SPR(a,b) ((((a)<<5)|(b))<<11)
378 #define CTR SPR(9, 0)
380 #define SLW XO31( 24)
381 #define SRW XO31(536)
382 #define SRAW XO31(792)
384 #define SLD XO31( 27)
385 #define SRD XO31(539)
386 #define SRAD XO31(794)
387 #define SRADI XO31(413<<1)
390 #define TRAP (TW | TO (31))
392 #define RT(r) ((r)<<21)
393 #define RS(r) ((r)<<21)
394 #define RA(r) ((r)<<16)
395 #define RB(r) ((r)<<11)
396 #define TO(t) ((t)<<21)
397 #define SH(s) ((s)<<11)
398 #define MB(b) ((b)<<6)
399 #define ME(e) ((e)<<1)
400 #define BO(o) ((o)<<21)
401 #define MB64(b) ((b)<<5)
405 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
406 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
408 #define BF(n) ((n)<<23)
409 #define BI(n, c) (((c)+((n)*4))<<16)
410 #define BT(n, c) (((c)+((n)*4))<<21)
411 #define BA(n, c) (((c)+((n)*4))<<16)
412 #define BB(n, c) (((c)+((n)*4))<<11)
414 #define BO_COND_TRUE BO (12)
415 #define BO_COND_FALSE BO ( 4)
416 #define BO_ALWAYS BO (20)
425 static const uint32_t tcg_to_bc
[10] = {
426 [TCG_COND_EQ
] = BC
| BI (7, CR_EQ
) | BO_COND_TRUE
,
427 [TCG_COND_NE
] = BC
| BI (7, CR_EQ
) | BO_COND_FALSE
,
428 [TCG_COND_LT
] = BC
| BI (7, CR_LT
) | BO_COND_TRUE
,
429 [TCG_COND_GE
] = BC
| BI (7, CR_LT
) | BO_COND_FALSE
,
430 [TCG_COND_LE
] = BC
| BI (7, CR_GT
) | BO_COND_FALSE
,
431 [TCG_COND_GT
] = BC
| BI (7, CR_GT
) | BO_COND_TRUE
,
432 [TCG_COND_LTU
] = BC
| BI (7, CR_LT
) | BO_COND_TRUE
,
433 [TCG_COND_GEU
] = BC
| BI (7, CR_LT
) | BO_COND_FALSE
,
434 [TCG_COND_LEU
] = BC
| BI (7, CR_GT
) | BO_COND_FALSE
,
435 [TCG_COND_GTU
] = BC
| BI (7, CR_GT
) | BO_COND_TRUE
,
438 static void tcg_out_mov (TCGContext
*s
, TCGType type
, int ret
, int arg
)
440 tcg_out32 (s
, OR
| SAB (arg
, ret
, arg
));
443 static void tcg_out_rld (TCGContext
*s
, int op
, int ra
, int rs
, int sh
, int mb
)
445 sh
= SH (sh
& 0x1f) | (((sh
>> 5) & 1) << 1);
446 mb
= MB64 ((mb
>> 5) | ((mb
<< 1) & 0x3f));
447 tcg_out32 (s
, op
| RA (ra
) | RS (rs
) | sh
| mb
);
450 static void tcg_out_movi32 (TCGContext
*s
, int ret
, int32_t arg
)
452 if (arg
== (int16_t) arg
)
453 tcg_out32 (s
, ADDI
| RT (ret
) | RA (0) | (arg
& 0xffff));
455 tcg_out32 (s
, ADDIS
| RT (ret
) | RA (0) | ((arg
>> 16) & 0xffff));
457 tcg_out32 (s
, ORI
| RS (ret
) | RA (ret
) | (arg
& 0xffff));
461 static void tcg_out_movi (TCGContext
*s
, TCGType type
,
462 int ret
, tcg_target_long arg
)
465 arg
= type
== TCG_TYPE_I32
? arg
& 0xffffffff : arg
;
468 tcg_out_movi32 (s
, ret
, arg32
);
471 if ((uint64_t) arg
>> 32) {
472 uint16_t h16
= arg
>> 16;
475 tcg_out_movi32 (s
, ret
, arg
>> 32);
476 tcg_out_rld (s
, RLDICR
, ret
, ret
, 32, 31);
477 if (h16
) tcg_out32 (s
, ORIS
| RS (ret
) | RA (ret
) | h16
);
478 if (l16
) tcg_out32 (s
, ORI
| RS (ret
) | RA (ret
) | l16
);
481 tcg_out_movi32 (s
, ret
, arg32
);
483 tcg_out_rld (s
, RLDICL
, ret
, ret
, 0, 32);
488 static void tcg_out_b (TCGContext
*s
, int mask
, tcg_target_long target
)
490 tcg_target_long disp
;
492 disp
= target
- (tcg_target_long
) s
->code_ptr
;
493 if ((disp
<< 38) >> 38 == disp
)
494 tcg_out32 (s
, B
| (disp
& 0x3fffffc) | mask
);
496 tcg_out_movi (s
, TCG_TYPE_I64
, 0, (tcg_target_long
) target
);
497 tcg_out32 (s
, MTSPR
| RS (0) | CTR
);
498 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| mask
);
502 static void tcg_out_call (TCGContext
*s
, tcg_target_long arg
, int const_arg
)
506 tcg_out_b (s
, LK
, arg
);
509 tcg_out32 (s
, MTSPR
| RS (arg
) | LR
);
510 tcg_out32 (s
, BCLR
| BO_ALWAYS
| LK
);
517 tcg_out_movi (s
, TCG_TYPE_I64
, reg
, arg
);
521 tcg_out32 (s
, LD
| RT (0) | RA (reg
));
522 tcg_out32 (s
, MTSPR
| RA (0) | CTR
);
523 tcg_out32 (s
, LD
| RT (11) | RA (reg
) | 16);
524 tcg_out32 (s
, LD
| RT (2) | RA (reg
) | 8);
525 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| LK
);
529 static void tcg_out_ldst (TCGContext
*s
, int ret
, int addr
,
530 int offset
, int op1
, int op2
)
532 if (offset
== (int16_t) offset
)
533 tcg_out32 (s
, op1
| RT (ret
) | RA (addr
) | (offset
& 0xffff));
535 tcg_out_movi (s
, TCG_TYPE_I64
, 0, offset
);
536 tcg_out32 (s
, op2
| RT (ret
) | RA (addr
) | RB (0));
540 static void tcg_out_ldsta (TCGContext
*s
, int ret
, int addr
,
541 int offset
, int op1
, int op2
)
543 if (offset
== (int16_t) (offset
& ~3))
544 tcg_out32 (s
, op1
| RT (ret
) | RA (addr
) | (offset
& 0xffff));
546 tcg_out_movi (s
, TCG_TYPE_I64
, 0, offset
);
547 tcg_out32 (s
, op2
| RT (ret
) | RA (addr
) | RB (0));
551 #if defined (CONFIG_SOFTMMU)
553 #include "../../softmmu_defs.h"
555 static void *qemu_ld_helpers
[4] = {
562 static void *qemu_st_helpers
[4] = {
569 static void tcg_out_tlb_read (TCGContext
*s
, int r0
, int r1
, int r2
,
570 int addr_reg
, int s_bits
, int offset
)
572 #if TARGET_LONG_BITS == 32
573 tcg_out_rld (s
, RLDICL
, addr_reg
, addr_reg
, 0, 32);
575 tcg_out32 (s
, (RLWINM
578 | SH (32 - (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
))
579 | MB (32 - (CPU_TLB_BITS
+ CPU_TLB_ENTRY_BITS
))
580 | ME (31 - CPU_TLB_ENTRY_BITS
)
583 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (TCG_AREG0
));
584 tcg_out32 (s
, (LWZU
| RT (r1
) | RA (r0
) | offset
));
585 tcg_out32 (s
, (RLWINM
589 | MB ((32 - s_bits
) & 31)
590 | ME (31 - TARGET_PAGE_BITS
)
594 tcg_out_rld (s
, RLDICL
, r0
, addr_reg
,
595 64 - TARGET_PAGE_BITS
,
597 tcg_out_rld (s
, RLDICR
, r0
, r0
,
599 63 - CPU_TLB_ENTRY_BITS
);
601 tcg_out32 (s
, ADD
| TAB (r0
, r0
, TCG_AREG0
));
602 tcg_out32 (s
, LD_ADDR
| RT (r1
) | RA (r0
) | offset
);
605 tcg_out_rld (s
, RLDICR
, r2
, addr_reg
, 0, 63 - TARGET_PAGE_BITS
);
608 tcg_out_rld (s
, RLDICL
, r2
, addr_reg
,
609 64 - TARGET_PAGE_BITS
,
610 TARGET_PAGE_BITS
- s_bits
);
611 tcg_out_rld (s
, RLDICL
, r2
, r2
, TARGET_PAGE_BITS
, 0);
617 static void tcg_out_qemu_ld (TCGContext
*s
, const TCGArg
*args
, int opc
)
619 int addr_reg
, data_reg
, r0
, r1
, rbase
, mem_index
, s_bits
, bswap
;
620 #ifdef CONFIG_SOFTMMU
622 void *label1_ptr
, *label2_ptr
;
630 #ifdef CONFIG_SOFTMMU
636 tcg_out_tlb_read (s
, r0
, r1
, r2
, addr_reg
, s_bits
,
637 offsetof (CPUState
, tlb_table
[mem_index
][0].addr_read
));
639 tcg_out32 (s
, CMP
| BF (7) | RA (r2
) | RB (r1
) | CMP_L
);
641 label1_ptr
= s
->code_ptr
;
643 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
647 tcg_out_mov (s
, TCG_TYPE_I64
, 3, addr_reg
);
648 tcg_out_movi (s
, TCG_TYPE_I64
, 4, mem_index
);
650 tcg_out_call (s
, (tcg_target_long
) qemu_ld_helpers
[s_bits
], 1);
654 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (3));
657 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (3));
660 tcg_out32 (s
, EXTSW
| RA (data_reg
) | RS (3));
667 tcg_out_mov (s
, TCG_TYPE_I64
, data_reg
, 3);
670 label2_ptr
= s
->code_ptr
;
673 /* label1: fast path */
675 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
678 /* r0 now contains &env->tlb_table[mem_index][index].addr_read */
682 | (offsetof (CPUTLBEntry
, addend
)
683 - offsetof (CPUTLBEntry
, addr_read
))
685 /* r0 = env->tlb_table[mem_index][index].addend */
686 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
687 /* r0 = env->tlb_table[mem_index][index].addend + addr */
689 #else /* !CONFIG_SOFTMMU */
690 #if TARGET_LONG_BITS == 32
691 tcg_out_rld (s
, RLDICL
, addr_reg
, addr_reg
, 0, 32);
695 rbase
= GUEST_BASE
? TCG_GUEST_BASE_REG
: 0;
698 #ifdef TARGET_WORDS_BIGENDIAN
706 tcg_out32 (s
, LBZX
| TAB (data_reg
, rbase
, r0
));
709 tcg_out32 (s
, LBZX
| TAB (data_reg
, rbase
, r0
));
710 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (data_reg
));
714 tcg_out32 (s
, LHBRX
| TAB (data_reg
, rbase
, r0
));
716 tcg_out32 (s
, LHZX
| TAB (data_reg
, rbase
, r0
));
720 tcg_out32 (s
, LHBRX
| TAB (data_reg
, rbase
, r0
));
721 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (data_reg
));
723 else tcg_out32 (s
, LHAX
| TAB (data_reg
, rbase
, r0
));
727 tcg_out32 (s
, LWBRX
| TAB (data_reg
, rbase
, r0
));
729 tcg_out32 (s
, LWZX
| TAB (data_reg
, rbase
, r0
));
733 tcg_out32 (s
, LWBRX
| TAB (data_reg
, rbase
, r0
));
734 tcg_out32 (s
, EXTSW
| RA (data_reg
) | RS (data_reg
));
736 else tcg_out32 (s
, LWAX
| TAB (data_reg
, rbase
, r0
));
739 #ifdef CONFIG_USE_GUEST_BASE
741 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
742 tcg_out32 (s
, LWBRX
| TAB (data_reg
, rbase
, r0
));
743 tcg_out32 (s
, LWBRX
| TAB ( r1
, rbase
, r1
));
744 tcg_out_rld (s
, RLDIMI
, data_reg
, r1
, 32, 0);
746 else tcg_out32 (s
, LDX
| TAB (data_reg
, rbase
, r0
));
749 tcg_out_movi32 (s
, 0, 4);
750 tcg_out32 (s
, LWBRX
| RT (data_reg
) | RB (r0
));
751 tcg_out32 (s
, LWBRX
| RT ( r1
) | RA (r0
));
752 tcg_out_rld (s
, RLDIMI
, data_reg
, r1
, 32, 0);
754 else tcg_out32 (s
, LD
| RT (data_reg
) | RA (r0
));
759 #ifdef CONFIG_SOFTMMU
760 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
764 static void tcg_out_qemu_st (TCGContext
*s
, const TCGArg
*args
, int opc
)
766 int addr_reg
, r0
, r1
, rbase
, data_reg
, mem_index
, bswap
;
767 #ifdef CONFIG_SOFTMMU
769 void *label1_ptr
, *label2_ptr
;
776 #ifdef CONFIG_SOFTMMU
782 tcg_out_tlb_read (s
, r0
, r1
, r2
, addr_reg
, opc
,
783 offsetof (CPUState
, tlb_table
[mem_index
][0].addr_write
));
785 tcg_out32 (s
, CMP
| BF (7) | RA (r2
) | RB (r1
) | CMP_L
);
787 label1_ptr
= s
->code_ptr
;
789 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
793 tcg_out_mov (s
, TCG_TYPE_I64
, 3, addr_reg
);
794 tcg_out_rld (s
, RLDICL
, 4, data_reg
, 0, 64 - (1 << (3 + opc
)));
795 tcg_out_movi (s
, TCG_TYPE_I64
, 5, mem_index
);
797 tcg_out_call (s
, (tcg_target_long
) qemu_st_helpers
[opc
], 1);
799 label2_ptr
= s
->code_ptr
;
802 /* label1: fast path */
804 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
810 | (offsetof (CPUTLBEntry
, addend
)
811 - offsetof (CPUTLBEntry
, addr_write
))
813 /* r0 = env->tlb_table[mem_index][index].addend */
814 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
815 /* r0 = env->tlb_table[mem_index][index].addend + addr */
817 #else /* !CONFIG_SOFTMMU */
818 #if TARGET_LONG_BITS == 32
819 tcg_out_rld (s
, RLDICL
, addr_reg
, addr_reg
, 0, 32);
823 rbase
= GUEST_BASE
? TCG_GUEST_BASE_REG
: 0;
826 #ifdef TARGET_WORDS_BIGENDIAN
833 tcg_out32 (s
, STBX
| SAB (data_reg
, rbase
, r0
));
837 tcg_out32 (s
, STHBRX
| SAB (data_reg
, rbase
, r0
));
839 tcg_out32 (s
, STHX
| SAB (data_reg
, rbase
, r0
));
843 tcg_out32 (s
, STWBRX
| SAB (data_reg
, rbase
, r0
));
845 tcg_out32 (s
, STWX
| SAB (data_reg
, rbase
, r0
));
849 tcg_out32 (s
, STWBRX
| SAB (data_reg
, rbase
, r0
));
850 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
851 tcg_out_rld (s
, RLDICL
, 0, data_reg
, 32, 0);
852 tcg_out32 (s
, STWBRX
| SAB (0, rbase
, r1
));
854 else tcg_out32 (s
, STDX
| SAB (data_reg
, rbase
, r0
));
858 #ifdef CONFIG_SOFTMMU
859 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
863 static void tcg_target_qemu_prologue (TCGContext
*s
)
874 + 8 /* compiler doubleword */
875 + 8 /* link editor doubleword */
876 + 8 /* TOC save area */
877 + TCG_STATIC_CALL_ARGS_SIZE
878 + ARRAY_SIZE (tcg_target_callee_save_regs
) * 8
879 + CPU_TEMP_BUF_NLONGS
* sizeof(long)
881 frame_size
= (frame_size
+ 15) & ~15;
883 tcg_set_frame(s
, TCG_REG_CALL_STACK
, frame_size
884 - CPU_TEMP_BUF_NLONGS
* sizeof(long),
885 CPU_TEMP_BUF_NLONGS
* sizeof(long));
888 /* First emit adhoc function descriptor */
889 addr
= (uint64_t) s
->code_ptr
+ 24;
890 tcg_out32 (s
, addr
>> 32); tcg_out32 (s
, addr
); /* entry point */
891 s
->code_ptr
+= 16; /* skip TOC and environment pointer */
895 tcg_out32 (s
, MFSPR
| RT (0) | LR
);
896 tcg_out32 (s
, STDU
| RS (1) | RA (1) | (-frame_size
& 0xffff));
897 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
899 | RS (tcg_target_callee_save_regs
[i
])
901 | (i
* 8 + 48 + TCG_STATIC_CALL_ARGS_SIZE
)
904 tcg_out32 (s
, STD
| RS (0) | RA (1) | (frame_size
+ 16));
906 #ifdef CONFIG_USE_GUEST_BASE
908 tcg_out_movi (s
, TCG_TYPE_I64
, TCG_GUEST_BASE_REG
, GUEST_BASE
);
909 tcg_regset_set_reg(s
->reserved_regs
, TCG_GUEST_BASE_REG
);
913 tcg_out_mov (s
, TCG_TYPE_PTR
, TCG_AREG0
, tcg_target_call_iarg_regs
[0]);
914 tcg_out32 (s
, MTSPR
| RS (tcg_target_call_iarg_regs
[1]) | CTR
);
915 tcg_out32 (s
, BCCTR
| BO_ALWAYS
);
918 tb_ret_addr
= s
->code_ptr
;
920 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
922 | RT (tcg_target_callee_save_regs
[i
])
924 | (i
* 8 + 48 + TCG_STATIC_CALL_ARGS_SIZE
)
927 tcg_out32 (s
, LD
| RT (0) | RA (1) | (frame_size
+ 16));
928 tcg_out32 (s
, MTSPR
| RS (0) | LR
);
929 tcg_out32 (s
, ADDI
| RT (1) | RA (1) | frame_size
);
930 tcg_out32 (s
, BCLR
| BO_ALWAYS
);
933 static void tcg_out_ld (TCGContext
*s
, TCGType type
, int ret
, int arg1
,
934 tcg_target_long arg2
)
936 if (type
== TCG_TYPE_I32
)
937 tcg_out_ldst (s
, ret
, arg1
, arg2
, LWZ
, LWZX
);
939 tcg_out_ldsta (s
, ret
, arg1
, arg2
, LD
, LDX
);
942 static void tcg_out_st (TCGContext
*s
, TCGType type
, int arg
, int arg1
,
943 tcg_target_long arg2
)
945 if (type
== TCG_TYPE_I32
)
946 tcg_out_ldst (s
, arg
, arg1
, arg2
, STW
, STWX
);
948 tcg_out_ldsta (s
, arg
, arg1
, arg2
, STD
, STDX
);
951 static void ppc_addi32 (TCGContext
*s
, int rt
, int ra
, tcg_target_long si
)
956 if (si
== (int16_t) si
)
957 tcg_out32 (s
, ADDI
| RT (rt
) | RA (ra
) | (si
& 0xffff));
959 uint16_t h
= ((si
>> 16) & 0xffff) + ((uint16_t) si
>> 15);
960 tcg_out32 (s
, ADDIS
| RT (rt
) | RA (ra
) | h
);
961 tcg_out32 (s
, ADDI
| RT (rt
) | RA (rt
) | (si
& 0xffff));
965 static void ppc_addi64 (TCGContext
*s
, int rt
, int ra
, tcg_target_long si
)
967 /* XXX: suboptimal */
968 if (si
== (int16_t) si
969 || ((((uint64_t) si
>> 31) == 0) && (si
& 0x8000) == 0))
970 ppc_addi32 (s
, rt
, ra
, si
);
972 tcg_out_movi (s
, TCG_TYPE_I64
, 0, si
);
973 tcg_out32 (s
, ADD
| RT (rt
) | RA (ra
));
977 static void tcg_out_cmp (TCGContext
*s
, int cond
, TCGArg arg1
, TCGArg arg2
,
978 int const_arg2
, int cr
, int arch64
)
987 if ((int16_t) arg2
== arg2
) {
992 else if ((uint16_t) arg2
== arg2
) {
1007 if ((int16_t) arg2
== arg2
) {
1022 if ((uint16_t) arg2
== arg2
) {
1035 op
|= BF (cr
) | (arch64
<< 21);
1038 tcg_out32 (s
, op
| RA (arg1
) | (arg2
& 0xffff));
1041 tcg_out_movi (s
, TCG_TYPE_I64
, 0, arg2
);
1042 tcg_out32 (s
, op
| RA (arg1
) | RB (0));
1045 tcg_out32 (s
, op
| RA (arg1
) | RB (arg2
));
1050 static void tcg_out_setcond (TCGContext
*s
, TCGType type
, TCGCond cond
,
1051 TCGArg arg0
, TCGArg arg1
, TCGArg arg2
,
1064 if ((uint16_t) arg2
== arg2
) {
1065 tcg_out32 (s
, XORI
| RS (arg1
) | RA (0) | arg2
);
1068 tcg_out_movi (s
, type
, 0, arg2
);
1069 tcg_out32 (s
, XOR
| SAB (arg1
, 0, 0));
1075 tcg_out32 (s
, XOR
| SAB (arg1
, 0, arg2
));
1078 if (type
== TCG_TYPE_I64
) {
1079 tcg_out32 (s
, CNTLZD
| RS (arg
) | RA (0));
1080 tcg_out_rld (s
, RLDICL
, arg0
, 0, 58, 6);
1083 tcg_out32 (s
, CNTLZW
| RS (arg
) | RA (0));
1084 tcg_out32 (s
, (RLWINM
1102 if ((uint16_t) arg2
== arg2
) {
1103 tcg_out32 (s
, XORI
| RS (arg1
) | RA (0) | arg2
);
1106 tcg_out_movi (s
, type
, 0, arg2
);
1107 tcg_out32 (s
, XOR
| SAB (arg1
, 0, 0));
1113 tcg_out32 (s
, XOR
| SAB (arg1
, 0, arg2
));
1116 if (arg
== arg1
&& arg1
== arg0
) {
1117 tcg_out32 (s
, ADDIC
| RT (0) | RA (arg
) | 0xffff);
1118 tcg_out32 (s
, SUBFE
| TAB (arg0
, 0, arg
));
1121 tcg_out32 (s
, ADDIC
| RT (arg0
) | RA (arg
) | 0xffff);
1122 tcg_out32 (s
, SUBFE
| TAB (arg0
, arg0
, arg
));
1141 crop
= CRNOR
| BT (7, CR_EQ
) | BA (7, CR_LT
) | BB (7, CR_LT
);
1147 crop
= CRNOR
| BT (7, CR_EQ
) | BA (7, CR_GT
) | BB (7, CR_GT
);
1149 tcg_out_cmp (s
, cond
, arg1
, arg2
, const_arg2
, 7, type
== TCG_TYPE_I64
);
1150 if (crop
) tcg_out32 (s
, crop
);
1151 tcg_out32 (s
, MFCR
| RT (0));
1152 tcg_out32 (s
, (RLWINM
1167 static void tcg_out_bc (TCGContext
*s
, int bc
, int label_index
)
1169 TCGLabel
*l
= &s
->labels
[label_index
];
1172 tcg_out32 (s
, bc
| reloc_pc14_val (s
->code_ptr
, l
->u
.value
));
1174 uint16_t val
= *(uint16_t *) &s
->code_ptr
[2];
1176 /* Thanks to Andrzej Zaborowski */
1177 tcg_out32 (s
, bc
| (val
& 0xfffc));
1178 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL14
, label_index
, 0);
1182 static void tcg_out_brcond (TCGContext
*s
, TCGCond cond
,
1183 TCGArg arg1
, TCGArg arg2
, int const_arg2
,
1184 int label_index
, int arch64
)
1186 tcg_out_cmp (s
, cond
, arg1
, arg2
, const_arg2
, 7, arch64
);
1187 tcg_out_bc (s
, tcg_to_bc
[cond
], label_index
);
1190 void ppc_tb_set_jmp_target (unsigned long jmp_addr
, unsigned long addr
)
1193 unsigned long patch_size
;
1195 s
.code_ptr
= (uint8_t *) jmp_addr
;
1196 tcg_out_b (&s
, 0, addr
);
1197 patch_size
= s
.code_ptr
- (uint8_t *) jmp_addr
;
1198 flush_icache_range (jmp_addr
, jmp_addr
+ patch_size
);
1201 static void tcg_out_op (TCGContext
*s
, TCGOpcode opc
, const TCGArg
*args
,
1202 const int *const_args
)
1207 case INDEX_op_exit_tb
:
1208 tcg_out_movi (s
, TCG_TYPE_I64
, TCG_REG_R3
, args
[0]);
1209 tcg_out_b (s
, 0, (tcg_target_long
) tb_ret_addr
);
1211 case INDEX_op_goto_tb
:
1212 if (s
->tb_jmp_offset
) {
1213 /* direct jump method */
1215 s
->tb_jmp_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1221 s
->tb_next_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1225 TCGLabel
*l
= &s
->labels
[args
[0]];
1228 tcg_out_b (s
, 0, l
->u
.value
);
1231 uint32_t val
= *(uint32_t *) s
->code_ptr
;
1233 /* Thanks to Andrzej Zaborowski */
1234 tcg_out32 (s
, B
| (val
& 0x3fffffc));
1235 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL24
, args
[0], 0);
1240 tcg_out_call (s
, args
[0], const_args
[0]);
1243 if (const_args
[0]) {
1244 tcg_out_b (s
, 0, args
[0]);
1247 tcg_out32 (s
, MTSPR
| RS (args
[0]) | CTR
);
1248 tcg_out32 (s
, BCCTR
| BO_ALWAYS
);
1251 case INDEX_op_movi_i32
:
1252 tcg_out_movi (s
, TCG_TYPE_I32
, args
[0], args
[1]);
1254 case INDEX_op_movi_i64
:
1255 tcg_out_movi (s
, TCG_TYPE_I64
, args
[0], args
[1]);
1257 case INDEX_op_ld8u_i32
:
1258 case INDEX_op_ld8u_i64
:
1259 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1261 case INDEX_op_ld8s_i32
:
1262 case INDEX_op_ld8s_i64
:
1263 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1264 tcg_out32 (s
, EXTSB
| RS (args
[0]) | RA (args
[0]));
1266 case INDEX_op_ld16u_i32
:
1267 case INDEX_op_ld16u_i64
:
1268 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHZ
, LHZX
);
1270 case INDEX_op_ld16s_i32
:
1271 case INDEX_op_ld16s_i64
:
1272 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHA
, LHAX
);
1274 case INDEX_op_ld_i32
:
1275 case INDEX_op_ld32u_i64
:
1276 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LWZ
, LWZX
);
1278 case INDEX_op_ld32s_i64
:
1279 tcg_out_ldsta (s
, args
[0], args
[1], args
[2], LWA
, LWAX
);
1281 case INDEX_op_ld_i64
:
1282 tcg_out_ldsta (s
, args
[0], args
[1], args
[2], LD
, LDX
);
1284 case INDEX_op_st8_i32
:
1285 case INDEX_op_st8_i64
:
1286 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STB
, STBX
);
1288 case INDEX_op_st16_i32
:
1289 case INDEX_op_st16_i64
:
1290 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STH
, STHX
);
1292 case INDEX_op_st_i32
:
1293 case INDEX_op_st32_i64
:
1294 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STW
, STWX
);
1296 case INDEX_op_st_i64
:
1297 tcg_out_ldsta (s
, args
[0], args
[1], args
[2], STD
, STDX
);
1300 case INDEX_op_add_i32
:
1302 ppc_addi32 (s
, args
[0], args
[1], args
[2]);
1304 tcg_out32 (s
, ADD
| TAB (args
[0], args
[1], args
[2]));
1306 case INDEX_op_sub_i32
:
1308 ppc_addi32 (s
, args
[0], args
[1], -args
[2]);
1310 tcg_out32 (s
, SUBF
| TAB (args
[0], args
[2], args
[1]));
1313 case INDEX_op_and_i64
:
1314 case INDEX_op_and_i32
:
1315 if (const_args
[2]) {
1316 if ((args
[2] & 0xffff) == args
[2])
1317 tcg_out32 (s
, ANDI
| RS (args
[1]) | RA (args
[0]) | args
[2]);
1318 else if ((args
[2] & 0xffff0000) == args
[2])
1319 tcg_out32 (s
, ANDIS
| RS (args
[1]) | RA (args
[0])
1320 | ((args
[2] >> 16) & 0xffff));
1322 tcg_out_movi (s
, (opc
== INDEX_op_and_i32
1326 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], 0));
1330 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], args
[2]));
1332 case INDEX_op_or_i64
:
1333 case INDEX_op_or_i32
:
1334 if (const_args
[2]) {
1335 if (args
[2] & 0xffff) {
1336 tcg_out32 (s
, ORI
| RS (args
[1]) | RA (args
[0])
1337 | (args
[2] & 0xffff));
1339 tcg_out32 (s
, ORIS
| RS (args
[0]) | RA (args
[0])
1340 | ((args
[2] >> 16) & 0xffff));
1343 tcg_out32 (s
, ORIS
| RS (args
[1]) | RA (args
[0])
1344 | ((args
[2] >> 16) & 0xffff));
1348 tcg_out32 (s
, OR
| SAB (args
[1], args
[0], args
[2]));
1350 case INDEX_op_xor_i64
:
1351 case INDEX_op_xor_i32
:
1352 if (const_args
[2]) {
1353 if ((args
[2] & 0xffff) == args
[2])
1354 tcg_out32 (s
, XORI
| RS (args
[1]) | RA (args
[0])
1355 | (args
[2] & 0xffff));
1356 else if ((args
[2] & 0xffff0000) == args
[2])
1357 tcg_out32 (s
, XORIS
| RS (args
[1]) | RA (args
[0])
1358 | ((args
[2] >> 16) & 0xffff));
1360 tcg_out_movi (s
, (opc
== INDEX_op_and_i32
1364 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], 0));
1368 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], args
[2]));
1371 case INDEX_op_mul_i32
:
1372 if (const_args
[2]) {
1373 if (args
[2] == (int16_t) args
[2])
1374 tcg_out32 (s
, MULLI
| RT (args
[0]) | RA (args
[1])
1375 | (args
[2] & 0xffff));
1377 tcg_out_movi (s
, TCG_TYPE_I32
, 0, args
[2]);
1378 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], 0));
1382 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], args
[2]));
1385 case INDEX_op_div_i32
:
1386 tcg_out32 (s
, DIVW
| TAB (args
[0], args
[1], args
[2]));
1389 case INDEX_op_divu_i32
:
1390 tcg_out32 (s
, DIVWU
| TAB (args
[0], args
[1], args
[2]));
1393 case INDEX_op_rem_i32
:
1394 tcg_out32 (s
, DIVW
| TAB (0, args
[1], args
[2]));
1395 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1396 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1399 case INDEX_op_remu_i32
:
1400 tcg_out32 (s
, DIVWU
| TAB (0, args
[1], args
[2]));
1401 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1402 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1405 case INDEX_op_shl_i32
:
1406 if (const_args
[2]) {
1407 tcg_out32 (s
, (RLWINM
1417 tcg_out32 (s
, SLW
| SAB (args
[1], args
[0], args
[2]));
1419 case INDEX_op_shr_i32
:
1420 if (const_args
[2]) {
1421 tcg_out32 (s
, (RLWINM
1431 tcg_out32 (s
, SRW
| SAB (args
[1], args
[0], args
[2]));
1433 case INDEX_op_sar_i32
:
1435 tcg_out32 (s
, SRAWI
| RS (args
[1]) | RA (args
[0]) | SH (args
[2]));
1437 tcg_out32 (s
, SRAW
| SAB (args
[1], args
[0], args
[2]));
1440 case INDEX_op_brcond_i32
:
1441 tcg_out_brcond (s
, args
[2], args
[0], args
[1], const_args
[1], args
[3], 0);
1444 case INDEX_op_brcond_i64
:
1445 tcg_out_brcond (s
, args
[2], args
[0], args
[1], const_args
[1], args
[3], 1);
1448 case INDEX_op_neg_i32
:
1449 case INDEX_op_neg_i64
:
1450 tcg_out32 (s
, NEG
| RT (args
[0]) | RA (args
[1]));
1453 case INDEX_op_not_i32
:
1454 case INDEX_op_not_i64
:
1455 tcg_out32 (s
, NOR
| SAB (args
[1], args
[0], args
[1]));
1458 case INDEX_op_add_i64
:
1460 ppc_addi64 (s
, args
[0], args
[1], args
[2]);
1462 tcg_out32 (s
, ADD
| TAB (args
[0], args
[1], args
[2]));
1464 case INDEX_op_sub_i64
:
1466 ppc_addi64 (s
, args
[0], args
[1], -args
[2]);
1468 tcg_out32 (s
, SUBF
| TAB (args
[0], args
[2], args
[1]));
1471 case INDEX_op_shl_i64
:
1473 tcg_out_rld (s
, RLDICR
, args
[0], args
[1], args
[2], 63 - args
[2]);
1475 tcg_out32 (s
, SLD
| SAB (args
[1], args
[0], args
[2]));
1477 case INDEX_op_shr_i64
:
1479 tcg_out_rld (s
, RLDICL
, args
[0], args
[1], 64 - args
[2], args
[2]);
1481 tcg_out32 (s
, SRD
| SAB (args
[1], args
[0], args
[2]));
1483 case INDEX_op_sar_i64
:
1484 if (const_args
[2]) {
1485 int sh
= SH (args
[2] & 0x1f) | (((args
[2] >> 5) & 1) << 1);
1486 tcg_out32 (s
, SRADI
| RA (args
[0]) | RS (args
[1]) | sh
);
1489 tcg_out32 (s
, SRAD
| SAB (args
[1], args
[0], args
[2]));
1492 case INDEX_op_mul_i64
:
1493 tcg_out32 (s
, MULLD
| TAB (args
[0], args
[1], args
[2]));
1495 case INDEX_op_div_i64
:
1496 tcg_out32 (s
, DIVD
| TAB (args
[0], args
[1], args
[2]));
1498 case INDEX_op_divu_i64
:
1499 tcg_out32 (s
, DIVDU
| TAB (args
[0], args
[1], args
[2]));
1501 case INDEX_op_rem_i64
:
1502 tcg_out32 (s
, DIVD
| TAB (0, args
[1], args
[2]));
1503 tcg_out32 (s
, MULLD
| TAB (0, 0, args
[2]));
1504 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1506 case INDEX_op_remu_i64
:
1507 tcg_out32 (s
, DIVDU
| TAB (0, args
[1], args
[2]));
1508 tcg_out32 (s
, MULLD
| TAB (0, 0, args
[2]));
1509 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1512 case INDEX_op_qemu_ld8u
:
1513 tcg_out_qemu_ld (s
, args
, 0);
1515 case INDEX_op_qemu_ld8s
:
1516 tcg_out_qemu_ld (s
, args
, 0 | 4);
1518 case INDEX_op_qemu_ld16u
:
1519 tcg_out_qemu_ld (s
, args
, 1);
1521 case INDEX_op_qemu_ld16s
:
1522 tcg_out_qemu_ld (s
, args
, 1 | 4);
1524 case INDEX_op_qemu_ld32
:
1525 case INDEX_op_qemu_ld32u
:
1526 tcg_out_qemu_ld (s
, args
, 2);
1528 case INDEX_op_qemu_ld32s
:
1529 tcg_out_qemu_ld (s
, args
, 2 | 4);
1531 case INDEX_op_qemu_ld64
:
1532 tcg_out_qemu_ld (s
, args
, 3);
1534 case INDEX_op_qemu_st8
:
1535 tcg_out_qemu_st (s
, args
, 0);
1537 case INDEX_op_qemu_st16
:
1538 tcg_out_qemu_st (s
, args
, 1);
1540 case INDEX_op_qemu_st32
:
1541 tcg_out_qemu_st (s
, args
, 2);
1543 case INDEX_op_qemu_st64
:
1544 tcg_out_qemu_st (s
, args
, 3);
1547 case INDEX_op_ext8s_i32
:
1548 case INDEX_op_ext8s_i64
:
1551 case INDEX_op_ext16s_i32
:
1552 case INDEX_op_ext16s_i64
:
1555 case INDEX_op_ext32s_i64
:
1559 tcg_out32 (s
, c
| RS (args
[1]) | RA (args
[0]));
1562 case INDEX_op_ext32u_i64
:
1563 tcg_out_rld (s
, RLDICR
, args
[0], args
[1], 0, 32);
1566 case INDEX_op_setcond_i32
:
1567 tcg_out_setcond (s
, TCG_TYPE_I32
, args
[3], args
[0], args
[1], args
[2],
1570 case INDEX_op_setcond_i64
:
1571 tcg_out_setcond (s
, TCG_TYPE_I64
, args
[3], args
[0], args
[1], args
[2],
1576 tcg_dump_ops (s
, stderr
);
1581 static const TCGTargetOpDef ppc_op_defs
[] = {
1582 { INDEX_op_exit_tb
, { } },
1583 { INDEX_op_goto_tb
, { } },
1584 { INDEX_op_call
, { "ri" } },
1585 { INDEX_op_jmp
, { "ri" } },
1586 { INDEX_op_br
, { } },
1588 { INDEX_op_mov_i32
, { "r", "r" } },
1589 { INDEX_op_mov_i64
, { "r", "r" } },
1590 { INDEX_op_movi_i32
, { "r" } },
1591 { INDEX_op_movi_i64
, { "r" } },
1593 { INDEX_op_ld8u_i32
, { "r", "r" } },
1594 { INDEX_op_ld8s_i32
, { "r", "r" } },
1595 { INDEX_op_ld16u_i32
, { "r", "r" } },
1596 { INDEX_op_ld16s_i32
, { "r", "r" } },
1597 { INDEX_op_ld_i32
, { "r", "r" } },
1598 { INDEX_op_ld_i64
, { "r", "r" } },
1599 { INDEX_op_st8_i32
, { "r", "r" } },
1600 { INDEX_op_st8_i64
, { "r", "r" } },
1601 { INDEX_op_st16_i32
, { "r", "r" } },
1602 { INDEX_op_st16_i64
, { "r", "r" } },
1603 { INDEX_op_st_i32
, { "r", "r" } },
1604 { INDEX_op_st_i64
, { "r", "r" } },
1605 { INDEX_op_st32_i64
, { "r", "r" } },
1607 { INDEX_op_ld8u_i64
, { "r", "r" } },
1608 { INDEX_op_ld8s_i64
, { "r", "r" } },
1609 { INDEX_op_ld16u_i64
, { "r", "r" } },
1610 { INDEX_op_ld16s_i64
, { "r", "r" } },
1611 { INDEX_op_ld32u_i64
, { "r", "r" } },
1612 { INDEX_op_ld32s_i64
, { "r", "r" } },
1613 { INDEX_op_ld_i64
, { "r", "r" } },
1615 { INDEX_op_add_i32
, { "r", "r", "ri" } },
1616 { INDEX_op_mul_i32
, { "r", "r", "ri" } },
1617 { INDEX_op_div_i32
, { "r", "r", "r" } },
1618 { INDEX_op_divu_i32
, { "r", "r", "r" } },
1619 { INDEX_op_rem_i32
, { "r", "r", "r" } },
1620 { INDEX_op_remu_i32
, { "r", "r", "r" } },
1621 { INDEX_op_sub_i32
, { "r", "r", "ri" } },
1622 { INDEX_op_and_i32
, { "r", "r", "ri" } },
1623 { INDEX_op_or_i32
, { "r", "r", "ri" } },
1624 { INDEX_op_xor_i32
, { "r", "r", "ri" } },
1626 { INDEX_op_shl_i32
, { "r", "r", "ri" } },
1627 { INDEX_op_shr_i32
, { "r", "r", "ri" } },
1628 { INDEX_op_sar_i32
, { "r", "r", "ri" } },
1630 { INDEX_op_brcond_i32
, { "r", "ri" } },
1631 { INDEX_op_brcond_i64
, { "r", "ri" } },
1633 { INDEX_op_neg_i32
, { "r", "r" } },
1634 { INDEX_op_not_i32
, { "r", "r" } },
1636 { INDEX_op_add_i64
, { "r", "r", "ri" } },
1637 { INDEX_op_sub_i64
, { "r", "r", "ri" } },
1638 { INDEX_op_and_i64
, { "r", "r", "rZ" } },
1639 { INDEX_op_or_i64
, { "r", "r", "rZ" } },
1640 { INDEX_op_xor_i64
, { "r", "r", "rZ" } },
1642 { INDEX_op_shl_i64
, { "r", "r", "ri" } },
1643 { INDEX_op_shr_i64
, { "r", "r", "ri" } },
1644 { INDEX_op_sar_i64
, { "r", "r", "ri" } },
1646 { INDEX_op_mul_i64
, { "r", "r", "r" } },
1647 { INDEX_op_div_i64
, { "r", "r", "r" } },
1648 { INDEX_op_divu_i64
, { "r", "r", "r" } },
1649 { INDEX_op_rem_i64
, { "r", "r", "r" } },
1650 { INDEX_op_remu_i64
, { "r", "r", "r" } },
1652 { INDEX_op_neg_i64
, { "r", "r" } },
1653 { INDEX_op_not_i64
, { "r", "r" } },
1655 { INDEX_op_qemu_ld8u
, { "r", "L" } },
1656 { INDEX_op_qemu_ld8s
, { "r", "L" } },
1657 { INDEX_op_qemu_ld16u
, { "r", "L" } },
1658 { INDEX_op_qemu_ld16s
, { "r", "L" } },
1659 { INDEX_op_qemu_ld32
, { "r", "L" } },
1660 { INDEX_op_qemu_ld32u
, { "r", "L" } },
1661 { INDEX_op_qemu_ld32s
, { "r", "L" } },
1662 { INDEX_op_qemu_ld64
, { "r", "L" } },
1664 { INDEX_op_qemu_st8
, { "S", "S" } },
1665 { INDEX_op_qemu_st16
, { "S", "S" } },
1666 { INDEX_op_qemu_st32
, { "S", "S" } },
1667 { INDEX_op_qemu_st64
, { "S", "S" } },
1669 { INDEX_op_ext8s_i32
, { "r", "r" } },
1670 { INDEX_op_ext16s_i32
, { "r", "r" } },
1671 { INDEX_op_ext8s_i64
, { "r", "r" } },
1672 { INDEX_op_ext16s_i64
, { "r", "r" } },
1673 { INDEX_op_ext32s_i64
, { "r", "r" } },
1674 { INDEX_op_ext32u_i64
, { "r", "r" } },
1676 { INDEX_op_setcond_i32
, { "r", "r", "ri" } },
1677 { INDEX_op_setcond_i64
, { "r", "r", "ri" } },
1682 static void tcg_target_init (TCGContext
*s
)
1684 tcg_regset_set32 (tcg_target_available_regs
[TCG_TYPE_I32
], 0, 0xffffffff);
1685 tcg_regset_set32 (tcg_target_available_regs
[TCG_TYPE_I64
], 0, 0xffffffff);
1686 tcg_regset_set32 (tcg_target_call_clobber_regs
, 0,
1698 (1 << TCG_REG_R10
) |
1699 (1 << TCG_REG_R11
) |
1703 tcg_regset_clear (s
->reserved_regs
);
1704 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R0
);
1705 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R1
);
1707 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R2
);
1709 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R13
);
1711 tcg_add_target_add_op_defs (ppc_op_defs
);