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_PHYS_ADDR_BITS == 32
37 #if TARGET_LONG_BITS == 32
46 static const char * const tcg_target_reg_names
[TCG_TARGET_NB_REGS
] = {
82 static const int tcg_target_reg_alloc_order
[] = {
117 static const int tcg_target_call_iarg_regs
[] = {
128 static const int tcg_target_call_oarg_regs
[2] = {
132 static const int tcg_target_callee_save_regs
[] = {
149 static uint32_t reloc_pc24_val (void *pc
, tcg_target_long target
)
151 tcg_target_long disp
;
153 disp
= target
- (tcg_target_long
) pc
;
154 if ((disp
<< 38) >> 38 != disp
)
157 return disp
& 0x3fffffc;
160 static void reloc_pc24 (void *pc
, tcg_target_long target
)
162 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0x3fffffc)
163 | reloc_pc24_val (pc
, target
);
166 static uint16_t reloc_pc14_val (void *pc
, tcg_target_long target
)
168 tcg_target_long disp
;
170 disp
= target
- (tcg_target_long
) pc
;
171 if (disp
!= (int16_t) disp
)
174 return disp
& 0xfffc;
177 static void reloc_pc14 (void *pc
, tcg_target_long target
)
179 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0xfffc)
180 | reloc_pc14_val (pc
, target
);
183 static void patch_reloc (uint8_t *code_ptr
, int type
,
184 tcg_target_long value
, tcg_target_long addend
)
189 reloc_pc14 (code_ptr
, value
);
192 reloc_pc24 (code_ptr
, value
);
199 /* maximum number of register used for input function arguments */
200 static int tcg_target_get_call_iarg_regs_count (int flags
)
202 return sizeof (tcg_target_call_iarg_regs
) / sizeof (tcg_target_call_iarg_regs
[0]);
205 /* parse target specific constraints */
206 static int target_parse_constraint (TCGArgConstraint
*ct
, const char **pct_str
)
212 case 'A': case 'B': case 'C': case 'D':
213 ct
->ct
|= TCG_CT_REG
;
214 tcg_regset_set_reg (ct
->u
.regs
, 3 + ct_str
[0] - 'A');
217 ct
->ct
|= TCG_CT_REG
;
218 tcg_regset_set32 (ct
->u
.regs
, 0, 0xffffffff);
220 case 'L': /* qemu_ld constraint */
221 ct
->ct
|= TCG_CT_REG
;
222 tcg_regset_set32 (ct
->u
.regs
, 0, 0xffffffff);
223 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R3
);
224 #ifdef CONFIG_SOFTMMU
225 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R4
);
228 case 'S': /* qemu_st constraint */
229 ct
->ct
|= TCG_CT_REG
;
230 tcg_regset_set32 (ct
->u
.regs
, 0, 0xffffffff);
231 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R3
);
232 #ifdef CONFIG_SOFTMMU
233 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R4
);
234 tcg_regset_reset_reg (ct
->u
.regs
, TCG_REG_R5
);
238 ct
->ct
|= TCG_CT_CONST_U32
;
248 /* test if a constant matches the constraint */
249 static int tcg_target_const_match (tcg_target_long val
,
250 const TCGArgConstraint
*arg_ct
)
255 if (ct
& TCG_CT_CONST
)
257 else if ((ct
& TCG_CT_CONST_U32
) && (val
== (uint32_t) val
))
262 #define OPCD(opc) ((opc)<<26)
263 #define XO19(opc) (OPCD(19)|((opc)<<1))
264 #define XO30(opc) (OPCD(30)|((opc)<<2))
265 #define XO31(opc) (OPCD(31)|((opc)<<1))
266 #define XO58(opc) (OPCD(58)|(opc))
267 #define XO62(opc) (OPCD(62)|(opc))
271 #define LBZ OPCD( 34)
272 #define LHZ OPCD( 40)
273 #define LHA OPCD( 42)
274 #define LWZ OPCD( 32)
275 #define STB OPCD( 38)
276 #define STH OPCD( 44)
277 #define STW OPCD( 36)
280 #define STDU XO62( 1)
281 #define STDX XO31(149)
284 #define LDX XO31( 21)
287 #define LWAX XO31(341)
289 #define ADDI OPCD( 14)
290 #define ADDIS OPCD( 15)
291 #define ORI OPCD( 24)
292 #define ORIS OPCD( 25)
293 #define XORI OPCD( 26)
294 #define XORIS OPCD( 27)
295 #define ANDI OPCD( 28)
296 #define ANDIS OPCD( 29)
297 #define MULLI OPCD( 7)
298 #define CMPLI OPCD( 10)
299 #define CMPI OPCD( 11)
301 #define LWZU OPCD( 33)
302 #define STWU OPCD( 37)
304 #define RLWINM OPCD( 21)
306 #define RLDICL XO30( 0)
307 #define RLDICR XO30( 1)
308 #define RLDIMI XO30( 3)
310 #define BCLR XO19( 16)
311 #define BCCTR XO19(528)
312 #define CRAND XO19(257)
313 #define CRANDC XO19(129)
314 #define CRNAND XO19(225)
315 #define CROR XO19(449)
317 #define EXTSB XO31(954)
318 #define EXTSH XO31(922)
319 #define EXTSW XO31(986)
320 #define ADD XO31(266)
321 #define ADDE XO31(138)
322 #define ADDC XO31( 10)
323 #define AND XO31( 28)
324 #define SUBF XO31( 40)
325 #define SUBFC XO31( 8)
326 #define SUBFE XO31(136)
328 #define XOR XO31(316)
329 #define MULLW XO31(235)
330 #define MULHWU XO31( 11)
331 #define DIVW XO31(491)
332 #define DIVWU XO31(459)
334 #define CMPL XO31( 32)
335 #define LHBRX XO31(790)
336 #define LWBRX XO31(534)
337 #define STHBRX XO31(918)
338 #define STWBRX XO31(662)
339 #define MFSPR XO31(339)
340 #define MTSPR XO31(467)
341 #define SRAWI XO31(824)
342 #define NEG XO31(104)
344 #define MULLD XO31(233)
345 #define MULHD XO31( 73)
346 #define MULHDU XO31( 9)
347 #define DIVD XO31(489)
348 #define DIVDU XO31(457)
350 #define LBZX XO31( 87)
351 #define LHZX XO31(276)
352 #define LHAX XO31(343)
353 #define LWZX XO31( 23)
354 #define STBX XO31(215)
355 #define STHX XO31(407)
356 #define STWX XO31(151)
358 #define SPR(a,b) ((((a)<<5)|(b))<<11)
360 #define CTR SPR(9, 0)
362 #define SLW XO31( 24)
363 #define SRW XO31(536)
364 #define SRAW XO31(792)
366 #define SLD XO31( 27)
367 #define SRD XO31(539)
368 #define SRAD XO31(794)
369 #define SRADI XO31(413<<1)
371 #define LMW OPCD( 46)
372 #define STMW OPCD( 47)
375 #define TRAP (TW | TO (31))
377 #define RT(r) ((r)<<21)
378 #define RS(r) ((r)<<21)
379 #define RA(r) ((r)<<16)
380 #define RB(r) ((r)<<11)
381 #define TO(t) ((t)<<21)
382 #define SH(s) ((s)<<11)
383 #define MB(b) ((b)<<6)
384 #define ME(e) ((e)<<1)
385 #define BO(o) ((o)<<21)
386 #define MB64(b) ((b)<<5)
390 #define TAB(t,a,b) (RT(t) | RA(a) | RB(b))
391 #define SAB(s,a,b) (RS(s) | RA(a) | RB(b))
393 #define BF(n) ((n)<<23)
394 #define BI(n, c) (((c)+((n)*4))<<16)
395 #define BT(n, c) (((c)+((n)*4))<<21)
396 #define BA(n, c) (((c)+((n)*4))<<16)
397 #define BB(n, c) (((c)+((n)*4))<<11)
399 #define BO_COND_TRUE BO (12)
400 #define BO_COND_FALSE BO ( 4)
401 #define BO_ALWAYS BO (20)
410 static const uint32_t tcg_to_bc
[10] = {
411 [TCG_COND_EQ
] = BC
| BI (7, CR_EQ
) | BO_COND_TRUE
,
412 [TCG_COND_NE
] = BC
| BI (7, CR_EQ
) | BO_COND_FALSE
,
413 [TCG_COND_LT
] = BC
| BI (7, CR_LT
) | BO_COND_TRUE
,
414 [TCG_COND_GE
] = BC
| BI (7, CR_LT
) | BO_COND_FALSE
,
415 [TCG_COND_LE
] = BC
| BI (7, CR_GT
) | BO_COND_FALSE
,
416 [TCG_COND_GT
] = BC
| BI (7, CR_GT
) | BO_COND_TRUE
,
417 [TCG_COND_LTU
] = BC
| BI (7, CR_LT
) | BO_COND_TRUE
,
418 [TCG_COND_GEU
] = BC
| BI (7, CR_LT
) | BO_COND_FALSE
,
419 [TCG_COND_LEU
] = BC
| BI (7, CR_GT
) | BO_COND_FALSE
,
420 [TCG_COND_GTU
] = BC
| BI (7, CR_GT
) | BO_COND_TRUE
,
423 static void tcg_out_mov (TCGContext
*s
, int ret
, int arg
)
425 tcg_out32 (s
, OR
| SAB (arg
, ret
, arg
));
428 static void tcg_out_rld (TCGContext
*s
, int op
, int ra
, int rs
, int sh
, int mb
)
430 sh
= SH (sh
& 0x1f) | (((sh
>> 5) & 1) << 1);
431 mb
= MB64 ((mb
>> 5) | ((mb
<< 1) & 0x3f));
432 tcg_out32 (s
, op
| RA (ra
) | RS (rs
) | sh
| mb
);
435 static void tcg_out_movi32 (TCGContext
*s
, int ret
, int32_t arg
)
437 if (arg
== (int16_t) arg
)
438 tcg_out32 (s
, ADDI
| RT (ret
) | RA (0) | (arg
& 0xffff));
440 tcg_out32 (s
, ADDIS
| RT (ret
) | RA (0) | ((arg
>> 16) & 0xffff));
442 tcg_out32 (s
, ORI
| RS (ret
) | RA (ret
) | (arg
& 0xffff));
446 static void tcg_out_movi (TCGContext
*s
, TCGType type
,
447 int ret
, tcg_target_long arg
)
451 if (type
== TCG_TYPE_I32
|| arg
== arg32
) {
452 tcg_out_movi32 (s
, ret
, arg32
);
455 if ((uint64_t) arg
>> 32) {
456 uint16_t h16
= arg
>> 16;
459 tcg_out_movi32 (s
, ret
, arg
>> 32);
460 tcg_out_rld (s
, RLDICR
, ret
, ret
, 32, 31);
461 if (h16
) tcg_out32 (s
, ORIS
| RS (ret
) | RA (ret
) | h16
);
462 if (l16
) tcg_out32 (s
, ORI
| RS (ret
) | RA (ret
) | l16
);
465 tcg_out_movi32 (s
, ret
, arg32
);
467 tcg_out_rld (s
, RLDICL
, ret
, ret
, 0, 32);
472 static void tcg_out_call (TCGContext
*s
, tcg_target_long arg
, int const_arg
)
478 tcg_out_movi (s
, TCG_TYPE_I64
, reg
, arg
);
482 tcg_out32 (s
, LD
| RT (0) | RA (reg
));
483 tcg_out32 (s
, MTSPR
| RA (0) | CTR
);
484 tcg_out32 (s
, LD
| RT (11) | RA (reg
) | 16);
485 tcg_out32 (s
, LD
| RT (2) | RA (reg
) | 8);
486 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| LK
);
489 static void tcg_out_ldst (TCGContext
*s
, int ret
, int addr
,
490 int offset
, int op1
, int op2
)
492 if (offset
== (int16_t) offset
)
493 tcg_out32 (s
, op1
| RT (ret
) | RA (addr
) | (offset
& 0xffff));
495 tcg_out_movi (s
, TCG_TYPE_I64
, 0, offset
);
496 tcg_out32 (s
, op2
| RT (ret
) | RA (addr
) | RB (0));
500 static void tcg_out_ldsta (TCGContext
*s
, int ret
, int addr
,
501 int offset
, int op1
, int op2
)
503 if (offset
== (int16_t) (offset
& ~3))
504 tcg_out32 (s
, op1
| RT (ret
) | RA (addr
) | (offset
& 0xffff));
506 tcg_out_movi (s
, TCG_TYPE_I64
, 0, offset
);
507 tcg_out32 (s
, op2
| RT (ret
) | RA (addr
) | RB (0));
511 static void tcg_out_b (TCGContext
*s
, int mask
, tcg_target_long target
)
513 tcg_target_long disp
;
515 disp
= target
- (tcg_target_long
) s
->code_ptr
;
516 if ((disp
<< 38) >> 38 == disp
)
517 tcg_out32 (s
, B
| (disp
& 0x3fffffc) | mask
);
519 tcg_out_movi (s
, TCG_TYPE_I64
, 0, (tcg_target_long
) target
);
520 tcg_out32 (s
, MTSPR
| RS (0) | CTR
);
521 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| mask
);
525 #if defined (CONFIG_SOFTMMU)
527 #include "../../softmmu_defs.h"
529 static void *qemu_ld_helpers
[4] = {
536 static void *qemu_st_helpers
[4] = {
543 static void tcg_out_tlb_read (TCGContext
*s
, int r0
, int r1
, int r2
,
544 int addr_reg
, int s_bits
, int offset
)
546 #if TARGET_LONG_BITS == 32
547 tcg_out_rld (s
, RLDICL
, addr_reg
, addr_reg
, 0, 32);
549 tcg_out32 (s
, (RLWINM
552 | SH (32 - (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
))
553 | MB (32 - (CPU_TLB_BITS
+ CPU_TLB_ENTRY_BITS
))
554 | ME (31 - CPU_TLB_ENTRY_BITS
)
557 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (TCG_AREG0
));
558 tcg_out32 (s
, (LWZU
| RT (r1
) | RA (r0
) | offset
));
559 tcg_out32 (s
, (RLWINM
563 | MB ((32 - s_bits
) & 31)
564 | ME (31 - TARGET_PAGE_BITS
)
568 tcg_out_rld (s
, RLDICL
, r0
, addr_reg
,
569 64 - TARGET_PAGE_BITS
,
571 tcg_out_rld (s
, RLDICR
, r0
, r0
,
573 63 - CPU_TLB_ENTRY_BITS
);
575 tcg_out32 (s
, ADD
| TAB (r0
, r0
, TCG_AREG0
));
576 tcg_out32 (s
, LD_ADDR
| RT (r1
) | RA (r0
) | offset
);
579 tcg_out_rld (s
, RLDICR
, r2
, addr_reg
, 0, 63 - TARGET_PAGE_BITS
);
582 tcg_out_rld (s
, RLDICL
, r2
, addr_reg
,
583 64 - TARGET_PAGE_BITS
,
584 TARGET_PAGE_BITS
- s_bits
);
585 tcg_out_rld (s
, RLDICL
, r2
, r2
, TARGET_PAGE_BITS
, 0);
591 static void tcg_out_qemu_ld (TCGContext
*s
, const TCGArg
*args
, int opc
)
593 int addr_reg
, data_reg
, r0
, r1
, mem_index
, s_bits
, bswap
;
594 #ifdef CONFIG_SOFTMMU
596 void *label1_ptr
, *label2_ptr
;
604 #ifdef CONFIG_SOFTMMU
609 tcg_out_tlb_read (s
, r0
, r1
, r2
, addr_reg
, s_bits
,
610 offsetof (CPUState
, tlb_table
[mem_index
][0].addr_read
));
612 tcg_out32 (s
, CMP
| BF (7) | RA (r2
) | RB (r1
) | CMP_L
);
614 label1_ptr
= s
->code_ptr
;
616 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
620 tcg_out_mov (s
, 3, addr_reg
);
621 tcg_out_movi (s
, TCG_TYPE_I64
, 4, mem_index
);
623 tcg_out_call (s
, (tcg_target_long
) qemu_ld_helpers
[s_bits
], 1);
627 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (3));
630 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (3));
633 tcg_out32 (s
, EXTSW
| RA (data_reg
) | RS (3));
640 tcg_out_mov (s
, data_reg
, 3);
643 label2_ptr
= s
->code_ptr
;
646 /* label1: fast path */
648 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
651 /* r0 now contains &env->tlb_table[mem_index][index].addr_read */
652 tcg_out32 (s
, (LD_ADDEND
655 | (offsetof (CPUTLBEntry
, addend
)
656 - offsetof (CPUTLBEntry
, addr_read
))
658 /* r0 = env->tlb_table[mem_index][index].addend */
659 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
660 /* r0 = env->tlb_table[mem_index][index].addend + addr */
662 #else /* !CONFIG_SOFTMMU */
663 #if TARGET_LONG_BITS == 32
664 tcg_out_rld (s
, RLDICL
, addr_reg
, addr_reg
, 0, 32);
670 #ifdef TARGET_WORDS_BIGENDIAN
678 tcg_out32 (s
, LBZ
| RT (data_reg
) | RA (r0
));
681 tcg_out32 (s
, LBZ
| RT (data_reg
) | RA (r0
));
682 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (data_reg
));
685 if (bswap
) tcg_out32 (s
, LHBRX
| RT (data_reg
) | RB (r0
));
686 else tcg_out32 (s
, LHZ
| RT (data_reg
) | RA (r0
));
690 tcg_out32 (s
, LHBRX
| RT (data_reg
) | RB (r0
));
691 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (data_reg
));
693 else tcg_out32 (s
, LHA
| RT (data_reg
) | RA (r0
));
696 if (bswap
) tcg_out32 (s
, LWBRX
| RT (data_reg
) | RB (r0
));
697 else tcg_out32 (s
, LWZ
| RT (data_reg
)| RA (r0
));
701 tcg_out32 (s
, LWBRX
| RT (data_reg
) | RB (r0
));
702 tcg_out32 (s
, EXTSW
| RA (data_reg
) | RS (data_reg
));
704 else tcg_out32 (s
, LWA
| RT (data_reg
)| RA (r0
));
708 tcg_out_movi32 (s
, 0, 4);
709 tcg_out32 (s
, LWBRX
| RT (data_reg
) | RB (r0
));
710 tcg_out32 (s
, LWBRX
| RT ( r1
) | RA (r0
));
711 tcg_out_rld (s
, RLDIMI
, data_reg
, r1
, 32, 0);
713 else tcg_out32 (s
, LD
| RT (data_reg
) | RA (r0
));
717 #ifdef CONFIG_SOFTMMU
718 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
722 static void tcg_out_qemu_st (TCGContext
*s
, const TCGArg
*args
, int opc
)
724 int addr_reg
, r0
, r1
, data_reg
, mem_index
, bswap
;
725 #ifdef CONFIG_SOFTMMU
727 void *label1_ptr
, *label2_ptr
;
734 #ifdef CONFIG_SOFTMMU
739 tcg_out_tlb_read (s
, r0
, r1
, r2
, addr_reg
, opc
,
740 offsetof (CPUState
, tlb_table
[mem_index
][0].addr_write
));
742 tcg_out32 (s
, CMP
| BF (7) | RA (r2
) | RB (r1
) | CMP_L
);
744 label1_ptr
= s
->code_ptr
;
746 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
750 tcg_out_mov (s
, 3, addr_reg
);
751 tcg_out_rld (s
, RLDICL
, 4, data_reg
, 0, 64 - (1 << (3 + opc
)));
752 tcg_out_movi (s
, TCG_TYPE_I64
, 5, mem_index
);
754 tcg_out_call (s
, (tcg_target_long
) qemu_st_helpers
[opc
], 1);
756 label2_ptr
= s
->code_ptr
;
759 /* label1: fast path */
761 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
764 tcg_out32 (s
, (LD_ADDEND
767 | (offsetof (CPUTLBEntry
, addend
)
768 - offsetof (CPUTLBEntry
, addr_write
))
770 /* r0 = env->tlb_table[mem_index][index].addend */
771 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
772 /* r0 = env->tlb_table[mem_index][index].addend + addr */
774 #else /* !CONFIG_SOFTMMU */
775 #if TARGET_LONG_BITS == 32
776 tcg_out_rld (s
, RLDICL
, addr_reg
, addr_reg
, 0, 32);
782 #ifdef TARGET_WORDS_BIGENDIAN
789 tcg_out32 (s
, STB
| RS (data_reg
) | RA (r0
));
792 if (bswap
) tcg_out32 (s
, STHBRX
| RS (data_reg
) | RA (0) | RB (r0
));
793 else tcg_out32 (s
, STH
| RS (data_reg
) | RA (r0
));
796 if (bswap
) tcg_out32 (s
, STWBRX
| RS (data_reg
) | RA (0) | RB (r0
));
797 else tcg_out32 (s
, STW
| RS (data_reg
) | RA (r0
));
801 tcg_out32 (s
, STWBRX
| RS (data_reg
) | RA (0) | RB (r0
));
802 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
803 tcg_out_rld (s
, RLDICL
, 0, data_reg
, 32, 0);
804 tcg_out32 (s
, STWBRX
| RS (0) | RA (0) | RB (r1
));
806 else tcg_out32 (s
, STD
| RS (data_reg
) | RA (r0
));
810 #ifdef CONFIG_SOFTMMU
811 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
815 void tcg_target_qemu_prologue (TCGContext
*s
)
824 + 8 /* compiler doubleword */
825 + 8 /* link editor doubleword */
826 + 8 /* TOC save area */
827 + TCG_STATIC_CALL_ARGS_SIZE
828 + ARRAY_SIZE (tcg_target_callee_save_regs
) * 8
830 frame_size
= (frame_size
+ 15) & ~15;
832 /* First emit adhoc function descriptor */
833 addr
= (uint64_t) s
->code_ptr
+ 24;
834 tcg_out32 (s
, addr
>> 32); tcg_out32 (s
, addr
); /* entry point */
835 s
->code_ptr
+= 16; /* skip TOC and environment pointer */
838 tcg_out32 (s
, MFSPR
| RT (0) | LR
);
839 tcg_out32 (s
, STDU
| RS (1) | RA (1) | (-frame_size
& 0xffff));
840 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
842 | RS (tcg_target_callee_save_regs
[i
])
844 | (i
* 8 + 48 + TCG_STATIC_CALL_ARGS_SIZE
)
847 tcg_out32 (s
, STD
| RS (0) | RA (1) | (frame_size
+ 16));
849 tcg_out32 (s
, MTSPR
| RS (3) | CTR
);
850 tcg_out32 (s
, BCCTR
| BO_ALWAYS
);
853 tb_ret_addr
= s
->code_ptr
;
855 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
857 | RT (tcg_target_callee_save_regs
[i
])
859 | (i
* 8 + 48 + TCG_STATIC_CALL_ARGS_SIZE
)
862 tcg_out32 (s
, LD
| RT (0) | RA (1) | (frame_size
+ 16));
863 tcg_out32 (s
, MTSPR
| RS (0) | LR
);
864 tcg_out32 (s
, ADDI
| RT (1) | RA (1) | frame_size
);
865 tcg_out32 (s
, BCLR
| BO_ALWAYS
);
868 static void tcg_out_ld (TCGContext
*s
, TCGType type
, int ret
, int arg1
,
869 tcg_target_long arg2
)
871 if (type
== TCG_TYPE_I32
)
872 tcg_out_ldst (s
, ret
, arg1
, arg2
, LWZ
, LWZX
);
874 tcg_out_ldsta (s
, ret
, arg1
, arg2
, LD
, LDX
);
877 static void tcg_out_st (TCGContext
*s
, TCGType type
, int arg
, int arg1
,
878 tcg_target_long arg2
)
880 if (type
== TCG_TYPE_I32
)
881 tcg_out_ldst (s
, arg
, arg1
, arg2
, STW
, STWX
);
883 tcg_out_ldsta (s
, arg
, arg1
, arg2
, STD
, STDX
);
886 static void ppc_addi32 (TCGContext
*s
, int rt
, int ra
, tcg_target_long si
)
891 if (si
== (int16_t) si
)
892 tcg_out32 (s
, ADDI
| RT (rt
) | RA (ra
) | (si
& 0xffff));
894 uint16_t h
= ((si
>> 16) & 0xffff) + ((uint16_t) si
>> 15);
895 tcg_out32 (s
, ADDIS
| RT (rt
) | RA (ra
) | h
);
896 tcg_out32 (s
, ADDI
| RT (rt
) | RA (rt
) | (si
& 0xffff));
900 static void ppc_addi64 (TCGContext
*s
, int rt
, int ra
, tcg_target_long si
)
902 /* XXX: suboptimal */
903 if (si
== (int16_t) si
904 || ((((uint64_t) si
>> 31) == 0) && (si
& 0x8000) == 0))
905 ppc_addi32 (s
, rt
, ra
, si
);
907 tcg_out_movi (s
, TCG_TYPE_I64
, 0, si
);
908 tcg_out32 (s
, ADD
| RT (rt
) | RA (ra
));
912 static void tcg_out_addi (TCGContext
*s
, int reg
, tcg_target_long val
)
914 ppc_addi64 (s
, reg
, reg
, val
);
917 static void tcg_out_cmp (TCGContext
*s
, int cond
, TCGArg arg1
, TCGArg arg2
,
918 int const_arg2
, int cr
, int arch64
)
927 if ((int16_t) arg2
== arg2
) {
932 else if ((uint16_t) arg2
== arg2
) {
947 if ((int16_t) arg2
== arg2
) {
962 if ((uint16_t) arg2
== arg2
) {
975 op
|= BF (cr
) | (arch64
<< 21);
978 tcg_out32 (s
, op
| RA (arg1
) | (arg2
& 0xffff));
981 tcg_out_movi (s
, TCG_TYPE_I64
, 0, arg2
);
982 tcg_out32 (s
, op
| RA (arg1
) | RB (0));
985 tcg_out32 (s
, op
| RA (arg1
) | RB (arg2
));
990 static void tcg_out_bc (TCGContext
*s
, int bc
, int label_index
)
992 TCGLabel
*l
= &s
->labels
[label_index
];
995 tcg_out32 (s
, bc
| reloc_pc14_val (s
->code_ptr
, l
->u
.value
));
997 uint16_t val
= *(uint16_t *) &s
->code_ptr
[2];
999 /* Thanks to Andrzej Zaborowski */
1000 tcg_out32 (s
, bc
| (val
& 0xfffc));
1001 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL14
, label_index
, 0);
1005 static void tcg_out_brcond (TCGContext
*s
, int cond
,
1006 TCGArg arg1
, TCGArg arg2
, int const_arg2
,
1007 int label_index
, int arch64
)
1009 tcg_out_cmp (s
, cond
, arg1
, arg2
, const_arg2
, 7, arch64
);
1010 tcg_out_bc (s
, tcg_to_bc
[cond
], label_index
);
1013 void ppc_tb_set_jmp_target (unsigned long jmp_addr
, unsigned long addr
)
1016 unsigned long patch_size
;
1018 s
.code_ptr
= (uint8_t *) jmp_addr
;
1019 tcg_out_b (&s
, 0, addr
);
1020 patch_size
= s
.code_ptr
- (uint8_t *) jmp_addr
;
1021 flush_icache_range (jmp_addr
, jmp_addr
+ patch_size
);
1024 static void tcg_out_op (TCGContext
*s
, int opc
, const TCGArg
*args
,
1025 const int *const_args
)
1030 case INDEX_op_exit_tb
:
1031 tcg_out_movi (s
, TCG_TYPE_I64
, TCG_REG_R3
, args
[0]);
1032 tcg_out_b (s
, 0, (tcg_target_long
) tb_ret_addr
);
1034 case INDEX_op_goto_tb
:
1035 if (s
->tb_jmp_offset
) {
1036 /* direct jump method */
1038 s
->tb_jmp_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1044 s
->tb_next_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1048 TCGLabel
*l
= &s
->labels
[args
[0]];
1051 tcg_out_b (s
, 0, l
->u
.value
);
1054 uint32_t val
= *(uint32_t *) s
->code_ptr
;
1056 /* Thanks to Andrzej Zaborowski */
1057 tcg_out32 (s
, B
| (val
& 0x3fffffc));
1058 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL24
, args
[0], 0);
1063 tcg_out_call (s
, args
[0], const_args
[0]);
1066 if (const_args
[0]) {
1067 tcg_out_b (s
, 0, args
[0]);
1070 tcg_out32 (s
, MTSPR
| RS (args
[0]) | CTR
);
1071 tcg_out32 (s
, BCCTR
| BO_ALWAYS
);
1074 case INDEX_op_movi_i32
:
1075 tcg_out_movi (s
, TCG_TYPE_I32
, args
[0], args
[1]);
1077 case INDEX_op_movi_i64
:
1078 tcg_out_movi (s
, TCG_TYPE_I64
, args
[0], args
[1]);
1080 case INDEX_op_ld8u_i32
:
1081 case INDEX_op_ld8u_i64
:
1082 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1084 case INDEX_op_ld8s_i32
:
1085 case INDEX_op_ld8s_i64
:
1086 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1087 tcg_out32 (s
, EXTSB
| RS (args
[0]) | RA (args
[0]));
1089 case INDEX_op_ld16u_i32
:
1090 case INDEX_op_ld16u_i64
:
1091 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHZ
, LHZX
);
1093 case INDEX_op_ld16s_i32
:
1094 case INDEX_op_ld16s_i64
:
1095 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHA
, LHAX
);
1097 case INDEX_op_ld_i32
:
1098 case INDEX_op_ld32u_i64
:
1099 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LWZ
, LWZX
);
1101 case INDEX_op_ld32s_i64
:
1102 tcg_out_ldsta (s
, args
[0], args
[1], args
[2], LWA
, LWAX
);
1104 case INDEX_op_ld_i64
:
1105 tcg_out_ldsta (s
, args
[0], args
[1], args
[2], LD
, LDX
);
1107 case INDEX_op_st8_i32
:
1108 case INDEX_op_st8_i64
:
1109 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STB
, STBX
);
1111 case INDEX_op_st16_i32
:
1112 case INDEX_op_st16_i64
:
1113 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STH
, STHX
);
1115 case INDEX_op_st_i32
:
1116 case INDEX_op_st32_i64
:
1117 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STW
, STWX
);
1119 case INDEX_op_st_i64
:
1120 tcg_out_ldsta (s
, args
[0], args
[1], args
[2], STD
, STDX
);
1123 case INDEX_op_add_i32
:
1125 ppc_addi32 (s
, args
[0], args
[1], args
[2]);
1127 tcg_out32 (s
, ADD
| TAB (args
[0], args
[1], args
[2]));
1129 case INDEX_op_sub_i32
:
1131 ppc_addi32 (s
, args
[0], args
[1], -args
[2]);
1133 tcg_out32 (s
, SUBF
| TAB (args
[0], args
[2], args
[1]));
1136 case INDEX_op_and_i64
:
1137 case INDEX_op_and_i32
:
1138 if (const_args
[2]) {
1139 if ((args
[2] & 0xffff) == args
[2])
1140 tcg_out32 (s
, ANDI
| RS (args
[1]) | RA (args
[0]) | args
[2]);
1141 else if ((args
[2] & 0xffff0000) == args
[2])
1142 tcg_out32 (s
, ANDIS
| RS (args
[1]) | RA (args
[0])
1143 | ((args
[2] >> 16) & 0xffff));
1145 tcg_out_movi (s
, (opc
== INDEX_op_and_i32
1149 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], 0));
1153 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], args
[2]));
1155 case INDEX_op_or_i64
:
1156 case INDEX_op_or_i32
:
1157 if (const_args
[2]) {
1158 if (args
[2] & 0xffff) {
1159 tcg_out32 (s
, ORI
| RS (args
[1]) | RA (args
[0])
1160 | (args
[2] & 0xffff));
1162 tcg_out32 (s
, ORIS
| RS (args
[0]) | RA (args
[0])
1163 | ((args
[2] >> 16) & 0xffff));
1166 tcg_out32 (s
, ORIS
| RS (args
[1]) | RA (args
[0])
1167 | ((args
[2] >> 16) & 0xffff));
1171 tcg_out32 (s
, OR
| SAB (args
[1], args
[0], args
[2]));
1173 case INDEX_op_xor_i64
:
1174 case INDEX_op_xor_i32
:
1175 if (const_args
[2]) {
1176 if ((args
[2] & 0xffff) == args
[2])
1177 tcg_out32 (s
, XORI
| RS (args
[1]) | RA (args
[0])
1178 | (args
[2] & 0xffff));
1179 else if ((args
[2] & 0xffff0000) == args
[2])
1180 tcg_out32 (s
, XORIS
| RS (args
[1]) | RA (args
[0])
1181 | ((args
[2] >> 16) & 0xffff));
1183 tcg_out_movi (s
, (opc
== INDEX_op_and_i32
1187 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], 0));
1191 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], args
[2]));
1194 case INDEX_op_mul_i32
:
1195 if (const_args
[2]) {
1196 if (args
[2] == (int16_t) args
[2])
1197 tcg_out32 (s
, MULLI
| RT (args
[0]) | RA (args
[1])
1198 | (args
[2] & 0xffff));
1200 tcg_out_movi (s
, TCG_TYPE_I32
, 0, args
[2]);
1201 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], 0));
1205 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], args
[2]));
1208 case INDEX_op_div_i32
:
1209 tcg_out32 (s
, DIVW
| TAB (args
[0], args
[1], args
[2]));
1212 case INDEX_op_divu_i32
:
1213 tcg_out32 (s
, DIVWU
| TAB (args
[0], args
[1], args
[2]));
1216 case INDEX_op_rem_i32
:
1217 tcg_out32 (s
, DIVW
| TAB (0, args
[1], args
[2]));
1218 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1219 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1222 case INDEX_op_remu_i32
:
1223 tcg_out32 (s
, DIVWU
| TAB (0, args
[1], args
[2]));
1224 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1225 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1228 case INDEX_op_shl_i32
:
1229 if (const_args
[2]) {
1230 tcg_out32 (s
, (RLWINM
1240 tcg_out32 (s
, SLW
| SAB (args
[1], args
[0], args
[2]));
1242 case INDEX_op_shr_i32
:
1243 if (const_args
[2]) {
1244 tcg_out32 (s
, (RLWINM
1254 tcg_out32 (s
, SRW
| SAB (args
[1], args
[0], args
[2]));
1256 case INDEX_op_sar_i32
:
1258 tcg_out32 (s
, SRAWI
| RS (args
[1]) | RA (args
[0]) | SH (args
[2]));
1260 tcg_out32 (s
, SRAW
| SAB (args
[1], args
[0], args
[2]));
1263 case INDEX_op_brcond_i32
:
1264 tcg_out_brcond (s
, args
[2], args
[0], args
[1], const_args
[1], args
[3], 0);
1267 case INDEX_op_brcond_i64
:
1268 tcg_out_brcond (s
, args
[2], args
[0], args
[1], const_args
[1], args
[3], 1);
1271 case INDEX_op_neg_i32
:
1272 case INDEX_op_neg_i64
:
1273 tcg_out32 (s
, NEG
| RT (args
[0]) | RA (args
[1]));
1276 case INDEX_op_add_i64
:
1278 ppc_addi64 (s
, args
[0], args
[1], args
[2]);
1280 tcg_out32 (s
, ADD
| TAB (args
[0], args
[1], args
[2]));
1282 case INDEX_op_sub_i64
:
1284 ppc_addi64 (s
, args
[0], args
[1], -args
[2]);
1286 tcg_out32 (s
, SUBF
| TAB (args
[0], args
[2], args
[1]));
1289 case INDEX_op_shl_i64
:
1291 tcg_out_rld (s
, RLDICR
, args
[0], args
[1], args
[2], 63 - args
[2]);
1293 tcg_out32 (s
, SLD
| SAB (args
[1], args
[0], args
[2]));
1295 case INDEX_op_shr_i64
:
1297 tcg_out_rld (s
, RLDICL
, args
[0], args
[1], 64 - args
[2], args
[2]);
1299 tcg_out32 (s
, SRD
| SAB (args
[1], args
[0], args
[2]));
1301 case INDEX_op_sar_i64
:
1302 if (const_args
[2]) {
1303 int sh
= SH (args
[2] & 0x1f) | (((args
[2] >> 5) & 1) << 1);
1304 tcg_out32 (s
, SRADI
| RA (args
[0]) | RS (args
[1]) | sh
);
1307 tcg_out32 (s
, SRAD
| SAB (args
[1], args
[0], args
[2]));
1310 case INDEX_op_mul_i64
:
1311 tcg_out32 (s
, MULLD
| TAB (args
[0], args
[1], args
[2]));
1313 case INDEX_op_div_i64
:
1314 tcg_out32 (s
, DIVD
| TAB (args
[0], args
[1], args
[2]));
1316 case INDEX_op_divu_i64
:
1317 tcg_out32 (s
, DIVDU
| TAB (args
[0], args
[1], args
[2]));
1319 case INDEX_op_rem_i64
:
1320 tcg_out32 (s
, DIVD
| TAB (0, args
[1], args
[2]));
1321 tcg_out32 (s
, MULLD
| TAB (0, 0, args
[2]));
1322 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1324 case INDEX_op_remu_i64
:
1325 tcg_out32 (s
, DIVDU
| TAB (0, args
[1], args
[2]));
1326 tcg_out32 (s
, MULLD
| TAB (0, 0, args
[2]));
1327 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1330 case INDEX_op_qemu_ld8u
:
1331 tcg_out_qemu_ld (s
, args
, 0);
1333 case INDEX_op_qemu_ld8s
:
1334 tcg_out_qemu_ld (s
, args
, 0 | 4);
1336 case INDEX_op_qemu_ld16u
:
1337 tcg_out_qemu_ld (s
, args
, 1);
1339 case INDEX_op_qemu_ld16s
:
1340 tcg_out_qemu_ld (s
, args
, 1 | 4);
1342 case INDEX_op_qemu_ld32u
:
1343 tcg_out_qemu_ld (s
, args
, 2);
1345 case INDEX_op_qemu_ld32s
:
1346 tcg_out_qemu_ld (s
, args
, 2 | 4);
1348 case INDEX_op_qemu_ld64
:
1349 tcg_out_qemu_ld (s
, args
, 3);
1351 case INDEX_op_qemu_st8
:
1352 tcg_out_qemu_st (s
, args
, 0);
1354 case INDEX_op_qemu_st16
:
1355 tcg_out_qemu_st (s
, args
, 1);
1357 case INDEX_op_qemu_st32
:
1358 tcg_out_qemu_st (s
, args
, 2);
1360 case INDEX_op_qemu_st64
:
1361 tcg_out_qemu_st (s
, args
, 3);
1364 case INDEX_op_ext8s_i32
:
1365 case INDEX_op_ext8s_i64
:
1368 case INDEX_op_ext16s_i32
:
1369 case INDEX_op_ext16s_i64
:
1372 case INDEX_op_ext32s_i64
:
1376 tcg_out32 (s
, c
| RS (args
[1]) | RA (args
[0]));
1380 tcg_dump_ops (s
, stderr
);
1385 static const TCGTargetOpDef ppc_op_defs
[] = {
1386 { INDEX_op_exit_tb
, { } },
1387 { INDEX_op_goto_tb
, { } },
1388 { INDEX_op_call
, { "ri" } },
1389 { INDEX_op_jmp
, { "ri" } },
1390 { INDEX_op_br
, { } },
1392 { INDEX_op_mov_i32
, { "r", "r" } },
1393 { INDEX_op_mov_i64
, { "r", "r" } },
1394 { INDEX_op_movi_i32
, { "r" } },
1395 { INDEX_op_movi_i64
, { "r" } },
1397 { INDEX_op_ld8u_i32
, { "r", "r" } },
1398 { INDEX_op_ld8s_i32
, { "r", "r" } },
1399 { INDEX_op_ld16u_i32
, { "r", "r" } },
1400 { INDEX_op_ld16s_i32
, { "r", "r" } },
1401 { INDEX_op_ld_i32
, { "r", "r" } },
1402 { INDEX_op_ld_i64
, { "r", "r" } },
1403 { INDEX_op_st8_i32
, { "r", "r" } },
1404 { INDEX_op_st8_i64
, { "r", "r" } },
1405 { INDEX_op_st16_i32
, { "r", "r" } },
1406 { INDEX_op_st16_i64
, { "r", "r" } },
1407 { INDEX_op_st_i32
, { "r", "r" } },
1408 { INDEX_op_st_i64
, { "r", "r" } },
1409 { INDEX_op_st32_i64
, { "r", "r" } },
1411 { INDEX_op_ld8u_i64
, { "r", "r" } },
1412 { INDEX_op_ld8s_i64
, { "r", "r" } },
1413 { INDEX_op_ld16u_i64
, { "r", "r" } },
1414 { INDEX_op_ld16s_i64
, { "r", "r" } },
1415 { INDEX_op_ld32u_i64
, { "r", "r" } },
1416 { INDEX_op_ld32s_i64
, { "r", "r" } },
1417 { INDEX_op_ld_i64
, { "r", "r" } },
1419 { INDEX_op_add_i32
, { "r", "r", "ri" } },
1420 { INDEX_op_mul_i32
, { "r", "r", "ri" } },
1421 { INDEX_op_div_i32
, { "r", "r", "r" } },
1422 { INDEX_op_divu_i32
, { "r", "r", "r" } },
1423 { INDEX_op_rem_i32
, { "r", "r", "r" } },
1424 { INDEX_op_remu_i32
, { "r", "r", "r" } },
1425 { INDEX_op_sub_i32
, { "r", "r", "ri" } },
1426 { INDEX_op_and_i32
, { "r", "r", "ri" } },
1427 { INDEX_op_or_i32
, { "r", "r", "ri" } },
1428 { INDEX_op_xor_i32
, { "r", "r", "ri" } },
1430 { INDEX_op_shl_i32
, { "r", "r", "ri" } },
1431 { INDEX_op_shr_i32
, { "r", "r", "ri" } },
1432 { INDEX_op_sar_i32
, { "r", "r", "ri" } },
1434 { INDEX_op_brcond_i32
, { "r", "ri" } },
1435 { INDEX_op_brcond_i64
, { "r", "ri" } },
1437 { INDEX_op_neg_i32
, { "r", "r" } },
1439 { INDEX_op_add_i64
, { "r", "r", "ri" } },
1440 { INDEX_op_sub_i64
, { "r", "r", "ri" } },
1441 { INDEX_op_and_i64
, { "r", "r", "rZ" } },
1442 { INDEX_op_or_i64
, { "r", "r", "rZ" } },
1443 { INDEX_op_xor_i64
, { "r", "r", "rZ" } },
1445 { INDEX_op_shl_i64
, { "r", "r", "ri" } },
1446 { INDEX_op_shr_i64
, { "r", "r", "ri" } },
1447 { INDEX_op_sar_i64
, { "r", "r", "ri" } },
1449 { INDEX_op_mul_i64
, { "r", "r", "r" } },
1450 { INDEX_op_div_i64
, { "r", "r", "r" } },
1451 { INDEX_op_divu_i64
, { "r", "r", "r" } },
1452 { INDEX_op_rem_i64
, { "r", "r", "r" } },
1453 { INDEX_op_remu_i64
, { "r", "r", "r" } },
1455 { INDEX_op_neg_i64
, { "r", "r" } },
1457 { INDEX_op_qemu_ld8u
, { "r", "L" } },
1458 { INDEX_op_qemu_ld8s
, { "r", "L" } },
1459 { INDEX_op_qemu_ld16u
, { "r", "L" } },
1460 { INDEX_op_qemu_ld16s
, { "r", "L" } },
1461 { INDEX_op_qemu_ld32u
, { "r", "L" } },
1462 { INDEX_op_qemu_ld32s
, { "r", "L" } },
1463 { INDEX_op_qemu_ld64
, { "r", "L" } },
1465 { INDEX_op_qemu_st8
, { "S", "S" } },
1466 { INDEX_op_qemu_st16
, { "S", "S" } },
1467 { INDEX_op_qemu_st32
, { "S", "S" } },
1468 { INDEX_op_qemu_st64
, { "S", "S", "S" } },
1470 { INDEX_op_ext8s_i32
, { "r", "r" } },
1471 { INDEX_op_ext16s_i32
, { "r", "r" } },
1472 { INDEX_op_ext8s_i64
, { "r", "r" } },
1473 { INDEX_op_ext16s_i64
, { "r", "r" } },
1474 { INDEX_op_ext32s_i64
, { "r", "r" } },
1479 void tcg_target_init (TCGContext
*s
)
1481 tcg_regset_set32 (tcg_target_available_regs
[TCG_TYPE_I32
], 0, 0xffffffff);
1482 tcg_regset_set32 (tcg_target_available_regs
[TCG_TYPE_I64
], 0, 0xffffffff);
1483 tcg_regset_set32 (tcg_target_call_clobber_regs
, 0,
1492 (1 << TCG_REG_R10
) |
1493 (1 << TCG_REG_R11
) |
1497 tcg_regset_clear (s
->reserved_regs
);
1498 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R0
);
1499 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R1
);
1500 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R2
);
1501 tcg_regset_set_reg (s
->reserved_regs
, TCG_REG_R13
);
1503 tcg_add_target_add_op_defs (ppc_op_defs
);