tcg-target.c 55.7 KB
Newer Older
A
Aurelien Jarno 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * 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.
 */

R
Richard Henderson 已提交
27 28
#include "tcg-be-null.h"

29
#if defined(HOST_WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN)
A
Aurelien Jarno 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
# define TCG_NEED_BSWAP 0
#else
# define TCG_NEED_BSWAP 1
#endif

#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 */
73
static const TCGReg tcg_target_reg_alloc_order[] = {
A
Aurelien Jarno 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
    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
};

99
static const TCGReg tcg_target_call_iarg_regs[4] = {
A
Aurelien Jarno 已提交
100 101 102 103 104 105
    TCG_REG_A0,
    TCG_REG_A1,
    TCG_REG_A2,
    TCG_REG_A3
};

106
static const TCGReg tcg_target_call_oarg_regs[2] = {
A
Aurelien Jarno 已提交
107 108 109 110
    TCG_REG_V0,
    TCG_REG_V1
};

111
static tcg_insn_unit *tb_ret_addr;
A
Aurelien Jarno 已提交
112

113
static inline uint32_t reloc_pc16_val(tcg_insn_unit *pc, tcg_insn_unit *target)
A
Aurelien Jarno 已提交
114
{
115 116 117 118
    /* 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;
A
Aurelien Jarno 已提交
119 120
}

121
static inline void reloc_pc16(tcg_insn_unit *pc, tcg_insn_unit *target)
A
Aurelien Jarno 已提交
122
{
123
    *pc = deposit32(*pc, 0, 16, reloc_pc16_val(pc, target));
A
Aurelien Jarno 已提交
124 125
}

126
static inline uint32_t reloc_26_val(tcg_insn_unit *pc, tcg_insn_unit *target)
A
Aurelien Jarno 已提交
127
{
128 129
    assert((((uintptr_t)pc ^ (uintptr_t)target) & 0xf0000000) == 0);
    return ((uintptr_t)target >> 2) & 0x3ffffff;
A
Aurelien Jarno 已提交
130 131
}

132
static inline void reloc_26(tcg_insn_unit *pc, tcg_insn_unit *target)
A
Aurelien Jarno 已提交
133
{
134
    *pc = deposit32(*pc, 0, 26, reloc_26_val(pc, target));
A
Aurelien Jarno 已提交
135 136
}

137
static void patch_reloc(tcg_insn_unit *code_ptr, int type,
138
                        intptr_t value, intptr_t addend)
A
Aurelien Jarno 已提交
139
{
140 141 142
    assert(type == R_MIPS_PC16);
    assert(addend == 0);
    reloc_pc16(code_ptr, (tcg_insn_unit *)value);
A
Aurelien Jarno 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
}

/* 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 'C':
        ct->ct |= TCG_CT_REG;
        tcg_regset_clear(ct->u.regs);
        tcg_regset_set_reg(ct->u.regs, TCG_REG_T9);
        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);
#if defined(CONFIG_SOFTMMU)
        tcg_regset_reset_reg(ct->u.regs, TCG_REG_A0);
171
# if (TARGET_LONG_BITS == 64)
172 173
        tcg_regset_reset_reg(ct->u.regs, TCG_REG_A2);
# endif
A
Aurelien Jarno 已提交
174 175 176 177 178 179
#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);
180
#if defined(CONFIG_SOFTMMU)
181
# if (TARGET_LONG_BITS == 32)
A
Aurelien Jarno 已提交
182 183 184
        tcg_regset_reset_reg(ct->u.regs, TCG_REG_A1);
# endif
        tcg_regset_reset_reg(ct->u.regs, TCG_REG_A2);
185
# if TARGET_LONG_BITS == 64
186 187
        tcg_regset_reset_reg(ct->u.regs, TCG_REG_A3);
# endif
A
Aurelien Jarno 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
#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 */
211
static inline int tcg_target_const_match(tcg_target_long val, TCGType type,
A
Aurelien Jarno 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
                                         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 {
    OPC_BEQ      = 0x04 << 26,
    OPC_BNE      = 0x05 << 26,
232 233
    OPC_BLEZ     = 0x06 << 26,
    OPC_BGTZ     = 0x07 << 26,
A
Aurelien Jarno 已提交
234
    OPC_ADDIU    = 0x09 << 26,
A
Aurelien Jarno 已提交
235 236
    OPC_SLTI     = 0x0A << 26,
    OPC_SLTIU    = 0x0B << 26,
A
Aurelien Jarno 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249
    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,
250 251

    OPC_SPECIAL  = 0x00 << 26,
A
Aurelien Jarno 已提交
252 253
    OPC_SLL      = OPC_SPECIAL | 0x00,
    OPC_SRL      = OPC_SPECIAL | 0x02,
254
    OPC_ROTR     = OPC_SPECIAL | (0x01 << 21) | 0x02,
A
Aurelien Jarno 已提交
255 256 257
    OPC_SRA      = OPC_SPECIAL | 0x03,
    OPC_SLLV     = OPC_SPECIAL | 0x04,
    OPC_SRLV     = OPC_SPECIAL | 0x06,
258
    OPC_ROTRV    = OPC_SPECIAL | (0x01 <<  6) | 0x06,
A
Aurelien Jarno 已提交
259 260 261
    OPC_SRAV     = OPC_SPECIAL | 0x07,
    OPC_JR       = OPC_SPECIAL | 0x08,
    OPC_JALR     = OPC_SPECIAL | 0x09,
262 263
    OPC_MOVZ     = OPC_SPECIAL | 0x0A,
    OPC_MOVN     = OPC_SPECIAL | 0x0B,
A
Aurelien Jarno 已提交
264 265 266 267 268 269 270 271 272 273 274 275 276 277
    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,
278

279 280 281 282
    OPC_REGIMM   = 0x01 << 26,
    OPC_BLTZ     = OPC_REGIMM | (0x00 << 16),
    OPC_BGEZ     = OPC_REGIMM | (0x01 << 16),

283 284 285
    OPC_SPECIAL2 = 0x1c << 26,
    OPC_MUL      = OPC_SPECIAL2 | 0x002,

286
    OPC_SPECIAL3 = 0x1f << 26,
287
    OPC_INS      = OPC_SPECIAL3 | 0x004,
288
    OPC_WSBH     = OPC_SPECIAL3 | 0x0a0,
289 290
    OPC_SEB      = OPC_SPECIAL3 | 0x420,
    OPC_SEH      = OPC_SPECIAL3 | 0x620,
A
Aurelien Jarno 已提交
291 292 293 294 295
};

/*
 * Type reg
 */
296 297
static inline void tcg_out_opc_reg(TCGContext *s, int opc,
                                   TCGReg rd, TCGReg rs, TCGReg rt)
A
Aurelien Jarno 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310
{
    int32_t inst;

    inst = opc;
    inst |= (rs & 0x1F) << 21;
    inst |= (rt & 0x1F) << 16;
    inst |= (rd & 0x1F) << 11;
    tcg_out32(s, inst);
}

/*
 * Type immediate
 */
311 312
static inline void tcg_out_opc_imm(TCGContext *s, int opc,
                                   TCGReg rt, TCGReg rs, TCGArg imm)
A
Aurelien Jarno 已提交
313 314 315 316 317 318 319 320 321 322
{
    int32_t inst;

    inst = opc;
    inst |= (rs & 0x1F) << 21;
    inst |= (rt & 0x1F) << 16;
    inst |= (imm & 0xffff);
    tcg_out32(s, inst);
}

323 324 325
/*
 * Type branch
 */
326 327
static inline void tcg_out_opc_br(TCGContext *s, int opc,
                                  TCGReg rt, TCGReg rs)
328
{
329 330 331
    /* 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. */
332
    uint16_t offset = (uint16_t)*s->code_ptr;
333 334 335 336

    tcg_out_opc_imm(s, opc, rt, rs, offset);
}

A
Aurelien Jarno 已提交
337 338 339
/*
 * Type sa
 */
340 341
static inline void tcg_out_opc_sa(TCGContext *s, int opc,
                                  TCGReg rd, TCGReg rt, TCGArg sa)
A
Aurelien Jarno 已提交
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
{
    int32_t inst;

    inst = opc;
    inst |= (rt & 0x1F) << 16;
    inst |= (rd & 0x1F) << 11;
    inst |= (sa & 0x1F) <<  6;
    tcg_out32(s, inst);

}

static inline void tcg_out_nop(TCGContext *s)
{
    tcg_out32(s, 0);
}

358 359
static inline void tcg_out_mov(TCGContext *s, TCGType type,
                               TCGReg ret, TCGReg arg)
A
Aurelien Jarno 已提交
360
{
361 362 363 364
    /* 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);
    }
A
Aurelien Jarno 已提交
365 366 367
}

static inline void tcg_out_movi(TCGContext *s, TCGType type,
368
                                TCGReg reg, tcg_target_long arg)
A
Aurelien Jarno 已提交
369 370 371 372 373 374 375 376 377 378 379
{
    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 {
        tcg_out_opc_imm(s, OPC_LUI, reg, 0, arg >> 16);
        tcg_out_opc_imm(s, OPC_ORI, reg, reg, arg & 0xffff);
    }
}

380
static inline void tcg_out_bswap16(TCGContext *s, TCGReg ret, TCGReg arg)
A
Aurelien Jarno 已提交
381
{
382 383 384 385 386 387 388
    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();
        }
A
Aurelien Jarno 已提交
389

390 391 392 393 394
        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);
    }
A
Aurelien Jarno 已提交
395 396
}

397
static inline void tcg_out_bswap16s(TCGContext *s, TCGReg ret, TCGReg arg)
A
Aurelien Jarno 已提交
398
{
399 400 401 402 403 404 405 406
    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();
        }
A
Aurelien Jarno 已提交
407

408 409 410 411 412
        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);
    }
A
Aurelien Jarno 已提交
413 414
}

415
static inline void tcg_out_bswap32(TCGContext *s, TCGReg ret, TCGReg arg)
A
Aurelien Jarno 已提交
416
{
417 418 419 420 421 422 423 424
    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();
        }
A
Aurelien Jarno 已提交
425

426
        tcg_out_opc_sa(s, OPC_SLL, ret, arg, 24);
A
Aurelien Jarno 已提交
427

428 429
        tcg_out_opc_sa(s, OPC_SRL, TCG_REG_AT, arg, 24);
        tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_REG_AT);
A
Aurelien Jarno 已提交
430

431 432 433
        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);
A
Aurelien Jarno 已提交
434

435 436 437 438
        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);
    }
A
Aurelien Jarno 已提交
439 440
}

441
static inline void tcg_out_ext8s(TCGContext *s, TCGReg ret, TCGReg arg)
442
{
443 444 445 446 447 448
    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);
    }
449 450
}

451
static inline void tcg_out_ext16s(TCGContext *s, TCGReg ret, TCGReg arg)
452
{
453 454 455 456 457 458
    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);
    }
459 460
}

461 462
static inline void tcg_out_ldst(TCGContext *s, int opc, TCGArg arg,
                                TCGReg arg1, TCGArg arg2)
A
Aurelien Jarno 已提交
463 464 465 466 467 468 469 470 471 472
{
    if (arg2 == (int16_t) arg2) {
        tcg_out_opc_imm(s, opc, arg, arg1, arg2);
    } else {
        tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_AT, arg2);
        tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_AT, TCG_REG_AT, arg1);
        tcg_out_opc_imm(s, opc, arg, TCG_REG_AT, 0);
    }
}

473
static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
474
                              TCGReg arg1, intptr_t arg2)
A
Aurelien Jarno 已提交
475 476 477 478
{
    tcg_out_ldst(s, OPC_LW, arg, arg1, arg2);
}

479
static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
480
                              TCGReg arg1, intptr_t arg2)
A
Aurelien Jarno 已提交
481 482 483 484
{
    tcg_out_ldst(s, OPC_SW, arg, arg1, arg2);
}

485
static inline void tcg_out_addi(TCGContext *s, TCGReg reg, TCGArg val)
A
Aurelien Jarno 已提交
486 487 488 489 490 491 492 493 494
{
    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);
    }
}

495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
/* Helper routines for marshalling helper function arguments into
 * the correct registers and stack.
 * arg_num is where we want to put this argument, and is updated to be ready
 * for the next call. arg is the argument itself. Note that arg_num 0..3 is
 * real registers, 4+ on stack.
 *
 * 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.
 */
#define DEFINE_TCG_OUT_CALL_IARG(NAME, ARGPARAM)                               \
    static inline void NAME(TCGContext *s, int *arg_num, ARGPARAM)             \
    {                                                                          \
    if (*arg_num < 4) {                                                        \
        DEFINE_TCG_OUT_CALL_IARG_GET_ARG(tcg_target_call_iarg_regs[*arg_num]); \
    } else {                                                                   \
        DEFINE_TCG_OUT_CALL_IARG_GET_ARG(TCG_REG_AT);                          \
        tcg_out_st(s, TCG_TYPE_I32, TCG_REG_AT, TCG_REG_SP, 4 * (*arg_num));   \
    }                                                                          \
    (*arg_num)++;                                                              \
}
#define DEFINE_TCG_OUT_CALL_IARG_GET_ARG(A) \
    tcg_out_opc_imm(s, OPC_ANDI, A, arg, 0xff);
DEFINE_TCG_OUT_CALL_IARG(tcg_out_call_iarg_reg8, TCGReg arg)
#undef DEFINE_TCG_OUT_CALL_IARG_GET_ARG
#define DEFINE_TCG_OUT_CALL_IARG_GET_ARG(A) \
    tcg_out_opc_imm(s, OPC_ANDI, A, arg, 0xffff);
DEFINE_TCG_OUT_CALL_IARG(tcg_out_call_iarg_reg16, TCGReg arg)
#undef DEFINE_TCG_OUT_CALL_IARG_GET_ARG
#define DEFINE_TCG_OUT_CALL_IARG_GET_ARG(A) \
    tcg_out_movi(s, TCG_TYPE_I32, A, arg);
526
DEFINE_TCG_OUT_CALL_IARG(tcg_out_call_iarg_imm32, TCGArg arg)
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
#undef DEFINE_TCG_OUT_CALL_IARG_GET_ARG

/* We don't use the macro for this one to avoid an unnecessary reg-reg
   move when storing to the stack. */
static inline void tcg_out_call_iarg_reg32(TCGContext *s, int *arg_num,
                                           TCGReg arg)
{
    if (*arg_num < 4) {
        tcg_out_mov(s, TCG_TYPE_I32, tcg_target_call_iarg_regs[*arg_num], arg);
    } else {
        tcg_out_st(s, TCG_TYPE_I32, arg, TCG_REG_SP, 4 * (*arg_num));
    }
    (*arg_num)++;
}

static inline void tcg_out_call_iarg_reg64(TCGContext *s, int *arg_num,
                                           TCGReg arg_low, TCGReg arg_high)
{
    (*arg_num) = (*arg_num + 1) & ~1;

547
#if defined(HOST_WORDS_BIGENDIAN)
548 549 550 551 552 553 554 555
    tcg_out_call_iarg_reg32(s, arg_num, arg_high);
    tcg_out_call_iarg_reg32(s, arg_num, arg_low);
#else
    tcg_out_call_iarg_reg32(s, arg_num, arg_low);
    tcg_out_call_iarg_reg32(s, arg_num, arg_high);
#endif
}

556 557
static void tcg_out_brcond(TCGContext *s, TCGCond cond, TCGArg arg1,
                           TCGArg arg2, int label_index)
A
Aurelien Jarno 已提交
558 559 560 561 562
{
    TCGLabel *l = &s->labels[label_index];

    switch (cond) {
    case TCG_COND_EQ:
563
        tcg_out_opc_br(s, OPC_BEQ, arg1, arg2);
A
Aurelien Jarno 已提交
564 565
        break;
    case TCG_COND_NE:
566
        tcg_out_opc_br(s, OPC_BNE, arg1, arg2);
A
Aurelien Jarno 已提交
567 568
        break;
    case TCG_COND_LT:
569 570 571 572 573 574
        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);
        }
A
Aurelien Jarno 已提交
575 576 577
        break;
    case TCG_COND_LTU:
        tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg1, arg2);
578
        tcg_out_opc_br(s, OPC_BNE, TCG_REG_AT, TCG_REG_ZERO);
A
Aurelien Jarno 已提交
579 580
        break;
    case TCG_COND_GE:
581 582 583 584 585 586
        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);
        }
