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 #include "tcg-be-ldst.h"
27 /* Shorthand for size of a pointer. Avoid promotion to unsigned. */
28 #define SZP ((int)sizeof(void *))
30 #define TCG_CT_CONST_S16 0x100
31 #define TCG_CT_CONST_U16 0x200
32 #define TCG_CT_CONST_S32 0x400
33 #define TCG_CT_CONST_U32 0x800
34 #define TCG_CT_CONST_ZERO 0x1000
35 #define TCG_CT_CONST_MONE 0x2000
37 static tcg_insn_unit
*tb_ret_addr
;
39 #if TARGET_LONG_BITS == 32
52 static bool have_isa_2_06
;
53 #define HAVE_ISA_2_06 have_isa_2_06
54 #define HAVE_ISEL have_isa_2_06
56 #ifdef CONFIG_USE_GUEST_BASE
57 #define TCG_GUEST_BASE_REG 30
59 #define TCG_GUEST_BASE_REG 0
63 static const char * const tcg_target_reg_names
[TCG_TARGET_NB_REGS
] = {
99 static const int tcg_target_reg_alloc_order
[] = {
100 TCG_REG_R14
, /* call saved registers */
118 TCG_REG_R12
, /* call clobbered, non-arguments */
120 TCG_REG_R10
, /* call clobbered, arguments */
130 static const int tcg_target_call_iarg_regs
[] = {
141 static const int tcg_target_call_oarg_regs
[] = {
145 static const int tcg_target_callee_save_regs
[] = {
162 TCG_REG_R27
, /* currently used for the global env */
169 static inline bool in_range_b(tcg_target_long target
)
171 return target
== sextract64(target
, 0, 26);
174 static uint32_t reloc_pc24_val(tcg_insn_unit
*pc
, tcg_insn_unit
*target
)
176 ptrdiff_t disp
= tcg_ptr_byte_diff(target
, pc
);
177 assert(in_range_b(disp
));
178 return disp
& 0x3fffffc;
181 static void reloc_pc24(tcg_insn_unit
*pc
, tcg_insn_unit
*target
)
183 *pc
= (*pc
& ~0x3fffffc) | reloc_pc24_val(pc
, target
);
186 static uint16_t reloc_pc14_val(tcg_insn_unit
*pc
, tcg_insn_unit
*target
)
188 ptrdiff_t disp
= tcg_ptr_byte_diff(target
, pc
);
189 assert(disp
== (int16_t) disp
);
190 return disp
& 0xfffc;
193 static void reloc_pc14(tcg_insn_unit
*pc
, tcg_insn_unit
*target
)
195 *pc
= (*pc
& ~0xfffc) | reloc_pc14_val(pc
, target
);
198 static inline void tcg_out_b_noaddr(TCGContext
*s
, int insn
)
200 unsigned retrans
= *s
->code_ptr
& 0x3fffffc;
201 tcg_out32(s
, insn
| retrans
);
204 static inline void tcg_out_bc_noaddr(TCGContext
*s
, int insn
)
206 unsigned retrans
= *s
->code_ptr
& 0xfffc;
207 tcg_out32(s
, insn
| retrans
);
210 static void patch_reloc(tcg_insn_unit
*code_ptr
, int type
,
211 intptr_t value
, intptr_t addend
)
213 tcg_insn_unit
*target
= (tcg_insn_unit
*)value
;
218 reloc_pc14(code_ptr
, target
);
221 reloc_pc24(code_ptr
, target
);
228 /* parse target specific constraints */
229 static int target_parse_constraint(TCGArgConstraint
*ct
, const char **pct_str
)
235 case 'A': case 'B': case 'C': case 'D':
236 ct
->ct
|= TCG_CT_REG
;
237 tcg_regset_set_reg(ct
->u
.regs
, 3 + ct_str
[0] - 'A');
240 ct
->ct
|= TCG_CT_REG
;
241 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
243 case 'L': /* qemu_ld constraint */
244 ct
->ct
|= TCG_CT_REG
;
245 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
246 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
247 #ifdef CONFIG_SOFTMMU
248 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R4
);
249 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R5
);
252 case 'S': /* qemu_st constraint */
253 ct
->ct
|= TCG_CT_REG
;
254 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
255 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
256 #ifdef CONFIG_SOFTMMU
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
);
263 ct
->ct
|= TCG_CT_CONST_S16
;
266 ct
->ct
|= TCG_CT_CONST_U16
;
269 ct
->ct
|= TCG_CT_CONST_MONE
;
272 ct
->ct
|= TCG_CT_CONST_S32
;
275 ct
->ct
|= TCG_CT_CONST_U32
;
278 ct
->ct
|= TCG_CT_CONST_ZERO
;
288 /* test if a constant matches the constraint */
289 static int tcg_target_const_match(tcg_target_long val
, TCGType type
,
290 const TCGArgConstraint
*arg_ct
)
293 if (ct
& TCG_CT_CONST
) {
297 /* The only 32-bit constraint we use aside from
298 TCG_CT_CONST is TCG_CT_CONST_S16. */
299 if (type
== TCG_TYPE_I32
) {
303 if ((ct
& TCG_CT_CONST_S16
) && val
== (int16_t)val
) {
305 } else if ((ct
& TCG_CT_CONST_U16
) && val
== (uint16_t)val
) {
307 } else if ((ct
& TCG_CT_CONST_S32
) && val
== (int32_t)val
) {
309 } else if ((ct
& TCG_CT_CONST_U32
) && val
== (uint32_t)val
) {
311 } else if ((ct
& TCG_CT_CONST_ZERO
) && val
== 0) {
313 } else if ((ct
& TCG_CT_CONST_MONE
) && val
== -1) {
319 #define OPCD(opc) ((opc)<<26)
320 #define XO19(opc) (OPCD(19)|((opc)<<1))
321 #define MD30(opc) (OPCD(30)|((opc)<<2))
322 #define MDS30(opc) (OPCD(30)|((opc)<<1))
323 #define XO31(opc) (OPCD(31)|((opc)<<1))
324 #define XO58(opc) (OPCD(58)|(opc))
325 #define XO62(opc) (OPCD(62)|(opc))
329 #define LBZ OPCD( 34)
330 #define LHZ OPCD( 40)
331 #define LHA OPCD( 42)
332 #define LWZ OPCD( 32)
333 #define STB OPCD( 38)
334 #define STH OPCD( 44)
335 #define STW OPCD( 36)
338 #define STDU XO62( 1)
339 #define STDX XO31(149)
342 #define LDX XO31( 21)
345 #define LWAX XO31(341)
347 #define ADDIC OPCD( 12)
348 #define ADDI OPCD( 14)
349 #define ADDIS OPCD( 15)
350 #define ORI OPCD( 24)
351 #define ORIS OPCD( 25)
352 #define XORI OPCD( 26)
353 #define XORIS OPCD( 27)
354 #define ANDI OPCD( 28)
355 #define ANDIS OPCD( 29)
356 #define MULLI OPCD( 7)
357 #define CMPLI OPCD( 10)
358 #define CMPI OPCD( 11)
359 #define SUBFIC OPCD( 8)
361 #define LWZU OPCD( 33)
362 #define STWU OPCD( 37)
364 #define RLWIMI OPCD( 20)
365 #define RLWINM OPCD( 21)
366 #define RLWNM OPCD( 23)
368 #define RLDICL MD30( 0)
369 #define RLDICR MD30( 1)
370 #define RLDIMI MD30( 3)
371 #define RLDCL MDS30( 8)
373 #define BCLR XO19( 16)
374 #define BCCTR XO19(528)
375 #define CRAND XO19(257)
376 #define CRANDC XO19(129)
377 #define CRNAND XO19(225)
378 #define CROR XO19(449)
379 #define CRNOR XO19( 33)
381 #define EXTSB XO31(954)
382 #define EXTSH XO31(922)
383 #define EXTSW XO31(986)
384 #define ADD XO31(266)
385 #define ADDE XO31(138)
386 #define ADDME XO31(234)
387 #define ADDZE XO31(202)
388 #define ADDC XO31( 10)
389 #define AND XO31( 28)
390 #define SUBF XO31( 40)
391 #define SUBFC XO31( 8)
392 #define SUBFE XO31(136)
393 #define SUBFME XO31(232)
394 #define SUBFZE XO31(200)
396 #define XOR XO31(316)
397 #define MULLW XO31(235)
398 #define MULHWU XO31( 11)
399 #define DIVW XO31(491)
400 #define DIVWU XO31(459)
402 #define CMPL XO31( 32)
403 #define LHBRX XO31(790)
404 #define LWBRX XO31(534)
405 #define LDBRX XO31(532)
406 #define STHBRX XO31(918)
407 #define STWBRX XO31(662)
408 #define STDBRX XO31(660)
409 #define MFSPR XO31(339)
410 #define MTSPR XO31(467)
411 #define SRAWI XO31(824)
412 #define NEG XO31(104)
413 #define MFCR XO31( 19)
414 #define MFOCRF (MFCR | (1u << 20))
415 #define NOR XO31(124)
416 #define CNTLZW XO31( 26)
417 #define CNTLZD XO31( 58)
418 #define ANDC XO31( 60)
419 #define ORC XO31(412)
420 #define EQV XO31(284)
421 #define NAND XO31(476)
422 #define ISEL XO31( 15)
424 #define MULLD XO31(233)
425 #define MULHD XO31( 73)
426 #define MULHDU XO31( 9)
427 #define DIVD XO31(489)
428 #define DIVDU XO31(457)
430 #define LBZX XO31( 87)
431 #define LHZX XO31(279)
432 #define LHAX XO31(343)
433 #define LWZX XO31( 23)
434 #define STBX XO31(215)
435 #define STHX XO31(407)
436 #define STWX XO31(151)
438 #define SPR(a, b) ((((a)<<5)|(b))<<11)
440 #define CTR SPR(9, 0)
442 #define SLW XO31( 24)
443 #define SRW XO31(536)
444 #define SRAW XO31(792)
446 #define SLD XO31( 27)
447 #define SRD XO31(539)
448 #define SRAD XO31(794)
449 #define SRADI XO31(413<<1)
452 #define TRAP (TW | TO(31))
454 #define RT(r) ((r)<<21)
455 #define RS(r) ((r)<<21)
456 #define RA(r) ((r)<<16)
457 #define RB(r) ((r)<<11)
458 #define TO(t) ((t)<<21)
459 #define SH(s) ((s)<<11)
460 #define MB(b) ((b)<<6)
461 #define ME(e) ((e)<<1)
462 #define BO(o) ((o)<<21)
463 #define MB64(b) ((b)<<5)
464 #define FXM(b) (1 << (19 - (b)))
468 #define TAB(t, a, b) (RT(t) | RA(a) | RB(b))
469 #define SAB(s, a, b) (RS(s) | RA(a) | RB(b))
470 #define TAI(s, a, i) (RT(s) | RA(a) | ((i) & 0xffff))
471 #define SAI(s, a, i) (RS(s) | RA(a) | ((i) & 0xffff))
473 #define BF(n) ((n)<<23)
474 #define BI(n, c) (((c)+((n)*4))<<16)
475 #define BT(n, c) (((c)+((n)*4))<<21)
476 #define BA(n, c) (((c)+((n)*4))<<16)
477 #define BB(n, c) (((c)+((n)*4))<<11)
478 #define BC_(n, c) (((c)+((n)*4))<<6)
480 #define BO_COND_TRUE BO(12)
481 #define BO_COND_FALSE BO( 4)
482 #define BO_ALWAYS BO(20)
491 static const uint32_t tcg_to_bc
[] = {
492 [TCG_COND_EQ
] = BC
| BI(7, CR_EQ
) | BO_COND_TRUE
,
493 [TCG_COND_NE
] = BC
| BI(7, CR_EQ
) | BO_COND_FALSE
,
494 [TCG_COND_LT
] = BC
| BI(7, CR_LT
) | BO_COND_TRUE
,
495 [TCG_COND_GE
] = BC
| BI(7, CR_LT
) | BO_COND_FALSE
,
496 [TCG_COND_LE
] = BC
| BI(7, CR_GT
) | BO_COND_FALSE
,
497 [TCG_COND_GT
] = BC
| BI(7, CR_GT
) | BO_COND_TRUE
,
498 [TCG_COND_LTU
] = BC
| BI(7, CR_LT
) | BO_COND_TRUE
,
499 [TCG_COND_GEU
] = BC
| BI(7, CR_LT
) | BO_COND_FALSE
,
500 [TCG_COND_LEU
] = BC
| BI(7, CR_GT
) | BO_COND_FALSE
,
501 [TCG_COND_GTU
] = BC
| BI(7, CR_GT
) | BO_COND_TRUE
,
504 /* The low bit here is set if the RA and RB fields must be inverted. */
505 static const uint32_t tcg_to_isel
[] = {
506 [TCG_COND_EQ
] = ISEL
| BC_(7, CR_EQ
),
507 [TCG_COND_NE
] = ISEL
| BC_(7, CR_EQ
) | 1,
508 [TCG_COND_LT
] = ISEL
| BC_(7, CR_LT
),
509 [TCG_COND_GE
] = ISEL
| BC_(7, CR_LT
) | 1,
510 [TCG_COND_LE
] = ISEL
| BC_(7, CR_GT
) | 1,
511 [TCG_COND_GT
] = ISEL
| BC_(7, CR_GT
),
512 [TCG_COND_LTU
] = ISEL
| BC_(7, CR_LT
),
513 [TCG_COND_GEU
] = ISEL
| BC_(7, CR_LT
) | 1,
514 [TCG_COND_LEU
] = ISEL
| BC_(7, CR_GT
) | 1,
515 [TCG_COND_GTU
] = ISEL
| BC_(7, CR_GT
),
518 static inline void tcg_out_mov(TCGContext
*s
, TCGType type
,
519 TCGReg ret
, TCGReg arg
)
522 tcg_out32(s
, OR
| SAB(arg
, ret
, arg
));
526 static inline void tcg_out_rld(TCGContext
*s
, int op
, TCGReg ra
, TCGReg rs
,
529 sh
= SH(sh
& 0x1f) | (((sh
>> 5) & 1) << 1);
530 mb
= MB64((mb
>> 5) | ((mb
<< 1) & 0x3f));
531 tcg_out32(s
, op
| RA(ra
) | RS(rs
) | sh
| mb
);
534 static inline void tcg_out_rlw(TCGContext
*s
, int op
, TCGReg ra
, TCGReg rs
,
535 int sh
, int mb
, int me
)
537 tcg_out32(s
, op
| RA(ra
) | RS(rs
) | SH(sh
) | MB(mb
) | ME(me
));
540 static inline void tcg_out_ext32u(TCGContext
*s
, TCGReg dst
, TCGReg src
)
542 tcg_out_rld(s
, RLDICL
, dst
, src
, 0, 32);
545 static inline void tcg_out_shli64(TCGContext
*s
, TCGReg dst
, TCGReg src
, int c
)
547 tcg_out_rld(s
, RLDICR
, dst
, src
, c
, 63 - c
);
550 static inline void tcg_out_shri64(TCGContext
*s
, TCGReg dst
, TCGReg src
, int c
)
552 tcg_out_rld(s
, RLDICL
, dst
, src
, 64 - c
, c
);
555 static void tcg_out_movi32(TCGContext
*s
, TCGReg ret
, int32_t arg
)
557 if (arg
== (int16_t) arg
) {
558 tcg_out32(s
, ADDI
| TAI(ret
, 0, arg
));
560 tcg_out32(s
, ADDIS
| TAI(ret
, 0, arg
>> 16));
562 tcg_out32(s
, ORI
| SAI(ret
, ret
, arg
));
567 static void tcg_out_movi(TCGContext
*s
, TCGType type
, TCGReg ret
,
570 if (type
== TCG_TYPE_I32
|| arg
== (int32_t)arg
) {
571 tcg_out_movi32(s
, ret
, arg
);
572 } else if (arg
== (uint32_t)arg
&& !(arg
& 0x8000)) {
573 tcg_out32(s
, ADDI
| TAI(ret
, 0, arg
));
574 tcg_out32(s
, ORIS
| SAI(ret
, ret
, arg
>> 16));
576 int32_t high
= arg
>> 32;
577 tcg_out_movi32(s
, ret
, high
);
579 tcg_out_shli64(s
, ret
, ret
, 32);
581 if (arg
& 0xffff0000) {
582 tcg_out32(s
, ORIS
| SAI(ret
, ret
, arg
>> 16));
585 tcg_out32(s
, ORI
| SAI(ret
, ret
, arg
));
590 static bool mask_operand(uint32_t c
, int *mb
, int *me
)
594 /* Accept a bit pattern like:
598 Keep track of the transitions. */
599 if (c
== 0 || c
== -1) {
605 if (test
& (test
- 1)) {
610 *mb
= test ?
clz32(test
& -test
) + 1 : 0;
614 static bool mask64_operand(uint64_t c
, int *mb
, int *me
)
623 /* Accept 1..10..0. */
629 /* Accept 0..01..1. */
630 if (lsb
== 1 && (c
& (c
+ 1)) == 0) {
631 *mb
= clz64(c
+ 1) + 1;
638 static void tcg_out_andi32(TCGContext
*s
, TCGReg dst
, TCGReg src
, uint32_t c
)
642 if ((c
& 0xffff) == c
) {
643 tcg_out32(s
, ANDI
| SAI(src
, dst
, c
));
645 } else if ((c
& 0xffff0000) == c
) {
646 tcg_out32(s
, ANDIS
| SAI(src
, dst
, c
>> 16));
648 } else if (mask_operand(c
, &mb
, &me
)) {
649 tcg_out_rlw(s
, RLWINM
, dst
, src
, 0, mb
, me
);
651 tcg_out_movi(s
, TCG_TYPE_I32
, TCG_REG_R0
, c
);
652 tcg_out32(s
, AND
| SAB(src
, dst
, TCG_REG_R0
));
656 static void tcg_out_andi64(TCGContext
*s
, TCGReg dst
, TCGReg src
, uint64_t c
)
660 if ((c
& 0xffff) == c
) {
661 tcg_out32(s
, ANDI
| SAI(src
, dst
, c
));
663 } else if ((c
& 0xffff0000) == c
) {
664 tcg_out32(s
, ANDIS
| SAI(src
, dst
, c
>> 16));
666 } else if (mask64_operand(c
, &mb
, &me
)) {
668 tcg_out_rld(s
, RLDICR
, dst
, src
, 0, me
);
670 tcg_out_rld(s
, RLDICL
, dst
, src
, 0, mb
);
673 tcg_out_movi(s
, TCG_TYPE_I64
, TCG_REG_R0
, c
);
674 tcg_out32(s
, AND
| SAB(src
, dst
, TCG_REG_R0
));
678 static void tcg_out_zori32(TCGContext
*s
, TCGReg dst
, TCGReg src
, uint32_t c
,
679 int op_lo
, int op_hi
)
682 tcg_out32(s
, op_hi
| SAI(src
, dst
, c
>> 16));
686 tcg_out32(s
, op_lo
| SAI(src
, dst
, c
));
691 static void tcg_out_ori32(TCGContext
*s
, TCGReg dst
, TCGReg src
, uint32_t c
)
693 tcg_out_zori32(s
, dst
, src
, c
, ORI
, ORIS
);
696 static void tcg_out_xori32(TCGContext
*s
, TCGReg dst
, TCGReg src
, uint32_t c
)
698 tcg_out_zori32(s
, dst
, src
, c
, XORI
, XORIS
);
701 static void tcg_out_b(TCGContext
*s
, int mask
, tcg_insn_unit
*target
)
703 ptrdiff_t disp
= tcg_pcrel_diff(s
, target
);
704 if (in_range_b(disp
)) {
705 tcg_out32(s
, B
| (disp
& 0x3fffffc) | mask
);
707 tcg_out_movi(s
, TCG_TYPE_PTR
, TCG_REG_R0
, (uintptr_t)target
);
708 tcg_out32(s
, MTSPR
| RS(TCG_REG_R0
) | CTR
);
709 tcg_out32(s
, BCCTR
| BO_ALWAYS
| mask
);
713 static void tcg_out_call(TCGContext
*s
, tcg_insn_unit
*target
)
716 tcg_out_b(s
, LK
, target
);
718 /* Look through the descriptor. If the branch is in range, and we
719 don't have to spend too much effort on building the toc. */
720 void *tgt
= ((void **)target
)[0];
721 uintptr_t toc
= ((uintptr_t *)target
)[1];
722 intptr_t diff
= tcg_pcrel_diff(s
, tgt
);
724 if (in_range_b(diff
) && toc
== (uint32_t)toc
) {
725 tcg_out_movi(s
, TCG_TYPE_PTR
, TCG_REG_R2
, toc
);
726 tcg_out_b(s
, LK
, tgt
);
728 /* Fold the low bits of the constant into the addresses below. */
729 intptr_t arg
= (intptr_t)target
;
730 int ofs
= (int16_t)arg
;
732 if (ofs
+ 8 < 0x8000) {
737 tcg_out_movi(s
, TCG_TYPE_PTR
, TCG_REG_R2
, arg
);
738 tcg_out32(s
, LD
| TAI(TCG_REG_R0
, TCG_REG_R2
, ofs
));
739 tcg_out32(s
, MTSPR
| RA(TCG_REG_R0
) | CTR
);
740 tcg_out32(s
, LD
| TAI(TCG_REG_R2
, TCG_REG_R2
, ofs
+ 8));
741 tcg_out32(s
, BCCTR
| BO_ALWAYS
| LK
);
746 static void tcg_out_mem_long(TCGContext
*s
, int opi
, int opx
, TCGReg rt
,
747 TCGReg base
, tcg_target_long offset
)
749 tcg_target_long orig
= offset
, l0
, l1
, extra
= 0, align
= 0;
750 TCGReg rs
= TCG_REG_R2
;
752 assert(rt
!= TCG_REG_R2
&& base
!= TCG_REG_R2
);
759 if (rt
!= TCG_REG_R0
) {
766 case STB
: case STH
: case STW
:
770 /* For unaligned, or very large offsets, use the indexed form. */
771 if (offset
& align
|| offset
!= (int32_t)offset
) {
772 tcg_out_movi(s
, TCG_TYPE_PTR
, TCG_REG_R2
, orig
);
773 tcg_out32(s
, opx
| TAB(rt
, base
, TCG_REG_R2
));
777 l0
= (int16_t)offset
;
778 offset
= (offset
- l0
) >> 16;
779 l1
= (int16_t)offset
;
781 if (l1
< 0 && orig
>= 0) {
783 l1
= (int16_t)(offset
- 0x4000);
786 tcg_out32(s
, ADDIS
| TAI(rs
, base
, l1
));
790 tcg_out32(s
, ADDIS
| TAI(rs
, base
, extra
));
793 if (opi
!= ADDI
|| base
!= rt
|| l0
!= 0) {
794 tcg_out32(s
, opi
| TAI(rt
, base
, l0
));
798 static const uint32_t qemu_ldx_opc
[16] = {
805 [MO_BSWAP
| MO_UB
] = LBZX
,
806 [MO_BSWAP
| MO_UW
] = LHBRX
,
807 [MO_BSWAP
| MO_UL
] = LWBRX
,
808 [MO_BSWAP
| MO_Q
] = LDBRX
,
811 static const uint32_t qemu_stx_opc
[16] = {
816 [MO_BSWAP
| MO_UB
] = STBX
,
817 [MO_BSWAP
| MO_UW
] = STHBRX
,
818 [MO_BSWAP
| MO_UL
] = STWBRX
,
819 [MO_BSWAP
| MO_Q
] = STDBRX
,
822 static const uint32_t qemu_exts_opc
[4] = {
823 EXTSB
, EXTSH
, EXTSW
, 0
826 #if defined (CONFIG_SOFTMMU)
827 /* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
828 * int mmu_idx, uintptr_t ra)
830 static void * const qemu_ld_helpers
[16] = {
831 [MO_UB
] = helper_ret_ldub_mmu
,
832 [MO_LEUW
] = helper_le_lduw_mmu
,
833 [MO_LEUL
] = helper_le_ldul_mmu
,
834 [MO_LEQ
] = helper_le_ldq_mmu
,
835 [MO_BEUW
] = helper_be_lduw_mmu
,
836 [MO_BEUL
] = helper_be_ldul_mmu
,
837 [MO_BEQ
] = helper_be_ldq_mmu
,
840 /* helper signature: helper_st_mmu(CPUState *env, target_ulong addr,
841 * uintxx_t val, int mmu_idx, uintptr_t ra)
843 static void * const qemu_st_helpers
[16] = {
844 [MO_UB
] = helper_ret_stb_mmu
,
845 [MO_LEUW
] = helper_le_stw_mmu
,
846 [MO_LEUL
] = helper_le_stl_mmu
,
847 [MO_LEQ
] = helper_le_stq_mmu
,
848 [MO_BEUW
] = helper_be_stw_mmu
,
849 [MO_BEUL
] = helper_be_stl_mmu
,
850 [MO_BEQ
] = helper_be_stq_mmu
,
853 /* Perform the TLB load and compare. Places the result of the comparison
854 in CR7, loads the addend of the TLB into R3, and returns the register
855 containing the guest address (zero-extended into R4). Clobbers R0 and R2. */
857 static TCGReg
tcg_out_tlb_read(TCGContext
*s
, TCGMemOp s_bits
, TCGReg addr_reg
,
858 int mem_index
, bool is_read
)
862 ?
offsetof(CPUArchState
, tlb_table
[mem_index
][0].addr_read
)
863 : offsetof(CPUArchState
, tlb_table
[mem_index
][0].addr_write
));
864 int add_off
= offsetof(CPUArchState
, tlb_table
[mem_index
][0].addend
);
865 TCGReg base
= TCG_AREG0
;
867 /* Extract the page index, shifted into place for tlb index. */
868 if (TARGET_LONG_BITS
== 32) {
869 /* Zero-extend the address into a place helpful for further use. */
870 tcg_out_ext32u(s
, TCG_REG_R4
, addr_reg
);
871 addr_reg
= TCG_REG_R4
;
873 tcg_out_rld(s
, RLDICL
, TCG_REG_R3
, addr_reg
,
874 64 - TARGET_PAGE_BITS
, 64 - CPU_TLB_BITS
);
877 /* Compensate for very large offsets. */
878 if (add_off
>= 0x8000) {
879 /* Most target env are smaller than 32k; none are larger than 64k.
880 Simplify the logic here merely to offset by 0x7ff0, giving us a
881 range just shy of 64k. Check this assumption. */
882 QEMU_BUILD_BUG_ON(offsetof(CPUArchState
,
883 tlb_table
[NB_MMU_MODES
- 1][1])
885 tcg_out32(s
, ADDI
| TAI(TCG_REG_R2
, base
, 0x7ff0));
891 /* Extraction and shifting, part 2. */
892 if (TARGET_LONG_BITS
== 32) {
893 tcg_out_rlw(s
, RLWINM
, TCG_REG_R3
, addr_reg
,
894 32 - (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
),
895 32 - (CPU_TLB_BITS
+ CPU_TLB_ENTRY_BITS
),
896 31 - CPU_TLB_ENTRY_BITS
);
898 tcg_out_shli64(s
, TCG_REG_R3
, TCG_REG_R3
, CPU_TLB_ENTRY_BITS
);
901 tcg_out32(s
, ADD
| TAB(TCG_REG_R3
, TCG_REG_R3
, base
));
903 /* Load the tlb comparator. */
904 tcg_out32(s
, LD_ADDR
| TAI(TCG_REG_R2
, TCG_REG_R3
, cmp_off
));
906 /* Load the TLB addend for use on the fast path. Do this asap
907 to minimize any load use delay. */
908 tcg_out32(s
, LD
| TAI(TCG_REG_R3
, TCG_REG_R3
, add_off
));
910 /* Clear the non-page, non-alignment bits from the address. */
911 if (TARGET_LONG_BITS
== 32) {
912 tcg_out_rlw(s
, RLWINM
, TCG_REG_R0
, addr_reg
, 0,
913 (32 - s_bits
) & 31, 31 - TARGET_PAGE_BITS
);
914 } else if (!s_bits
) {
915 tcg_out_rld(s
, RLDICR
, TCG_REG_R0
, addr_reg
, 0, 63 - TARGET_PAGE_BITS
);
917 tcg_out_rld(s
, RLDICL
, TCG_REG_R0
, addr_reg
,
918 64 - TARGET_PAGE_BITS
, TARGET_PAGE_BITS
- s_bits
);
919 tcg_out_rld(s
, RLDICL
, TCG_REG_R0
, TCG_REG_R0
, TARGET_PAGE_BITS
, 0);
922 tcg_out32(s
, CMP
| BF(7) | RA(TCG_REG_R0
) | RB(TCG_REG_R2
) | CMP_L
);
927 /* Record the context of a call to the out of line helper code for the slow
928 path for a load or store, so that we can later generate the correct
930 static void add_qemu_ldst_label(TCGContext
*s
, bool is_ld
, TCGMemOp opc
,
931 int data_reg
, int addr_reg
, int mem_index
,
932 tcg_insn_unit
*raddr
, tcg_insn_unit
*label_ptr
)
934 TCGLabelQemuLdst
*label
= new_ldst_label(s
);
936 label
->is_ld
= is_ld
;
938 label
->datalo_reg
= data_reg
;
939 label
->addrlo_reg
= addr_reg
;
940 label
->mem_index
= mem_index
;
941 label
->raddr
= raddr
;
942 label
->label_ptr
[0] = label_ptr
;
945 static void tcg_out_qemu_ld_slow_path(TCGContext
*s
, TCGLabelQemuLdst
*lb
)
947 TCGMemOp opc
= lb
->opc
;
949 reloc_pc14(lb
->label_ptr
[0], s
->code_ptr
);
951 tcg_out_mov(s
, TCG_TYPE_PTR
, TCG_REG_R3
, TCG_AREG0
);
953 /* If the address needed to be zero-extended, we'll have already
954 placed it in R4. The only remaining case is 64-bit guest. */
955 tcg_out_mov(s
, TCG_TYPE_I64
, TCG_REG_R4
, lb
->addrlo_reg
);
957 tcg_out_movi(s
, TCG_TYPE_I32
, TCG_REG_R5
, lb
->mem_index
);
958 tcg_out32(s
, MFSPR
| RT(TCG_REG_R6
) | LR
);
960 tcg_out_call(s
, qemu_ld_helpers
[opc
& ~MO_SIGN
]);
963 uint32_t insn
= qemu_exts_opc
[opc
& MO_SIZE
];
964 tcg_out32(s
, insn
| RA(lb
->datalo_reg
) | RS(TCG_REG_R3
));
966 tcg_out_mov(s
, TCG_TYPE_I64
, lb
->datalo_reg
, TCG_REG_R3
);
969 tcg_out_b(s
, 0, lb
->raddr
);
972 static void tcg_out_qemu_st_slow_path(TCGContext
*s
, TCGLabelQemuLdst
*lb
)
974 TCGMemOp opc
= lb
->opc
;
975 TCGMemOp s_bits
= opc
& MO_SIZE
;
977 reloc_pc14(lb
->label_ptr
[0], s
->code_ptr
);
979 tcg_out_mov(s
, TCG_TYPE_I64
, TCG_REG_R3
, TCG_AREG0
);
981 /* If the address needed to be zero-extended, we'll have already
982 placed it in R4. The only remaining case is 64-bit guest. */
983 tcg_out_mov(s
, TCG_TYPE_I64
, TCG_REG_R4
, lb
->addrlo_reg
);
985 tcg_out_rld(s
, RLDICL
, TCG_REG_R5
, lb
->datalo_reg
,
986 0, 64 - (1 << (3 + s_bits
)));
987 tcg_out_movi(s
, TCG_TYPE_I32
, TCG_REG_R6
, lb
->mem_index
);
988 tcg_out32(s
, MFSPR
| RT(TCG_REG_R7
) | LR
);
990 tcg_out_call(s
, qemu_st_helpers
[opc
]);
992 tcg_out_b(s
, 0, lb
->raddr
);
996 static void tcg_out_qemu_ld(TCGContext
*s
, TCGReg data_reg
, TCGReg addr_reg
,
997 TCGMemOp opc
, int mem_index
)
1001 TCGMemOp s_bits
= opc
& MO_SIZE
;
1002 #ifdef CONFIG_SOFTMMU
1003 tcg_insn_unit
*label_ptr
;
1006 #ifdef CONFIG_SOFTMMU
1007 addr_reg
= tcg_out_tlb_read(s
, s_bits
, addr_reg
, mem_index
, true);
1009 /* Load a pointer into the current opcode w/conditional branch-link. */
1010 label_ptr
= s
->code_ptr
;
1011 tcg_out_bc_noaddr(s
, BC
| BI(7, CR_EQ
) | BO_COND_FALSE
| LK
);
1014 #else /* !CONFIG_SOFTMMU */
1015 rbase
= GUEST_BASE ? TCG_GUEST_BASE_REG
: 0;
1016 if (TARGET_LONG_BITS
== 32) {
1017 tcg_out_ext32u(s
, TCG_REG_R2
, addr_reg
);
1018 addr_reg
= TCG_REG_R2
;
1022 insn
= qemu_ldx_opc
[opc
];
1023 if (!HAVE_ISA_2_06
&& insn
== LDBRX
) {
1024 tcg_out32(s
, ADDI
| TAI(TCG_REG_R0
, addr_reg
, 4));
1025 tcg_out32(s
, LWBRX
| TAB(data_reg
, rbase
, addr_reg
));
1026 tcg_out32(s
, LWBRX
| TAB(TCG_REG_R0
, rbase
, TCG_REG_R0
));
1027 tcg_out_rld(s
, RLDIMI
, data_reg
, TCG_REG_R0
, 32, 0);
1029 tcg_out32(s
, insn
| TAB(data_reg
, rbase
, addr_reg
));
1031 insn
= qemu_ldx_opc
[opc
& (MO_SIZE
| MO_BSWAP
)];
1032 tcg_out32(s
, insn
| TAB(data_reg
, rbase
, addr_reg
));
1033 insn
= qemu_exts_opc
[s_bits
];
1034 tcg_out32(s
, insn
| RA(data_reg
) | RS(data_reg
));
1037 #ifdef CONFIG_SOFTMMU
1038 add_qemu_ldst_label(s
, true, opc
, data_reg
, addr_reg
, mem_index
,
1039 s
->code_ptr
, label_ptr
);
1043 static void tcg_out_qemu_st(TCGContext
*s
, TCGReg data_reg
, TCGReg addr_reg
,
1044 TCGMemOp opc
, int mem_index
)
1048 #ifdef CONFIG_SOFTMMU
1049 tcg_insn_unit
*label_ptr
;
1052 #ifdef CONFIG_SOFTMMU
1053 addr_reg
= tcg_out_tlb_read(s
, opc
& MO_SIZE
, addr_reg
, mem_index
, false);
1055 /* Load a pointer into the current opcode w/conditional branch-link. */
1056 label_ptr
= s
->code_ptr
;
1057 tcg_out_bc_noaddr(s
, BC
| BI(7, CR_EQ
) | BO_COND_FALSE
| LK
);
1060 #else /* !CONFIG_SOFTMMU */
1061 rbase
= GUEST_BASE ? TCG_GUEST_BASE_REG
: 0;
1062 if (TARGET_LONG_BITS
== 32) {
1063 tcg_out_ext32u(s
, TCG_REG_R2
, addr_reg
);
1064 addr_reg
= TCG_REG_R2
;
1068 insn
= qemu_stx_opc
[opc
];
1069 if (!HAVE_ISA_2_06
&& insn
== STDBRX
) {
1070 tcg_out32(s
, STWBRX
| SAB(data_reg
, rbase
, addr_reg
));
1071 tcg_out32(s
, ADDI
| TAI(TCG_REG_R2
, addr_reg
, 4));
1072 tcg_out_shri64(s
, TCG_REG_R0
, data_reg
, 32);
1073 tcg_out32(s
, STWBRX
| SAB(TCG_REG_R0
, rbase
, TCG_REG_R2
));
1075 tcg_out32(s
, insn
| SAB(data_reg
, rbase
, addr_reg
));
1078 #ifdef CONFIG_SOFTMMU
1079 add_qemu_ldst_label(s
, false, opc
, data_reg
, addr_reg
, mem_index
,
1080 s
->code_ptr
, label_ptr
);
1084 #define FRAME_SIZE ((int) \
1085 ((8 /* back chain */ \
1088 + 8 /* compiler doubleword */ \
1089 + 8 /* link editor doubleword */ \
1090 + 8 /* TOC save area */ \
1091 + TCG_STATIC_CALL_ARGS_SIZE \
1092 + CPU_TEMP_BUF_NLONGS * sizeof(long) \
1093 + ARRAY_SIZE(tcg_target_callee_save_regs) * 8 \
1096 #define REG_SAVE_BOT (FRAME_SIZE - ARRAY_SIZE(tcg_target_callee_save_regs) * 8)
1098 static void tcg_target_qemu_prologue(TCGContext
*s
)
1102 tcg_set_frame(s
, TCG_REG_CALL_STACK
,
1103 REG_SAVE_BOT
- CPU_TEMP_BUF_NLONGS
* sizeof(long),
1104 CPU_TEMP_BUF_NLONGS
* sizeof(long));
1107 /* First emit adhoc function descriptor */
1108 tcg_out64(s
, (uint64_t)s
->code_ptr
+ 24); /* entry point */
1109 tcg_out64(s
, 0); /* toc */
1110 tcg_out64(s
, 0); /* environment pointer */
1114 tcg_out32(s
, MFSPR
| RT(TCG_REG_R0
) | LR
);
1115 tcg_out32(s
, STDU
| SAI(TCG_REG_R1
, TCG_REG_R1
, -FRAME_SIZE
));
1116 for (i
= 0; i
< ARRAY_SIZE(tcg_target_callee_save_regs
); ++i
) {
1117 tcg_out32(s
, STD
| SAI(tcg_target_callee_save_regs
[i
], 1,
1118 REG_SAVE_BOT
+ i
* 8));
1120 tcg_out32(s
, STD
| SAI(TCG_REG_R0
, TCG_REG_R1
, FRAME_SIZE
+ 16));
1122 #ifdef CONFIG_USE_GUEST_BASE
1124 tcg_out_movi(s
, TCG_TYPE_PTR
, TCG_GUEST_BASE_REG
, GUEST_BASE
);
1125 tcg_regset_set_reg(s
->reserved_regs
, TCG_GUEST_BASE_REG
);
1129 tcg_out_mov(s
, TCG_TYPE_PTR
, TCG_AREG0
, tcg_target_call_iarg_regs
[0]);
1130 tcg_out32(s
, MTSPR
| RS(tcg_target_call_iarg_regs
[1]) | CTR
);
1131 tcg_out32(s
, BCCTR
| BO_ALWAYS
);
1134 tb_ret_addr
= s
->code_ptr
;
1136 for (i
= 0; i
< ARRAY_SIZE(tcg_target_callee_save_regs
); ++i
) {
1137 tcg_out32(s
, LD
| TAI(tcg_target_callee_save_regs
[i
], TCG_REG_R1
,
1138 REG_SAVE_BOT
+ i
* 8));
1140 tcg_out32(s
, LD
| TAI(TCG_REG_R0
, TCG_REG_R1
, FRAME_SIZE
+ 16));
1141 tcg_out32(s
, MTSPR
| RS(TCG_REG_R0
) | LR
);
1142 tcg_out32(s
, ADDI
| TAI(TCG_REG_R1
, TCG_REG_R1
, FRAME_SIZE
));
1143 tcg_out32(s
, BCLR
| BO_ALWAYS
);
1146 static inline void tcg_out_ld(TCGContext
*s
, TCGType type
, TCGReg ret
,
1147 TCGReg arg1
, intptr_t arg2
)
1151 if (type
== TCG_TYPE_I32
) {
1152 opi
= LWZ
, opx
= LWZX
;
1154 opi
= LD
, opx
= LDX
;
1156 tcg_out_mem_long(s
, opi
, opx
, ret
, arg1
, arg2
);
1159 static inline void tcg_out_st(TCGContext
*s
, TCGType type
, TCGReg arg
,
1160 TCGReg arg1
, intptr_t arg2
)
1164 if (type
== TCG_TYPE_I32
) {
1165 opi
= STW
, opx
= STWX
;
1167 opi
= STD
, opx
= STDX
;
1169 tcg_out_mem_long(s
, opi
, opx
, arg
, arg1
, arg2
);
1172 static void tcg_out_cmp(TCGContext
*s
, int cond
, TCGArg arg1
, TCGArg arg2
,
1173 int const_arg2
, int cr
, TCGType type
)
1178 /* Simplify the comparisons below wrt CMPI. */
1179 if (type
== TCG_TYPE_I32
) {
1180 arg2
= (int32_t)arg2
;
1187 if ((int16_t) arg2
== arg2
) {
1191 } else if ((uint16_t) arg2
== arg2
) {
1206 if ((int16_t) arg2
== arg2
) {
1221 if ((uint16_t) arg2
== arg2
) {
1234 op
|= BF(cr
) | ((type
== TCG_TYPE_I64
) << 21);
1237 tcg_out32(s
, op
| RA(arg1
) | (arg2
& 0xffff));
1240 tcg_out_movi(s
, type
, TCG_REG_R0
, arg2
);
1243 tcg_out32(s
, op
| RA(arg1
) | RB(arg2
));
1247 static void tcg_out_setcond_eq0(TCGContext
*s
, TCGType type
,
1248 TCGReg dst
, TCGReg src
)
1250 tcg_out32(s
, (type
== TCG_TYPE_I64 ? CNTLZD
: CNTLZW
) | RS(src
) | RA(dst
));
1251 tcg_out_shri64(s
, dst
, dst
, type
== TCG_TYPE_I64 ?
6 : 5);
1254 static void tcg_out_setcond_ne0(TCGContext
*s
, TCGReg dst
, TCGReg src
)
1256 /* X != 0 implies X + -1 generates a carry. Extra addition
1257 trickery means: R = X-1 + ~X + C = X-1 + (-X+1) + C = C. */
1259 tcg_out32(s
, ADDIC
| TAI(dst
, src
, -1));
1260 tcg_out32(s
, SUBFE
| TAB(dst
, dst
, src
));
1262 tcg_out32(s
, ADDIC
| TAI(TCG_REG_R0
, src
, -1));
1263 tcg_out32(s
, SUBFE
| TAB(dst
, TCG_REG_R0
, src
));
1267 static TCGReg
tcg_gen_setcond_xor(TCGContext
*s
, TCGReg arg1
, TCGArg arg2
,
1271 if ((uint32_t)arg2
== arg2
) {
1272 tcg_out_xori32(s
, TCG_REG_R0
, arg1
, arg2
);
1274 tcg_out_movi(s
, TCG_TYPE_I64
, TCG_REG_R0
, arg2
);
1275 tcg_out32(s
, XOR
| SAB(arg1
, TCG_REG_R0
, TCG_REG_R0
));
1278 tcg_out32(s
, XOR
| SAB(arg1
, TCG_REG_R0
, arg2
));
1283 static void tcg_out_setcond(TCGContext
*s
, TCGType type
, TCGCond cond
,
1284 TCGArg arg0
, TCGArg arg1
, TCGArg arg2
,
1289 /* Ignore high bits of a potential constant arg2. */
1290 if (type
== TCG_TYPE_I32
) {
1291 arg2
= (uint32_t)arg2
;
1294 /* Handle common and trivial cases before handling anything else. */
1298 tcg_out_setcond_eq0(s
, type
, arg0
, arg1
);
1301 if (type
== TCG_TYPE_I32
) {
1302 tcg_out_ext32u(s
, TCG_REG_R0
, arg1
);
1305 tcg_out_setcond_ne0(s
, arg0
, arg1
);
1308 tcg_out32(s
, NOR
| SAB(arg1
, arg0
, arg1
));
1312 /* Extract the sign bit. */
1313 tcg_out_rld(s
, RLDICL
, arg0
, arg1
,
1314 type
== TCG_TYPE_I64 ?
1 : 33, 63);
1321 /* If we have ISEL, we can implement everything with 3 or 4 insns.
1322 All other cases below are also at least 3 insns, so speed up the
1323 code generator by not considering them and always using ISEL. */
1327 tcg_out_cmp(s
, cond
, arg1
, arg2
, const_arg2
, 7, type
);
1329 isel
= tcg_to_isel
[cond
];
1331 tcg_out_movi(s
, type
, arg0
, 1);
1333 /* arg0 = (bc ? 0 : 1) */
1334 tab
= TAB(arg0
, 0, arg0
);
1337 /* arg0 = (bc ? 1 : 0) */
1338 tcg_out_movi(s
, type
, TCG_REG_R0
, 0);
1339 tab
= TAB(arg0
, arg0
, TCG_REG_R0
);
1341 tcg_out32(s
, isel
| tab
);
1347 arg1
= tcg_gen_setcond_xor(s
, arg1
, arg2
, const_arg2
);
1348 tcg_out_setcond_eq0(s
, type
, arg0
, arg1
);
1352 arg1
= tcg_gen_setcond_xor(s
, arg1
, arg2
, const_arg2
);
1353 /* Discard the high bits only once, rather than both inputs. */
1354 if (type
== TCG_TYPE_I32
) {
1355 tcg_out_ext32u(s
, TCG_REG_R0
, arg1
);
1358 tcg_out_setcond_ne0(s
, arg0
, arg1
);
1376 crop
= CRNOR
| BT(7, CR_EQ
) | BA(7, CR_LT
) | BB(7, CR_LT
);
1382 crop
= CRNOR
| BT(7, CR_EQ
) | BA(7, CR_GT
) | BB(7, CR_GT
);
1384 tcg_out_cmp(s
, cond
, arg1
, arg2
, const_arg2
, 7, type
);
1388 tcg_out32(s
, MFOCRF
| RT(TCG_REG_R0
) | FXM(7));
1389 tcg_out_rlw(s
, RLWINM
, arg0
, TCG_REG_R0
, sh
, 31, 31);
1397 static void tcg_out_bc(TCGContext
*s
, int bc
, int label_index
)
1399 TCGLabel
*l
= &s
->labels
[label_index
];
1402 tcg_out32(s
, bc
| reloc_pc14_val(s
->code_ptr
, l
->u
.value_ptr
));
1404 tcg_out_reloc(s
, s
->code_ptr
, R_PPC_REL14
, label_index
, 0);
1405 tcg_out_bc_noaddr(s
, bc
);
1409 static void tcg_out_brcond(TCGContext
*s
, TCGCond cond
,
1410 TCGArg arg1
, TCGArg arg2
, int const_arg2
,
1411 int label_index
, TCGType type
)
1413 tcg_out_cmp(s
, cond
, arg1
, arg2
, const_arg2
, 7, type
);
1414 tcg_out_bc(s
, tcg_to_bc
[cond
], label_index
);
1417 static void tcg_out_movcond(TCGContext
*s
, TCGType type
, TCGCond cond
,
1418 TCGArg dest
, TCGArg c1
, TCGArg c2
, TCGArg v1
,
1419 TCGArg v2
, bool const_c2
)
1421 /* If for some reason both inputs are zero, don't produce bad code. */
1422 if (v1
== 0 && v2
== 0) {
1423 tcg_out_movi(s
, type
, dest
, 0);
1427 tcg_out_cmp(s
, cond
, c1
, c2
, const_c2
, 7, type
);
1430 int isel
= tcg_to_isel
[cond
];
1432 /* Swap the V operands if the operation indicates inversion. */
1439 /* V1 == 0 is handled by isel; V2 == 0 must be handled by hand. */
1441 tcg_out_movi(s
, type
, TCG_REG_R0
, 0);
1443 tcg_out32(s
, isel
| TAB(dest
, v1
, v2
));
1446 cond
= tcg_invert_cond(cond
);
1448 } else if (dest
!= v1
) {
1450 tcg_out_movi(s
, type
, dest
, 0);
1452 tcg_out_mov(s
, type
, dest
, v1
);
1455 /* Branch forward over one insn */
1456 tcg_out32(s
, tcg_to_bc
[cond
] | 8);
1458 tcg_out_movi(s
, type
, dest
, 0);
1460 tcg_out_mov(s
, type
, dest
, v2
);
1465 void ppc_tb_set_jmp_target(uintptr_t jmp_addr
, uintptr_t addr
)
1469 s
.code_buf
= s
.code_ptr
= (tcg_insn_unit
*)jmp_addr
;
1470 tcg_out_b(&s
, 0, (tcg_insn_unit
*)addr
);
1471 flush_icache_range(jmp_addr
, jmp_addr
+ tcg_current_code_size(&s
));
1474 static void tcg_out_op(TCGContext
*s
, TCGOpcode opc
, const TCGArg
*args
,
1475 const int *const_args
)
1481 case INDEX_op_exit_tb
:
1482 tcg_out_movi(s
, TCG_TYPE_PTR
, TCG_REG_R3
, args
[0]);
1483 tcg_out_b(s
, 0, tb_ret_addr
);
1485 case INDEX_op_goto_tb
:
1486 if (s
->tb_jmp_offset
) {
1487 /* Direct jump method. */
1488 s
->tb_jmp_offset
[args
[0]] = tcg_current_code_size(s
);
1491 /* Indirect jump method. */
1494 s
->tb_next_offset
[args
[0]] = tcg_current_code_size(s
);
1498 TCGLabel
*l
= &s
->labels
[args
[0]];
1501 tcg_out_b(s
, 0, l
->u
.value_ptr
);
1503 tcg_out_reloc(s
, s
->code_ptr
, R_PPC_REL24
, args
[0], 0);
1504 tcg_out_b_noaddr(s
, B
);
1508 case INDEX_op_ld8u_i32
:
1509 case INDEX_op_ld8u_i64
:
1510 tcg_out_mem_long(s
, LBZ
, LBZX
, args
[0], args
[1], args
[2]);
1512 case INDEX_op_ld8s_i32
:
1513 case INDEX_op_ld8s_i64
:
1514 tcg_out_mem_long(s
, LBZ
, LBZX
, args
[0], args
[1], args
[2]);
1515 tcg_out32(s
, EXTSB
| RS(args
[0]) | RA(args
[0]));
1517 case INDEX_op_ld16u_i32
:
1518 case INDEX_op_ld16u_i64
:
1519 tcg_out_mem_long(s
, LHZ
, LHZX
, args
[0], args
[1], args
[2]);
1521 case INDEX_op_ld16s_i32
:
1522 case INDEX_op_ld16s_i64
:
1523 tcg_out_mem_long(s
, LHA
, LHAX
, args
[0], args
[1], args
[2]);
1525 case INDEX_op_ld_i32
:
1526 case INDEX_op_ld32u_i64
:
1527 tcg_out_mem_long(s
, LWZ
, LWZX
, args
[0], args
[1], args
[2]);
1529 case INDEX_op_ld32s_i64
:
1530 tcg_out_mem_long(s
, LWA
, LWAX
, args
[0], args
[1], args
[2]);
1532 case INDEX_op_ld_i64
:
1533 tcg_out_mem_long(s
, LD
, LDX
, args
[0], args
[1], args
[2]);
1535 case INDEX_op_st8_i32
:
1536 case INDEX_op_st8_i64
:
1537 tcg_out_mem_long(s
, STB
, STBX
, args
[0], args
[1], args
[2]);
1539 case INDEX_op_st16_i32
:
1540 case INDEX_op_st16_i64
:
1541 tcg_out_mem_long(s
, STH
, STHX
, args
[0], args
[1], args
[2]);
1543 case INDEX_op_st_i32
:
1544 case INDEX_op_st32_i64
:
1545 tcg_out_mem_long(s
, STW
, STWX
, args
[0], args
[1], args
[2]);
1547 case INDEX_op_st_i64
:
1548 tcg_out_mem_long(s
, STD
, STDX
, args
[0], args
[1], args
[2]);
1551 case INDEX_op_add_i32
:
1552 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1553 if (const_args
[2]) {
1555 tcg_out_mem_long(s
, ADDI
, ADD
, a0
, a1
, (int32_t)a2
);
1557 tcg_out32(s
, ADD
| TAB(a0
, a1
, a2
));
1560 case INDEX_op_sub_i32
:
1561 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1562 if (const_args
[1]) {
1563 if (const_args
[2]) {
1564 tcg_out_movi(s
, TCG_TYPE_I32
, a0
, a1
- a2
);
1566 tcg_out32(s
, SUBFIC
| TAI(a0
, a2
, a1
));
1568 } else if (const_args
[2]) {
1572 tcg_out32(s
, SUBF
| TAB(a0
, a2
, a1
));
1576 case INDEX_op_and_i32
:
1577 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1578 if (const_args
[2]) {
1579 tcg_out_andi32(s
, a0
, a1
, a2
);
1581 tcg_out32(s
, AND
| SAB(a1
, a0
, a2
));
1584 case INDEX_op_and_i64
:
1585 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1586 if (const_args
[2]) {
1587 tcg_out_andi64(s
, a0
, a1
, a2
);
1589 tcg_out32(s
, AND
| SAB(a1
, a0
, a2
));
1592 case INDEX_op_or_i64
:
1593 case INDEX_op_or_i32
:
1594 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1595 if (const_args
[2]) {
1596 tcg_out_ori32(s
, a0
, a1
, a2
);
1598 tcg_out32(s
, OR
| SAB(a1
, a0
, a2
));
1601 case INDEX_op_xor_i64
:
1602 case INDEX_op_xor_i32
:
1603 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1604 if (const_args
[2]) {
1605 tcg_out_xori32(s
, a0
, a1
, a2
);
1607 tcg_out32(s
, XOR
| SAB(a1
, a0
, a2
));
1610 case INDEX_op_andc_i32
:
1611 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1612 if (const_args
[2]) {
1613 tcg_out_andi32(s
, a0
, a1
, ~a2
);
1615 tcg_out32(s
, ANDC
| SAB(a1
, a0
, a2
));
1618 case INDEX_op_andc_i64
:
1619 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1620 if (const_args
[2]) {
1621 tcg_out_andi64(s
, a0
, a1
, ~a2
);
1623 tcg_out32(s
, ANDC
| SAB(a1
, a0
, a2
));
1626 case INDEX_op_orc_i32
:
1627 if (const_args
[2]) {
1628 tcg_out_ori32(s
, args
[0], args
[1], ~args
[2]);
1632 case INDEX_op_orc_i64
:
1633 tcg_out32(s
, ORC
| SAB(args
[1], args
[0], args
[2]));
1635 case INDEX_op_eqv_i32
:
1636 if (const_args
[2]) {
1637 tcg_out_xori32(s
, args
[0], args
[1], ~args
[2]);
1641 case INDEX_op_eqv_i64
:
1642 tcg_out32(s
, EQV
| SAB(args
[1], args
[0], args
[2]));
1644 case INDEX_op_nand_i32
:
1645 case INDEX_op_nand_i64
:
1646 tcg_out32(s
, NAND
| SAB(args
[1], args
[0], args
[2]));
1648 case INDEX_op_nor_i32
:
1649 case INDEX_op_nor_i64
:
1650 tcg_out32(s
, NOR
| SAB(args
[1], args
[0], args
[2]));
1653 case INDEX_op_mul_i32
:
1654 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1655 if (const_args
[2]) {
1656 tcg_out32(s
, MULLI
| TAI(a0
, a1
, a2
));
1658 tcg_out32(s
, MULLW
| TAB(a0
, a1
, a2
));
1662 case INDEX_op_div_i32
:
1663 tcg_out32(s
, DIVW
| TAB(args
[0], args
[1], args
[2]));
1666 case INDEX_op_divu_i32
:
1667 tcg_out32(s
, DIVWU
| TAB(args
[0], args
[1], args
[2]));
1670 case INDEX_op_shl_i32
:
1671 if (const_args
[2]) {
1672 tcg_out_rlw(s
, RLWINM
, args
[0], args
[1], args
[2], 0, 31 - args
[2]);
1674 tcg_out32(s
, SLW
| SAB(args
[1], args
[0], args
[2]));
1677 case INDEX_op_shr_i32
:
1678 if (const_args
[2]) {
1679 tcg_out_rlw(s
, RLWINM
, args
[0], args
[1], 32 - args
[2], args
[2], 31);
1681 tcg_out32(s
, SRW
| SAB(args
[1], args
[0], args
[2]));
1684 case INDEX_op_sar_i32
:
1685 if (const_args
[2]) {
1686 tcg_out32(s
, SRAWI
| RS(args
[1]) | RA(args
[0]) | SH(args
[2]));
1688 tcg_out32(s
, SRAW
| SAB(args
[1], args
[0], args
[2]));
1691 case INDEX_op_rotl_i32
:
1692 if (const_args
[2]) {
1693 tcg_out_rlw(s
, RLWINM
, args
[0], args
[1], args
[2], 0, 31);
1695 tcg_out32(s
, RLWNM
| SAB(args
[1], args
[0], args
[2])
1699 case INDEX_op_rotr_i32
:
1700 if (const_args
[2]) {
1701 tcg_out_rlw(s
, RLWINM
, args
[0], args
[1], 32 - args
[2], 0, 31);
1703 tcg_out32(s
, SUBFIC
| TAI(TCG_REG_R0
, args
[2], 32));
1704 tcg_out32(s
, RLWNM
| SAB(args
[1], args
[0], TCG_REG_R0
)
1709 case INDEX_op_brcond_i32
:
1710 tcg_out_brcond(s
, args
[2], args
[0], args
[1], const_args
[1],
1711 args
[3], TCG_TYPE_I32
);
1714 case INDEX_op_brcond_i64
:
1715 tcg_out_brcond(s
, args
[2], args
[0], args
[1], const_args
[1],
1716 args
[3], TCG_TYPE_I64
);
1719 case INDEX_op_neg_i32
:
1720 case INDEX_op_neg_i64
:
1721 tcg_out32(s
, NEG
| RT(args
[0]) | RA(args
[1]));
1724 case INDEX_op_not_i32
:
1725 case INDEX_op_not_i64
:
1726 tcg_out32(s
, NOR
| SAB(args
[1], args
[0], args
[1]));
1729 case INDEX_op_add_i64
:
1730 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1731 if (const_args
[2]) {
1733 tcg_out_mem_long(s
, ADDI
, ADD
, a0
, a1
, a2
);
1735 tcg_out32(s
, ADD
| TAB(a0
, a1
, a2
));
1738 case INDEX_op_sub_i64
:
1739 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1740 if (const_args
[1]) {
1741 if (const_args
[2]) {
1742 tcg_out_movi(s
, TCG_TYPE_I64
, a0
, a1
- a2
);
1744 tcg_out32(s
, SUBFIC
| TAI(a0
, a2
, a1
));
1746 } else if (const_args
[2]) {
1750 tcg_out32(s
, SUBF
| TAB(a0
, a2
, a1
));
1754 case INDEX_op_shl_i64
:
1755 if (const_args
[2]) {
1756 tcg_out_shli64(s
, args
[0], args
[1], args
[2]);
1758 tcg_out32(s
, SLD
| SAB(args
[1], args
[0], args
[2]));
1761 case INDEX_op_shr_i64
:
1762 if (const_args
[2]) {
1763 tcg_out_shri64(s
, args
[0], args
[1], args
[2]);
1765 tcg_out32(s
, SRD
| SAB(args
[1], args
[0], args
[2]));
1768 case INDEX_op_sar_i64
:
1769 if (const_args
[2]) {
1770 int sh
= SH(args
[2] & 0x1f) | (((args
[2] >> 5) & 1) << 1);
1771 tcg_out32(s
, SRADI
| RA(args
[0]) | RS(args
[1]) | sh
);
1773 tcg_out32(s
, SRAD
| SAB(args
[1], args
[0], args
[2]));
1776 case INDEX_op_rotl_i64
:
1777 if (const_args
[2]) {
1778 tcg_out_rld(s
, RLDICL
, args
[0], args
[1], args
[2], 0);
1780 tcg_out32(s
, RLDCL
| SAB(args
[1], args
[0], args
[2]) | MB64(0));
1783 case INDEX_op_rotr_i64
:
1784 if (const_args
[2]) {
1785 tcg_out_rld(s
, RLDICL
, args
[0], args
[1], 64 - args
[2], 0);
1787 tcg_out32(s
, SUBFIC
| TAI(TCG_REG_R0
, args
[2], 64));
1788 tcg_out32(s
, RLDCL
| SAB(args
[1], args
[0], TCG_REG_R0
) | MB64(0));
1792 case INDEX_op_mul_i64
:
1793 a0
= args
[0], a1
= args
[1], a2
= args
[2];
1794 if (const_args
[2]) {
1795 tcg_out32(s
, MULLI
| TAI(a0
, a1
, a2
));
1797 tcg_out32(s
, MULLD
| TAB(a0
, a1
, a2
));
1800 case INDEX_op_div_i64
:
1801 tcg_out32(s
, DIVD
| TAB(args
[0], args
[1], args
[2]));
1803 case INDEX_op_divu_i64
:
1804 tcg_out32(s
, DIVDU
| TAB(args
[0], args
[1], args
[2]));
1807 case INDEX_op_qemu_ld_i32
:
1808 case INDEX_op_qemu_ld_i64
:
1809 tcg_out_qemu_ld(s
, args
[0], args
[1], args
[2], args
[3]);
1811 case INDEX_op_qemu_st_i32
:
1812 case INDEX_op_qemu_st_i64
:
1813 tcg_out_qemu_st(s
, args
[0], args
[1], args
[2], args
[3]);
1816 case INDEX_op_ext8s_i32
:
1817 case INDEX_op_ext8s_i64
:
1820 case INDEX_op_ext16s_i32
:
1821 case INDEX_op_ext16s_i64
:
1824 case INDEX_op_ext32s_i64
:
1828 tcg_out32(s
, c
| RS(args
[1]) | RA(args
[0]));
1831 case INDEX_op_setcond_i32
:
1832 tcg_out_setcond(s
, TCG_TYPE_I32
, args
[3], args
[0], args
[1], args
[2],
1835 case INDEX_op_setcond_i64
:
1836 tcg_out_setcond(s
, TCG_TYPE_I64
, args
[3], args
[0], args
[1], args
[2],
1840 case INDEX_op_bswap16_i32
:
1841 case INDEX_op_bswap16_i64
:
1842 a0
= args
[0], a1
= args
[1];
1845 /* a0 = (a1 r<< 24) & 0xff # 000c */
1846 tcg_out_rlw(s
, RLWINM
, a0
, a1
, 24, 24, 31);
1847 /* a0 = (a0 & ~0xff00) | (a1 r<< 8) & 0xff00 # 00dc */
1848 tcg_out_rlw(s
, RLWIMI
, a0
, a1
, 8, 16, 23);
1850 /* r0 = (a1 r<< 8) & 0xff00 # 00d0 */
1851 tcg_out_rlw(s
, RLWINM
, TCG_REG_R0
, a1
, 8, 16, 23);
1852 /* a0 = (a1 r<< 24) & 0xff # 000c */
1853 tcg_out_rlw(s
, RLWINM
, a0
, a1
, 24, 24, 31);
1854 /* a0 = a0 | r0 # 00dc */
1855 tcg_out32(s
, OR
| SAB(TCG_REG_R0
, a0
, a0
));
1859 case INDEX_op_bswap32_i32
:
1860 case INDEX_op_bswap32_i64
:
1861 /* Stolen from gcc's builtin_bswap32 */
1863 a0
= args
[0] == a1 ? TCG_REG_R0
: args
[0];
1865 /* a1 = args[1] # abcd */
1866 /* a0 = rotate_left (a1, 8) # bcda */
1867 tcg_out_rlw(s
, RLWINM
, a0
, a1
, 8, 0, 31);
1868 /* a0 = (a0 & ~0xff000000) | ((a1 r<< 24) & 0xff000000) # dcda */
1869 tcg_out_rlw(s
, RLWIMI
, a0
, a1
, 24, 0, 7);
1870 /* a0 = (a0 & ~0x0000ff00) | ((a1 r<< 24) & 0x0000ff00) # dcba */
1871 tcg_out_rlw(s
, RLWIMI
, a0
, a1
, 24, 16, 23);
1873 if (a0
== TCG_REG_R0
) {
1874 tcg_out_mov(s
, TCG_TYPE_REG
, args
[0], a0
);
1878 case INDEX_op_bswap64_i64
:
1879 a0
= args
[0], a1
= args
[1], a2
= TCG_REG_R0
;
1885 /* a1 = # abcd efgh */
1886 /* a0 = rl32(a1, 8) # 0000 fghe */
1887 tcg_out_rlw(s
, RLWINM
, a0
, a1
, 8, 0, 31);
1888 /* a0 = dep(a0, rl32(a1, 24), 0xff000000) # 0000 hghe */
1889 tcg_out_rlw(s
, RLWIMI
, a0
, a1
, 24, 0, 7);
1890 /* a0 = dep(a0, rl32(a1, 24), 0x0000ff00) # 0000 hgfe */
1891 tcg_out_rlw(s
, RLWIMI
, a0
, a1
, 24, 16, 23);
1893 /* a0 = rl64(a0, 32) # hgfe 0000 */
1894 /* a2 = rl64(a1, 32) # efgh abcd */
1895 tcg_out_rld(s
, RLDICL
, a0
, a0
, 32, 0);
1896 tcg_out_rld(s
, RLDICL
, a2
, a1
, 32, 0);
1898 /* a0 = dep(a0, rl32(a2, 8), 0xffffffff) # hgfe bcda */
1899 tcg_out_rlw(s
, RLWIMI
, a0
, a2
, 8, 0, 31);
1900 /* a0 = dep(a0, rl32(a2, 24), 0xff000000) # hgfe dcda */
1901 tcg_out_rlw(s
, RLWIMI
, a0
, a2
, 24, 0, 7);
1902 /* a0 = dep(a0, rl32(a2, 24), 0x0000ff00) # hgfe dcba */
1903 tcg_out_rlw(s
, RLWIMI
, a0
, a2
, 24, 16, 23);
1906 tcg_out_mov(s
, TCG_TYPE_REG
, args
[0], a0
);
1910 case INDEX_op_deposit_i32
:
1911 if (const_args
[2]) {
1912 uint32_t mask
= ((2u << (args
[4] - 1)) - 1) << args
[3];
1913 tcg_out_andi32(s
, args
[0], args
[0], ~mask
);
1915 tcg_out_rlw(s
, RLWIMI
, args
[0], args
[2], args
[3],
1916 32 - args
[3] - args
[4], 31 - args
[3]);
1919 case INDEX_op_deposit_i64
:
1920 if (const_args
[2]) {
1921 uint64_t mask
= ((2ull << (args
[4] - 1)) - 1) << args
[3];
1922 tcg_out_andi64(s
, args
[0], args
[0], ~mask
);
1924 tcg_out_rld(s
, RLDIMI
, args
[0], args
[2], args
[3],
1925 64 - args
[3] - args
[4]);
1929 case INDEX_op_movcond_i32
:
1930 tcg_out_movcond(s
, TCG_TYPE_I32
, args
[5], args
[0], args
[1], args
[2],
1931 args
[3], args
[4], const_args
[2]);
1933 case INDEX_op_movcond_i64
:
1934 tcg_out_movcond(s
, TCG_TYPE_I64
, args
[5], args
[0], args
[1], args
[2],
1935 args
[3], args
[4], const_args
[2]);
1938 case INDEX_op_add2_i64
:
1939 /* Note that the CA bit is defined based on the word size of the
1940 environment. So in 64-bit mode it's always carry-out of bit 63.
1941 The fallback code using deposit works just as well for 32-bit. */
1942 a0
= args
[0], a1
= args
[1];
1943 if (a0
== args
[3] || (!const_args
[5] && a0
== args
[5])) {
1946 if (const_args
[4]) {
1947 tcg_out32(s
, ADDIC
| TAI(a0
, args
[2], args
[4]));
1949 tcg_out32(s
, ADDC
| TAB(a0
, args
[2], args
[4]));
1951 if (const_args
[5]) {
1952 tcg_out32(s
, (args
[5] ? ADDME
: ADDZE
) | RT(a1
) | RA(args
[3]));
1954 tcg_out32(s
, ADDE
| TAB(a1
, args
[3], args
[5]));
1956 if (a0
!= args
[0]) {
1957 tcg_out_mov(s
, TCG_TYPE_REG
, args
[0], a0
);
1961 case INDEX_op_sub2_i64
:
1962 a0
= args
[0], a1
= args
[1];
1963 if (a0
== args
[5] || (!const_args
[4] && a0
== args
[4])) {
1966 if (const_args
[2]) {
1967 tcg_out32(s
, SUBFIC
| TAI(a0
, args
[3], args
[2]));
1969 tcg_out32(s
, SUBFC
| TAB(a0
, args
[3], args
[2]));
1971 if (const_args
[4]) {
1972 tcg_out32(s
, (args
[4] ? SUBFME
: SUBFZE
) | RT(a1
) | RA(args
[5]));
1974 tcg_out32(s
, SUBFE
| TAB(a1
, args
[5], args
[4]));
1976 if (a0
!= args
[0]) {
1977 tcg_out_mov(s
, TCG_TYPE_REG
, args
[0], a0
);
1981 case INDEX_op_muluh_i64
:
1982 tcg_out32(s
, MULHDU
| TAB(args
[0], args
[1], args
[2]));
1984 case INDEX_op_mulsh_i64
:
1985 tcg_out32(s
, MULHD
| TAB(args
[0], args
[1], args
[2]));
1988 case INDEX_op_mov_i32
: /* Always emitted via tcg_out_mov. */
1989 case INDEX_op_mov_i64
:
1990 case INDEX_op_movi_i32
: /* Always emitted via tcg_out_movi. */
1991 case INDEX_op_movi_i64
:
1992 case INDEX_op_call
: /* Always emitted via tcg_out_call. */
1998 static const TCGTargetOpDef ppc_op_defs
[] = {
1999 { INDEX_op_exit_tb
, { } },
2000 { INDEX_op_goto_tb
, { } },
2001 { INDEX_op_br
, { } },
2003 { INDEX_op_ld8u_i32
, { "r", "r" } },
2004 { INDEX_op_ld8s_i32
, { "r", "r" } },
2005 { INDEX_op_ld16u_i32
, { "r", "r" } },
2006 { INDEX_op_ld16s_i32
, { "r", "r" } },
2007 { INDEX_op_ld_i32
, { "r", "r" } },
2008 { INDEX_op_ld_i64
, { "r", "r" } },
2009 { INDEX_op_st8_i32
, { "r", "r" } },
2010 { INDEX_op_st8_i64
, { "r", "r" } },
2011 { INDEX_op_st16_i32
, { "r", "r" } },
2012 { INDEX_op_st16_i64
, { "r", "r" } },
2013 { INDEX_op_st_i32
, { "r", "r" } },
2014 { INDEX_op_st_i64
, { "r", "r" } },
2015 { INDEX_op_st32_i64
, { "r", "r" } },
2017 { INDEX_op_ld8u_i64
, { "r", "r" } },
2018 { INDEX_op_ld8s_i64
, { "r", "r" } },
2019 { INDEX_op_ld16u_i64
, { "r", "r" } },
2020 { INDEX_op_ld16s_i64
, { "r", "r" } },
2021 { INDEX_op_ld32u_i64
, { "r", "r" } },
2022 { INDEX_op_ld32s_i64
, { "r", "r" } },
2024 { INDEX_op_add_i32
, { "r", "r", "ri" } },
2025 { INDEX_op_mul_i32
, { "r", "r", "rI" } },
2026 { INDEX_op_div_i32
, { "r", "r", "r" } },
2027 { INDEX_op_divu_i32
, { "r", "r", "r" } },
2028 { INDEX_op_sub_i32
, { "r", "rI", "ri" } },
2029 { INDEX_op_and_i32
, { "r", "r", "ri" } },
2030 { INDEX_op_or_i32
, { "r", "r", "ri" } },
2031 { INDEX_op_xor_i32
, { "r", "r", "ri" } },
2032 { INDEX_op_andc_i32
, { "r", "r", "ri" } },
2033 { INDEX_op_orc_i32
, { "r", "r", "ri" } },
2034 { INDEX_op_eqv_i32
, { "r", "r", "ri" } },
2035 { INDEX_op_nand_i32
, { "r", "r", "r" } },
2036 { INDEX_op_nor_i32
, { "r", "r", "r" } },
2038 { INDEX_op_shl_i32
, { "r", "r", "ri" } },
2039 { INDEX_op_shr_i32
, { "r", "r", "ri" } },
2040 { INDEX_op_sar_i32
, { "r", "r", "ri" } },
2041 { INDEX_op_rotl_i32
, { "r", "r", "ri" } },
2042 { INDEX_op_rotr_i32
, { "r", "r", "ri" } },
2044 { INDEX_op_brcond_i32
, { "r", "ri" } },
2045 { INDEX_op_brcond_i64
, { "r", "ri" } },
2047 { INDEX_op_neg_i32
, { "r", "r" } },
2048 { INDEX_op_not_i32
, { "r", "r" } },
2050 { INDEX_op_add_i64
, { "r", "r", "rT" } },
2051 { INDEX_op_sub_i64
, { "r", "rI", "rT" } },
2052 { INDEX_op_and_i64
, { "r", "r", "ri" } },
2053 { INDEX_op_or_i64
, { "r", "r", "rU" } },
2054 { INDEX_op_xor_i64
, { "r", "r", "rU" } },
2055 { INDEX_op_andc_i64
, { "r", "r", "ri" } },
2056 { INDEX_op_orc_i64
, { "r", "r", "r" } },
2057 { INDEX_op_eqv_i64
, { "r", "r", "r" } },
2058 { INDEX_op_nand_i64
, { "r", "r", "r" } },
2059 { INDEX_op_nor_i64
, { "r", "r", "r" } },
2061 { INDEX_op_shl_i64
, { "r", "r", "ri" } },
2062 { INDEX_op_shr_i64
, { "r", "r", "ri" } },
2063 { INDEX_op_sar_i64
, { "r", "r", "ri" } },
2064 { INDEX_op_rotl_i64
, { "r", "r", "ri" } },
2065 { INDEX_op_rotr_i64
, { "r", "r", "ri" } },
2067 { INDEX_op_mul_i64
, { "r", "r", "rI" } },
2068 { INDEX_op_div_i64
, { "r", "r", "r" } },
2069 { INDEX_op_divu_i64
, { "r", "r", "r" } },
2071 { INDEX_op_neg_i64
, { "r", "r" } },
2072 { INDEX_op_not_i64
, { "r", "r" } },
2074 { INDEX_op_qemu_ld_i32
, { "r", "L" } },
2075 { INDEX_op_qemu_ld_i64
, { "r", "L" } },
2076 { INDEX_op_qemu_st_i32
, { "S", "S" } },
2077 { INDEX_op_qemu_st_i64
, { "S", "S" } },
2079 { INDEX_op_ext8s_i32
, { "r", "r" } },
2080 { INDEX_op_ext16s_i32
, { "r", "r" } },
2081 { INDEX_op_ext8s_i64
, { "r", "r" } },
2082 { INDEX_op_ext16s_i64
, { "r", "r" } },
2083 { INDEX_op_ext32s_i64
, { "r", "r" } },
2085 { INDEX_op_setcond_i32
, { "r", "r", "ri" } },
2086 { INDEX_op_setcond_i64
, { "r", "r", "ri" } },
2087 { INDEX_op_movcond_i32
, { "r", "r", "ri", "rZ", "rZ" } },
2088 { INDEX_op_movcond_i64
, { "r", "r", "ri", "rZ", "rZ" } },
2090 { INDEX_op_bswap16_i32
, { "r", "r" } },
2091 { INDEX_op_bswap16_i64
, { "r", "r" } },
2092 { INDEX_op_bswap32_i32
, { "r", "r" } },
2093 { INDEX_op_bswap32_i64
, { "r", "r" } },
2094 { INDEX_op_bswap64_i64
, { "r", "r" } },
2096 { INDEX_op_deposit_i32
, { "r", "0", "rZ" } },
2097 { INDEX_op_deposit_i64
, { "r", "0", "rZ" } },
2099 { INDEX_op_add2_i64
, { "r", "r", "r", "r", "rI", "rZM" } },
2100 { INDEX_op_sub2_i64
, { "r", "r", "rI", "r", "rZM", "r" } },
2101 { INDEX_op_mulsh_i64
, { "r", "r", "r" } },
2102 { INDEX_op_muluh_i64
, { "r", "r", "r" } },
2107 static void tcg_target_init(TCGContext
*s
)
2109 unsigned long hwcap
= qemu_getauxval(AT_HWCAP
);
2110 if (hwcap
& PPC_FEATURE_ARCH_2_06
) {
2111 have_isa_2_06
= true;
2114 tcg_regset_set32(tcg_target_available_regs
[TCG_TYPE_I32
], 0, 0xffffffff);
2115 tcg_regset_set32(tcg_target_available_regs
[TCG_TYPE_I64
], 0, 0xffffffff);
2116 tcg_regset_set32(tcg_target_call_clobber_regs
, 0,
2126 (1 << TCG_REG_R10
) |
2127 (1 << TCG_REG_R11
) |
2128 (1 << TCG_REG_R12
));
2130 tcg_regset_clear(s
->reserved_regs
);
2131 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R0
); /* tcg temp */
2132 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R1
); /* stack pointer */
2133 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R2
); /* mem temp */
2135 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R11
); /* ??? */
2137 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R13
); /* thread pointer */
2139 tcg_add_target_add_op_defs(ppc_op_defs
);
2144 DebugFrameFDEHeader fde
;
2145 uint8_t fde_def_cfa
[4];
2146 uint8_t fde_reg_ofs
[ARRAY_SIZE(tcg_target_callee_save_regs
) * 2 + 3];
2149 /* We're expecting a 2 byte uleb128 encoded value. */
2150 QEMU_BUILD_BUG_ON(FRAME_SIZE
>= (1 << 14));
2152 #define ELF_HOST_MACHINE EM_PPC64
2154 static DebugFrame debug_frame
= {
2155 .cie
.len
= sizeof(DebugFrameCIE
)-4, /* length after .len member */
2158 .cie
.code_align
= 1,
2159 .cie
.data_align
= 0x78, /* sleb128 -8 */
2160 .cie
.return_column
= 65,
2162 /* Total FDE size does not include the "len" member. */
2163 .fde
.len
= sizeof(DebugFrame
) - offsetof(DebugFrame
, fde
.cie_offset
),
2166 12, 1, /* DW_CFA_def_cfa r1, ... */
2167 (FRAME_SIZE
& 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */
2171 0x11, 65, 0x7e, /* DW_CFA_offset_extended_sf, lr, 16 */
2175 void tcg_register_jit(void *buf
, size_t buf_size
)
2177 uint8_t *p
= &debug_frame
.fde_reg_ofs
[3];
2180 for (i
= 0; i
< ARRAY_SIZE(tcg_target_callee_save_regs
); ++i
, p
+= 2) {
2181 p
[0] = 0x80 + tcg_target_callee_save_regs
[i
];
2182 p
[1] = (FRAME_SIZE
- (REG_SAVE_BOT
+ i
* 8)) / 8;
2185 debug_frame
.fde
.func_start
= (tcg_target_long
) buf
;
2186 debug_frame
.fde
.func_len
= buf_size
;
2188 tcg_register_jit_int(buf
, buf_size
, &debug_frame
, sizeof(debug_frame
));