2009-10-17 14:17:47 +02:00
|
|
|
/*
|
|
|
|
* Tiny Code Generator for QEMU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008-2009 Arnaud Patard <arnaud.patard@rtp-net.org>
|
|
|
|
* Copyright (c) 2009 Aurelien Jarno <aurelien@aurel32.net>
|
|
|
|
* Based on i386/tcg-target.c - Copyright (c) 2008 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
#include "tcg-be-ldst.h"
|
2013-10-03 21:04:46 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
#ifdef HOST_WORDS_BIGENDIAN
|
|
|
|
# define MIPS_BE 1
|
2009-10-17 14:17:47 +02:00
|
|
|
#else
|
2014-05-03 00:01:31 +02:00
|
|
|
# define MIPS_BE 0
|
2009-10-17 14:17:47 +02:00
|
|
|
#endif
|
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
#define LO_OFF (MIPS_BE * 4)
|
|
|
|
#define HI_OFF (4 - LO_OFF)
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
|
|
|
|
"zero",
|
|
|
|
"at",
|
|
|
|
"v0",
|
|
|
|
"v1",
|
|
|
|
"a0",
|
|
|
|
"a1",
|
|
|
|
"a2",
|
|
|
|
"a3",
|
|
|
|
"t0",
|
|
|
|
"t1",
|
|
|
|
"t2",
|
|
|
|
"t3",
|
|
|
|
"t4",
|
|
|
|
"t5",
|
|
|
|
"t6",
|
|
|
|
"t7",
|
|
|
|
"s0",
|
|
|
|
"s1",
|
|
|
|
"s2",
|
|
|
|
"s3",
|
|
|
|
"s4",
|
|
|
|
"s5",
|
|
|
|
"s6",
|
|
|
|
"s7",
|
|
|
|
"t8",
|
|
|
|
"t9",
|
|
|
|
"k0",
|
|
|
|
"k1",
|
|
|
|
"gp",
|
|
|
|
"sp",
|
|
|
|
"fp",
|
|
|
|
"ra",
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* check if we really need so many registers :P */
|
2012-09-21 18:20:26 +02:00
|
|
|
static const TCGReg tcg_target_reg_alloc_order[] = {
|
2009-10-17 14:17:47 +02:00
|
|
|
TCG_REG_S0,
|
|
|
|
TCG_REG_S1,
|
|
|
|
TCG_REG_S2,
|
|
|
|
TCG_REG_S3,
|
|
|
|
TCG_REG_S4,
|
|
|
|
TCG_REG_S5,
|
|
|
|
TCG_REG_S6,
|
|
|
|
TCG_REG_S7,
|
|
|
|
TCG_REG_T1,
|
|
|
|
TCG_REG_T2,
|
|
|
|
TCG_REG_T3,
|
|
|
|
TCG_REG_T4,
|
|
|
|
TCG_REG_T5,
|
|
|
|
TCG_REG_T6,
|
|
|
|
TCG_REG_T7,
|
|
|
|
TCG_REG_T8,
|
|
|
|
TCG_REG_T9,
|
|
|
|
TCG_REG_A0,
|
|
|
|
TCG_REG_A1,
|
|
|
|
TCG_REG_A2,
|
|
|
|
TCG_REG_A3,
|
|
|
|
TCG_REG_V0,
|
|
|
|
TCG_REG_V1
|
|
|
|
};
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static const TCGReg tcg_target_call_iarg_regs[4] = {
|
2009-10-17 14:17:47 +02:00
|
|
|
TCG_REG_A0,
|
|
|
|
TCG_REG_A1,
|
|
|
|
TCG_REG_A2,
|
|
|
|
TCG_REG_A3
|
|
|
|
};
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static const TCGReg tcg_target_call_oarg_regs[2] = {
|
2009-10-17 14:17:47 +02:00
|
|
|
TCG_REG_V0,
|
|
|
|
TCG_REG_V1
|
|
|
|
};
|
|
|
|
|
2014-04-25 21:22:44 +02:00
|
|
|
static tcg_insn_unit *tb_ret_addr;
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-04-25 21:22:44 +02:00
|
|
|
static inline uint32_t reloc_pc16_val(tcg_insn_unit *pc, tcg_insn_unit *target)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-04-25 21:22:44 +02:00
|
|
|
/* Let the compiler perform the right-shift as part of the arithmetic. */
|
|
|
|
ptrdiff_t disp = target - (pc + 1);
|
|
|
|
assert(disp == (int16_t)disp);
|
|
|
|
return disp & 0xffff;
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2014-04-25 21:22:44 +02:00
|
|
|
static inline void reloc_pc16(tcg_insn_unit *pc, tcg_insn_unit *target)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-04-25 21:22:44 +02:00
|
|
|
*pc = deposit32(*pc, 0, 16, reloc_pc16_val(pc, target));
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2014-04-25 21:22:44 +02:00
|
|
|
static inline uint32_t reloc_26_val(tcg_insn_unit *pc, tcg_insn_unit *target)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-04-25 21:22:44 +02:00
|
|
|
assert((((uintptr_t)pc ^ (uintptr_t)target) & 0xf0000000) == 0);
|
|
|
|
return ((uintptr_t)target >> 2) & 0x3ffffff;
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2014-04-25 21:22:44 +02:00
|
|
|
static inline void reloc_26(tcg_insn_unit *pc, tcg_insn_unit *target)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-04-25 21:22:44 +02:00
|
|
|
*pc = deposit32(*pc, 0, 26, reloc_26_val(pc, target));
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2014-04-25 21:22:44 +02:00
|
|
|
static void patch_reloc(tcg_insn_unit *code_ptr, int type,
|
2013-08-21 00:30:10 +02:00
|
|
|
intptr_t value, intptr_t addend)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-04-25 21:22:44 +02:00
|
|
|
assert(type == R_MIPS_PC16);
|
|
|
|
assert(addend == 0);
|
|
|
|
reloc_pc16(code_ptr, (tcg_insn_unit *)value);
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* parse target specific constraints */
|
|
|
|
static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
|
|
|
|
{
|
|
|
|
const char *ct_str;
|
|
|
|
|
|
|
|
ct_str = *pct_str;
|
|
|
|
switch(ct_str[0]) {
|
|
|
|
case 'r':
|
|
|
|
ct->ct |= TCG_CT_REG;
|
|
|
|
tcg_regset_set(ct->u.regs, 0xffffffff);
|
|
|
|
break;
|
|
|
|
case 'L': /* qemu_ld output arg constraint */
|
|
|
|
ct->ct |= TCG_CT_REG;
|
|
|
|
tcg_regset_set(ct->u.regs, 0xffffffff);
|
|
|
|
tcg_regset_reset_reg(ct->u.regs, TCG_REG_V0);
|
|
|
|
break;
|
|
|
|
case 'l': /* qemu_ld input arg constraint */
|
|
|
|
ct->ct |= TCG_CT_REG;
|
|
|
|
tcg_regset_set(ct->u.regs, 0xffffffff);
|
|
|
|
tcg_regset_reset_reg(ct->u.regs, TCG_REG_A0);
|
2014-05-03 00:01:31 +02:00
|
|
|
#if defined(CONFIG_SOFTMMU)
|
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
tcg_regset_reset_reg(ct->u.regs, TCG_REG_A2);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'S': /* qemu_st constraint */
|
|
|
|
ct->ct |= TCG_CT_REG;
|
|
|
|
tcg_regset_set(ct->u.regs, 0xffffffff);
|
|
|
|
tcg_regset_reset_reg(ct->u.regs, TCG_REG_A0);
|
2010-03-27 17:31:04 +01:00
|
|
|
#if defined(CONFIG_SOFTMMU)
|
2014-05-03 00:01:31 +02:00
|
|
|
if (TARGET_LONG_BITS == 32) {
|
|
|
|
tcg_regset_reset_reg(ct->u.regs, TCG_REG_A1);
|
|
|
|
} else {
|
|
|
|
tcg_regset_reset_reg(ct->u.regs, TCG_REG_A2);
|
|
|
|
tcg_regset_reset_reg(ct->u.regs, TCG_REG_A3);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'I':
|
|
|
|
ct->ct |= TCG_CT_CONST_U16;
|
|
|
|
break;
|
|
|
|
case 'J':
|
|
|
|
ct->ct |= TCG_CT_CONST_S16;
|
|
|
|
break;
|
|
|
|
case 'Z':
|
|
|
|
/* We are cheating a bit here, using the fact that the register
|
|
|
|
ZERO is also the register number 0. Hence there is no need
|
|
|
|
to check for const_args in each instruction. */
|
|
|
|
ct->ct |= TCG_CT_CONST_ZERO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ct_str++;
|
|
|
|
*pct_str = ct_str;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* test if a constant matches the constraint */
|
2014-03-31 06:22:11 +02:00
|
|
|
static inline int tcg_target_const_match(tcg_target_long val, TCGType type,
|
2009-10-17 14:17:47 +02:00
|
|
|
const TCGArgConstraint *arg_ct)
|
|
|
|
{
|
|
|
|
int ct;
|
|
|
|
ct = arg_ct->ct;
|
|
|
|
if (ct & TCG_CT_CONST)
|
|
|
|
return 1;
|
|
|
|
else if ((ct & TCG_CT_CONST_ZERO) && val == 0)
|
|
|
|
return 1;
|
|
|
|
else if ((ct & TCG_CT_CONST_U16) && val == (uint16_t)val)
|
|
|
|
return 1;
|
|
|
|
else if ((ct & TCG_CT_CONST_S16) && val == (int16_t)val)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* instruction opcodes */
|
|
|
|
enum {
|
2014-03-23 17:57:18 +01:00
|
|
|
OPC_J = 0x02 << 26,
|
|
|
|
OPC_JAL = 0x03 << 26,
|
2009-10-17 14:17:47 +02:00
|
|
|
OPC_BEQ = 0x04 << 26,
|
|
|
|
OPC_BNE = 0x05 << 26,
|
2012-09-21 18:20:26 +02:00
|
|
|
OPC_BLEZ = 0x06 << 26,
|
|
|
|
OPC_BGTZ = 0x07 << 26,
|
2009-10-17 14:17:47 +02:00
|
|
|
OPC_ADDIU = 0x09 << 26,
|
2010-02-08 16:37:37 +01:00
|
|
|
OPC_SLTI = 0x0A << 26,
|
|
|
|
OPC_SLTIU = 0x0B << 26,
|
2009-10-17 14:17:47 +02:00
|
|
|
OPC_ANDI = 0x0C << 26,
|
|
|
|
OPC_ORI = 0x0D << 26,
|
|
|
|
OPC_XORI = 0x0E << 26,
|
|
|
|
OPC_LUI = 0x0F << 26,
|
|
|
|
OPC_LB = 0x20 << 26,
|
|
|
|
OPC_LH = 0x21 << 26,
|
|
|
|
OPC_LW = 0x23 << 26,
|
|
|
|
OPC_LBU = 0x24 << 26,
|
|
|
|
OPC_LHU = 0x25 << 26,
|
|
|
|
OPC_LWU = 0x27 << 26,
|
|
|
|
OPC_SB = 0x28 << 26,
|
|
|
|
OPC_SH = 0x29 << 26,
|
|
|
|
OPC_SW = 0x2B << 26,
|
2010-04-05 13:19:56 +02:00
|
|
|
|
|
|
|
OPC_SPECIAL = 0x00 << 26,
|
2009-10-17 14:17:47 +02:00
|
|
|
OPC_SLL = OPC_SPECIAL | 0x00,
|
|
|
|
OPC_SRL = OPC_SPECIAL | 0x02,
|
2012-09-21 18:20:26 +02:00
|
|
|
OPC_ROTR = OPC_SPECIAL | (0x01 << 21) | 0x02,
|
2009-10-17 14:17:47 +02:00
|
|
|
OPC_SRA = OPC_SPECIAL | 0x03,
|
|
|
|
OPC_SLLV = OPC_SPECIAL | 0x04,
|
|
|
|
OPC_SRLV = OPC_SPECIAL | 0x06,
|
2012-09-21 18:20:26 +02:00
|
|
|
OPC_ROTRV = OPC_SPECIAL | (0x01 << 6) | 0x06,
|
2009-10-17 14:17:47 +02:00
|
|
|
OPC_SRAV = OPC_SPECIAL | 0x07,
|
|
|
|
OPC_JR = OPC_SPECIAL | 0x08,
|
|
|
|
OPC_JALR = OPC_SPECIAL | 0x09,
|
2012-09-21 18:20:26 +02:00
|
|
|
OPC_MOVZ = OPC_SPECIAL | 0x0A,
|
|
|
|
OPC_MOVN = OPC_SPECIAL | 0x0B,
|
2009-10-17 14:17:47 +02:00
|
|
|
OPC_MFHI = OPC_SPECIAL | 0x10,
|
|
|
|
OPC_MFLO = OPC_SPECIAL | 0x12,
|
|
|
|
OPC_MULT = OPC_SPECIAL | 0x18,
|
|
|
|
OPC_MULTU = OPC_SPECIAL | 0x19,
|
|
|
|
OPC_DIV = OPC_SPECIAL | 0x1A,
|
|
|
|
OPC_DIVU = OPC_SPECIAL | 0x1B,
|
|
|
|
OPC_ADDU = OPC_SPECIAL | 0x21,
|
|
|
|
OPC_SUBU = OPC_SPECIAL | 0x23,
|
|
|
|
OPC_AND = OPC_SPECIAL | 0x24,
|
|
|
|
OPC_OR = OPC_SPECIAL | 0x25,
|
|
|
|
OPC_XOR = OPC_SPECIAL | 0x26,
|
|
|
|
OPC_NOR = OPC_SPECIAL | 0x27,
|
|
|
|
OPC_SLT = OPC_SPECIAL | 0x2A,
|
|
|
|
OPC_SLTU = OPC_SPECIAL | 0x2B,
|
2010-04-05 13:19:56 +02:00
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
OPC_REGIMM = 0x01 << 26,
|
|
|
|
OPC_BLTZ = OPC_REGIMM | (0x00 << 16),
|
|
|
|
OPC_BGEZ = OPC_REGIMM | (0x01 << 16),
|
|
|
|
|
2012-10-19 23:48:13 +02:00
|
|
|
OPC_SPECIAL2 = 0x1c << 26,
|
|
|
|
OPC_MUL = OPC_SPECIAL2 | 0x002,
|
|
|
|
|
2010-04-05 13:19:56 +02:00
|
|
|
OPC_SPECIAL3 = 0x1f << 26,
|
2012-09-21 18:20:26 +02:00
|
|
|
OPC_INS = OPC_SPECIAL3 | 0x004,
|
2012-09-21 18:20:26 +02:00
|
|
|
OPC_WSBH = OPC_SPECIAL3 | 0x0a0,
|
2010-04-05 13:19:56 +02:00
|
|
|
OPC_SEB = OPC_SPECIAL3 | 0x420,
|
|
|
|
OPC_SEH = OPC_SPECIAL3 | 0x620,
|
2009-10-17 14:17:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Type reg
|
|
|
|
*/
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_opc_reg(TCGContext *s, int opc,
|
|
|
|
TCGReg rd, TCGReg rs, TCGReg rt)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
int32_t inst;
|
|
|
|
|
|
|
|
inst = opc;
|
|
|
|
inst |= (rs & 0x1F) << 21;
|
|
|
|
inst |= (rt & 0x1F) << 16;
|
|
|
|
inst |= (rd & 0x1F) << 11;
|
|
|
|
tcg_out32(s, inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Type immediate
|
|
|
|
*/
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_opc_imm(TCGContext *s, int opc,
|
|
|
|
TCGReg rt, TCGReg rs, TCGArg imm)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
int32_t inst;
|
|
|
|
|
|
|
|
inst = opc;
|
|
|
|
inst |= (rs & 0x1F) << 21;
|
|
|
|
inst |= (rt & 0x1F) << 16;
|
|
|
|
inst |= (imm & 0xffff);
|
|
|
|
tcg_out32(s, inst);
|
|
|
|
}
|
|
|
|
|
2010-03-29 02:09:23 +02:00
|
|
|
/*
|
|
|
|
* Type branch
|
|
|
|
*/
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_opc_br(TCGContext *s, int opc,
|
|
|
|
TCGReg rt, TCGReg rs)
|
2010-03-29 02:09:23 +02:00
|
|
|
{
|
2011-01-10 18:30:05 +01:00
|
|
|
/* We pay attention here to not modify the branch target by reading
|
|
|
|
the existing value and using it again. This ensure that caches and
|
|
|
|
memory are kept coherent during retranslation. */
|
2014-04-25 21:22:44 +02:00
|
|
|
uint16_t offset = (uint16_t)*s->code_ptr;
|
2010-03-29 02:09:23 +02:00
|
|
|
|
|
|
|
tcg_out_opc_imm(s, opc, rt, rs, offset);
|
|
|
|
}
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
/*
|
|
|
|
* Type sa
|
|
|
|
*/
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_opc_sa(TCGContext *s, int opc,
|
|
|
|
TCGReg rd, TCGReg rt, TCGArg sa)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
int32_t inst;
|
|
|
|
|
|
|
|
inst = opc;
|
|
|
|
inst |= (rt & 0x1F) << 16;
|
|
|
|
inst |= (rd & 0x1F) << 11;
|
|
|
|
inst |= (sa & 0x1F) << 6;
|
|
|
|
tcg_out32(s, inst);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-03-23 17:57:18 +01:00
|
|
|
/*
|
|
|
|
* Type jump.
|
|
|
|
* Returns true if the branch was in range and the insn was emitted.
|
|
|
|
*/
|
|
|
|
static bool tcg_out_opc_jmp(TCGContext *s, int opc, void *target)
|
|
|
|
{
|
|
|
|
uintptr_t dest = (uintptr_t)target;
|
|
|
|
uintptr_t from = (uintptr_t)s->code_ptr + 4;
|
|
|
|
int32_t inst;
|
|
|
|
|
|
|
|
/* The pc-region branch happens within the 256MB region of
|
|
|
|
the delay slot (thus the +4). */
|
|
|
|
if ((from ^ dest) & -(1 << 28)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
assert((dest & 3) == 0);
|
|
|
|
|
|
|
|
inst = opc;
|
|
|
|
inst |= (dest >> 2) & 0x3ffffff;
|
|
|
|
tcg_out32(s, inst);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
static inline void tcg_out_nop(TCGContext *s)
|
|
|
|
{
|
|
|
|
tcg_out32(s, 0);
|
|
|
|
}
|
|
|
|
|
2011-11-09 09:03:34 +01:00
|
|
|
static inline void tcg_out_mov(TCGContext *s, TCGType type,
|
|
|
|
TCGReg ret, TCGReg arg)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2012-08-27 22:13:27 +02:00
|
|
|
/* Simple reg-reg move, optimising out the 'do nothing' case */
|
|
|
|
if (ret != arg) {
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, ret, arg, TCG_REG_ZERO);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void tcg_out_movi(TCGContext *s, TCGType type,
|
2011-11-09 09:03:34 +01:00
|
|
|
TCGReg reg, tcg_target_long arg)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
if (arg == (int16_t)arg) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, reg, TCG_REG_ZERO, arg);
|
|
|
|
} else if (arg == (uint16_t)arg) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ORI, reg, TCG_REG_ZERO, arg);
|
|
|
|
} else {
|
2014-03-23 18:15:21 +01:00
|
|
|
tcg_out_opc_imm(s, OPC_LUI, reg, TCG_REG_ZERO, arg >> 16);
|
|
|
|
if (arg & 0xffff) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ORI, reg, reg, arg & 0xffff);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_bswap16(TCGContext *s, TCGReg ret, TCGReg arg)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2013-08-15 17:57:59 +02:00
|
|
|
if (use_mips32r2_instructions) {
|
|
|
|
tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg);
|
|
|
|
} else {
|
|
|
|
/* ret and arg can't be register at */
|
|
|
|
if (ret == TCG_REG_AT || arg == TCG_REG_AT) {
|
|
|
|
tcg_abort();
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_sa(s, OPC_SRL, TCG_REG_AT, arg, 8);
|
|
|
|
tcg_out_opc_sa(s, OPC_SLL, ret, arg, 8);
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, ret, ret, 0xff00);
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_REG_AT);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_bswap16s(TCGContext *s, TCGReg ret, TCGReg arg)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2013-08-15 17:57:59 +02:00
|
|
|
if (use_mips32r2_instructions) {
|
|
|
|
tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg);
|
|
|
|
tcg_out_opc_reg(s, OPC_SEH, ret, 0, ret);
|
|
|
|
} else {
|
|
|
|
/* ret and arg can't be register at */
|
|
|
|
if (ret == TCG_REG_AT || arg == TCG_REG_AT) {
|
|
|
|
tcg_abort();
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_sa(s, OPC_SRL, TCG_REG_AT, arg, 8);
|
|
|
|
tcg_out_opc_sa(s, OPC_SLL, ret, arg, 24);
|
|
|
|
tcg_out_opc_sa(s, OPC_SRA, ret, ret, 16);
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_REG_AT);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_bswap32(TCGContext *s, TCGReg ret, TCGReg arg)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2013-08-15 17:57:59 +02:00
|
|
|
if (use_mips32r2_instructions) {
|
|
|
|
tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg);
|
|
|
|
tcg_out_opc_sa(s, OPC_ROTR, ret, ret, 16);
|
|
|
|
} else {
|
|
|
|
/* ret and arg must be different and can't be register at */
|
|
|
|
if (ret == arg || ret == TCG_REG_AT || arg == TCG_REG_AT) {
|
|
|
|
tcg_abort();
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_sa(s, OPC_SLL, ret, arg, 24);
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_sa(s, OPC_SRL, TCG_REG_AT, arg, 24);
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_REG_AT);
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, TCG_REG_AT, arg, 0xff00);
|
|
|
|
tcg_out_opc_sa(s, OPC_SLL, TCG_REG_AT, TCG_REG_AT, 8);
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_REG_AT);
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_sa(s, OPC_SRL, TCG_REG_AT, arg, 8);
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, TCG_REG_AT, TCG_REG_AT, 0xff00);
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_REG_AT);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_ext8s(TCGContext *s, TCGReg ret, TCGReg arg)
|
2010-04-05 13:19:56 +02:00
|
|
|
{
|
2013-08-15 17:57:59 +02:00
|
|
|
if (use_mips32r2_instructions) {
|
|
|
|
tcg_out_opc_reg(s, OPC_SEB, ret, 0, arg);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_sa(s, OPC_SLL, ret, arg, 24);
|
|
|
|
tcg_out_opc_sa(s, OPC_SRA, ret, ret, 24);
|
|
|
|
}
|
2010-04-05 13:19:56 +02:00
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_ext16s(TCGContext *s, TCGReg ret, TCGReg arg)
|
2010-04-05 13:19:56 +02:00
|
|
|
{
|
2013-08-15 17:57:59 +02:00
|
|
|
if (use_mips32r2_instructions) {
|
|
|
|
tcg_out_opc_reg(s, OPC_SEH, ret, 0, arg);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_sa(s, OPC_SLL, ret, arg, 16);
|
|
|
|
tcg_out_opc_sa(s, OPC_SRA, ret, ret, 16);
|
|
|
|
}
|
2010-04-05 13:19:56 +02:00
|
|
|
}
|
|
|
|
|
2014-03-23 18:45:23 +01:00
|
|
|
static void tcg_out_ldst(TCGContext *s, int opc, TCGReg data,
|
|
|
|
TCGReg addr, intptr_t ofs)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-03-23 18:45:23 +01:00
|
|
|
int16_t lo = ofs;
|
|
|
|
if (ofs != lo) {
|
|
|
|
tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_AT, ofs - lo);
|
|
|
|
if (addr != TCG_REG_ZERO) {
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_AT, TCG_REG_AT, addr);
|
|
|
|
}
|
|
|
|
addr = TCG_REG_AT;
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
2014-03-23 18:45:23 +01:00
|
|
|
tcg_out_opc_imm(s, opc, data, addr, lo);
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2011-11-09 09:03:34 +01:00
|
|
|
static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
|
2013-08-21 02:07:26 +02:00
|
|
|
TCGReg arg1, intptr_t arg2)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
tcg_out_ldst(s, OPC_LW, arg, arg1, arg2);
|
|
|
|
}
|
|
|
|
|
2011-11-09 09:03:34 +01:00
|
|
|
static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
|
2013-08-21 02:07:26 +02:00
|
|
|
TCGReg arg1, intptr_t arg2)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
tcg_out_ldst(s, OPC_SW, arg, arg1, arg2);
|
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static inline void tcg_out_addi(TCGContext *s, TCGReg reg, TCGArg val)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
if (val == (int16_t)val) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, reg, reg, val);
|
|
|
|
} else {
|
|
|
|
tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_AT, val);
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, reg, reg, TCG_REG_AT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static void tcg_out_brcond(TCGContext *s, TCGCond cond, TCGArg arg1,
|
|
|
|
TCGArg arg2, int label_index)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
TCGLabel *l = &s->labels[label_index];
|
|
|
|
|
|
|
|
switch (cond) {
|
|
|
|
case TCG_COND_EQ:
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BEQ, arg1, arg2);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_NE:
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BNE, arg1, arg2);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_LT:
|
2012-09-21 18:20:26 +02:00
|
|
|
if (arg2 == 0) {
|
|
|
|
tcg_out_opc_br(s, OPC_BLTZ, 0, arg1);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, arg1, arg2);
|
|
|
|
tcg_out_opc_br(s, OPC_BNE, TCG_REG_AT, TCG_REG_ZERO);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_LTU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg1, arg2);
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BNE, TCG_REG_AT, TCG_REG_ZERO);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_GE:
|
2012-09-21 18:20:26 +02:00
|
|
|
if (arg2 == 0) {
|
|
|
|
tcg_out_opc_br(s, OPC_BGEZ, 0, arg1);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, arg1, arg2);
|
|
|
|
tcg_out_opc_br(s, OPC_BEQ, TCG_REG_AT, TCG_REG_ZERO);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_GEU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg1, arg2);
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BEQ, TCG_REG_AT, TCG_REG_ZERO);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_LE:
|
2012-09-21 18:20:26 +02:00
|
|
|
if (arg2 == 0) {
|
|
|
|
tcg_out_opc_br(s, OPC_BLEZ, 0, arg1);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, arg2, arg1);
|
|
|
|
tcg_out_opc_br(s, OPC_BEQ, TCG_REG_AT, TCG_REG_ZERO);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_LEU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg2, arg1);
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BEQ, TCG_REG_AT, TCG_REG_ZERO);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_GT:
|
2012-09-21 18:20:26 +02:00
|
|
|
if (arg2 == 0) {
|
|
|
|
tcg_out_opc_br(s, OPC_BGTZ, 0, arg1);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, arg2, arg1);
|
|
|
|
tcg_out_opc_br(s, OPC_BNE, TCG_REG_AT, TCG_REG_ZERO);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case TCG_COND_GTU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg2, arg1);
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BNE, TCG_REG_AT, TCG_REG_ZERO);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (l->has_value) {
|
2014-04-25 21:22:44 +02:00
|
|
|
reloc_pc16(s->code_ptr - 1, l->u.value_ptr);
|
2009-10-17 14:17:47 +02:00
|
|
|
} else {
|
2014-04-25 21:22:44 +02:00
|
|
|
tcg_out_reloc(s, s->code_ptr - 1, R_MIPS_PC16, label_index, 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
tcg_out_nop(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: we implement it at the target level to avoid having to
|
|
|
|
handle cross basic blocks temporaries */
|
2012-09-21 18:20:26 +02:00
|
|
|
static void tcg_out_brcond2(TCGContext *s, TCGCond cond, TCGArg arg1,
|
|
|
|
TCGArg arg2, TCGArg arg3, TCGArg arg4,
|
|
|
|
int label_index)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-04-25 21:22:44 +02:00
|
|
|
tcg_insn_unit *label_ptr;
|
2009-10-17 14:17:47 +02:00
|
|
|
|
|
|
|
switch(cond) {
|
|
|
|
case TCG_COND_NE:
|
|
|
|
tcg_out_brcond(s, TCG_COND_NE, arg2, arg4, label_index);
|
|
|
|
tcg_out_brcond(s, TCG_COND_NE, arg1, arg3, label_index);
|
|
|
|
return;
|
|
|
|
case TCG_COND_EQ:
|
|
|
|
break;
|
|
|
|
case TCG_COND_LT:
|
|
|
|
case TCG_COND_LE:
|
|
|
|
tcg_out_brcond(s, TCG_COND_LT, arg2, arg4, label_index);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GT:
|
|
|
|
case TCG_COND_GE:
|
|
|
|
tcg_out_brcond(s, TCG_COND_GT, arg2, arg4, label_index);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LTU:
|
|
|
|
case TCG_COND_LEU:
|
|
|
|
tcg_out_brcond(s, TCG_COND_LTU, arg2, arg4, label_index);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GTU:
|
|
|
|
case TCG_COND_GEU:
|
|
|
|
tcg_out_brcond(s, TCG_COND_GTU, arg2, arg4, label_index);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
label_ptr = s->code_ptr;
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BNE, arg2, arg4);
|
2009-10-17 14:17:47 +02:00
|
|
|
tcg_out_nop(s);
|
|
|
|
|
|
|
|
switch(cond) {
|
|
|
|
case TCG_COND_EQ:
|
|
|
|
tcg_out_brcond(s, TCG_COND_EQ, arg1, arg3, label_index);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LT:
|
|
|
|
case TCG_COND_LTU:
|
|
|
|
tcg_out_brcond(s, TCG_COND_LTU, arg1, arg3, label_index);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LE:
|
|
|
|
case TCG_COND_LEU:
|
|
|
|
tcg_out_brcond(s, TCG_COND_LEU, arg1, arg3, label_index);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GT:
|
|
|
|
case TCG_COND_GTU:
|
|
|
|
tcg_out_brcond(s, TCG_COND_GTU, arg1, arg3, label_index);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GE:
|
|
|
|
case TCG_COND_GEU:
|
|
|
|
tcg_out_brcond(s, TCG_COND_GEU, arg1, arg3, label_index);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
}
|
|
|
|
|
2014-04-25 21:22:44 +02:00
|
|
|
reloc_pc16(label_ptr, s->code_ptr);
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static void tcg_out_movcond(TCGContext *s, TCGCond cond, TCGReg ret,
|
|
|
|
TCGArg c1, TCGArg c2, TCGArg v)
|
|
|
|
{
|
|
|
|
switch (cond) {
|
|
|
|
case TCG_COND_EQ:
|
|
|
|
if (c1 == 0) {
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVZ, ret, v, c2);
|
|
|
|
} else if (c2 == 0) {
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVZ, ret, v, c1);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_XOR, TCG_REG_AT, c1, c2);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVZ, ret, v, TCG_REG_AT);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TCG_COND_NE:
|
|
|
|
if (c1 == 0) {
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVN, ret, v, c2);
|
|
|
|
} else if (c2 == 0) {
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVN, ret, v, c1);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_XOR, TCG_REG_AT, c1, c2);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVN, ret, v, TCG_REG_AT);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TCG_COND_LT:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, c1, c2);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVN, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LTU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, c1, c2);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVN, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GE:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, c1, c2);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVZ, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GEU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, c1, c2);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVZ, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LE:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, c2, c1);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVZ, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LEU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, c2, c1);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVZ, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GT:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, TCG_REG_AT, c2, c1);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVN, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GTU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, c2, c1);
|
|
|
|
tcg_out_opc_reg(s, OPC_MOVN, ret, v, TCG_REG_AT);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
static void tcg_out_setcond(TCGContext *s, TCGCond cond, TCGReg ret,
|
|
|
|
TCGArg arg1, TCGArg arg2)
|
2010-02-08 16:37:37 +01:00
|
|
|
{
|
|
|
|
switch (cond) {
|
|
|
|
case TCG_COND_EQ:
|
|
|
|
if (arg1 == 0) {
|
|
|
|
tcg_out_opc_imm(s, OPC_SLTIU, ret, arg2, 1);
|
|
|
|
} else if (arg2 == 0) {
|
|
|
|
tcg_out_opc_imm(s, OPC_SLTIU, ret, arg1, 1);
|
|
|
|
} else {
|
2010-02-08 19:05:00 +01:00
|
|
|
tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
|
|
|
|
tcg_out_opc_imm(s, OPC_SLTIU, ret, ret, 1);
|
2010-02-08 16:37:37 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TCG_COND_NE:
|
|
|
|
if (arg1 == 0) {
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, ret, TCG_REG_ZERO, arg2);
|
|
|
|
} else if (arg2 == 0) {
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, ret, TCG_REG_ZERO, arg1);
|
|
|
|
} else {
|
2010-02-08 19:05:00 +01:00
|
|
|
tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, ret, TCG_REG_ZERO, ret);
|
2010-02-08 16:37:37 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TCG_COND_LT:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, ret, arg1, arg2);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LTU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, ret, arg1, arg2);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GE:
|
2010-02-08 19:05:00 +01:00
|
|
|
tcg_out_opc_reg(s, OPC_SLT, ret, arg1, arg2);
|
|
|
|
tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
|
2010-02-08 16:37:37 +01:00
|
|
|
break;
|
|
|
|
case TCG_COND_GEU:
|
2010-02-08 19:05:00 +01:00
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, ret, arg1, arg2);
|
|
|
|
tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
|
2010-02-08 16:37:37 +01:00
|
|
|
break;
|
|
|
|
case TCG_COND_LE:
|
2010-02-08 19:05:00 +01:00
|
|
|
tcg_out_opc_reg(s, OPC_SLT, ret, arg2, arg1);
|
|
|
|
tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
|
2010-02-08 16:37:37 +01:00
|
|
|
break;
|
|
|
|
case TCG_COND_LEU:
|
2010-02-08 19:05:00 +01:00
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, ret, arg2, arg1);
|
|
|
|
tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
|
2010-02-08 16:37:37 +01:00
|
|
|
break;
|
|
|
|
case TCG_COND_GT:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLT, ret, arg2, arg1);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GTU:
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, ret, arg2, arg1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-08 19:05:00 +01:00
|
|
|
/* XXX: we implement it at the target level to avoid having to
|
|
|
|
handle cross basic blocks temporaries */
|
2012-09-21 18:20:26 +02:00
|
|
|
static void tcg_out_setcond2(TCGContext *s, TCGCond cond, TCGReg ret,
|
|
|
|
TCGArg arg1, TCGArg arg2, TCGArg arg3, TCGArg arg4)
|
2010-02-08 19:05:00 +01:00
|
|
|
{
|
|
|
|
switch (cond) {
|
|
|
|
case TCG_COND_EQ:
|
|
|
|
tcg_out_setcond(s, TCG_COND_EQ, TCG_REG_AT, arg2, arg4);
|
|
|
|
tcg_out_setcond(s, TCG_COND_EQ, TCG_REG_T0, arg1, arg3);
|
|
|
|
tcg_out_opc_reg(s, OPC_AND, ret, TCG_REG_AT, TCG_REG_T0);
|
|
|
|
return;
|
|
|
|
case TCG_COND_NE:
|
|
|
|
tcg_out_setcond(s, TCG_COND_NE, TCG_REG_AT, arg2, arg4);
|
|
|
|
tcg_out_setcond(s, TCG_COND_NE, TCG_REG_T0, arg1, arg3);
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, ret, TCG_REG_AT, TCG_REG_T0);
|
|
|
|
return;
|
|
|
|
case TCG_COND_LT:
|
|
|
|
case TCG_COND_LE:
|
|
|
|
tcg_out_setcond(s, TCG_COND_LT, TCG_REG_AT, arg2, arg4);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GT:
|
|
|
|
case TCG_COND_GE:
|
|
|
|
tcg_out_setcond(s, TCG_COND_GT, TCG_REG_AT, arg2, arg4);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LTU:
|
|
|
|
case TCG_COND_LEU:
|
|
|
|
tcg_out_setcond(s, TCG_COND_LTU, TCG_REG_AT, arg2, arg4);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GTU:
|
|
|
|
case TCG_COND_GEU:
|
|
|
|
tcg_out_setcond(s, TCG_COND_GTU, TCG_REG_AT, arg2, arg4);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_out_setcond(s, TCG_COND_EQ, TCG_REG_T0, arg2, arg4);
|
|
|
|
|
|
|
|
switch(cond) {
|
|
|
|
case TCG_COND_LT:
|
|
|
|
case TCG_COND_LTU:
|
|
|
|
tcg_out_setcond(s, TCG_COND_LTU, ret, arg1, arg3);
|
|
|
|
break;
|
|
|
|
case TCG_COND_LE:
|
|
|
|
case TCG_COND_LEU:
|
|
|
|
tcg_out_setcond(s, TCG_COND_LEU, ret, arg1, arg3);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GT:
|
|
|
|
case TCG_COND_GTU:
|
|
|
|
tcg_out_setcond(s, TCG_COND_GTU, ret, arg1, arg3);
|
|
|
|
break;
|
|
|
|
case TCG_COND_GE:
|
|
|
|
case TCG_COND_GEU:
|
|
|
|
tcg_out_setcond(s, TCG_COND_GEU, ret, arg1, arg3);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_out_opc_reg(s, OPC_AND, ret, ret, TCG_REG_T0);
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_REG_AT);
|
|
|
|
}
|
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static void tcg_out_call(TCGContext *s, tcg_insn_unit *arg)
|
|
|
|
{
|
|
|
|
/* Note that the ABI requires the called function's address to be
|
|
|
|
loaded into T9, even if a direct branch is in range. */
|
|
|
|
tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_T9, (uintptr_t)arg);
|
|
|
|
|
|
|
|
/* But do try a direct branch, allowing the cpu better insn prefetch. */
|
|
|
|
if (!tcg_out_opc_jmp(s, OPC_JAL, arg)) {
|
|
|
|
tcg_out_opc_reg(s, OPC_JALR, TCG_REG_RA, TCG_REG_T9, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_out_nop(s);
|
|
|
|
}
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
#if defined(CONFIG_SOFTMMU)
|
2011-09-18 16:55:46 +02:00
|
|
|
/* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
|
|
|
|
int mmu_idx) */
|
2014-05-03 00:01:31 +02:00
|
|
|
static void * const qemu_ld_helpers[4] = {
|
2011-09-18 16:55:46 +02:00
|
|
|
helper_ldb_mmu,
|
|
|
|
helper_ldw_mmu,
|
|
|
|
helper_ldl_mmu,
|
|
|
|
helper_ldq_mmu,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* helper signature: helper_st_mmu(CPUState *env, target_ulong addr,
|
|
|
|
uintxx_t val, int mmu_idx) */
|
2014-05-03 00:01:31 +02:00
|
|
|
static void * const qemu_st_helpers[4] = {
|
2011-09-18 16:55:46 +02:00
|
|
|
helper_stb_mmu,
|
|
|
|
helper_stw_mmu,
|
|
|
|
helper_stl_mmu,
|
|
|
|
helper_stq_mmu,
|
|
|
|
};
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
/* Helper routines for marshalling helper function arguments into
|
|
|
|
* the correct registers and stack.
|
|
|
|
* I is where we want to put this argument, and is updated and returned
|
|
|
|
* for the next call. ARG is the argument itself.
|
|
|
|
*
|
|
|
|
* We provide routines for arguments which are: immediate, 32 bit
|
|
|
|
* value in register, 16 and 8 bit values in register (which must be zero
|
|
|
|
* extended before use) and 64 bit value in a lo:hi register pair.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int tcg_out_call_iarg_reg(TCGContext *s, int i, TCGReg arg)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-05-03 00:01:31 +02:00
|
|
|
if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
|
|
|
|
tcg_out_mov(s, TCG_TYPE_REG, tcg_target_call_iarg_regs[i], arg);
|
|
|
|
} else {
|
|
|
|
tcg_out_st(s, TCG_TYPE_REG, arg, TCG_REG_SP, 4 * i);
|
|
|
|
}
|
|
|
|
return i + 1;
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static int tcg_out_call_iarg_reg8(TCGContext *s, int i, TCGReg arg)
|
|
|
|
{
|
|
|
|
TCGReg tmp = TCG_REG_AT;
|
|
|
|
if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
|
|
|
|
tmp = tcg_target_call_iarg_regs[i];
|
|
|
|
}
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, tmp, arg, 0xff);
|
|
|
|
return tcg_out_call_iarg_reg(s, i, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tcg_out_call_iarg_reg16(TCGContext *s, int i, TCGReg arg)
|
|
|
|
{
|
|
|
|
TCGReg tmp = TCG_REG_AT;
|
|
|
|
if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
|
|
|
|
tmp = tcg_target_call_iarg_regs[i];
|
|
|
|
}
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, tmp, arg, 0xffff);
|
|
|
|
return tcg_out_call_iarg_reg(s, i, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tcg_out_call_iarg_imm(TCGContext *s, int i, TCGArg arg)
|
|
|
|
{
|
|
|
|
TCGReg tmp = TCG_REG_AT;
|
|
|
|
if (arg == 0) {
|
|
|
|
tmp = TCG_REG_ZERO;
|
2009-10-17 14:17:47 +02:00
|
|
|
} else {
|
2014-05-03 00:01:31 +02:00
|
|
|
if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
|
|
|
|
tmp = tcg_target_call_iarg_regs[i];
|
|
|
|
}
|
|
|
|
tcg_out_movi(s, TCG_TYPE_REG, tmp, arg);
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
2014-05-03 00:01:31 +02:00
|
|
|
return tcg_out_call_iarg_reg(s, i, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tcg_out_call_iarg_reg2(TCGContext *s, int i, TCGReg al, TCGReg ah)
|
|
|
|
{
|
|
|
|
i = (i + 1) & ~1;
|
|
|
|
i = tcg_out_call_iarg_reg(s, i, (MIPS_BE ? ah : al));
|
|
|
|
i = tcg_out_call_iarg_reg(s, i, (MIPS_BE ? al : ah));
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform the tlb comparison operation. The complete host address is
|
|
|
|
placed in BASE. Clobbers AT, T0, A0. */
|
|
|
|
static void tcg_out_tlb_load(TCGContext *s, TCGReg base, TCGReg addrl,
|
|
|
|
TCGReg addrh, int mem_index, TCGMemOp s_bits,
|
|
|
|
tcg_insn_unit *label_ptr[2], bool is_load)
|
|
|
|
{
|
|
|
|
int cmp_off
|
|
|
|
= (is_load
|
|
|
|
? offsetof(CPUArchState, tlb_table[mem_index][0].addr_read)
|
|
|
|
: offsetof(CPUArchState, tlb_table[mem_index][0].addr_write));
|
|
|
|
int add_off = offsetof(CPUArchState, tlb_table[mem_index][0].addend);
|
|
|
|
|
|
|
|
tcg_out_opc_sa(s, OPC_SRL, TCG_REG_A0, addrl,
|
|
|
|
TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS);
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, TCG_REG_A0, TCG_REG_A0,
|
|
|
|
(CPU_TLB_SIZE - 1) << CPU_TLB_ENTRY_BITS);
|
2009-10-17 14:17:47 +02:00
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_A0, TCG_REG_A0, TCG_AREG0);
|
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
/* Compensate for very large offsets. */
|
|
|
|
if (add_off >= 0x8000) {
|
|
|
|
/* Most target env are smaller than 32k; none are larger than 64k.
|
|
|
|
Simplify the logic here merely to offset by 0x7ff0, giving us a
|
|
|
|
range just shy of 64k. Check this assumption. */
|
|
|
|
QEMU_BUILD_BUG_ON(offsetof(CPUArchState,
|
|
|
|
tlb_table[NB_MMU_MODES - 1][1])
|
|
|
|
> 0x7ff0 + 0x7fff);
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, TCG_REG_A0, TCG_REG_A0, 0x7ff0);
|
|
|
|
cmp_off -= 0x7ff0;
|
|
|
|
add_off -= 0x7ff0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load the tlb comparator. */
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, TCG_REG_AT, TCG_REG_A0, cmp_off + LO_OFF);
|
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, base, TCG_REG_A0, cmp_off + HI_OFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mask the page bits, keeping the alignment bits to compare against.
|
|
|
|
In between, load the tlb addend for the fast path. */
|
|
|
|
tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_T0,
|
|
|
|
TARGET_PAGE_MASK | ((1 << s_bits) - 1));
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, TCG_REG_A0, TCG_REG_A0, add_off);
|
|
|
|
tcg_out_opc_reg(s, OPC_AND, TCG_REG_T0, TCG_REG_T0, addrl);
|
|
|
|
|
|
|
|
label_ptr[0] = s->code_ptr;
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BNE, TCG_REG_T0, TCG_REG_AT);
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
/* delay slot */
|
|
|
|
tcg_out_nop(s);
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
label_ptr[1] = s->code_ptr;
|
|
|
|
tcg_out_opc_br(s, OPC_BNE, addrh, base);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
/* delay slot */
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, base, TCG_REG_A0, addrl);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static void add_qemu_ldst_label(TCGContext *s, int is_ld, TCGMemOp opc,
|
|
|
|
TCGReg datalo, TCGReg datahi,
|
|
|
|
TCGReg addrlo, TCGReg addrhi,
|
|
|
|
int mem_index, void *raddr,
|
|
|
|
tcg_insn_unit *label_ptr[2])
|
|
|
|
{
|
|
|
|
TCGLabelQemuLdst *label = new_ldst_label(s);
|
|
|
|
|
|
|
|
label->is_ld = is_ld;
|
|
|
|
label->opc = opc;
|
|
|
|
label->datalo_reg = datalo;
|
|
|
|
label->datahi_reg = datahi;
|
|
|
|
label->addrlo_reg = addrlo;
|
|
|
|
label->addrhi_reg = addrhi;
|
|
|
|
label->mem_index = mem_index;
|
|
|
|
label->raddr = raddr;
|
|
|
|
label->label_ptr[0] = label_ptr[0];
|
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
label->label_ptr[1] = label_ptr[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
|
|
|
|
{
|
|
|
|
TCGMemOp opc = l->opc;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* resolve label address */
|
|
|
|
reloc_pc16(l->label_ptr[0], s->code_ptr);
|
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
reloc_pc16(l->label_ptr[1], s->code_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
i = tcg_out_call_iarg_reg(s, i, TCG_AREG0);
|
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
i = tcg_out_call_iarg_reg2(s, i, l->addrlo_reg, l->addrhi_reg);
|
|
|
|
} else {
|
|
|
|
i = tcg_out_call_iarg_reg(s, i, l->addrlo_reg);
|
|
|
|
}
|
|
|
|
i = tcg_out_call_iarg_imm(s, i, l->mem_index);
|
|
|
|
tcg_out_call(s, qemu_ld_helpers[opc & MO_SIZE]);
|
|
|
|
|
|
|
|
switch (opc & MO_SSIZE) {
|
|
|
|
case MO_UB:
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, l->datalo_reg, TCG_REG_V0, 0xff);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_SB:
|
|
|
|
tcg_out_ext8s(s, l->datalo_reg, TCG_REG_V0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_UW:
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, l->datalo_reg, TCG_REG_V0, 0xffff);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_SW:
|
|
|
|
tcg_out_ext16s(s, l->datalo_reg, TCG_REG_V0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_UL:
|
|
|
|
tcg_out_mov(s, TCG_TYPE_I32, l->datalo_reg, TCG_REG_V0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_Q:
|
|
|
|
/* We eliminated V0 from the possible output registers, so it
|
|
|
|
cannot be clobbered here. So we must move V1 first. */
|
|
|
|
tcg_out_mov(s, TCG_TYPE_I32, MIPS_BE ? l->datalo_reg : l->datahi_reg,
|
|
|
|
TCG_REG_V1);
|
|
|
|
tcg_out_mov(s, TCG_TYPE_I32, MIPS_BE ? l->datahi_reg : l->datalo_reg,
|
|
|
|
TCG_REG_V0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
}
|
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
reloc_pc16(s->code_ptr, l->raddr);
|
2010-03-29 02:09:23 +02:00
|
|
|
tcg_out_opc_br(s, OPC_BEQ, TCG_REG_ZERO, TCG_REG_ZERO);
|
2009-10-17 14:17:47 +02:00
|
|
|
tcg_out_nop(s);
|
2014-05-03 00:01:31 +02:00
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static void tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
|
|
|
|
{
|
|
|
|
TCGMemOp opc = l->opc;
|
|
|
|
TCGMemOp s_bits = opc & MO_SIZE;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* resolve label address */
|
|
|
|
reloc_pc16(l->label_ptr[0], s->code_ptr);
|
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
reloc_pc16(l->label_ptr[1], s->code_ptr);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
i = 0;
|
|
|
|
i = tcg_out_call_iarg_reg(s, i, TCG_AREG0);
|
|
|
|
if (TARGET_LONG_BITS == 64) {
|
|
|
|
i = tcg_out_call_iarg_reg2(s, i, l->addrlo_reg, l->addrhi_reg);
|
2010-03-27 17:31:04 +01:00
|
|
|
} else {
|
2014-05-03 00:01:31 +02:00
|
|
|
i = tcg_out_call_iarg_reg(s, i, l->addrlo_reg);
|
|
|
|
}
|
|
|
|
switch (s_bits) {
|
|
|
|
case MO_8:
|
|
|
|
i = tcg_out_call_iarg_reg8(s, i, l->datalo_reg);
|
|
|
|
break;
|
|
|
|
case MO_16:
|
|
|
|
i = tcg_out_call_iarg_reg16(s, i, l->datalo_reg);
|
|
|
|
break;
|
|
|
|
case MO_32:
|
|
|
|
i = tcg_out_call_iarg_reg(s, i, l->datalo_reg);
|
|
|
|
break;
|
|
|
|
case MO_64:
|
|
|
|
i = tcg_out_call_iarg_reg2(s, i, l->datalo_reg, l->datahi_reg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
2010-03-27 17:31:04 +01:00
|
|
|
}
|
2014-05-03 00:01:31 +02:00
|
|
|
i = tcg_out_call_iarg_imm(s, i, l->mem_index);
|
|
|
|
tcg_out_call(s, qemu_st_helpers[s_bits]);
|
|
|
|
|
|
|
|
reloc_pc16(s->code_ptr, l->raddr);
|
|
|
|
tcg_out_opc_br(s, OPC_BEQ, TCG_REG_ZERO, TCG_REG_ZERO);
|
|
|
|
tcg_out_nop(s);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
#endif
|
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static void tcg_out_qemu_ld_direct(TCGContext *s, TCGReg datalo, TCGReg datahi,
|
|
|
|
TCGReg base, TCGMemOp opc)
|
|
|
|
{
|
|
|
|
switch (opc) {
|
|
|
|
case MO_UB:
|
|
|
|
tcg_out_opc_imm(s, OPC_LBU, datalo, base, 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_SB:
|
|
|
|
tcg_out_opc_imm(s, OPC_LB, datalo, base, 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_UW | MO_BSWAP:
|
|
|
|
tcg_out_opc_imm(s, OPC_LHU, TCG_REG_T0, base, 0);
|
|
|
|
tcg_out_bswap16(s, datalo, TCG_REG_T0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_UW:
|
|
|
|
tcg_out_opc_imm(s, OPC_LHU, datalo, base, 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_SW | MO_BSWAP:
|
|
|
|
tcg_out_opc_imm(s, OPC_LHU, TCG_REG_T0, base, 0);
|
|
|
|
tcg_out_bswap16s(s, datalo, TCG_REG_T0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_SW:
|
|
|
|
tcg_out_opc_imm(s, OPC_LH, datalo, base, 0);
|
|
|
|
break;
|
|
|
|
case MO_UL | MO_BSWAP:
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, TCG_REG_T0, base, 0);
|
|
|
|
tcg_out_bswap32(s, datalo, TCG_REG_T0);
|
|
|
|
break;
|
|
|
|
case MO_UL:
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, datalo, base, 0);
|
|
|
|
break;
|
|
|
|
case MO_Q | MO_BSWAP:
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, TCG_REG_T0, base, HI_OFF);
|
|
|
|
tcg_out_bswap32(s, datalo, TCG_REG_T0);
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, TCG_REG_T0, base, LO_OFF);
|
|
|
|
tcg_out_bswap32(s, datahi, TCG_REG_T0);
|
|
|
|
break;
|
|
|
|
case MO_Q:
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, datalo, base, LO_OFF);
|
|
|
|
tcg_out_opc_imm(s, OPC_LW, datahi, base, HI_OFF);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, TCGMemOp opc)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2014-05-03 00:01:31 +02:00
|
|
|
TCGReg addr_regl, addr_regh __attribute__((unused));
|
|
|
|
TCGReg data_regl, data_regh;
|
2009-10-17 14:17:47 +02:00
|
|
|
#if defined(CONFIG_SOFTMMU)
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_insn_unit *label_ptr[2];
|
|
|
|
int mem_index;
|
|
|
|
TCGMemOp s_bits;
|
2009-10-17 14:17:47 +02:00
|
|
|
#endif
|
2014-05-03 00:01:31 +02:00
|
|
|
/* Note that we've eliminated V0 from the output registers,
|
|
|
|
so we won't overwrite the base register during loading. */
|
|
|
|
TCGReg base = TCG_REG_V0;
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
data_regl = *args++;
|
2014-05-03 00:01:31 +02:00
|
|
|
data_regh = ((opc & MO_SIZE) == MO_64 ? *args++ : 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
addr_regl = *args++;
|
2014-05-03 00:01:31 +02:00
|
|
|
addr_regh = (TARGET_LONG_BITS == 64 ? *args++ : 0);
|
|
|
|
|
2012-09-21 18:20:25 +02:00
|
|
|
#if defined(CONFIG_SOFTMMU)
|
2009-10-17 14:17:47 +02:00
|
|
|
mem_index = *args;
|
2014-05-03 00:01:31 +02:00
|
|
|
s_bits = opc & MO_SIZE;
|
2012-09-21 18:20:25 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_tlb_load(s, base, addr_regl, addr_regh, mem_index,
|
|
|
|
s_bits, label_ptr, 1);
|
|
|
|
tcg_out_qemu_ld_direct(s, data_regl, data_regh, base, opc);
|
|
|
|
add_qemu_ldst_label(s, 1, opc, data_regl, data_regh, addr_regl, addr_regh,
|
|
|
|
mem_index, s->code_ptr, label_ptr);
|
2012-09-21 18:20:25 +02:00
|
|
|
#else
|
2014-05-03 00:01:31 +02:00
|
|
|
if (GUEST_BASE == 0 && data_regl != addr_regl) {
|
|
|
|
base = addr_regl;
|
|
|
|
} else if (GUEST_BASE == (int16_t)GUEST_BASE) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, base, addr_regl, GUEST_BASE);
|
2012-09-21 18:20:25 +02:00
|
|
|
} else {
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_movi(s, TCG_TYPE_PTR, base, GUEST_BASE);
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, base, base, addr_regl);
|
2012-09-21 18:20:25 +02:00
|
|
|
}
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_ld_direct(s, data_regl, data_regh, base, opc);
|
|
|
|
#endif
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static void tcg_out_qemu_st_direct(TCGContext *s, TCGReg datalo, TCGReg datahi,
|
|
|
|
TCGReg base, TCGMemOp opc)
|
|
|
|
{
|
|
|
|
switch (opc) {
|
|
|
|
case MO_8:
|
|
|
|
tcg_out_opc_imm(s, OPC_SB, datalo, base, 0);
|
|
|
|
break;
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_16 | MO_BSWAP:
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, TCG_REG_T0, datalo, 0xffff);
|
|
|
|
tcg_out_bswap16(s, TCG_REG_T0, TCG_REG_T0);
|
|
|
|
datalo = TCG_REG_T0;
|
|
|
|
/* FALLTHRU */
|
|
|
|
case MO_16:
|
|
|
|
tcg_out_opc_imm(s, OPC_SH, datalo, base, 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
|
|
|
|
case MO_32 | MO_BSWAP:
|
|
|
|
tcg_out_bswap32(s, TCG_REG_T0, datalo);
|
|
|
|
datalo = TCG_REG_T0;
|
|
|
|
/* FALLTHRU */
|
|
|
|
case MO_32:
|
|
|
|
tcg_out_opc_imm(s, OPC_SW, datalo, base, 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
|
|
|
|
case MO_64 | MO_BSWAP:
|
|
|
|
tcg_out_bswap32(s, TCG_REG_T0, datalo);
|
|
|
|
tcg_out_opc_imm(s, OPC_SW, TCG_REG_T0, base, HI_OFF);
|
|
|
|
tcg_out_bswap32(s, TCG_REG_T0, datahi);
|
|
|
|
tcg_out_opc_imm(s, OPC_SW, TCG_REG_T0, base, LO_OFF);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
case MO_64:
|
|
|
|
tcg_out_opc_imm(s, OPC_SW, datalo, base, LO_OFF);
|
|
|
|
tcg_out_opc_imm(s, OPC_SW, datahi, base, HI_OFF);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2014-05-03 00:01:31 +02:00
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
}
|
2014-05-03 00:01:31 +02:00
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args, TCGMemOp opc)
|
|
|
|
{
|
|
|
|
TCGReg addr_regl, addr_regh __attribute__((unused));
|
|
|
|
TCGReg data_regl, data_regh, base;
|
|
|
|
#if defined(CONFIG_SOFTMMU)
|
|
|
|
tcg_insn_unit *label_ptr[2];
|
|
|
|
int mem_index;
|
|
|
|
TCGMemOp s_bits;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
data_regl = *args++;
|
|
|
|
data_regh = ((opc & MO_SIZE) == MO_64 ? *args++ : 0);
|
|
|
|
addr_regl = *args++;
|
|
|
|
addr_regh = (TARGET_LONG_BITS == 64 ? *args++ : 0);
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
#if defined(CONFIG_SOFTMMU)
|
|
|
|
mem_index = *args;
|
|
|
|
s_bits = opc & 3;
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2014-05-03 00:01:31 +02:00
|
|
|
/* Note that we eliminated the helper's address argument,
|
|
|
|
so we can reuse that for the base. */
|
|
|
|
base = (TARGET_LONG_BITS == 32 ? TCG_REG_A1 : TCG_REG_A2);
|
|
|
|
tcg_out_tlb_load(s, base, addr_regl, addr_regh, mem_index,
|
|
|
|
s_bits, label_ptr, 1);
|
|
|
|
tcg_out_qemu_st_direct(s, data_regl, data_regh, base, opc);
|
|
|
|
add_qemu_ldst_label(s, 0, opc, data_regl, data_regh, addr_regl, addr_regh,
|
|
|
|
mem_index, s->code_ptr, label_ptr);
|
2010-03-27 17:31:04 +01:00
|
|
|
#else
|
2014-05-03 00:01:31 +02:00
|
|
|
if (GUEST_BASE == 0) {
|
|
|
|
base = addr_regl;
|
2010-03-27 17:31:04 +01:00
|
|
|
} else {
|
2014-05-03 00:01:31 +02:00
|
|
|
base = TCG_REG_A0;
|
|
|
|
if (GUEST_BASE == (int16_t)GUEST_BASE) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, base, addr_regl, GUEST_BASE);
|
2009-10-17 14:17:47 +02:00
|
|
|
} else {
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_movi(s, TCG_TYPE_PTR, base, GUEST_BASE);
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, base, base, addr_regl);
|
2009-10-17 14:17:47 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_st_direct(s, data_regl, data_regh, base, opc);
|
2009-10-17 14:17:47 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-03-19 19:12:29 +01:00
|
|
|
static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
|
2009-10-17 14:17:47 +02:00
|
|
|
const TCGArg *args, const int *const_args)
|
|
|
|
{
|
|
|
|
switch(opc) {
|
|
|
|
case INDEX_op_exit_tb:
|
2014-03-23 18:15:21 +01:00
|
|
|
{
|
|
|
|
uintptr_t a0 = args[0];
|
|
|
|
TCGReg b0 = TCG_REG_ZERO;
|
|
|
|
|
|
|
|
if (a0 & ~0xffff) {
|
|
|
|
tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_V0, a0 & ~0xffff);
|
|
|
|
b0 = TCG_REG_V0;
|
|
|
|
}
|
|
|
|
if (!tcg_out_opc_jmp(s, OPC_J, tb_ret_addr)) {
|
|
|
|
tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_AT,
|
|
|
|
(uintptr_t)tb_ret_addr);
|
|
|
|
tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_AT, 0);
|
|
|
|
}
|
|
|
|
tcg_out_opc_imm(s, OPC_ORI, TCG_REG_V0, b0, a0 & 0xffff);
|
2014-03-23 17:57:18 +01:00
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_goto_tb:
|
|
|
|
if (s->tb_jmp_offset) {
|
|
|
|
/* direct jump method */
|
|
|
|
tcg_abort();
|
|
|
|
} else {
|
|
|
|
/* indirect jump method */
|
2014-03-23 18:45:23 +01:00
|
|
|
tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_AT, TCG_REG_ZERO,
|
|
|
|
(uintptr_t)(s->tb_next + args[0]));
|
2009-10-17 14:17:47 +02:00
|
|
|
tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_AT, 0);
|
|
|
|
}
|
|
|
|
tcg_out_nop(s);
|
2014-04-25 21:22:44 +02:00
|
|
|
s->tb_next_offset[args[0]] = tcg_current_code_size(s);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_br:
|
|
|
|
tcg_out_brcond(s, TCG_COND_EQ, TCG_REG_ZERO, TCG_REG_ZERO, args[0]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case INDEX_op_ld8u_i32:
|
2010-04-05 13:19:56 +02:00
|
|
|
tcg_out_ldst(s, OPC_LBU, args[0], args[1], args[2]);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_ld8s_i32:
|
|
|
|
tcg_out_ldst(s, OPC_LB, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
case INDEX_op_ld16u_i32:
|
|
|
|
tcg_out_ldst(s, OPC_LHU, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
case INDEX_op_ld16s_i32:
|
|
|
|
tcg_out_ldst(s, OPC_LH, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
case INDEX_op_ld_i32:
|
|
|
|
tcg_out_ldst(s, OPC_LW, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
case INDEX_op_st8_i32:
|
|
|
|
tcg_out_ldst(s, OPC_SB, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
case INDEX_op_st16_i32:
|
|
|
|
tcg_out_ldst(s, OPC_SH, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
case INDEX_op_st_i32:
|
|
|
|
tcg_out_ldst(s, OPC_SW, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case INDEX_op_add_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, args[0], args[1], args[2]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INDEX_op_add2_i32:
|
|
|
|
if (const_args[4]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, TCG_REG_AT, args[2], args[4]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_AT, args[2], args[4]);
|
|
|
|
}
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_T0, TCG_REG_AT, args[2]);
|
|
|
|
if (const_args[5]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, args[1], args[3], args[5]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, args[1], args[3], args[5]);
|
|
|
|
}
|
|
|
|
tcg_out_opc_reg(s, OPC_ADDU, args[1], args[1], TCG_REG_T0);
|
2010-06-03 02:26:55 +02:00
|
|
|
tcg_out_mov(s, TCG_TYPE_I32, args[0], TCG_REG_AT);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_sub_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, args[0], args[1], -args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SUBU, args[0], args[1], args[2]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INDEX_op_sub2_i32:
|
|
|
|
if (const_args[4]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, TCG_REG_AT, args[2], -args[4]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SUBU, TCG_REG_AT, args[2], args[4]);
|
|
|
|
}
|
|
|
|
tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_T0, args[2], TCG_REG_AT);
|
|
|
|
if (const_args[5]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ADDIU, args[1], args[3], -args[5]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SUBU, args[1], args[3], args[5]);
|
|
|
|
}
|
|
|
|
tcg_out_opc_reg(s, OPC_SUBU, args[1], args[1], TCG_REG_T0);
|
2010-06-03 02:26:55 +02:00
|
|
|
tcg_out_mov(s, TCG_TYPE_I32, args[0], TCG_REG_AT);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_mul_i32:
|
2013-08-15 17:57:59 +02:00
|
|
|
if (use_mips32_instructions) {
|
|
|
|
tcg_out_opc_reg(s, OPC_MUL, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_MULT, 0, args[1], args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFLO, args[0], 0, 0);
|
|
|
|
}
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2013-03-24 01:52:07 +01:00
|
|
|
case INDEX_op_muls2_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_MULT, 0, args[2], args[3]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFLO, args[0], 0, 0);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFHI, args[1], 0, 0);
|
|
|
|
break;
|
2009-10-17 14:17:47 +02:00
|
|
|
case INDEX_op_mulu2_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_MULTU, 0, args[2], args[3]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFLO, args[0], 0, 0);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFHI, args[1], 0, 0);
|
|
|
|
break;
|
2013-08-14 23:41:43 +02:00
|
|
|
case INDEX_op_mulsh_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_MULT, 0, args[1], args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFHI, args[0], 0, 0);
|
|
|
|
break;
|
|
|
|
case INDEX_op_muluh_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_MULTU, 0, args[1], args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFHI, args[0], 0, 0);
|
|
|
|
break;
|
2009-10-17 14:17:47 +02:00
|
|
|
case INDEX_op_div_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_DIV, 0, args[1], args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFLO, args[0], 0, 0);
|
|
|
|
break;
|
|
|
|
case INDEX_op_divu_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_DIVU, 0, args[1], args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFLO, args[0], 0, 0);
|
|
|
|
break;
|
|
|
|
case INDEX_op_rem_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_DIV, 0, args[1], args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFHI, args[0], 0, 0);
|
|
|
|
break;
|
|
|
|
case INDEX_op_remu_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_DIVU, 0, args[1], args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_MFHI, args[0], 0, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case INDEX_op_and_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ANDI, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_AND, args[0], args[1], args[2]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INDEX_op_or_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_ORI, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_OR, args[0], args[1], args[2]);
|
|
|
|
}
|
|
|
|
break;
|
2010-03-27 16:32:55 +01:00
|
|
|
case INDEX_op_nor_i32:
|
|
|
|
tcg_out_opc_reg(s, OPC_NOR, args[0], args[1], args[2]);
|
|
|
|
break;
|
2009-10-17 14:17:47 +02:00
|
|
|
case INDEX_op_not_i32:
|
2010-03-27 16:50:55 +01:00
|
|
|
tcg_out_opc_reg(s, OPC_NOR, args[0], TCG_REG_ZERO, args[1]);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_xor_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_imm(s, OPC_XORI, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_XOR, args[0], args[1], args[2]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case INDEX_op_sar_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_sa(s, OPC_SRA, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SRAV, args[0], args[2], args[1]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INDEX_op_shl_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_sa(s, OPC_SLL, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SLLV, args[0], args[2], args[1]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INDEX_op_shr_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_sa(s, OPC_SRL, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_SRLV, args[0], args[2], args[1]);
|
|
|
|
}
|
|
|
|
break;
|
2012-09-21 18:20:26 +02:00
|
|
|
case INDEX_op_rotl_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_sa(s, OPC_ROTR, args[0], args[1], 0x20 - args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_AT, 32);
|
|
|
|
tcg_out_opc_reg(s, OPC_SUBU, TCG_REG_AT, TCG_REG_AT, args[2]);
|
|
|
|
tcg_out_opc_reg(s, OPC_ROTRV, args[0], TCG_REG_AT, args[1]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case INDEX_op_rotr_i32:
|
|
|
|
if (const_args[2]) {
|
|
|
|
tcg_out_opc_sa(s, OPC_ROTR, args[0], args[1], args[2]);
|
|
|
|
} else {
|
|
|
|
tcg_out_opc_reg(s, OPC_ROTRV, args[0], args[2], args[1]);
|
|
|
|
}
|
|
|
|
break;
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
case INDEX_op_bswap16_i32:
|
2013-08-28 13:51:40 +02:00
|
|
|
tcg_out_opc_reg(s, OPC_WSBH, args[0], 0, args[1]);
|
2012-09-21 18:20:26 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_bswap32_i32:
|
2013-08-28 13:51:40 +02:00
|
|
|
tcg_out_opc_reg(s, OPC_WSBH, args[0], 0, args[1]);
|
|
|
|
tcg_out_opc_sa(s, OPC_ROTR, args[0], args[0], 16);
|
2012-09-21 18:20:26 +02:00
|
|
|
break;
|
|
|
|
|
2010-04-05 13:19:56 +02:00
|
|
|
case INDEX_op_ext8s_i32:
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_reg(s, OPC_SEB, args[0], 0, args[1]);
|
2010-04-05 13:19:56 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_ext16s_i32:
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_out_opc_reg(s, OPC_SEH, args[0], 0, args[1]);
|
2010-04-05 13:19:56 +02:00
|
|
|
break;
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
case INDEX_op_deposit_i32:
|
|
|
|
tcg_out_opc_imm(s, OPC_INS, args[0], args[2],
|
|
|
|
((args[3] + args[4] - 1) << 11) | (args[3] << 6));
|
|
|
|
break;
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
case INDEX_op_brcond_i32:
|
|
|
|
tcg_out_brcond(s, args[2], args[0], args[1], args[3]);
|
|
|
|
break;
|
|
|
|
case INDEX_op_brcond2_i32:
|
|
|
|
tcg_out_brcond2(s, args[4], args[0], args[1], args[2], args[3], args[5]);
|
|
|
|
break;
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
case INDEX_op_movcond_i32:
|
|
|
|
tcg_out_movcond(s, args[5], args[0], args[1], args[2], args[3]);
|
|
|
|
break;
|
|
|
|
|
2010-02-08 16:37:37 +01:00
|
|
|
case INDEX_op_setcond_i32:
|
|
|
|
tcg_out_setcond(s, args[3], args[0], args[1], args[2]);
|
|
|
|
break;
|
2010-02-08 19:05:00 +01:00
|
|
|
case INDEX_op_setcond2_i32:
|
|
|
|
tcg_out_setcond2(s, args[5], args[0], args[1], args[2], args[3], args[4]);
|
|
|
|
break;
|
2010-02-08 16:37:37 +01:00
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
case INDEX_op_qemu_ld8u:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_ld(s, args, MO_UB);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_ld8s:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_ld(s, args, MO_SB);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_ld16u:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_ld(s, args, MO_TEUW);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_ld16s:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_ld(s, args, MO_TESW);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
2010-03-19 20:00:26 +01:00
|
|
|
case INDEX_op_qemu_ld32:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_ld(s, args, MO_TEUL);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_ld64:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_ld(s, args, MO_TEQ);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_st8:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_st(s, args, MO_UB);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_st16:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_st(s, args, MO_TEUW);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_st32:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_st(s, args, MO_TEUL);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
case INDEX_op_qemu_st64:
|
2014-05-03 00:01:31 +02:00
|
|
|
tcg_out_qemu_st(s, args, MO_TEQ);
|
2009-10-17 14:17:47 +02:00
|
|
|
break;
|
|
|
|
|
2014-04-25 21:19:33 +02:00
|
|
|
case INDEX_op_mov_i32: /* Always emitted via tcg_out_mov. */
|
|
|
|
case INDEX_op_movi_i32: /* Always emitted via tcg_out_movi. */
|
|
|
|
case INDEX_op_call: /* Always emitted via tcg_out_call. */
|
2009-10-17 14:17:47 +02:00
|
|
|
default:
|
|
|
|
tcg_abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TCGTargetOpDef mips_op_defs[] = {
|
|
|
|
{ INDEX_op_exit_tb, { } },
|
|
|
|
{ INDEX_op_goto_tb, { } },
|
|
|
|
{ INDEX_op_br, { } },
|
|
|
|
|
|
|
|
{ INDEX_op_ld8u_i32, { "r", "r" } },
|
|
|
|
{ INDEX_op_ld8s_i32, { "r", "r" } },
|
|
|
|
{ INDEX_op_ld16u_i32, { "r", "r" } },
|
|
|
|
{ INDEX_op_ld16s_i32, { "r", "r" } },
|
|
|
|
{ INDEX_op_ld_i32, { "r", "r" } },
|
|
|
|
{ INDEX_op_st8_i32, { "rZ", "r" } },
|
|
|
|
{ INDEX_op_st16_i32, { "rZ", "r" } },
|
|
|
|
{ INDEX_op_st_i32, { "rZ", "r" } },
|
|
|
|
|
2012-09-21 18:20:25 +02:00
|
|
|
{ INDEX_op_add_i32, { "r", "rZ", "rJ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_mul_i32, { "r", "rZ", "rZ" } },
|
2013-03-24 01:52:07 +01:00
|
|
|
{ INDEX_op_muls2_i32, { "r", "r", "rZ", "rZ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_mulu2_i32, { "r", "r", "rZ", "rZ" } },
|
2013-08-14 23:41:43 +02:00
|
|
|
{ INDEX_op_mulsh_i32, { "r", "rZ", "rZ" } },
|
|
|
|
{ INDEX_op_muluh_i32, { "r", "rZ", "rZ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_div_i32, { "r", "rZ", "rZ" } },
|
|
|
|
{ INDEX_op_divu_i32, { "r", "rZ", "rZ" } },
|
|
|
|
{ INDEX_op_rem_i32, { "r", "rZ", "rZ" } },
|
|
|
|
{ INDEX_op_remu_i32, { "r", "rZ", "rZ" } },
|
2012-09-21 18:20:25 +02:00
|
|
|
{ INDEX_op_sub_i32, { "r", "rZ", "rJ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2012-09-21 18:20:25 +02:00
|
|
|
{ INDEX_op_and_i32, { "r", "rZ", "rI" } },
|
2010-03-27 16:32:55 +01:00
|
|
|
{ INDEX_op_nor_i32, { "r", "rZ", "rZ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_not_i32, { "r", "rZ" } },
|
|
|
|
{ INDEX_op_or_i32, { "r", "rZ", "rIZ" } },
|
|
|
|
{ INDEX_op_xor_i32, { "r", "rZ", "rIZ" } },
|
|
|
|
|
2012-09-21 18:20:25 +02:00
|
|
|
{ INDEX_op_shl_i32, { "r", "rZ", "ri" } },
|
|
|
|
{ INDEX_op_shr_i32, { "r", "rZ", "ri" } },
|
|
|
|
{ INDEX_op_sar_i32, { "r", "rZ", "ri" } },
|
2012-09-21 18:20:26 +02:00
|
|
|
{ INDEX_op_rotr_i32, { "r", "rZ", "ri" } },
|
|
|
|
{ INDEX_op_rotl_i32, { "r", "rZ", "ri" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
{ INDEX_op_bswap16_i32, { "r", "r" } },
|
|
|
|
{ INDEX_op_bswap32_i32, { "r", "r" } },
|
|
|
|
|
2010-04-05 13:19:56 +02:00
|
|
|
{ INDEX_op_ext8s_i32, { "r", "rZ" } },
|
|
|
|
{ INDEX_op_ext16s_i32, { "r", "rZ" } },
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
{ INDEX_op_deposit_i32, { "r", "0", "rZ" } },
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_brcond_i32, { "rZ", "rZ" } },
|
2012-09-21 18:20:26 +02:00
|
|
|
{ INDEX_op_movcond_i32, { "r", "rZ", "rZ", "rZ", "0" } },
|
2010-02-08 16:37:37 +01:00
|
|
|
{ INDEX_op_setcond_i32, { "r", "rZ", "rZ" } },
|
2010-02-08 19:05:00 +01:00
|
|
|
{ INDEX_op_setcond2_i32, { "r", "rZ", "rZ", "rZ", "rZ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
|
2012-09-21 18:20:25 +02:00
|
|
|
{ INDEX_op_add2_i32, { "r", "r", "rZ", "rZ", "rJ", "rJ" } },
|
|
|
|
{ INDEX_op_sub2_i32, { "r", "r", "rZ", "rZ", "rJ", "rJ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_brcond2_i32, { "rZ", "rZ", "rZ", "rZ" } },
|
|
|
|
|
|
|
|
#if TARGET_LONG_BITS == 32
|
|
|
|
{ INDEX_op_qemu_ld8u, { "L", "lZ" } },
|
|
|
|
{ INDEX_op_qemu_ld8s, { "L", "lZ" } },
|
|
|
|
{ INDEX_op_qemu_ld16u, { "L", "lZ" } },
|
|
|
|
{ INDEX_op_qemu_ld16s, { "L", "lZ" } },
|
2010-03-19 20:00:26 +01:00
|
|
|
{ INDEX_op_qemu_ld32, { "L", "lZ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_qemu_ld64, { "L", "L", "lZ" } },
|
|
|
|
|
|
|
|
{ INDEX_op_qemu_st8, { "SZ", "SZ" } },
|
|
|
|
{ INDEX_op_qemu_st16, { "SZ", "SZ" } },
|
|
|
|
{ INDEX_op_qemu_st32, { "SZ", "SZ" } },
|
|
|
|
{ INDEX_op_qemu_st64, { "SZ", "SZ", "SZ" } },
|
|
|
|
#else
|
|
|
|
{ INDEX_op_qemu_ld8u, { "L", "lZ", "lZ" } },
|
|
|
|
{ INDEX_op_qemu_ld8s, { "L", "lZ", "lZ" } },
|
|
|
|
{ INDEX_op_qemu_ld16u, { "L", "lZ", "lZ" } },
|
|
|
|
{ INDEX_op_qemu_ld16s, { "L", "lZ", "lZ" } },
|
2010-03-19 20:00:26 +01:00
|
|
|
{ INDEX_op_qemu_ld32, { "L", "lZ", "lZ" } },
|
2009-10-17 14:17:47 +02:00
|
|
|
{ INDEX_op_qemu_ld64, { "L", "L", "lZ", "lZ" } },
|
|
|
|
|
|
|
|
{ INDEX_op_qemu_st8, { "SZ", "SZ", "SZ" } },
|
|
|
|
{ INDEX_op_qemu_st16, { "SZ", "SZ", "SZ" } },
|
|
|
|
{ INDEX_op_qemu_st32, { "SZ", "SZ", "SZ" } },
|
|
|
|
{ INDEX_op_qemu_st64, { "SZ", "SZ", "SZ", "SZ" } },
|
|
|
|
#endif
|
|
|
|
{ -1 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static int tcg_target_callee_save_regs[] = {
|
2011-05-15 18:03:25 +02:00
|
|
|
TCG_REG_S0, /* used for the global env (TCG_AREG0) */
|
2009-10-17 14:17:47 +02:00
|
|
|
TCG_REG_S1,
|
|
|
|
TCG_REG_S2,
|
|
|
|
TCG_REG_S3,
|
|
|
|
TCG_REG_S4,
|
|
|
|
TCG_REG_S5,
|
|
|
|
TCG_REG_S6,
|
|
|
|
TCG_REG_S7,
|
2010-04-09 17:28:40 +02:00
|
|
|
TCG_REG_FP,
|
2009-10-17 14:17:47 +02:00
|
|
|
TCG_REG_RA, /* should be last for ABI compliance */
|
|
|
|
};
|
|
|
|
|
2013-08-15 17:57:59 +02:00
|
|
|
/* The Linux kernel doesn't provide any information about the available
|
|
|
|
instruction set. Probe it using a signal handler. */
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#ifndef use_movnz_instructions
|
|
|
|
bool use_movnz_instructions = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef use_mips32_instructions
|
|
|
|
bool use_mips32_instructions = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef use_mips32r2_instructions
|
|
|
|
bool use_mips32r2_instructions = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static volatile sig_atomic_t got_sigill;
|
|
|
|
|
|
|
|
static void sigill_handler(int signo, siginfo_t *si, void *data)
|
|
|
|
{
|
|
|
|
/* Skip the faulty instruction */
|
|
|
|
ucontext_t *uc = (ucontext_t *)data;
|
|
|
|
uc->uc_mcontext.pc += 4;
|
|
|
|
|
|
|
|
got_sigill = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tcg_target_detect_isa(void)
|
|
|
|
{
|
|
|
|
struct sigaction sa_old, sa_new;
|
|
|
|
|
|
|
|
memset(&sa_new, 0, sizeof(sa_new));
|
|
|
|
sa_new.sa_flags = SA_SIGINFO;
|
|
|
|
sa_new.sa_sigaction = sigill_handler;
|
|
|
|
sigaction(SIGILL, &sa_new, &sa_old);
|
|
|
|
|
|
|
|
/* Probe for movn/movz, necessary to implement movcond. */
|
|
|
|
#ifndef use_movnz_instructions
|
|
|
|
got_sigill = 0;
|
|
|
|
asm volatile(".set push\n"
|
|
|
|
".set mips32\n"
|
|
|
|
"movn $zero, $zero, $zero\n"
|
|
|
|
"movz $zero, $zero, $zero\n"
|
|
|
|
".set pop\n"
|
|
|
|
: : : );
|
|
|
|
use_movnz_instructions = !got_sigill;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Probe for MIPS32 instructions. As no subsetting is allowed
|
|
|
|
by the specification, it is only necessary to probe for one
|
|
|
|
of the instructions. */
|
|
|
|
#ifndef use_mips32_instructions
|
|
|
|
got_sigill = 0;
|
|
|
|
asm volatile(".set push\n"
|
|
|
|
".set mips32\n"
|
|
|
|
"mul $zero, $zero\n"
|
|
|
|
".set pop\n"
|
|
|
|
: : : );
|
|
|
|
use_mips32_instructions = !got_sigill;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Probe for MIPS32r2 instructions if MIPS32 instructions are
|
|
|
|
available. As no subsetting is allowed by the specification,
|
|
|
|
it is only necessary to probe for one of the instructions. */
|
|
|
|
#ifndef use_mips32r2_instructions
|
|
|
|
if (use_mips32_instructions) {
|
|
|
|
got_sigill = 0;
|
|
|
|
asm volatile(".set push\n"
|
|
|
|
".set mips32r2\n"
|
|
|
|
"seb $zero, $zero\n"
|
|
|
|
".set pop\n"
|
|
|
|
: : : );
|
|
|
|
use_mips32r2_instructions = !got_sigill;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sigaction(SIGILL, &sa_old, NULL);
|
|
|
|
}
|
|
|
|
|
2009-10-17 14:17:47 +02:00
|
|
|
/* Generate global QEMU prologue and epilogue code */
|
2010-06-03 02:26:56 +02:00
|
|
|
static void tcg_target_qemu_prologue(TCGContext *s)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
|
|
|
int i, frame_size;
|
|
|
|
|
2012-09-21 18:20:26 +02:00
|
|
|
/* reserve some stack space, also for TCG temps. */
|
2009-10-17 14:17:47 +02:00
|
|
|
frame_size = ARRAY_SIZE(tcg_target_callee_save_regs) * 4
|
2012-09-21 18:20:26 +02:00
|
|
|
+ TCG_STATIC_CALL_ARGS_SIZE
|
|
|
|
+ CPU_TEMP_BUF_NLONGS * sizeof(long);
|
2009-10-17 14:17:47 +02:00
|
|
|
frame_size = (frame_size + TCG_TARGET_STACK_ALIGN - 1) &
|
|
|
|
~(TCG_TARGET_STACK_ALIGN - 1);
|
2012-09-22 19:24:49 +02:00
|
|
|
tcg_set_frame(s, TCG_REG_SP, ARRAY_SIZE(tcg_target_callee_save_regs) * 4
|
|
|
|
+ TCG_STATIC_CALL_ARGS_SIZE,
|
2012-09-21 18:20:26 +02:00
|
|
|
CPU_TEMP_BUF_NLONGS * sizeof(long));
|
2009-10-17 14:17:47 +02:00
|
|
|
|
|
|
|
/* TB prologue */
|
|
|
|
tcg_out_addi(s, TCG_REG_SP, -frame_size);
|
|
|
|
for(i = 0 ; i < ARRAY_SIZE(tcg_target_callee_save_regs) ; i++) {
|
|
|
|
tcg_out_st(s, TCG_TYPE_I32, tcg_target_callee_save_regs[i],
|
|
|
|
TCG_REG_SP, TCG_STATIC_CALL_ARGS_SIZE + i * 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call generated code */
|
2011-07-20 20:56:36 +02:00
|
|
|
tcg_out_opc_reg(s, OPC_JR, 0, tcg_target_call_iarg_regs[1], 0);
|
2011-05-15 18:03:25 +02:00
|
|
|
tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
|
2009-10-17 14:17:47 +02:00
|
|
|
tb_ret_addr = s->code_ptr;
|
|
|
|
|
|
|
|
/* TB epilogue */
|
|
|
|
for(i = 0 ; i < ARRAY_SIZE(tcg_target_callee_save_regs) ; i++) {
|
|
|
|
tcg_out_ld(s, TCG_TYPE_I32, tcg_target_callee_save_regs[i],
|
|
|
|
TCG_REG_SP, TCG_STATIC_CALL_ARGS_SIZE + i * 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
|
|
|
|
tcg_out_addi(s, TCG_REG_SP, frame_size);
|
|
|
|
}
|
|
|
|
|
2010-06-03 02:26:56 +02:00
|
|
|
static void tcg_target_init(TCGContext *s)
|
2009-10-17 14:17:47 +02:00
|
|
|
{
|
2013-08-15 17:57:59 +02:00
|
|
|
tcg_target_detect_isa();
|
2009-10-17 14:17:47 +02:00
|
|
|
tcg_regset_set(tcg_target_available_regs[TCG_TYPE_I32], 0xffffffff);
|
|
|
|
tcg_regset_set(tcg_target_call_clobber_regs,
|
|
|
|
(1 << TCG_REG_V0) |
|
|
|
|
(1 << TCG_REG_V1) |
|
|
|
|
(1 << TCG_REG_A0) |
|
|
|
|
(1 << TCG_REG_A1) |
|
|
|
|
(1 << TCG_REG_A2) |
|
|
|
|
(1 << TCG_REG_A3) |
|
|
|
|
(1 << TCG_REG_T1) |
|
|
|
|
(1 << TCG_REG_T2) |
|
|
|
|
(1 << TCG_REG_T3) |
|
|
|
|
(1 << TCG_REG_T4) |
|
|
|
|
(1 << TCG_REG_T5) |
|
|
|
|
(1 << TCG_REG_T6) |
|
|
|
|
(1 << TCG_REG_T7) |
|
|
|
|
(1 << TCG_REG_T8) |
|
|
|
|
(1 << TCG_REG_T9));
|
|
|
|
|
|
|
|
tcg_regset_clear(s->reserved_regs);
|
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_ZERO); /* zero register */
|
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_K0); /* kernel use only */
|
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_K1); /* kernel use only */
|
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_AT); /* internal use */
|
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_T0); /* internal use */
|
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_RA); /* return address */
|
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_SP); /* stack pointer */
|
2012-09-21 18:20:26 +02:00
|
|
|
tcg_regset_set_reg(s->reserved_regs, TCG_REG_GP); /* global pointer */
|
2009-10-17 14:17:47 +02:00
|
|
|
|
|
|
|
tcg_add_target_add_op_defs(mips_op_defs);
|
|
|
|
}
|