A
Aurelien Jarno 已提交
587 588 589
        break;
    case TCG_COND_GEU:
        tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg1, arg2);
590
        tcg_out_opc_br(s, OPC_BEQ, TCG_REG_AT, TCG_REG_ZERO);
A
Aurelien Jarno 已提交
591 592
        break;
    case TCG_COND_LE:
593 594 595 596 597 598
        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);
        }
A
Aurelien Jarno 已提交
599 600 601
        break;
    case TCG_COND_LEU:
        tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg2, arg1);
602
        tcg_out_opc_br(s, OPC_BEQ, TCG_REG_AT, TCG_REG_ZERO);
A
Aurelien Jarno 已提交
603 604
        break;
    case TCG_COND_GT:
605 606 607 608 609 610
        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);
        }
A
Aurelien Jarno 已提交
611 612 613
        break;
    case TCG_COND_GTU:
        tcg_out_opc_reg(s, OPC_SLTU, TCG_REG_AT, arg2, arg1);
614
        tcg_out_opc_br(s, OPC_BNE, TCG_REG_AT, TCG_REG_ZERO);
A
Aurelien Jarno 已提交
615 616 617 618 619 620
        break;
    default:
        tcg_abort();
        break;
    }
    if (l->has_value) {
621
        reloc_pc16(s->code_ptr - 1, l->u.value_ptr);
A
Aurelien Jarno 已提交
622
    } else {
623
        tcg_out_reloc(s, s->code_ptr - 1, R_MIPS_PC16, label_index, 0);
A
Aurelien Jarno 已提交
624 625 626 627 628 629
    }
    tcg_out_nop(s);
}

