2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 static uint8_t *tb_ret_addr
;
28 #define LINKAGE_AREA_SIZE 24
31 #define LINKAGE_AREA_SIZE 52
34 #define LINKAGE_AREA_SIZE 8
39 #if TARGET_PHYS_ADDR_BITS <= 32
40 #define ADDEND_OFFSET 0
42 #define ADDEND_OFFSET 4
46 static const char * const tcg_target_reg_names
[TCG_TARGET_NB_REGS
] = {
82 static const int tcg_target_reg_alloc_order
[] = {
121 static const int tcg_target_call_iarg_regs
[] = {
132 static const int tcg_target_call_oarg_regs
[2] = {
137 static const int tcg_target_callee_save_regs
[] = {
158 /* TCG_REG_R27, */ /* currently used for the global env, so no
166 static uint32_t reloc_pc24_val (void *pc
, tcg_target_long target
)
168 tcg_target_long disp
;
170 disp
= target
- (tcg_target_long
) pc
;
171 if ((disp
<< 6) >> 6 != disp
)
174 return disp
& 0x3fffffc;
177 static void reloc_pc24 (void *pc
, tcg_target_long target
)
179 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0x3fffffc)
180 | reloc_pc24_val (pc
, target
);
183 static uint16_t reloc_pc14_val (void *pc
, tcg_target_long target
)
185 tcg_target_long disp
;
187 disp
= target
- (tcg_target_long
) pc
;
188 if (disp
!= (int16_t) disp
)
191 return disp
& 0xfffc;
194 static void reloc_pc14 (void *pc
, tcg_target_long target
)
196 *(uint32_t *) pc
= (*(uint32_t *) pc
& ~0xfffc)
197 | reloc_pc14_val (pc
, target
);
200 static void patch_reloc(uint8_t *code_ptr
, int type
,
201 tcg_target_long value
, tcg_target_long addend
)
206 reloc_pc14 (code_ptr
, value
);
209 reloc_pc24 (code_ptr
, value
);
216 /* maximum number of register used for input function arguments */
217 static int tcg_target_get_call_iarg_regs_count(int flags
)
219 return ARRAY_SIZE (tcg_target_call_iarg_regs
);
222 /* parse target specific constraints */
223 static int target_parse_constraint(TCGArgConstraint
*ct
, const char **pct_str
)
229 case 'A': case 'B': case 'C': case 'D':
230 ct
->ct
|= TCG_CT_REG
;
231 tcg_regset_set_reg(ct
->u
.regs
, 3 + ct_str
[0] - 'A');
234 ct
->ct
|= TCG_CT_REG
;
235 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
237 #ifdef CONFIG_SOFTMMU
238 case 'L': /* qemu_ld constraint */
239 ct
->ct
|= TCG_CT_REG
;
240 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
241 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
242 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R4
);
244 case 'K': /* qemu_st[8..32] constraint */
245 ct
->ct
|= TCG_CT_REG
;
246 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
247 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
248 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R4
);
249 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R5
);
250 #if TARGET_LONG_BITS == 64
251 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R6
);
254 case 'M': /* qemu_st64 constraint */
255 ct
->ct
|= TCG_CT_REG
;
256 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
257 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
258 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R4
);
259 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R5
);
260 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R6
);
261 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R7
);
266 ct
->ct
|= TCG_CT_REG
;
267 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
270 ct
->ct
|= TCG_CT_REG
;
271 tcg_regset_set32(ct
->u
.regs
, 0, 0xffffffff);
272 tcg_regset_reset_reg(ct
->u
.regs
, TCG_REG_R3
);
283 /* test if a constant matches the constraint */
284 static int tcg_target_const_match(tcg_target_long val
,
285 const TCGArgConstraint
*arg_ct
)
290 if (ct
& TCG_CT_CONST
)
295 #define OPCD(opc) ((opc)<<26)
296 #define XO31(opc) (OPCD(31)|((opc)<<1))
297 #define XO19(opc) (OPCD(19)|((opc)<<1))
309 #define ADDI OPCD(14)
310 #define ADDIS OPCD(15)
312 #define ORIS OPCD(25)
313 #define XORI OPCD(26)
314 #define XORIS OPCD(27)
315 #define ANDI OPCD(28)
316 #define ANDIS OPCD(29)
317 #define MULLI OPCD( 7)
318 #define CMPLI OPCD(10)
319 #define CMPI OPCD(11)
321 #define LWZU OPCD(33)
322 #define STWU OPCD(37)
324 #define RLWINM OPCD(21)
326 #define BCLR XO19( 16)
327 #define BCCTR XO19(528)
328 #define CRAND XO19(257)
329 #define CRANDC XO19(129)
330 #define CRNAND XO19(225)
331 #define CROR XO19(449)
333 #define EXTSB XO31(954)
334 #define EXTSH XO31(922)
335 #define ADD XO31(266)
336 #define ADDE XO31(138)
337 #define ADDC XO31( 10)
338 #define AND XO31( 28)
339 #define SUBF XO31( 40)
340 #define SUBFC XO31( 8)
341 #define SUBFE XO31(136)
343 #define XOR XO31(316)
344 #define MULLW XO31(235)
345 #define MULHWU XO31( 11)
346 #define DIVW XO31(491)
347 #define DIVWU XO31(459)
349 #define CMPL XO31( 32)
350 #define LHBRX XO31(790)
351 #define LWBRX XO31(534)
352 #define STHBRX XO31(918)
353 #define STWBRX XO31(662)
354 #define MFSPR XO31(339)
355 #define MTSPR XO31(467)
356 #define SRAWI XO31(824)
357 #define NEG XO31(104)
359 #define LBZX XO31( 87)
360 #define LHZX XO31(276)
361 #define LHAX XO31(343)
362 #define LWZX XO31( 23)
363 #define STBX XO31(215)
364 #define STHX XO31(407)
365 #define STWX XO31(151)
367 #define SPR(a,b) ((((a)<<5)|(b))<<11)
369 #define CTR SPR(9, 0)
371 #define SLW XO31( 24)
372 #define SRW XO31(536)
373 #define SRAW XO31(792)
376 #define TRAP (TW | TO (31))
378 #define RT(r) ((r)<<21)
379 #define RS(r) ((r)<<21)
380 #define RA(r) ((r)<<16)
381 #define RB(r) ((r)<<11)
382 #define TO(t) ((t)<<21)
383 #define SH(s) ((s)<<11)
384 #define MB(b) ((b)<<6)
385 #define ME(e) ((e)<<1)
386 #define BO(o) ((o)<<21)
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_movi(TCGContext
*s
, TCGType type
,
429 int ret
, tcg_target_long arg
)
431 if (arg
== (int16_t) arg
)
432 tcg_out32 (s
, ADDI
| RT (ret
) | RA (0) | (arg
& 0xffff));
434 tcg_out32 (s
, ADDIS
| RT (ret
) | RA (0) | ((arg
>> 16) & 0xffff));
436 tcg_out32 (s
, ORI
| RS (ret
) | RA (ret
) | (arg
& 0xffff));
440 static void tcg_out_ldst (TCGContext
*s
, int ret
, int addr
,
441 int offset
, int op1
, int op2
)
443 if (offset
== (int16_t) offset
)
444 tcg_out32 (s
, op1
| RT (ret
) | RA (addr
) | (offset
& 0xffff));
446 tcg_out_movi (s
, TCG_TYPE_I32
, 0, offset
);
447 tcg_out32 (s
, op2
| RT (ret
) | RA (addr
) | RB (0));
451 static void tcg_out_b (TCGContext
*s
, int mask
, tcg_target_long target
)
453 tcg_target_long disp
;
455 disp
= target
- (tcg_target_long
) s
->code_ptr
;
456 if ((disp
<< 6) >> 6 == disp
)
457 tcg_out32 (s
, B
| (disp
& 0x3fffffc) | mask
);
459 tcg_out_movi (s
, TCG_TYPE_I32
, 0, (tcg_target_long
) target
);
460 tcg_out32 (s
, MTSPR
| RS (0) | CTR
);
461 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| mask
);
466 static void tcg_out_call (TCGContext
*s
, tcg_target_long arg
, int const_arg
)
472 tcg_out_movi (s
, TCG_TYPE_I32
, reg
, arg
);
476 tcg_out32 (s
, LWZ
| RT (0) | RA (reg
));
477 tcg_out32 (s
, MTSPR
| RA (0) | CTR
);
478 tcg_out32 (s
, LWZ
| RT (2) | RA (reg
) | 4);
479 tcg_out32 (s
, BCCTR
| BO_ALWAYS
| LK
);
483 #if defined(CONFIG_SOFTMMU)
485 #include "../../softmmu_defs.h"
487 static void *qemu_ld_helpers
[4] = {
494 static void *qemu_st_helpers
[4] = {
502 static void tcg_out_qemu_ld (TCGContext
*s
, const TCGArg
*args
, int opc
)
504 int addr_reg
, data_reg
, data_reg2
, r0
, r1
, mem_index
, s_bits
, bswap
;
505 #ifdef CONFIG_SOFTMMU
507 void *label1_ptr
, *label2_ptr
;
509 #if TARGET_LONG_BITS == 64
519 #if TARGET_LONG_BITS == 64
525 #ifdef CONFIG_SOFTMMU
530 tcg_out32 (s
, (RLWINM
533 | SH (32 - (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
))
534 | MB (32 - (CPU_TLB_BITS
+ CPU_TLB_ENTRY_BITS
))
535 | ME (31 - CPU_TLB_ENTRY_BITS
)
538 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (TCG_AREG0
));
542 | offsetof (CPUState
, tlb_table
[mem_index
][0].addr_read
)
545 tcg_out32 (s
, (RLWINM
549 | MB ((32 - s_bits
) & 31)
550 | ME (31 - TARGET_PAGE_BITS
)
554 tcg_out32 (s
, CMP
| BF (7) | RA (r2
) | RB (r1
));
555 #if TARGET_LONG_BITS == 64
556 tcg_out32 (s
, LWZ
| RT (r1
) | RA (r0
) | 4);
557 tcg_out32 (s
, CMP
| BF (6) | RA (addr_reg2
) | RB (r1
));
558 tcg_out32 (s
, CRAND
| BT (7, CR_EQ
) | BA (6, CR_EQ
) | BB (7, CR_EQ
));
561 label1_ptr
= s
->code_ptr
;
563 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
567 #if TARGET_LONG_BITS == 32
568 tcg_out_mov (s
, 3, addr_reg
);
569 tcg_out_movi (s
, TCG_TYPE_I32
, 4, mem_index
);
571 tcg_out_mov (s
, 3, addr_reg2
);
572 tcg_out_mov (s
, 4, addr_reg
);
573 tcg_out_movi (s
, TCG_TYPE_I32
, 5, mem_index
);
577 tcg_out_call (s
, (tcg_target_long
) qemu_ld_helpers
[s_bits
], 1);
579 tcg_out_b (s
, LK
, (tcg_target_long
) qemu_ld_helpers
[s_bits
]);
583 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (3));
586 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (3));
592 tcg_out_mov (s
, data_reg
, 3);
596 if (data_reg2
== 4) {
597 tcg_out_mov (s
, 0, 4);
598 tcg_out_mov (s
, 4, 3);
599 tcg_out_mov (s
, 3, 0);
602 tcg_out_mov (s
, data_reg2
, 3);
603 tcg_out_mov (s
, 3, 4);
607 if (data_reg
!= 4) tcg_out_mov (s
, data_reg
, 4);
608 if (data_reg2
!= 3) tcg_out_mov (s
, data_reg2
, 3);
612 label2_ptr
= s
->code_ptr
;
615 /* label1: fast path */
617 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
620 /* r0 now contains &env->tlb_table[mem_index][index].addr_read */
624 | (ADDEND_OFFSET
+ offsetof (CPUTLBEntry
, addend
)
625 - offsetof (CPUTLBEntry
, addr_read
))
627 /* r0 = env->tlb_table[mem_index][index].addend */
628 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
629 /* r0 = env->tlb_table[mem_index][index].addend + addr */
631 #else /* !CONFIG_SOFTMMU */
636 #ifdef TARGET_WORDS_BIGENDIAN
644 tcg_out32 (s
, LBZ
| RT (data_reg
) | RA (r0
));
647 tcg_out32 (s
, LBZ
| RT (data_reg
) | RA (r0
));
648 tcg_out32 (s
, EXTSB
| RA (data_reg
) | RS (data_reg
));
651 if (bswap
) tcg_out32 (s
, LHBRX
| RT (data_reg
) | RB (r0
));
652 else tcg_out32 (s
, LHZ
| RT (data_reg
) | RA (r0
));
656 tcg_out32 (s
, LHBRX
| RT (data_reg
) | RB (r0
));
657 tcg_out32 (s
, EXTSH
| RA (data_reg
) | RS (data_reg
));
659 else tcg_out32 (s
, LHA
| RT (data_reg
) | RA (r0
));
662 if (bswap
) tcg_out32 (s
, LWBRX
| RT (data_reg
) | RB (r0
));
663 else tcg_out32 (s
, LWZ
| RT (data_reg
)| RA (r0
));
667 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
668 tcg_out32 (s
, LWBRX
| RT (data_reg
) | RB (r0
));
669 tcg_out32 (s
, LWBRX
| RT (data_reg2
) | RB (r1
));
672 if (r0
== data_reg2
) {
673 tcg_out32 (s
, LWZ
| RT (0) | RA (r0
));
674 tcg_out32 (s
, LWZ
| RT (data_reg
) | RA (r0
) | 4);
675 tcg_out_mov (s
, data_reg2
, 0);
678 tcg_out32 (s
, LWZ
| RT (data_reg2
) | RA (r0
));
679 tcg_out32 (s
, LWZ
| RT (data_reg
) | RA (r0
) | 4);
685 #ifdef CONFIG_SOFTMMU
686 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
690 static void tcg_out_qemu_st (TCGContext
*s
, const TCGArg
*args
, int opc
)
692 int addr_reg
, r0
, r1
, data_reg
, data_reg2
, mem_index
, bswap
;
693 #ifdef CONFIG_SOFTMMU
695 void *label1_ptr
, *label2_ptr
;
697 #if TARGET_LONG_BITS == 64
707 #if TARGET_LONG_BITS == 64
712 #ifdef CONFIG_SOFTMMU
717 tcg_out32 (s
, (RLWINM
720 | SH (32 - (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
))
721 | MB (32 - (CPU_TLB_ENTRY_BITS
+ CPU_TLB_BITS
))
722 | ME (31 - CPU_TLB_ENTRY_BITS
)
725 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (TCG_AREG0
));
729 | offsetof (CPUState
, tlb_table
[mem_index
][0].addr_write
)
732 tcg_out32 (s
, (RLWINM
736 | MB ((32 - opc
) & 31)
737 | ME (31 - TARGET_PAGE_BITS
)
741 tcg_out32 (s
, CMP
| (7 << 23) | RA (r2
) | RB (r1
));
742 #if TARGET_LONG_BITS == 64
743 tcg_out32 (s
, LWZ
| RT (r1
) | RA (r0
) | 4);
744 tcg_out32 (s
, CMP
| BF (6) | RA (addr_reg2
) | RB (r1
));
745 tcg_out32 (s
, CRAND
| BT (7, CR_EQ
) | BA (6, CR_EQ
) | BB (7, CR_EQ
));
748 label1_ptr
= s
->code_ptr
;
750 tcg_out32 (s
, BC
| BI (7, CR_EQ
) | BO_COND_TRUE
);
754 #if TARGET_LONG_BITS == 32
755 tcg_out_mov (s
, 3, addr_reg
);
758 tcg_out_mov (s
, 3, addr_reg2
);
759 tcg_out_mov (s
, 4, addr_reg
);
760 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
769 tcg_out32 (s
, (RLWINM
777 tcg_out32 (s
, (RLWINM
785 tcg_out_mov (s
, ir
, data_reg
);
788 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
791 tcg_out_mov (s
, ir
++, data_reg2
);
792 tcg_out_mov (s
, ir
, data_reg
);
797 tcg_out_movi (s
, TCG_TYPE_I32
, ir
, mem_index
);
799 tcg_out_call (s
, (tcg_target_long
) qemu_st_helpers
[opc
], 1);
801 tcg_out_b (s
, LK
, (tcg_target_long
) qemu_st_helpers
[opc
]);
803 label2_ptr
= s
->code_ptr
;
806 /* label1: fast path */
808 reloc_pc14 (label1_ptr
, (tcg_target_long
) s
->code_ptr
);
814 | (ADDEND_OFFSET
+ offsetof (CPUTLBEntry
, addend
)
815 - offsetof (CPUTLBEntry
, addr_write
))
817 /* r0 = env->tlb_table[mem_index][index].addend */
818 tcg_out32 (s
, ADD
| RT (r0
) | RA (r0
) | RB (addr_reg
));
819 /* r0 = env->tlb_table[mem_index][index].addend + addr */
821 #else /* !CONFIG_SOFTMMU */
826 #ifdef TARGET_WORDS_BIGENDIAN
833 tcg_out32 (s
, STB
| RS (data_reg
) | RA (r0
));
836 if (bswap
) tcg_out32 (s
, STHBRX
| RS (data_reg
) | RA (0) | RB (r0
));
837 else tcg_out32 (s
, STH
| RS (data_reg
) | RA (r0
));
840 if (bswap
) tcg_out32 (s
, STWBRX
| RS (data_reg
) | RA (0) | RB (r0
));
841 else tcg_out32 (s
, STW
| RS (data_reg
) | RA (r0
));
845 tcg_out32 (s
, ADDI
| RT (r1
) | RA (r0
) | 4);
846 tcg_out32 (s
, STWBRX
| RS (data_reg
) | RA (0) | RB (r0
));
847 tcg_out32 (s
, STWBRX
| RS (data_reg2
) | RA (0) | RB (r1
));
850 tcg_out32 (s
, STW
| RS (data_reg2
) | RA (r0
));
851 tcg_out32 (s
, STW
| RS (data_reg
) | RA (r0
) | 4);
856 #ifdef CONFIG_SOFTMMU
857 reloc_pc24 (label2_ptr
, (tcg_target_long
) s
->code_ptr
);
861 void tcg_target_qemu_prologue (TCGContext
*s
)
867 + TCG_STATIC_CALL_ARGS_SIZE
868 + ARRAY_SIZE (tcg_target_callee_save_regs
) * 4
870 frame_size
= (frame_size
+ 15) & ~15;
876 /* First emit adhoc function descriptor */
877 addr
= (uint32_t) s
->code_ptr
+ 12;
878 tcg_out32 (s
, addr
); /* entry point */
879 s
->code_ptr
+= 8; /* skip TOC and environment pointer */
882 tcg_out32 (s
, MFSPR
| RT (0) | LR
);
883 tcg_out32 (s
, STWU
| RS (1) | RA (1) | (-frame_size
& 0xffff));
884 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
886 | RS (tcg_target_callee_save_regs
[i
])
888 | (i
* 4 + LINKAGE_AREA_SIZE
+ TCG_STATIC_CALL_ARGS_SIZE
)
891 tcg_out32 (s
, STW
| RS (0) | RA (1) | (frame_size
+ LR_OFFSET
));
893 tcg_out32 (s
, MTSPR
| RS (3) | CTR
);
894 tcg_out32 (s
, BCCTR
| BO_ALWAYS
);
895 tb_ret_addr
= s
->code_ptr
;
897 for (i
= 0; i
< ARRAY_SIZE (tcg_target_callee_save_regs
); ++i
)
899 | RT (tcg_target_callee_save_regs
[i
])
901 | (i
* 4 + LINKAGE_AREA_SIZE
+ TCG_STATIC_CALL_ARGS_SIZE
)
904 tcg_out32 (s
, LWZ
| RT (0) | RA (1) | (frame_size
+ LR_OFFSET
));
905 tcg_out32 (s
, MTSPR
| RS (0) | LR
);
906 tcg_out32 (s
, ADDI
| RT (1) | RA (1) | frame_size
);
907 tcg_out32 (s
, BCLR
| BO_ALWAYS
);
910 static void tcg_out_ld (TCGContext
*s
, TCGType type
, int ret
, int arg1
,
911 tcg_target_long arg2
)
913 tcg_out_ldst (s
, ret
, arg1
, arg2
, LWZ
, LWZX
);
916 static void tcg_out_st (TCGContext
*s
, TCGType type
, int arg
, int arg1
,
917 tcg_target_long arg2
)
919 tcg_out_ldst (s
, arg
, arg1
, arg2
, STW
, STWX
);
922 static void ppc_addi (TCGContext
*s
, int rt
, int ra
, tcg_target_long si
)
927 if (si
== (int16_t) si
)
928 tcg_out32 (s
, ADDI
| RT (rt
) | RA (ra
) | (si
& 0xffff));
930 uint16_t h
= ((si
>> 16) & 0xffff) + ((uint16_t) si
>> 15);
931 tcg_out32 (s
, ADDIS
| RT (rt
) | RA (ra
) | h
);
932 tcg_out32 (s
, ADDI
| RT (rt
) | RA (rt
) | (si
& 0xffff));
936 static void tcg_out_addi(TCGContext
*s
, int reg
, tcg_target_long val
)
938 ppc_addi (s
, reg
, reg
, val
);
941 static void tcg_out_cmp (TCGContext
*s
, int cond
, TCGArg arg1
, TCGArg arg2
,
942 int const_arg2
, int cr
)
951 if ((int16_t) arg2
== arg2
) {
956 else if ((uint16_t) arg2
== arg2
) {
971 if ((int16_t) arg2
== arg2
) {
986 if ((uint16_t) arg2
== arg2
) {
1002 tcg_out32 (s
, op
| RA (arg1
) | (arg2
& 0xffff));
1005 tcg_out_movi (s
, TCG_TYPE_I32
, 0, arg2
);
1006 tcg_out32 (s
, op
| RA (arg1
) | RB (0));
1009 tcg_out32 (s
, op
| RA (arg1
) | RB (arg2
));
1014 static void tcg_out_bc (TCGContext
*s
, int bc
, int label_index
)
1016 TCGLabel
*l
= &s
->labels
[label_index
];
1019 tcg_out32 (s
, bc
| reloc_pc14_val (s
->code_ptr
, l
->u
.value
));
1021 uint16_t val
= *(uint16_t *) &s
->code_ptr
[2];
1023 /* Thanks to Andrzej Zaborowski */
1024 tcg_out32 (s
, bc
| (val
& 0xfffc));
1025 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL14
, label_index
, 0);
1029 static void tcg_out_brcond (TCGContext
*s
, int cond
,
1030 TCGArg arg1
, TCGArg arg2
, int const_arg2
,
1033 tcg_out_cmp (s
, cond
, arg1
, arg2
, const_arg2
, 7);
1034 tcg_out_bc (s
, tcg_to_bc
[cond
], label_index
);
1037 /* XXX: we implement it at the target level to avoid having to
1038 handle cross basic blocks temporaries */
1039 static void tcg_out_brcond2 (TCGContext
*s
, const TCGArg
*args
,
1040 const int *const_args
)
1042 int cond
= args
[4], label_index
= args
[5], op
;
1043 struct { int bit1
; int bit2
; int cond2
; } bits
[] = {
1044 [TCG_COND_LT
] = { CR_LT
, CR_LT
, TCG_COND_LT
},
1045 [TCG_COND_LE
] = { CR_LT
, CR_GT
, TCG_COND_LT
},
1046 [TCG_COND_GT
] = { CR_GT
, CR_GT
, TCG_COND_GT
},
1047 [TCG_COND_GE
] = { CR_GT
, CR_LT
, TCG_COND_GT
},
1048 [TCG_COND_LTU
] = { CR_LT
, CR_LT
, TCG_COND_LTU
},
1049 [TCG_COND_LEU
] = { CR_LT
, CR_GT
, TCG_COND_LTU
},
1050 [TCG_COND_GTU
] = { CR_GT
, CR_GT
, TCG_COND_GTU
},
1051 [TCG_COND_GEU
] = { CR_GT
, CR_LT
, TCG_COND_GTU
},
1052 }, *b
= &bits
[cond
];
1057 op
= (cond
== TCG_COND_EQ
) ? CRAND
: CRNAND
;
1058 tcg_out_cmp (s
, cond
, args
[0], args
[2], const_args
[2], 6);
1059 tcg_out_cmp (s
, cond
, args
[1], args
[3], const_args
[3], 7);
1060 tcg_out32 (s
, op
| BT (7, CR_EQ
) | BA (6, CR_EQ
) | BB (7, CR_EQ
));
1070 op
= (b
->bit1
!= b
->bit2
) ? CRANDC
: CRAND
;
1071 tcg_out_cmp (s
, b
->cond2
, args
[1], args
[3], const_args
[3], 5);
1072 tcg_out_cmp (s
, TCG_COND_EQ
, args
[1], args
[3], const_args
[3], 6);
1073 tcg_out_cmp (s
, cond
, args
[0], args
[2], const_args
[2], 7);
1074 tcg_out32 (s
, op
| BT (7, CR_EQ
) | BA (6, CR_EQ
) | BB (7, b
->bit2
));
1075 tcg_out32 (s
, CROR
| BT (7, CR_EQ
) | BA (5, b
->bit1
) | BB (7, CR_EQ
));
1081 tcg_out_bc (s
, (BC
| BI (7, CR_EQ
) | BO_COND_TRUE
), label_index
);
1084 void ppc_tb_set_jmp_target (unsigned long jmp_addr
, unsigned long addr
)
1087 long disp
= addr
- jmp_addr
;
1088 unsigned long patch_size
;
1090 ptr
= (uint32_t *)jmp_addr
;
1092 if ((disp
<< 6) >> 6 != disp
) {
1093 ptr
[0] = 0x3c000000 | (addr
>> 16); /* lis 0,addr@ha */
1094 ptr
[1] = 0x60000000 | (addr
& 0xffff); /* la 0,addr@l(0) */
1095 ptr
[2] = 0x7c0903a6; /* mtctr 0 */
1096 ptr
[3] = 0x4e800420; /* brctr */
1099 /* patch the branch destination */
1101 *ptr
= 0x48000000 | (disp
& 0x03fffffc); /* b disp */
1104 ptr
[0] = 0x60000000; /* nop */
1105 ptr
[1] = 0x60000000;
1106 ptr
[2] = 0x60000000;
1107 ptr
[3] = 0x60000000;
1112 flush_icache_range(jmp_addr
, jmp_addr
+ patch_size
);
1115 static void tcg_out_op(TCGContext
*s
, int opc
, const TCGArg
*args
,
1116 const int *const_args
)
1119 case INDEX_op_exit_tb
:
1120 tcg_out_movi (s
, TCG_TYPE_I32
, TCG_REG_R3
, args
[0]);
1121 tcg_out_b (s
, 0, (tcg_target_long
) tb_ret_addr
);
1123 case INDEX_op_goto_tb
:
1124 if (s
->tb_jmp_offset
) {
1125 /* direct jump method */
1127 s
->tb_jmp_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1133 s
->tb_next_offset
[args
[0]] = s
->code_ptr
- s
->code_buf
;
1137 TCGLabel
*l
= &s
->labels
[args
[0]];
1140 tcg_out_b (s
, 0, l
->u
.value
);
1143 uint32_t val
= *(uint32_t *) s
->code_ptr
;
1145 /* Thanks to Andrzej Zaborowski */
1146 tcg_out32 (s
, B
| (val
& 0x3fffffc));
1147 tcg_out_reloc (s
, s
->code_ptr
- 4, R_PPC_REL24
, args
[0], 0);
1153 tcg_out_call (s
, args
[0], const_args
[0]);
1155 if (const_args
[0]) {
1156 tcg_out_b (s
, LK
, args
[0]);
1159 tcg_out32 (s
, MTSPR
| RS (args
[0]) | LR
);
1160 tcg_out32 (s
, BCLR
| BO_ALWAYS
| LK
);
1165 if (const_args
[0]) {
1166 tcg_out_b (s
, 0, args
[0]);
1169 tcg_out32 (s
, MTSPR
| RS (args
[0]) | CTR
);
1170 tcg_out32 (s
, BCCTR
| BO_ALWAYS
);
1173 case INDEX_op_movi_i32
:
1174 tcg_out_movi(s
, TCG_TYPE_I32
, args
[0], args
[1]);
1176 case INDEX_op_ld8u_i32
:
1177 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1179 case INDEX_op_ld8s_i32
:
1180 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LBZ
, LBZX
);
1181 tcg_out32 (s
, EXTSB
| RS (args
[0]) | RA (args
[0]));
1183 case INDEX_op_ld16u_i32
:
1184 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHZ
, LHZX
);
1186 case INDEX_op_ld16s_i32
:
1187 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LHA
, LHAX
);
1189 case INDEX_op_ld_i32
:
1190 tcg_out_ldst (s
, args
[0], args
[1], args
[2], LWZ
, LWZX
);
1192 case INDEX_op_st8_i32
:
1193 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STB
, STBX
);
1195 case INDEX_op_st16_i32
:
1196 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STH
, STHX
);
1198 case INDEX_op_st_i32
:
1199 tcg_out_ldst (s
, args
[0], args
[1], args
[2], STW
, STWX
);
1202 case INDEX_op_add_i32
:
1204 ppc_addi (s
, args
[0], args
[1], args
[2]);
1206 tcg_out32 (s
, ADD
| TAB (args
[0], args
[1], args
[2]));
1208 case INDEX_op_sub_i32
:
1210 ppc_addi (s
, args
[0], args
[1], -args
[2]);
1212 tcg_out32 (s
, SUBF
| TAB (args
[0], args
[2], args
[1]));
1215 case INDEX_op_and_i32
:
1216 if (const_args
[2]) {
1217 if ((args
[2] & 0xffff) == args
[2])
1218 tcg_out32 (s
, ANDI
| RS (args
[1]) | RA (args
[0]) | args
[2]);
1219 else if ((args
[2] & 0xffff0000) == args
[2])
1220 tcg_out32 (s
, ANDIS
| RS (args
[1]) | RA (args
[0])
1221 | ((args
[2] >> 16) & 0xffff));
1223 tcg_out_movi (s
, TCG_TYPE_I32
, 0, args
[2]);
1224 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], 0));
1228 tcg_out32 (s
, AND
| SAB (args
[1], args
[0], args
[2]));
1230 case INDEX_op_or_i32
:
1231 if (const_args
[2]) {
1232 if (args
[2] & 0xffff) {
1233 tcg_out32 (s
, ORI
| RS (args
[1]) | RA (args
[0])
1234 | (args
[2] & 0xffff));
1236 tcg_out32 (s
, ORIS
| RS (args
[0]) | RA (args
[0])
1237 | ((args
[2] >> 16) & 0xffff));
1240 tcg_out32 (s
, ORIS
| RS (args
[1]) | RA (args
[0])
1241 | ((args
[2] >> 16) & 0xffff));
1245 tcg_out32 (s
, OR
| SAB (args
[1], args
[0], args
[2]));
1247 case INDEX_op_xor_i32
:
1248 if (const_args
[2]) {
1249 if ((args
[2] & 0xffff) == args
[2])
1250 tcg_out32 (s
, XORI
| RS (args
[1]) | RA (args
[0])
1251 | (args
[2] & 0xffff));
1252 else if ((args
[2] & 0xffff0000) == args
[2])
1253 tcg_out32 (s
, XORIS
| RS (args
[1]) | RA (args
[0])
1254 | ((args
[2] >> 16) & 0xffff));
1256 tcg_out_movi (s
, TCG_TYPE_I32
, 0, args
[2]);
1257 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], 0));
1261 tcg_out32 (s
, XOR
| SAB (args
[1], args
[0], args
[2]));
1264 case INDEX_op_mul_i32
:
1265 if (const_args
[2]) {
1266 if (args
[2] == (int16_t) args
[2])
1267 tcg_out32 (s
, MULLI
| RT (args
[0]) | RA (args
[1])
1268 | (args
[2] & 0xffff));
1270 tcg_out_movi (s
, TCG_TYPE_I32
, 0, args
[2]);
1271 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], 0));
1275 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[1], args
[2]));
1278 case INDEX_op_div_i32
:
1279 tcg_out32 (s
, DIVW
| TAB (args
[0], args
[1], args
[2]));
1282 case INDEX_op_divu_i32
:
1283 tcg_out32 (s
, DIVWU
| TAB (args
[0], args
[1], args
[2]));
1286 case INDEX_op_rem_i32
:
1287 tcg_out32 (s
, DIVW
| TAB (0, args
[1], args
[2]));
1288 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1289 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1292 case INDEX_op_remu_i32
:
1293 tcg_out32 (s
, DIVWU
| TAB (0, args
[1], args
[2]));
1294 tcg_out32 (s
, MULLW
| TAB (0, 0, args
[2]));
1295 tcg_out32 (s
, SUBF
| TAB (args
[0], 0, args
[1]));
1298 case INDEX_op_mulu2_i32
:
1299 if (args
[0] == args
[2] || args
[0] == args
[3]) {
1300 tcg_out32 (s
, MULLW
| TAB (0, args
[2], args
[3]));
1301 tcg_out32 (s
, MULHWU
| TAB (args
[1], args
[2], args
[3]));
1302 tcg_out_mov (s
, args
[0], 0);
1305 tcg_out32 (s
, MULLW
| TAB (args
[0], args
[2], args
[3]));
1306 tcg_out32 (s
, MULHWU
| TAB (args
[1], args
[2], args
[3]));
1310 case INDEX_op_shl_i32
:
1311 if (const_args
[2]) {
1312 tcg_out32 (s
, (RLWINM
1322 tcg_out32 (s
, SLW
| SAB (args
[1], args
[0], args
[2]));
1324 case INDEX_op_shr_i32
:
1325 if (const_args
[2]) {
1326 tcg_out32 (s
, (RLWINM
1336 tcg_out32 (s
, SRW
| SAB (args
[1], args
[0], args
[2]));
1338 case INDEX_op_sar_i32
:
1340 tcg_out32 (s
, SRAWI
| RS (args
[1]) | RA (args
[0]) | SH (args
[2]));
1342 tcg_out32 (s
, SRAW
| SAB (args
[1], args
[0], args
[2]));
1345 case INDEX_op_add2_i32
:
1346 if (args
[0] == args
[3] || args
[0] == args
[5]) {
1347 tcg_out32 (s
, ADDC
| TAB (0, args
[2], args
[4]));
1348 tcg_out32 (s
, ADDE
| TAB (args
[1], args
[3], args
[5]));
1349 tcg_out_mov (s
, args
[0], 0);
1352 tcg_out32 (s
, ADDC
| TAB (args
[0], args
[2], args
[4]));
1353 tcg_out32 (s
, ADDE
| TAB (args
[1], args
[3], args
[5]));
1356 case INDEX_op_sub2_i32
:
1357 if (args
[0] == args
[3] || args
[0] == args
[5]) {
1358 tcg_out32 (s
, SUBFC
| TAB (0, args
[4], args
[2]));
1359 tcg_out32 (s
, SUBFE
| TAB (args
[1], args
[5], args
[3]));
1360 tcg_out_mov (s
, args
[0], 0);
1363 tcg_out32 (s
, SUBFC
| TAB (args
[0], args
[4], args
[2]));
1364 tcg_out32 (s
, SUBFE
| TAB (args
[1], args
[5], args
[3]));
1368 case INDEX_op_brcond_i32
:
1373 args[3] = r1 is const
1374 args[4] = label_index
1376 tcg_out_brcond (s
, args
[2], args
[0], args
[1], const_args
[1], args
[3]);
1378 case INDEX_op_brcond2_i32
:
1379 tcg_out_brcond2(s
, args
, const_args
);
1382 case INDEX_op_neg_i32
:
1383 tcg_out32 (s
, NEG
| RT (args
[0]) | RA (args
[1]));
1386 case INDEX_op_qemu_ld8u
:
1387 tcg_out_qemu_ld(s
, args
, 0);
1389 case INDEX_op_qemu_ld8s
:
1390 tcg_out_qemu_ld(s
, args
, 0 | 4);
1392 case INDEX_op_qemu_ld16u
:
1393 tcg_out_qemu_ld(s
, args
, 1);
1395 case INDEX_op_qemu_ld16s
:
1396 tcg_out_qemu_ld(s
, args
, 1 | 4);
1398 case INDEX_op_qemu_ld32u
:
1399 tcg_out_qemu_ld(s
, args
, 2);
1401 case INDEX_op_qemu_ld64
:
1402 tcg_out_qemu_ld(s
, args
, 3);
1404 case INDEX_op_qemu_st8
:
1405 tcg_out_qemu_st(s
, args
, 0);
1407 case INDEX_op_qemu_st16
:
1408 tcg_out_qemu_st(s
, args
, 1);
1410 case INDEX_op_qemu_st32
:
1411 tcg_out_qemu_st(s
, args
, 2);
1413 case INDEX_op_qemu_st64
:
1414 tcg_out_qemu_st(s
, args
, 3);
1417 case INDEX_op_ext8s_i32
:
1418 tcg_out32 (s
, EXTSB
| RS (args
[1]) | RA (args
[0]));
1420 case INDEX_op_ext16s_i32
:
1421 tcg_out32 (s
, EXTSH
| RS (args
[1]) | RA (args
[0]));
1425 tcg_dump_ops (s
, stderr
);
1430 static const TCGTargetOpDef ppc_op_defs
[] = {
1431 { INDEX_op_exit_tb
, { } },
1432 { INDEX_op_goto_tb
, { } },
1433 { INDEX_op_call
, { "ri" } },
1434 { INDEX_op_jmp
, { "ri" } },
1435 { INDEX_op_br
, { } },
1437 { INDEX_op_mov_i32
, { "r", "r" } },
1438 { INDEX_op_movi_i32
, { "r" } },
1439 { INDEX_op_ld8u_i32
, { "r", "r" } },
1440 { INDEX_op_ld8s_i32
, { "r", "r" } },
1441 { INDEX_op_ld16u_i32
, { "r", "r" } },
1442 { INDEX_op_ld16s_i32
, { "r", "r" } },
1443 { INDEX_op_ld_i32
, { "r", "r" } },
1444 { INDEX_op_st8_i32
, { "r", "r" } },
1445 { INDEX_op_st16_i32
, { "r", "r" } },
1446 { INDEX_op_st_i32
, { "r", "r" } },
1448 { INDEX_op_add_i32
, { "r", "r", "ri" } },
1449 { INDEX_op_mul_i32
, { "r", "r", "ri" } },
1450 { INDEX_op_div_i32
, { "r", "r", "r" } },
1451 { INDEX_op_divu_i32
, { "r", "r", "r" } },
1452 { INDEX_op_rem_i32
, { "r", "r", "r" } },
1453 { INDEX_op_remu_i32
, { "r", "r", "r" } },
1454 { INDEX_op_mulu2_i32
, { "r", "r", "r", "r" } },
1455 { INDEX_op_sub_i32
, { "r", "r", "ri" } },
1456 { INDEX_op_and_i32
, { "r", "r", "ri" } },
1457 { INDEX_op_or_i32
, { "r", "r", "ri" } },
1458 { INDEX_op_xor_i32
, { "r", "r", "ri" } },
1460 { INDEX_op_shl_i32
, { "r", "r", "ri" } },
1461 { INDEX_op_shr_i32
, { "r", "r", "ri" } },
1462 { INDEX_op_sar_i32
, { "r", "r", "ri" } },
1464 { INDEX_op_brcond_i32
, { "r", "ri" } },
1466 { INDEX_op_add2_i32
, { "r", "r", "r", "r", "r", "r" } },
1467 { INDEX_op_sub2_i32
, { "r", "r", "r", "r", "r", "r" } },
1468 { INDEX_op_brcond2_i32
, { "r", "r", "r", "r" } },
1470 { INDEX_op_neg_i32
, { "r", "r" } },
1472 #if TARGET_LONG_BITS == 32
1473 { INDEX_op_qemu_ld8u
, { "r", "L" } },
1474 { INDEX_op_qemu_ld8s
, { "r", "L" } },
1475 { INDEX_op_qemu_ld16u
, { "r", "L" } },
1476 { INDEX_op_qemu_ld16s
, { "r", "L" } },
1477 { INDEX_op_qemu_ld32u
, { "r", "L" } },
1478 { INDEX_op_qemu_ld32s
, { "r", "L" } },
1479 { INDEX_op_qemu_ld64
, { "r", "r", "L" } },
1481 { INDEX_op_qemu_st8
, { "K", "K" } },
1482 { INDEX_op_qemu_st16
, { "K", "K" } },
1483 { INDEX_op_qemu_st32
, { "K", "K" } },
1484 { INDEX_op_qemu_st64
, { "M", "M", "M" } },
1486 { INDEX_op_qemu_ld8u
, { "r", "L", "L" } },
1487 { INDEX_op_qemu_ld8s
, { "r", "L", "L" } },
1488 { INDEX_op_qemu_ld16u
, { "r", "L", "L" } },
1489 { INDEX_op_qemu_ld16s
, { "r", "L", "L" } },
1490 { INDEX_op_qemu_ld32u
, { "r", "L", "L" } },
1491 { INDEX_op_qemu_ld32s
, { "r", "L", "L" } },
1492 { INDEX_op_qemu_ld64
, { "r", "L", "L", "L" } },
1494 { INDEX_op_qemu_st8
, { "K", "K", "K" } },
1495 { INDEX_op_qemu_st16
, { "K", "K", "K" } },
1496 { INDEX_op_qemu_st32
, { "K", "K", "K" } },
1497 { INDEX_op_qemu_st64
, { "M", "M", "M", "M" } },
1500 { INDEX_op_ext8s_i32
, { "r", "r" } },
1501 { INDEX_op_ext16s_i32
, { "r", "r" } },
1506 void tcg_target_init(TCGContext
*s
)
1508 tcg_regset_set32(tcg_target_available_regs
[TCG_TYPE_I32
], 0, 0xffffffff);
1509 tcg_regset_set32(tcg_target_call_clobber_regs
, 0,
1521 (1 << TCG_REG_R10
) |
1522 (1 << TCG_REG_R11
) |
1526 tcg_regset_clear(s
->reserved_regs
);
1527 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R0
);
1528 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R1
);
1530 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R2
);
1533 tcg_regset_set_reg(s
->reserved_regs
, TCG_REG_R13
);
1536 tcg_add_target_add_op_defs(ppc_op_defs
);