/* XXX: we implement it at the target level to avoid having to
   handle cross basic blocks temporaries */
630 631 632
static void tcg_out_brcond2(TCGContext *s, TCGCond cond, TCGArg arg1,
                            TCGArg arg2, TCGArg arg3, TCGArg arg4,
                            int label_index)
A
Aurelien Jarno 已提交
633
{
634
    tcg_insn_unit *label_ptr;
A
Aurelien Jarno 已提交
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663

    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;
664
    tcg_out_opc_br(s, OPC_BNE, arg2, arg4);
A
Aurelien Jarno 已提交
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
    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();
    }

691
    reloc_pc16(label_ptr, s->code_ptr);
A
Aurelien Jarno 已提交
692 693
}

694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
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;
    }
}

756 757
static void tcg_out_setcond(TCGContext *s, TCGCond cond, TCGReg ret,
                            TCGArg arg1, TCGArg arg2)
A
Aurelien Jarno 已提交
758 759 760 761 762 763 764 765
{
    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 {
A
Aurelien Jarno 已提交
766 767
            tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
            tcg_out_opc_imm(s, OPC_SLTIU, ret, ret, 1);
A
Aurelien Jarno 已提交
768 769 770 771 772 773 774 775
        }
        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 {
A
Aurelien Jarno 已提交
776 777
            tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
            tcg_out_opc_reg(s, OPC_SLTU, ret, TCG_REG_ZERO, ret);
A
Aurelien Jarno 已提交
778 779 780 781 782 783 784 785 786
        }
        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:
A
Aurelien Jarno 已提交
787 788
        tcg_out_opc_reg(s, OPC_SLT, ret, arg1, arg2);
        tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
A
Aurelien Jarno 已提交
789 790
        break;
    case TCG_COND_GEU:
A
Aurelien Jarno 已提交
791 792
        tcg_out_opc_reg(s, OPC_SLTU, ret, arg1, arg2);
        tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
A
Aurelien Jarno 已提交
793 794
        break;
    case TCG_COND_LE:
A
Aurelien Jarno 已提交
795 796
        tcg_out_opc_reg(s, OPC_SLT, ret, arg2, arg1);
        tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
A
Aurelien Jarno 已提交
797 798
        break;
    case TCG_COND_LEU:
A
Aurelien Jarno 已提交
799 800
        tcg_out_opc_reg(s, OPC_SLTU, ret, arg2, arg1);
        tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
A
Aurelien Jarno 已提交
801 802 803 804 805 806 807 808 809 810 811 812 813
        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;
    }
}

A
Aurelien Jarno 已提交
814 815
/* XXX: we implement it at the target level to avoid having to
   handle cross basic blocks temporaries */
816 817
static void tcg_out_setcond2(TCGContext *s, TCGCond cond, TCGReg ret,
                             TCGArg arg1, TCGArg arg2, TCGArg arg3, TCGArg arg4)
A
Aurelien Jarno 已提交
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
{
    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);
}

A
Aurelien Jarno 已提交
878
#if defined(CONFIG_SOFTMMU)
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
/* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
   int mmu_idx) */
static const void * const qemu_ld_helpers[4] = {
    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) */
static const void * const qemu_st_helpers[4] = {
    helper_stb_mmu,
    helper_stw_mmu,
    helper_stl_mmu,
    helper_stq_mmu,
};
#endif
A
Aurelien Jarno 已提交
897 898 899 900

static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args,
                            int opc)
{
901
    TCGReg addr_regl, data_regl, data_regh, data_reg1, data_reg2;
A
Aurelien Jarno 已提交
902
#if defined(CONFIG_SOFTMMU)
903
    tcg_insn_unit *label1_ptr, *label2_ptr;
904
    int arg_num;
905 906 907
    int mem_index, s_bits;
    int addr_meml;
# if TARGET_LONG_BITS == 64
908
    tcg_insn_unit *label3_ptr;
909 910
    TCGReg addr_regh;
    int addr_memh;
911
# endif
A
Aurelien Jarno 已提交
912 913 914 915 916 917 918
#endif
    data_regl = *args++;
    if (opc == 3)
        data_regh = *args++;
    else
        data_regh = 0;
    addr_regl = *args++;
919 920
#if defined(CONFIG_SOFTMMU)
# if TARGET_LONG_BITS == 64
A
Aurelien Jarno 已提交
921
    addr_regh = *args++;
922
#  if defined(HOST_WORDS_BIGENDIAN)
923 924 925 926 927 928 929 930 931
    addr_memh = 0;
    addr_meml = 4;
#  else
    addr_memh = 4;
    addr_meml = 0;
#  endif
# else
    addr_meml = 0;
# endif
A
Aurelien Jarno 已提交
932 933
    mem_index = *args;
    s_bits = opc & 3;
934
#endif
A
Aurelien Jarno 已提交
935 936

    if (opc == 3) {
937
#if defined(HOST_WORDS_BIGENDIAN)
A
Aurelien Jarno 已提交
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
        data_reg1 = data_regh;
        data_reg2 = data_regl;
#else
        data_reg1 = data_regl;
        data_reg2 = data_regh;
#endif
    } else {
        data_reg1 = data_regl;
        data_reg2 = 0;
    }
#if defined(CONFIG_SOFTMMU)
    tcg_out_opc_sa(s, OPC_SRL, TCG_REG_A0, addr_regl, 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);
    tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_A0, TCG_REG_A0, TCG_AREG0);
    tcg_out_opc_imm(s, OPC_LW, TCG_REG_AT, TCG_REG_A0,
953
                    offsetof(CPUArchState, tlb_table[mem_index][0].addr_read) + addr_meml);
A
Aurelien Jarno 已提交
954 955 956 957 958
    tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_T0, TARGET_PAGE_MASK | ((1 << s_bits) - 1));
    tcg_out_opc_reg(s, OPC_AND, TCG_REG_T0, TCG_REG_T0, addr_regl);

# if TARGET_LONG_BITS == 64
    label3_ptr = s->code_ptr;
959
    tcg_out_opc_br(s, OPC_BNE, TCG_REG_T0, TCG_REG_AT);
A
Aurelien Jarno 已提交
960 961 962
    tcg_out_nop(s);

    tcg_out_opc_imm(s, OPC_LW, TCG_REG_AT, TCG_REG_A0,
963
                    offsetof(CPUArchState, tlb_table[mem_index][0].addr_read) + addr_memh);
A
Aurelien Jarno 已提交
964 965

    label1_ptr = s->code_ptr;
966
    tcg_out_opc_br(s, OPC_BEQ, addr_regh, TCG_REG_AT);
A
Aurelien Jarno 已提交
967 968
    tcg_out_nop(s);

969
    reloc_pc16(label3_ptr, s->code_ptr);
A
Aurelien Jarno 已提交
970 971
# else
    label1_ptr = s->code_ptr;
972
    tcg_out_opc_br(s, OPC_BEQ, TCG_REG_T0, TCG_REG_AT);
A
Aurelien Jarno 已提交
973 974 975 976
    tcg_out_nop(s);
# endif

    /* slow path */
977 978
    arg_num = 0;
    tcg_out_call_iarg_reg32(s, &arg_num, TCG_AREG0);
A
Aurelien Jarno 已提交
979
# if TARGET_LONG_BITS == 64
980 981 982
    tcg_out_call_iarg_reg64(s, &arg_num, addr_regl, addr_regh);
# else
    tcg_out_call_iarg_reg32(s, &arg_num, addr_regl);
A
Aurelien Jarno 已提交
983
# endif
984
    tcg_out_call_iarg_imm32(s, &arg_num, mem_index);
A
Aurelien Jarno 已提交
985 986 987 988 989 990 991 992 993
    tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_T9, (tcg_target_long)qemu_ld_helpers[s_bits]);
    tcg_out_opc_reg(s, OPC_JALR, TCG_REG_RA, TCG_REG_T9, 0);
    tcg_out_nop(s);

    switch(opc) {
    case 0:
        tcg_out_opc_imm(s, OPC_ANDI, data_reg1, TCG_REG_V0, 0xff);
        break;
    case 0 | 4:
994
        tcg_out_ext8s(s, data_reg1, TCG_REG_V0);
A
Aurelien Jarno 已提交
995 996 997 998 999
        break;
    case 1:
        tcg_out_opc_imm(s, OPC_ANDI, data_reg1, TCG_REG_V0, 0xffff);
        break;
    case 1 | 4:
1000
        tcg_out_ext16s(s, data_reg1, TCG_REG_V0);
A
Aurelien Jarno 已提交
1001 1002
        break;
    case 2:
1003
        tcg_out_mov(s, TCG_TYPE_I32, data_reg1, TCG_REG_V0);
A
Aurelien Jarno 已提交
1004 1005
        break;
    case 3:
1006 1007
        tcg_out_mov(s, TCG_TYPE_I32, data_reg2, TCG_REG_V1);
        tcg_out_mov(s, TCG_TYPE_I32, data_reg1, TCG_REG_V0);
A
Aurelien Jarno 已提交
1008 1009 1010 1011 1012 1013
        break;
    default:
        tcg_abort();
    }

    label2_ptr = s->code_ptr;
1014
    tcg_out_opc_br(s, OPC_BEQ, TCG_REG_ZERO, TCG_REG_ZERO);
A
Aurelien Jarno 已提交
1015 1016 1017
    tcg_out_nop(s);

    /* label1: fast path */
1018
    reloc_pc16(label1_ptr, s->code_ptr);
A
Aurelien Jarno 已提交
1019

1020
    tcg_out_opc_imm(s, OPC_LW, TCG_REG_A0, TCG_REG_A0,
1021
                    offsetof(CPUArchState, tlb_table[mem_index][0].addend));
1022
    tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_V0, TCG_REG_A0, addr_regl);
1023 1024
#else
    if (GUEST_BASE == (int16_t)GUEST_BASE) {
1025
        tcg_out_opc_imm(s, OPC_ADDIU, TCG_REG_V0, addr_regl, GUEST_BASE);
1026 1027
    } else {
        tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_V0, GUEST_BASE);
1028
        tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_V0, TCG_REG_V0, addr_regl);
1029
    }
A
Aurelien Jarno 已提交
1030 1031 1032 1033
#endif

    switch(opc) {
    case 0:
1034
        tcg_out_opc_imm(s, OPC_LBU, data_reg1, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1035 1036
        break;
    case 0 | 4:
1037
        tcg_out_opc_imm(s, OPC_LB, data_reg1, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1038 1039 1040
        break;
    case 1:
        if (TCG_NEED_BSWAP) {
1041
            tcg_out_opc_imm(s, OPC_LHU, TCG_REG_T0, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1042 1043
            tcg_out_bswap16(s, data_reg1, TCG_REG_T0);
        } else {
1044
            tcg_out_opc_imm(s, OPC_LHU, data_reg1, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1045 1046 1047 1048
        }
        break;
    case 1 | 4:
        if (TCG_NEED_BSWAP) {
1049
            tcg_out_opc_imm(s, OPC_LHU, TCG_REG_T0, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1050 1051
            tcg_out_bswap16s(s, data_reg1, TCG_REG_T0);
        } else {
1052
            tcg_out_opc_imm(s, OPC_LH, data_reg1, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1053 1054 1055 1056
        }
        break;
    case 2:
        if (TCG_NEED_BSWAP) {
1057
            tcg_out_opc_imm(s, OPC_LW, TCG_REG_T0, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1058 1059
            tcg_out_bswap32(s, data_reg1, TCG_REG_T0);
        } else {
1060
            tcg_out_opc_imm(s, OPC_LW, data_reg1, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1061 1062 1063 1064
        }
        break;
    case 3:
        if (TCG_NEED_BSWAP) {
1065
            tcg_out_opc_imm(s, OPC_LW, TCG_REG_T0, TCG_REG_V0, 4);
A
Aurelien Jarno 已提交
1066
            tcg_out_bswap32(s, data_reg1, TCG_REG_T0);
1067
            tcg_out_opc_imm(s, OPC_LW, TCG_REG_T0, TCG_REG_V0, 0);
A
Aurelien Jarno 已提交
1068 1069
            tcg_out_bswap32(s, data_reg2, TCG_REG_T0);
        } else {
1070 1071
            tcg_out_opc_imm(s, OPC_LW, data_reg1, TCG_REG_V0, 0);
            tcg_out_opc_imm(s, OPC_LW, data_reg2, TCG_REG_V0, 4);
A
Aurelien Jarno 已提交
1072 1073 1074 1075 1076 1077 1078
        }
        break;
    default:
        tcg_abort();
    }

#if defined(CONFIG_SOFTMMU)
1079
    reloc_pc16(label2_ptr, s->code_ptr);
A
Aurelien Jarno 已提交
1080 1081 1082 1083 1084 1085
#endif
}

static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args,
                            int opc)
{
1086
    TCGReg addr_regl, data_regl, data_regh, data_reg1, data_reg2;
A
Aurelien Jarno 已提交
1087
#if defined(CONFIG_SOFTMMU)
1088
    tcg_insn_unit *label1_ptr, *label2_ptr;
1089
    int arg_num;
1090 1091
    int mem_index, s_bits;
    int addr_meml;
A
Aurelien Jarno 已提交
1092 1093 1094
#endif
#if TARGET_LONG_BITS == 64
# if defined(CONFIG_SOFTMMU)
1095
    tcg_insn_unit *label3_ptr;
1096 1097
    TCGReg addr_regh;
    int addr_memh;
1098
# endif
A
Aurelien Jarno 已提交
1099 1100 1101 1102 1103 1104 1105 1106
#endif
    data_regl = *args++;
    if (opc == 3) {
        data_regh = *args++;
    } else {
        data_regh = 0;
    }
    addr_regl = *args++;
1107 1108
#if defined(CONFIG_SOFTMMU)
# if TARGET_LONG_BITS == 64
A
Aurelien Jarno 已提交
1109
    addr_regh = *args++;
1110
#  if defined(HOST_WORDS_BIGENDIAN)
A
Aurelien Jarno 已提交
1111 1112
    addr_memh = 0;
    addr_meml = 4;
1113
#  else
A
Aurelien Jarno 已提交
1114 1115
    addr_memh = 4;
    addr_meml = 0;
1116 1117
#  endif
# else
A
Aurelien Jarno 已提交
1118
    addr_meml = 0;
1119
# endif
A
Aurelien Jarno 已提交
1120 1121
    mem_index = *args;
    s_bits = opc;
1122 1123 1124
#endif

    if (opc == 3) {
1125
#if defined(HOST_WORDS_BIGENDIAN)
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
        data_reg1 = data_regh;
        data_reg2 = data_regl;
#else
        data_reg1 = data_regl;
        data_reg2 = data_regh;
#endif
    } else {
        data_reg1 = data_regl;
        data_reg2 = 0;
    }
A
Aurelien Jarno 已提交
1136 1137 1138 1139 1140 1141

#if defined(CONFIG_SOFTMMU)
    tcg_out_opc_sa(s, OPC_SRL, TCG_REG_A0, addr_regl, 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);
    tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_A0, TCG_REG_A0, TCG_AREG0);
    tcg_out_opc_imm(s, OPC_LW, TCG_REG_AT, TCG_REG_A0,
1142
                    offsetof(CPUArchState, tlb_table[mem_index][0].addr_write) + addr_meml);
A
Aurelien Jarno 已提交
1143 1144 1145 1146 1147
    tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_T0, TARGET_PAGE_MASK | ((1 << s_bits) - 1));
    tcg_out_opc_reg(s, OPC_AND, TCG_REG_T0, TCG_REG_T0, addr_regl);

# if TARGET_LONG_BITS == 64
    label3_ptr = s->code_ptr;
1148
    tcg_out_opc_br(s, OPC_BNE, TCG_REG_T0, TCG_REG_AT);
A
Aurelien Jarno 已提交
1149 1150 1151
    tcg_out_nop(s);

    tcg_out_opc_imm(s, OPC_LW, TCG_REG_AT, TCG_REG_A0,
1152
                    offsetof(CPUArchState, tlb_table[mem_index][0].addr_write) + addr_memh);
A
Aurelien Jarno 已提交
1153 1154

    label1_ptr = s->code_ptr;
1155
    tcg_out_opc_br(s, OPC_BEQ, addr_regh, TCG_REG_AT);
A
Aurelien Jarno 已提交
1156 1157
    tcg_out_nop(s);

1158
    reloc_pc16(label3_ptr, s->code_ptr);
A
Aurelien Jarno 已提交
1159 1160
# else
    label1_ptr = s->code_ptr;
1161
    tcg_out_opc_br(s, OPC_BEQ, TCG_REG_T0, TCG_REG_AT);
A
Aurelien Jarno 已提交
1162 1163 1164 1165
    tcg_out_nop(s);
# endif

    /* slow path */
1166 1167
    arg_num = 0;
    tcg_out_call_iarg_reg32(s, &arg_num, TCG_AREG0);
A
Aurelien Jarno 已提交
1168
# if TARGET_LONG_BITS == 64
1169 1170 1171
    tcg_out_call_iarg_reg64(s, &arg_num, addr_regl, addr_regh);
# else
    tcg_out_call_iarg_reg32(s, &arg_num, addr_regl);
A
Aurelien Jarno 已提交
1172 1173 1174
# endif
    switch(opc) {
    case 0:
1175
        tcg_out_call_iarg_reg8(s, &arg_num, data_regl);
A
Aurelien Jarno 已提交
1176 1177
        break;
    case 1:
1178
        tcg_out_call_iarg_reg16(s, &arg_num, data_regl);
A
Aurelien Jarno 已提交
1179 1180
        break;
    case 2:
1181
        tcg_out_call_iarg_reg32(s, &arg_num, data_regl);
A
Aurelien Jarno 已提交
1182 1183
        break;
    case 3:
1184
        tcg_out_call_iarg_reg64(s, &arg_num, data_regl, data_regh);
A
Aurelien Jarno 已提交
1185 1186 1187 1188
        break;
    default:
        tcg_abort();
    }
1189
    tcg_out_call_iarg_imm32(s, &arg_num, mem_index);
A
Aurelien Jarno 已提交
1190 1191 1192 1193 1194
    tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_T9, (tcg_target_long)qemu_st_helpers[s_bits]);
    tcg_out_opc_reg(s, OPC_JALR, TCG_REG_RA, TCG_REG_T9, 0);
    tcg_out_nop(s);

    label2_ptr = s->code_ptr;
1195
    tcg_out_opc_br(s, OPC_BEQ, TCG_REG_ZERO, TCG_REG_ZERO);
A
Aurelien Jarno 已提交
1196 1197 1198
    tcg_out_nop(s);

    /* label1: fast path */
1199
    reloc_pc16(label1_ptr, s->code_ptr);
A
Aurelien Jarno 已提交
1200 1201

    tcg_out_opc_imm(s, OPC_LW, TCG_REG_A0, TCG_REG_A0,
1202
                    offsetof(CPUArchState, tlb_table[mem_index][0].addend));
A
Aurelien Jarno 已提交
1203
    tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_A0, TCG_REG_A0, addr_regl);
1204 1205
#else
    if (GUEST_BASE == (int16_t)GUEST_BASE) {
1206
        tcg_out_opc_imm(s, OPC_ADDIU, TCG_REG_A0, addr_regl, GUEST_BASE);
1207 1208
    } else {
        tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_A0, GUEST_BASE);
1209
        tcg_out_opc_reg(s, OPC_ADDU, TCG_REG_A0, TCG_REG_A0, addr_regl);
1210
    }
A
Aurelien Jarno 已提交
1211 1212 1213 1214 1215

#endif

    switch(opc) {
    case 0:
1216
        tcg_out_opc_imm(s, OPC_SB, data_reg1, TCG_REG_A0, 0);
A
Aurelien Jarno 已提交
1217 1218 1219
        break;
    case 1:
        if (TCG_NEED_BSWAP) {
1220 1221
            tcg_out_opc_imm(s, OPC_ANDI, TCG_REG_T0, data_reg1, 0xffff);
            tcg_out_bswap16(s, TCG_REG_T0, TCG_REG_T0);
1222
            tcg_out_opc_imm(s, OPC_SH, TCG_REG_T0, TCG_REG_A0, 0);
A
Aurelien Jarno 已提交
1223
        } else {
1224
            tcg_out_opc_imm(s, OPC_SH, data_reg1, TCG_REG_A0, 0);
A
Aurelien Jarno 已提交
1225 1226 1227 1228 1229
        }
        break;
    case 2:
        if (TCG_NEED_BSWAP) {
            tcg_out_bswap32(s, TCG_REG_T0, data_reg1);
1230
            tcg_out_opc_imm(s, OPC_SW, TCG_REG_T0, TCG_REG_A0, 0);
A
Aurelien Jarno 已提交
1231
        } else {
1232
            tcg_out_opc_imm(s, OPC_SW, data_reg1, TCG_REG_A0, 0);
A
Aurelien Jarno 已提交
1233 1234 1235 1236 1237
        }
        break;
    case 3:
        if (TCG_NEED_BSWAP) {
            tcg_out_bswap32(s, TCG_REG_T0, data_reg2);
1238
            tcg_out_opc_imm(s, OPC_SW, TCG_REG_T0, TCG_REG_A0, 0);
A
Aurelien Jarno 已提交
1239
            tcg_out_bswap32(s, TCG_REG_T0, data_reg1);
1240
            tcg_out_opc_imm(s, OPC_SW, TCG_REG_T0, TCG_REG_A0, 4);
A
Aurelien Jarno 已提交
1241
        } else {
1242 1243
            tcg_out_opc_imm(s, OPC_SW, data_reg1, TCG_REG_A0, 0);
            tcg_out_opc_imm(s, OPC_SW, data_reg2, TCG_REG_A0, 4);
A
Aurelien Jarno 已提交
1244 1245 1246 1247 1248 1249 1250
        }
        break;
    default:
        tcg_abort();
    }

#if defined(CONFIG_SOFTMMU)
1251
    reloc_pc16(label2_ptr, s->code_ptr);
A
Aurelien Jarno 已提交
1252 1253 1254
#endif
}

1255
static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
A
Aurelien Jarno 已提交
1256 1257 1258 1259 1260
                              const TCGArg *args, const int *const_args)
{
    switch(opc) {
    case INDEX_op_exit_tb:
        tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_V0, args[0]);
1261
        tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_AT, (uintptr_t)tb_ret_addr);
A
Aurelien Jarno 已提交
1262 1263 1264 1265 1266 1267 1268 1269 1270
        tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_AT, 0);
        tcg_out_nop(s);
        break;
    case INDEX_op_goto_tb:
        if (s->tb_jmp_offset) {
            /* direct jump method */
            tcg_abort();
        } else {
            /* indirect jump method */
1271 1272
            tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_AT,
                         (uintptr_t)(s->tb_next + args[0]));
A
Aurelien Jarno 已提交
1273 1274 1275 1276
            tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_AT, TCG_REG_AT, 0);
            tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_AT, 0);
        }
        tcg_out_nop(s);
1277
        s->tb_next_offset[args[0]] = tcg_current_code_size(s);
A
Aurelien Jarno 已提交
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287
        break;
    case INDEX_op_call:
        tcg_out_opc_reg(s, OPC_JALR, TCG_REG_RA, args[0], 0);
        tcg_out_nop(s);
        break;
    case INDEX_op_br:
        tcg_out_brcond(s, TCG_COND_EQ, TCG_REG_ZERO, TCG_REG_ZERO, args[0]);
        break;

    case INDEX_op_mov_i32:
1288
        tcg_out_mov(s, TCG_TYPE_I32, args[0], args[1]);
A
Aurelien Jarno 已提交
1289 1290 1291 1292 1293 1294
        break;
    case INDEX_op_movi_i32:
        tcg_out_movi(s, TCG_TYPE_I32, args[0], args[1]);
        break;

    case INDEX_op_ld8u_i32:
1295
        tcg_out_ldst(s, OPC_LBU, args[0], args[1], args[2]);
A
Aurelien Jarno 已提交
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
        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);
1339
        tcg_out_mov(s, TCG_TYPE_I32, args[0], TCG_REG_AT);
A
Aurelien Jarno 已提交
1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
        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);
1361
        tcg_out_mov(s, TCG_TYPE_I32, args[0], TCG_REG_AT);
A
Aurelien Jarno 已提交
1362 1363
        break;
    case INDEX_op_mul_i32:
1364 1365 1366 1367 1368 1369
        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);
        }
A
Aurelien Jarno 已提交
1370
        break;
A
Aurelien Jarno 已提交
1371 1372 1373 1374 1375
    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;
A
Aurelien Jarno 已提交
1376 1377 1378 1379 1380
    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;
1381 1382 1383 1384 1385 1386 1387 1388
    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;
A
Aurelien Jarno 已提交
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
    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;
A
Aurelien Jarno 已提交
1420 1421 1422
    case INDEX_op_nor_i32:
        tcg_out_opc_reg(s, OPC_NOR, args[0], args[1], args[2]);
        break;
A
Aurelien Jarno 已提交
1423
    case INDEX_op_not_i32:
1424
        tcg_out_opc_reg(s, OPC_NOR, args[0], TCG_REG_ZERO, args[1]);
A
Aurelien Jarno 已提交
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
        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;
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
    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;
A
Aurelien Jarno 已提交
1471

1472
    case INDEX_op_bswap16_i32:
1473
        tcg_out_opc_reg(s, OPC_WSBH, args[0], 0, args[1]);
1474 1475
        break;
    case INDEX_op_bswap32_i32:
1476 1477
        tcg_out_opc_reg(s, OPC_WSBH, args[0], 0, args[1]);
        tcg_out_opc_sa(s, OPC_ROTR, args[0], args[0], 16);
1478 1479
        break;

1480
    case INDEX_op_ext8s_i32:
1481
        tcg_out_opc_reg(s, OPC_SEB, args[0], 0, args[1]);
1482 1483
        break;
    case INDEX_op_ext16s_i32:
1484
        tcg_out_opc_reg(s, OPC_SEH, args[0], 0, args[1]);
1485 1486
        break;

1487 1488 1489 1490 1491
    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;

A
Aurelien Jarno 已提交
1492 1493 1494 1495 1496 1497 1498
    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;

1499 1500 1501 1502
    case INDEX_op_movcond_i32:
        tcg_out_movcond(s, args[5], args[0], args[1], args[2], args[3]);
        break;

A
Aurelien Jarno 已提交
1503 1504 1505
    case INDEX_op_setcond_i32:
        tcg_out_setcond(s, args[3], args[0], args[1], args[2]);
        break;
A
Aurelien Jarno 已提交
1506 1507 1508
    case INDEX_op_setcond2_i32:
        tcg_out_setcond2(s, args[5], args[0], args[1], args[2], args[3], args[4]);
        break;
A
Aurelien Jarno 已提交
1509

A
Aurelien Jarno 已提交
1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521
    case INDEX_op_qemu_ld8u:
        tcg_out_qemu_ld(s, args, 0);
        break;
    case INDEX_op_qemu_ld8s:
        tcg_out_qemu_ld(s, args, 0 | 4);
        break;
    case INDEX_op_qemu_ld16u:
        tcg_out_qemu_ld(s, args, 1);
        break;
    case INDEX_op_qemu_ld16s:
        tcg_out_qemu_ld(s, args, 1 | 4);
        break;
1522
    case INDEX_op_qemu_ld32:
A
Aurelien Jarno 已提交
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
        tcg_out_qemu_ld(s, args, 2);
        break;
    case INDEX_op_qemu_ld64:
        tcg_out_qemu_ld(s, args, 3);
        break;
    case INDEX_op_qemu_st8:
        tcg_out_qemu_st(s, args, 0);
        break;
    case INDEX_op_qemu_st16:
        tcg_out_qemu_st(s, args, 1);
        break;
    case INDEX_op_qemu_st32:
        tcg_out_qemu_st(s, args, 2);
        break;
    case INDEX_op_qemu_st64:
        tcg_out_qemu_st(s, args, 3);
        break;

    default:
        tcg_abort();
    }
}

static const TCGTargetOpDef mips_op_defs[] = {
    { INDEX_op_exit_tb, { } },
    { INDEX_op_goto_tb, { } },
    { INDEX_op_call, { "C" } },
    { INDEX_op_br, { } },

    { INDEX_op_mov_i32, { "r", "r" } },
    { INDEX_op_movi_i32, { "r" } },
    { 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" } },

1563
    { INDEX_op_add_i32, { "r", "rZ", "rJ" } },
A
Aurelien Jarno 已提交
1564
    { INDEX_op_mul_i32, { "r", "rZ", "rZ" } },
A
Aurelien Jarno 已提交
1565
    { INDEX_op_muls2_i32, { "r", "r", "rZ", "rZ" } },
A
Aurelien Jarno 已提交
1566
    { INDEX_op_mulu2_i32, { "r", "r", "rZ", "rZ" } },
1567 1568
    { INDEX_op_mulsh_i32, { "r", "rZ", "rZ" } },
    { INDEX_op_muluh_i32, { "r", "rZ", "rZ" } },
A
Aurelien Jarno 已提交
1569 1570 1571 1572
    { 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" } },
1573
    { INDEX_op_sub_i32, { "r", "rZ", "rJ" } },
A
Aurelien Jarno 已提交
1574

1575
    { INDEX_op_and_i32, { "r", "rZ", "rI" } },
A
Aurelien Jarno 已提交
1576
    { INDEX_op_nor_i32, { "r", "rZ", "rZ" } },
A
Aurelien Jarno 已提交
1577 1578 1579 1580
    { INDEX_op_not_i32, { "r", "rZ" } },
    { INDEX_op_or_i32, { "r", "rZ", "rIZ" } },
    { INDEX_op_xor_i32, { "r", "rZ", "rIZ" } },

1581 1582 1583
    { INDEX_op_shl_i32, { "r", "rZ", "ri" } },
    { INDEX_op_shr_i32, { "r", "rZ", "ri" } },
    { INDEX_op_sar_i32, { "r", "rZ", "ri" } },
1584 1585
    { INDEX_op_rotr_i32, { "r", "rZ", "ri" } },
    { INDEX_op_rotl_i32, { "r", "rZ", "ri" } },
A
Aurelien Jarno 已提交
1586

1587 1588 1589
    { INDEX_op_bswap16_i32, { "r", "r" } },
    { INDEX_op_bswap32_i32, { "r", "r" } },

1590 1591 1592
    { INDEX_op_ext8s_i32, { "r", "rZ" } },
    { INDEX_op_ext16s_i32, { "r", "rZ" } },

1593 1594
    { INDEX_op_deposit_i32, { "r", "0", "rZ" } },

A
Aurelien Jarno 已提交
1595
    { INDEX_op_brcond_i32, { "rZ", "rZ" } },
1596
    { INDEX_op_movcond_i32, { "r", "rZ", "rZ", "rZ", "0" } },
A
Aurelien Jarno 已提交
1597
    { INDEX_op_setcond_i32, { "r", "rZ", "rZ" } },
A
Aurelien Jarno 已提交
1598
    { INDEX_op_setcond2_i32, { "r", "rZ", "rZ", "rZ", "rZ" } },
A
Aurelien Jarno 已提交
1599

1600 1601
    { INDEX_op_add2_i32, { "r", "r", "rZ", "rZ", "rJ", "rJ" } },
    { INDEX_op_sub2_i32, { "r", "r", "rZ", "rZ", "rJ", "rJ" } },
A
Aurelien Jarno 已提交
1602 1603 1604 1605 1606 1607 1608
    { 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" } },
1609
    { INDEX_op_qemu_ld32, { "L", "lZ" } },
A
Aurelien Jarno 已提交
1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
    { 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" } },
1621
    { INDEX_op_qemu_ld32, { "L", "lZ", "lZ" } },
A
Aurelien Jarno 已提交
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
    { 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[] = {
B
Blue Swirl 已提交
1633
    TCG_REG_S0,       /* used for the global env (TCG_AREG0) */
A
Aurelien Jarno 已提交
1634 1635 1636 1637 1638 1639 1640
    TCG_REG_S1,
    TCG_REG_S2,
    TCG_REG_S3,
    TCG_REG_S4,
    TCG_REG_S5,
    TCG_REG_S6,
    TCG_REG_S7,
1641
    TCG_REG_FP,
A
Aurelien Jarno 已提交
1642 1643 1644
    TCG_REG_RA,       /* should be last for ABI compliance */
};

1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724
/* 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);
}

A
Aurelien Jarno 已提交
1725
/* Generate global QEMU prologue and epilogue code */
1726
static void tcg_target_qemu_prologue(TCGContext *s)
A
Aurelien Jarno 已提交
1727 1728 1729
{
    int i, frame_size;

1730
    /* reserve some stack space, also for TCG temps. */
A
Aurelien Jarno 已提交
1731
    frame_size = ARRAY_SIZE(tcg_target_callee_save_regs) * 4
1732 1733
                 + TCG_STATIC_CALL_ARGS_SIZE
                 + CPU_TEMP_BUF_NLONGS * sizeof(long);
A
Aurelien Jarno 已提交
1734 1735
    frame_size = (frame_size + TCG_TARGET_STACK_ALIGN - 1) &
                 ~(TCG_TARGET_STACK_ALIGN - 1);
A
Aurelien Jarno 已提交
1736 1737
    tcg_set_frame(s, TCG_REG_SP, ARRAY_SIZE(tcg_target_callee_save_regs) * 4
                  + TCG_STATIC_CALL_ARGS_SIZE,
1738
                  CPU_TEMP_BUF_NLONGS * sizeof(long));
A
Aurelien Jarno 已提交
1739 1740 1741 1742 1743 1744 1745 1746 1747

    /* 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 */
1748
    tcg_out_opc_reg(s, OPC_JR, 0, tcg_target_call_iarg_regs[1], 0);
B
Blue Swirl 已提交
1749
    tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
A
Aurelien Jarno 已提交
1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761
    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);
}

1762
static void tcg_target_init(TCGContext *s)
A
Aurelien Jarno 已提交
1763
{
1764
    tcg_target_detect_isa();
A
Aurelien Jarno 已提交
1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
    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 */
1791
    tcg_regset_set_reg(s->reserved_regs, TCG_REG_GP);   /* global pointer */
A
Aurelien Jarno 已提交
1792 1793 1794

    tcg_add_target_add_op_defs(mips_op_defs);
}