tcg-target.c 40.8 KB
Newer Older
B
bellard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Tiny Code Generator for QEMU
 *
 * 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.
 */
24 25 26

#ifndef NDEBUG
static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
B
bellard 已提交
27 28 29 30 31 32 33 34 35
    "%eax",
    "%ecx",
    "%edx",
    "%ebx",
    "%esp",
    "%ebp",
    "%esi",
    "%edi",
};
36
#endif
B
bellard 已提交
37

38
static const int tcg_target_reg_alloc_order[] = {
B
bellard 已提交
39 40 41 42
    TCG_REG_EBX,
    TCG_REG_ESI,
    TCG_REG_EDI,
    TCG_REG_EBP,
43 44 45
    TCG_REG_ECX,
    TCG_REG_EDX,
    TCG_REG_EAX,
B
bellard 已提交
46 47
};

48 49
static const int tcg_target_call_iarg_regs[3] = { TCG_REG_EAX, TCG_REG_EDX, TCG_REG_ECX };
static const int tcg_target_call_oarg_regs[2] = { TCG_REG_EAX, TCG_REG_EDX };
B
bellard 已提交
50

51 52
static uint8_t *tb_ret_addr;

B
bellard 已提交
53
static void patch_reloc(uint8_t *code_ptr, int type, 
A
aurel32 已提交
54
                        tcg_target_long value, tcg_target_long addend)
B
bellard 已提交
55
{
A
aurel32 已提交
56
    value += addend;
B
bellard 已提交
57 58 59 60 61 62 63
    switch(type) {
    case R_386_32:
        *(uint32_t *)code_ptr = value;
        break;
    case R_386_PC32:
        *(uint32_t *)code_ptr = value - (long)code_ptr;
        break;
64 65 66 67 68 69 70
    case R_386_PC8:
        value -= (long)code_ptr;
        if (value != (int8_t)value) {
            tcg_abort();
        }
        *(uint8_t *)code_ptr = value;
        break;
B
bellard 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    default:
        tcg_abort();
    }
}

/* maximum number of register used for input function arguments */
static inline int tcg_target_get_call_iarg_regs_count(int flags)
{
    flags &= TCG_CALL_TYPE_MASK;
    switch(flags) {
    case TCG_CALL_TYPE_STD:
        return 0;
    case TCG_CALL_TYPE_REGPARM_1:
    case TCG_CALL_TYPE_REGPARM_2:
    case TCG_CALL_TYPE_REGPARM:
        return flags - TCG_CALL_TYPE_REGPARM_1 + 1;
    default:
        tcg_abort();
    }
}

/* parse target specific constraints */
93
static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
B
bellard 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
{
    const char *ct_str;

    ct_str = *pct_str;
    switch(ct_str[0]) {
    case 'a':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set_reg(ct->u.regs, TCG_REG_EAX);
        break;
    case 'b':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set_reg(ct->u.regs, TCG_REG_EBX);
        break;
    case 'c':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set_reg(ct->u.regs, TCG_REG_ECX);
        break;
    case 'd':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set_reg(ct->u.regs, TCG_REG_EDX);
        break;
    case 'S':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set_reg(ct->u.regs, TCG_REG_ESI);
        break;
    case 'D':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set_reg(ct->u.regs, TCG_REG_EDI);
        break;
    case 'q':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set32(ct->u.regs, 0, 0xf);
        break;
    case 'r':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set32(ct->u.regs, 0, 0xff);
        break;

        /* qemu_ld/st address constraint */
    case 'L':
        ct->ct |= TCG_CT_REG;
        tcg_regset_set32(ct->u.regs, 0, 0xff);
        tcg_regset_reset_reg(ct->u.regs, TCG_REG_EAX);
        tcg_regset_reset_reg(ct->u.regs, TCG_REG_EDX);
        break;
    default:
        return -1;
    }
    ct_str++;
    *pct_str = ct_str;
    return 0;
}

/* test if a constant matches the constraint */
static inline int tcg_target_const_match(tcg_target_long val,
                                         const TCGArgConstraint *arg_ct)
{
    int ct;
    ct = arg_ct->ct;
    if (ct & TCG_CT_CONST)
        return 1;
    else
        return 0;
}

159 160
#define P_EXT   0x100 /* 0x0f opcode prefix */

161 162
#define OPC_ARITH_EvIz	(0x81)
#define OPC_ARITH_EvIb	(0x83)
163 164
#define OPC_ARITH_GvEv	(0x03)		/* ... plus (ARITH_FOO << 3) */
#define OPC_ADD_GvEv	(OPC_ARITH_GvEv | (ARITH_ADD << 3))
165
#define OPC_BSWAP	(0xc8 | P_EXT)
166 167 168
#define OPC_CMP_GvEv	(OPC_ARITH_GvEv | (ARITH_CMP << 3))
#define OPC_DEC_r32	(0x48)
#define OPC_INC_r32	(0x40)
R
Richard Henderson 已提交
169 170 171 172
#define OPC_JCC_long	(0x80 | P_EXT)	/* ... plus condition code */
#define OPC_JCC_short	(0x70)		/* ... plus condition code */
#define OPC_JMP_long	(0xe9)
#define OPC_JMP_short	(0xeb)
173 174 175
#define OPC_MOVB_EvGv	(0x88)		/* stores, more or less */
#define OPC_MOVL_EvGv	(0x89)		/* stores, more or less */
#define OPC_MOVL_GvEv	(0x8b)		/* loads, more or less */
176 177
#define OPC_MOVSBL	(0xbe | P_EXT)
#define OPC_MOVSWL	(0xbf | P_EXT)
178 179
#define OPC_MOVZBL	(0xb6 | P_EXT)
#define OPC_MOVZWL	(0xb7 | P_EXT)
180 181 182
#define OPC_SHIFT_1	(0xd1)
#define OPC_SHIFT_Ib	(0xc1)
#define OPC_SHIFT_cl	(0xd3)
183
#define OPC_TESTL	(0x85)
184

R
Richard Henderson 已提交
185
/* Group 1 opcode extensions for 0x80-0x83.  */
B
bellard 已提交
186 187 188 189 190 191 192 193 194
#define ARITH_ADD 0
#define ARITH_OR  1
#define ARITH_ADC 2
#define ARITH_SBB 3
#define ARITH_AND 4
#define ARITH_SUB 5
#define ARITH_XOR 6
#define ARITH_CMP 7

R
Richard Henderson 已提交
195
/* Group 2 opcode extensions for 0xc0, 0xc1, 0xd0-0xd3.  */
196 197
#define SHIFT_ROL 0
#define SHIFT_ROR 1
B
bellard 已提交
198 199 200 201
#define SHIFT_SHL 4
#define SHIFT_SHR 5
#define SHIFT_SAR 7

R
Richard Henderson 已提交
202 203 204 205
/* Group 5 opcode extensions for 0xff.  */
#define EXT_JMPN_Ev	4

/* Condition codes to be added to OPC_JCC_{long,short}.  */
B
bellard 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
#define JCC_JMP (-1)
#define JCC_JO  0x0
#define JCC_JNO 0x1
#define JCC_JB  0x2
#define JCC_JAE 0x3
#define JCC_JE  0x4
#define JCC_JNE 0x5
#define JCC_JBE 0x6
#define JCC_JA  0x7
#define JCC_JS  0x8
#define JCC_JNS 0x9
#define JCC_JP  0xa
#define JCC_JNP 0xb
#define JCC_JL  0xc
#define JCC_JGE 0xd
#define JCC_JLE 0xe
#define JCC_JG  0xf

static const uint8_t tcg_cond_to_jcc[10] = {
    [TCG_COND_EQ] = JCC_JE,
    [TCG_COND_NE] = JCC_JNE,
    [TCG_COND_LT] = JCC_JL,
    [TCG_COND_GE] = JCC_JGE,
    [TCG_COND_LE] = JCC_JLE,
    [TCG_COND_GT] = JCC_JG,
    [TCG_COND_LTU] = JCC_JB,
    [TCG_COND_GEU] = JCC_JAE,
    [TCG_COND_LEU] = JCC_JBE,
    [TCG_COND_GTU] = JCC_JA,
};

static inline void tcg_out_opc(TCGContext *s, int opc)
{
    if (opc & P_EXT)
        tcg_out8(s, 0x0f);
    tcg_out8(s, opc);
}

static inline void tcg_out_modrm(TCGContext *s, int opc, int r, int rm)
{
    tcg_out_opc(s, opc);
    tcg_out8(s, 0xc0 | (r << 3) | rm);
}

/* rm == -1 means no register index */
static inline void tcg_out_modrm_offset(TCGContext *s, int opc, int r, int rm, 
                                        int32_t offset)
{
    tcg_out_opc(s, opc);
    if (rm == -1) {
        tcg_out8(s, 0x05 | (r << 3));
        tcg_out32(s, offset);
    } else if (offset == 0 && rm != TCG_REG_EBP) {
        if (rm == TCG_REG_ESP) {
            tcg_out8(s, 0x04 | (r << 3));
            tcg_out8(s, 0x24);
        } else {
            tcg_out8(s, 0x00 | (r << 3) | rm);
        }
    } else if ((int8_t)offset == offset) {
        if (rm == TCG_REG_ESP) {
            tcg_out8(s, 0x44 | (r << 3));
            tcg_out8(s, 0x24);
        } else {
            tcg_out8(s, 0x40 | (r << 3) | rm);
        }
        tcg_out8(s, offset);
    } else {
        if (rm == TCG_REG_ESP) {
            tcg_out8(s, 0x84 | (r << 3));
            tcg_out8(s, 0x24);
        } else {
            tcg_out8(s, 0x80 | (r << 3) | rm);
        }
        tcg_out32(s, offset);
    }
}

284 285 286 287 288 289
/* Generate dest op= src.  Uses the same ARITH_* codes as tgen_arithi.  */
static inline void tgen_arithr(TCGContext *s, int subop, int dest, int src)
{
    tcg_out_modrm(s, OPC_ARITH_GvEv + (subop << 3), dest, src);
}

B
bellard 已提交
290 291
static inline void tcg_out_mov(TCGContext *s, int ret, int arg)
{
292 293 294
    if (arg != ret) {
        tcg_out_modrm(s, OPC_MOVL_GvEv, ret, arg);
    }
B
bellard 已提交
295 296 297 298 299 300
}

static inline void tcg_out_movi(TCGContext *s, TCGType type,
                                int ret, int32_t arg)
{
    if (arg == 0) {
301
        tgen_arithr(s, ARITH_XOR, ret, ret);
B
bellard 已提交
302 303 304 305 306 307
    } else {
        tcg_out8(s, 0xb8 + ret);
        tcg_out32(s, arg);
    }
}

308 309
static inline void tcg_out_ld(TCGContext *s, TCGType type, int ret,
                              int arg1, tcg_target_long arg2)
B
bellard 已提交
310
{
311
    tcg_out_modrm_offset(s, OPC_MOVL_GvEv, ret, arg1, arg2);
B
bellard 已提交
312 313
}

314 315
static inline void tcg_out_st(TCGContext *s, TCGType type, int arg,
                              int arg1, tcg_target_long arg2)
B
bellard 已提交
316
{
317
    tcg_out_modrm_offset(s, OPC_MOVL_EvGv, arg, arg1, arg2);
B
bellard 已提交
318 319
}

320 321 322 323 324 325 326 327 328 329
static void tcg_out_shifti(TCGContext *s, int subopc, int reg, int count)
{
    if (count == 1) {
        tcg_out_modrm(s, OPC_SHIFT_1, subopc, reg);
    } else {
        tcg_out_modrm(s, OPC_SHIFT_Ib, subopc, reg);
        tcg_out8(s, count);
    }
}

330 331 332 333 334 335 336 337
static inline void tcg_out_bswap32(TCGContext *s, int reg)
{
    tcg_out_opc(s, OPC_BSWAP + reg);
}

static inline void tcg_out_rolw_8(TCGContext *s, int reg)
{
    tcg_out8(s, 0x66);
338
    tcg_out_shifti(s, SHIFT_ROL, reg, 8);
339 340
}

341 342 343 344 345 346 347
static inline void tcg_out_ext8u(TCGContext *s, int dest, int src)
{
    /* movzbl */
    assert(src < 4);
    tcg_out_modrm(s, OPC_MOVZBL, dest, src);
}

348 349 350 351 352 353 354
static void tcg_out_ext8s(TCGContext *s, int dest, int src)
{
    /* movsbl */
    assert(src < 4);
    tcg_out_modrm(s, OPC_MOVSBL, dest, src);
}

355 356 357 358 359 360
static inline void tcg_out_ext16u(TCGContext *s, int dest, int src)
{
    /* movzwl */
    tcg_out_modrm(s, OPC_MOVZWL, dest, src);
}

361 362 363 364 365 366
static inline void tcg_out_ext16s(TCGContext *s, int dest, int src)
{
    /* movswl */
    tcg_out_modrm(s, OPC_MOVSWL, dest, src);
}

367 368
static inline void tgen_arithi(TCGContext *s, int c, int r0,
                               int32_t val, int cf)
B
bellard 已提交
369
{
370 371 372 373 374 375
    /* ??? While INC is 2 bytes shorter than ADDL $1, they also induce
       partial flags update stalls on Pentium4 and are not recommended
       by current Intel optimization manuals.  */
    if (!cf && (c == ARITH_ADD || c == ARITH_SUB) && (val == 1 || val == -1)) {
        int opc = ((c == ARITH_ADD) ^ (val < 0) ? OPC_INC_r32 : OPC_DEC_r32);
        tcg_out_opc(s, opc + r0);
376
    } else if (val == (int8_t)val) {
377
        tcg_out_modrm(s, OPC_ARITH_EvIb, c, r0);
B
bellard 已提交
378
        tcg_out8(s, val);
379
    } else if (c == ARITH_AND && val == 0xffu && r0 < 4) {
380
        tcg_out_ext8u(s, r0, r0);
381
    } else if (c == ARITH_AND && val == 0xffffu) {
382
        tcg_out_ext16u(s, r0, r0);
B
bellard 已提交
383
    } else {
384
        tcg_out_modrm(s, OPC_ARITH_EvIz, c, r0);
B
bellard 已提交
385 386 387 388
        tcg_out32(s, val);
    }
}

A
aurel32 已提交
389
static void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
B
bellard 已提交
390 391
{
    if (val != 0)
392
        tgen_arithi(s, ARITH_ADD, reg, val, 0);
B
bellard 已提交
393 394
}

395 396
/* Use SMALL != 0 to force a short forward branch.  */
static void tcg_out_jxx(TCGContext *s, int opc, int label_index, int small)
B
bellard 已提交
397 398 399 400 401 402 403 404
{
    int32_t val, val1;
    TCGLabel *l = &s->labels[label_index];
    
    if (l->has_value) {
        val = l->u.value - (tcg_target_long)s->code_ptr;
        val1 = val - 2;
        if ((int8_t)val1 == val1) {
405
            if (opc == -1) {
R
Richard Henderson 已提交
406
                tcg_out8(s, OPC_JMP_short);
407
            } else {
R
Richard Henderson 已提交
408
                tcg_out8(s, OPC_JCC_short + opc);
409
            }
B
bellard 已提交
410 411
            tcg_out8(s, val1);
        } else {
412 413 414
            if (small) {
                tcg_abort();
            }
B
bellard 已提交
415
            if (opc == -1) {
R
Richard Henderson 已提交
416
                tcg_out8(s, OPC_JMP_long);
B
bellard 已提交
417 418
                tcg_out32(s, val - 5);
            } else {
R
Richard Henderson 已提交
419
                tcg_out_opc(s, OPC_JCC_long + opc);
B
bellard 已提交
420 421 422
                tcg_out32(s, val - 6);
            }
        }
423 424
    } else if (small) {
        if (opc == -1) {
R
Richard Henderson 已提交
425
            tcg_out8(s, OPC_JMP_short);
426
        } else {
R
Richard Henderson 已提交
427
            tcg_out8(s, OPC_JCC_short + opc);
428 429 430
        }
        tcg_out_reloc(s, s->code_ptr, R_386_PC8, label_index, -1);
        s->code_ptr += 1;
B
bellard 已提交
431 432
    } else {
        if (opc == -1) {
R
Richard Henderson 已提交
433
            tcg_out8(s, OPC_JMP_long);
B
bellard 已提交
434
        } else {
R
Richard Henderson 已提交
435
            tcg_out_opc(s, OPC_JCC_long + opc);
B
bellard 已提交
436 437
        }
        tcg_out_reloc(s, s->code_ptr, R_386_PC32, label_index, -4);
P
pbrook 已提交
438
        s->code_ptr += 4;
B
bellard 已提交
439 440 441
    }
}

R
Richard Henderson 已提交
442 443
static void tcg_out_cmp(TCGContext *s, TCGArg arg1, TCGArg arg2,
                        int const_arg2)
B
bellard 已提交
444 445 446 447
{
    if (const_arg2) {
        if (arg2 == 0) {
            /* test r, r */
448
            tcg_out_modrm(s, OPC_TESTL, arg1, arg1);
B
bellard 已提交
449
        } else {
450
            tgen_arithi(s, ARITH_CMP, arg1, arg2, 0);
B
bellard 已提交
451 452
        }
    } else {
453
        tgen_arithr(s, ARITH_CMP, arg1, arg2);
B
bellard 已提交
454
    }
R
Richard Henderson 已提交
455 456
}

457
static void tcg_out_brcond(TCGContext *s, TCGCond cond,
R
Richard Henderson 已提交
458 459 460 461
                           TCGArg arg1, TCGArg arg2, int const_arg2,
                           int label_index, int small)
{
    tcg_out_cmp(s, arg1, arg2, const_arg2);
462
    tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index, small);
B
bellard 已提交
463 464 465 466
}

/* XXX: we implement it at the target level to avoid having to
   handle cross basic blocks temporaries */
467 468
static void tcg_out_brcond2(TCGContext *s, const TCGArg *args,
                            const int *const_args, int small)
B
bellard 已提交
469 470 471 472 473
{
    int label_next;
    label_next = gen_new_label();
    switch(args[4]) {
    case TCG_COND_EQ:
474 475 476 477
        tcg_out_brcond(s, TCG_COND_NE, args[0], args[2], const_args[2],
                       label_next, 1);
        tcg_out_brcond(s, TCG_COND_EQ, args[1], args[3], const_args[3],
                       args[5], small);
B
bellard 已提交
478 479
        break;
    case TCG_COND_NE:
480 481 482 483
        tcg_out_brcond(s, TCG_COND_NE, args[0], args[2], const_args[2],
                       args[5], small);
        tcg_out_brcond(s, TCG_COND_NE, args[1], args[3], const_args[3],
                       args[5], small);
B
bellard 已提交
484 485
        break;
    case TCG_COND_LT:
486 487 488 489 490
        tcg_out_brcond(s, TCG_COND_LT, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_LTU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
491 492
        break;
    case TCG_COND_LE:
493 494 495 496 497
        tcg_out_brcond(s, TCG_COND_LT, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_LEU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
498 499
        break;
    case TCG_COND_GT:
500 501 502 503 504
        tcg_out_brcond(s, TCG_COND_GT, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_GTU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
505 506
        break;
    case TCG_COND_GE:
507 508 509 510 511
        tcg_out_brcond(s, TCG_COND_GT, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_GEU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
512 513
        break;
    case TCG_COND_LTU:
514 515 516 517 518
        tcg_out_brcond(s, TCG_COND_LTU, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_LTU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
519 520
        break;
    case TCG_COND_LEU:
521 522 523 524 525
        tcg_out_brcond(s, TCG_COND_LTU, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_LEU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
526 527
        break;
    case TCG_COND_GTU:
528 529 530 531 532
        tcg_out_brcond(s, TCG_COND_GTU, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_GTU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
533 534
        break;
    case TCG_COND_GEU:
535 536 537 538 539
        tcg_out_brcond(s, TCG_COND_GTU, args[1], args[3], const_args[3],
                       args[5], small);
        tcg_out_jxx(s, JCC_JNE, label_next, 1);
        tcg_out_brcond(s, TCG_COND_GEU, args[0], args[2], const_args[2],
                       args[5], small);
B
bellard 已提交
540 541 542 543 544 545 546
        break;
    default:
        tcg_abort();
    }
    tcg_out_label(s, label_next, (tcg_target_long)s->code_ptr);
}

547
static void tcg_out_setcond(TCGContext *s, TCGCond cond, TCGArg dest,
R
Richard Henderson 已提交
548 549 550 551 552
                            TCGArg arg1, TCGArg arg2, int const_arg2)
{
    tcg_out_cmp(s, arg1, arg2, const_arg2);
    /* setcc */
    tcg_out_modrm(s, 0x90 | tcg_cond_to_jcc[cond] | P_EXT, 0, dest);
553
    tcg_out_ext8u(s, dest, dest);
R
Richard Henderson 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
}

static void tcg_out_setcond2(TCGContext *s, const TCGArg *args,
                             const int *const_args)
{
    TCGArg new_args[6];
    int label_true, label_over;

    memcpy(new_args, args+1, 5*sizeof(TCGArg));

    if (args[0] == args[1] || args[0] == args[2]
        || (!const_args[3] && args[0] == args[3])
        || (!const_args[4] && args[0] == args[4])) {
        /* When the destination overlaps with one of the argument
           registers, don't do anything tricky.  */
        label_true = gen_new_label();
        label_over = gen_new_label();

        new_args[5] = label_true;
        tcg_out_brcond2(s, new_args, const_args+1, 1);

        tcg_out_movi(s, TCG_TYPE_I32, args[0], 0);
        tcg_out_jxx(s, JCC_JMP, label_over, 1);
        tcg_out_label(s, label_true, (tcg_target_long)s->code_ptr);

        tcg_out_movi(s, TCG_TYPE_I32, args[0], 1);
        tcg_out_label(s, label_over, (tcg_target_long)s->code_ptr);
    } else {
        /* When the destination does not overlap one of the arguments,
           clear the destination first, jump if cond false, and emit an
           increment in the true case.  This results in smaller code.  */

        tcg_out_movi(s, TCG_TYPE_I32, args[0], 0);

        label_over = gen_new_label();
        new_args[4] = tcg_invert_cond(new_args[4]);
        new_args[5] = label_over;
        tcg_out_brcond2(s, new_args, const_args+1, 1);

        tgen_arithi(s, ARITH_ADD, args[0], 1, 0);
        tcg_out_label(s, label_over, (tcg_target_long)s->code_ptr);
    }
}

B
bellard 已提交
598
#if defined(CONFIG_SOFTMMU)
599 600

#include "../../softmmu_defs.h"
B
bellard 已提交
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616

static void *qemu_ld_helpers[4] = {
    __ldb_mmu,
    __ldw_mmu,
    __ldl_mmu,
    __ldq_mmu,
};

static void *qemu_st_helpers[4] = {
    __stb_mmu,
    __stw_mmu,
    __stl_mmu,
    __stq_mmu,
};
#endif

P
Paul Brook 已提交
617 618 619 620
#ifndef CONFIG_USER_ONLY
#define GUEST_BASE 0
#endif

B
bellard 已提交
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
/* XXX: qemu_ld and qemu_st could be modified to clobber only EDX and
   EAX. It will be useful once fixed registers globals are less
   common. */
static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args,
                            int opc)
{
    int addr_reg, data_reg, data_reg2, r0, r1, mem_index, s_bits, bswap;
#if defined(CONFIG_SOFTMMU)
    uint8_t *label1_ptr, *label2_ptr;
#endif
#if TARGET_LONG_BITS == 64
#if defined(CONFIG_SOFTMMU)
    uint8_t *label3_ptr;
#endif
    int addr_reg2;
#endif

    data_reg = *args++;
    if (opc == 3)
        data_reg2 = *args++;
    else
        data_reg2 = 0;
    addr_reg = *args++;
#if TARGET_LONG_BITS == 64
    addr_reg2 = *args++;
#endif
    mem_index = *args;
    s_bits = opc & 3;

    r0 = TCG_REG_EAX;
    r1 = TCG_REG_EDX;

#if defined(CONFIG_SOFTMMU)
    tcg_out_mov(s, r1, addr_reg); 
    tcg_out_mov(s, r0, addr_reg); 
656

657 658
    tcg_out_shifti(s, SHIFT_SHR, r1, TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS);

659 660
    tgen_arithi(s, ARITH_AND, r0, TARGET_PAGE_MASK | ((1 << s_bits) - 1), 0);
    tgen_arithi(s, ARITH_AND, r1, (CPU_TLB_SIZE - 1) << CPU_TLB_ENTRY_BITS, 0);
B
bellard 已提交
661 662 663 664 665 666 667

    tcg_out_opc(s, 0x8d); /* lea offset(r1, %ebp), r1 */
    tcg_out8(s, 0x80 | (r1 << 3) | 0x04);
    tcg_out8(s, (5 << 3) | r1);
    tcg_out32(s, offsetof(CPUState, tlb_table[mem_index][0].addr_read));

    /* cmp 0(r1), r0 */
668
    tcg_out_modrm_offset(s, OPC_CMP_GvEv, r0, r1, 0);
B
bellard 已提交
669 670 671 672 673
    
    tcg_out_mov(s, r0, addr_reg);
    
#if TARGET_LONG_BITS == 32
    /* je label1 */
R
Richard Henderson 已提交
674
    tcg_out8(s, OPC_JCC_short + JCC_JE);
B
bellard 已提交
675 676 677 678
    label1_ptr = s->code_ptr;
    s->code_ptr++;
#else
    /* jne label3 */
R
Richard Henderson 已提交
679
    tcg_out8(s, OPC_JCC_short + JCC_JNE);
B
bellard 已提交
680 681 682 683
    label3_ptr = s->code_ptr;
    s->code_ptr++;
    
    /* cmp 4(r1), addr_reg2 */
684
    tcg_out_modrm_offset(s, OPC_CMP_GvEv, addr_reg2, r1, 4);
B
bellard 已提交
685 686

    /* je label1 */
R
Richard Henderson 已提交
687
    tcg_out8(s, OPC_JCC_short + JCC_JE);
B
bellard 已提交
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
    label1_ptr = s->code_ptr;
    s->code_ptr++;
    
    /* label3: */
    *label3_ptr = s->code_ptr - label3_ptr - 1;
#endif

    /* XXX: move that code at the end of the TB */
#if TARGET_LONG_BITS == 32
    tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_EDX, mem_index);
#else
    tcg_out_mov(s, TCG_REG_EDX, addr_reg2);
    tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_ECX, mem_index);
#endif
    tcg_out8(s, 0xe8);
    tcg_out32(s, (tcg_target_long)qemu_ld_helpers[s_bits] - 
              (tcg_target_long)s->code_ptr - 4);

    switch(opc) {
    case 0 | 4:
708
        tcg_out_ext8s(s, data_reg, TCG_REG_EAX);
B
bellard 已提交
709 710
        break;
    case 1 | 4:
711
        tcg_out_ext16s(s, data_reg, TCG_REG_EAX);
B
bellard 已提交
712 713
        break;
    case 0:
714
        tcg_out_ext8u(s, data_reg, TCG_REG_EAX);
715
        break;
B
bellard 已提交
716
    case 1:
717
        tcg_out_ext16u(s, data_reg, TCG_REG_EAX);
718
        break;
B
bellard 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
    case 2:
    default:
        tcg_out_mov(s, data_reg, TCG_REG_EAX);
        break;
    case 3:
        if (data_reg == TCG_REG_EDX) {
            tcg_out_opc(s, 0x90 + TCG_REG_EDX); /* xchg %edx, %eax */
            tcg_out_mov(s, data_reg2, TCG_REG_EAX);
        } else {
            tcg_out_mov(s, data_reg, TCG_REG_EAX);
            tcg_out_mov(s, data_reg2, TCG_REG_EDX);
        }
        break;
    }

    /* jmp label2 */
R
Richard Henderson 已提交
735
    tcg_out8(s, OPC_JMP_short);
B
bellard 已提交
736 737 738 739 740 741 742
    label2_ptr = s->code_ptr;
    s->code_ptr++;
    
    /* label1: */
    *label1_ptr = s->code_ptr - label1_ptr - 1;

    /* add x(r1), r0 */
743 744
    tcg_out_modrm_offset(s, OPC_ADD_GvEv, r0, r1,
                         offsetof(CPUTLBEntry, addend) -
B
bellard 已提交
745 746 747 748 749 750 751 752 753 754 755 756 757
                         offsetof(CPUTLBEntry, addr_read));
#else
    r0 = addr_reg;
#endif

#ifdef TARGET_WORDS_BIGENDIAN
    bswap = 1;
#else
    bswap = 0;
#endif
    switch(opc) {
    case 0:
        /* movzbl */
758
        tcg_out_modrm_offset(s, OPC_MOVZBL, data_reg, r0, GUEST_BASE);
B
bellard 已提交
759 760 761
        break;
    case 0 | 4:
        /* movsbl */
762
        tcg_out_modrm_offset(s, OPC_MOVSBL, data_reg, r0, GUEST_BASE);
B
bellard 已提交
763 764 765
        break;
    case 1:
        /* movzwl */
766
        tcg_out_modrm_offset(s, OPC_MOVZWL, data_reg, r0, GUEST_BASE);
B
bellard 已提交
767
        if (bswap) {
768
            tcg_out_rolw_8(s, data_reg);
B
bellard 已提交
769 770 771 772
        }
        break;
    case 1 | 4:
        /* movswl */
773
        tcg_out_modrm_offset(s, OPC_MOVSWL, data_reg, r0, GUEST_BASE);
B
bellard 已提交
774
        if (bswap) {
775
            tcg_out_rolw_8(s, data_reg);
B
bellard 已提交
776 777

            /* movswl data_reg, data_reg */
778
            tcg_out_modrm(s, OPC_MOVSWL, data_reg, data_reg);
B
bellard 已提交
779 780 781
        }
        break;
    case 2:
782
        tcg_out_ld(s, TCG_TYPE_I32, data_reg, r0, GUEST_BASE);
B
bellard 已提交
783
        if (bswap) {
784
            tcg_out_bswap32(s, data_reg);
B
bellard 已提交
785 786 787
        }
        break;
    case 3:
788 789 790 791
        if (bswap) {
            int t = data_reg;
            data_reg = data_reg2;
            data_reg2 = t;
B
bellard 已提交
792
        }
793
        if (r0 != data_reg) {
794 795
            tcg_out_ld(s, TCG_TYPE_I32, data_reg, r0, GUEST_BASE);
            tcg_out_ld(s, TCG_TYPE_I32, data_reg2, r0, GUEST_BASE + 4);
B
bellard 已提交
796
        } else {
797 798 799 800
            tcg_out_ld(s, TCG_TYPE_I32, data_reg2, r0, GUEST_BASE + 4);
            tcg_out_ld(s, TCG_TYPE_I32, data_reg, r0, GUEST_BASE);
        }
        if (bswap) {
801 802
            tcg_out_bswap32(s, data_reg);
            tcg_out_bswap32(s, data_reg2);
B
bellard 已提交
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 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
        }
        break;
    default:
        tcg_abort();
    }

#if defined(CONFIG_SOFTMMU)
    /* label2: */
    *label2_ptr = s->code_ptr - label2_ptr - 1;
#endif
}


static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args,
                            int opc)
{
    int addr_reg, data_reg, data_reg2, r0, r1, mem_index, s_bits, bswap;
#if defined(CONFIG_SOFTMMU)
    uint8_t *label1_ptr, *label2_ptr;
#endif
#if TARGET_LONG_BITS == 64
#if defined(CONFIG_SOFTMMU)
    uint8_t *label3_ptr;
#endif
    int addr_reg2;
#endif

    data_reg = *args++;
    if (opc == 3)
        data_reg2 = *args++;
    else
        data_reg2 = 0;
    addr_reg = *args++;
#if TARGET_LONG_BITS == 64
    addr_reg2 = *args++;
#endif
    mem_index = *args;

    s_bits = opc;

    r0 = TCG_REG_EAX;
    r1 = TCG_REG_EDX;

#if defined(CONFIG_SOFTMMU)
    tcg_out_mov(s, r1, addr_reg); 
    tcg_out_mov(s, r0, addr_reg); 
 
850 851
    tcg_out_shifti(s, SHIFT_SHR, r1, TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS);

852 853
    tgen_arithi(s, ARITH_AND, r0, TARGET_PAGE_MASK | ((1 << s_bits) - 1), 0);
    tgen_arithi(s, ARITH_AND, r1, (CPU_TLB_SIZE - 1) << CPU_TLB_ENTRY_BITS, 0);
B
bellard 已提交
854 855 856 857 858 859 860

    tcg_out_opc(s, 0x8d); /* lea offset(r1, %ebp), r1 */
    tcg_out8(s, 0x80 | (r1 << 3) | 0x04);
    tcg_out8(s, (5 << 3) | r1);
    tcg_out32(s, offsetof(CPUState, tlb_table[mem_index][0].addr_write));

    /* cmp 0(r1), r0 */
861
    tcg_out_modrm_offset(s, OPC_CMP_GvEv, r0, r1, 0);
B
bellard 已提交
862 863 864 865 866
    
    tcg_out_mov(s, r0, addr_reg);
    
#if TARGET_LONG_BITS == 32
    /* je label1 */
R
Richard Henderson 已提交
867
    tcg_out8(s, OPC_JCC_short + JCC_JE);
B
bellard 已提交
868 869 870 871
    label1_ptr = s->code_ptr;
    s->code_ptr++;
#else
    /* jne label3 */
R
Richard Henderson 已提交
872
    tcg_out8(s, OPC_JCC_short + JCC_JNE);
B
bellard 已提交
873 874 875 876
    label3_ptr = s->code_ptr;
    s->code_ptr++;
    
    /* cmp 4(r1), addr_reg2 */
877
    tcg_out_modrm_offset(s, OPC_CMP_GvEv, addr_reg2, r1, 4);
B
bellard 已提交
878 879

    /* je label1 */
R
Richard Henderson 已提交
880
    tcg_out8(s, OPC_JCC_short + JCC_JE);
B
bellard 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
    label1_ptr = s->code_ptr;
    s->code_ptr++;
    
    /* label3: */
    *label3_ptr = s->code_ptr - label3_ptr - 1;
#endif

    /* XXX: move that code at the end of the TB */
#if TARGET_LONG_BITS == 32
    if (opc == 3) {
        tcg_out_mov(s, TCG_REG_EDX, data_reg);
        tcg_out_mov(s, TCG_REG_ECX, data_reg2);
        tcg_out8(s, 0x6a); /* push Ib */
        tcg_out8(s, mem_index);
        tcg_out8(s, 0xe8);
        tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] - 
                  (tcg_target_long)s->code_ptr - 4);
        tcg_out_addi(s, TCG_REG_ESP, 4);
    } else {
        switch(opc) {
        case 0:
902
            tcg_out_ext8u(s, TCG_REG_EDX, data_reg);
B
bellard 已提交
903 904
            break;
        case 1:
905
            tcg_out_ext16u(s, TCG_REG_EDX, data_reg);
B
bellard 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
            break;
        case 2:
            tcg_out_mov(s, TCG_REG_EDX, data_reg);
            break;
        }
        tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_ECX, mem_index);
        tcg_out8(s, 0xe8);
        tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] - 
                  (tcg_target_long)s->code_ptr - 4);
    }
#else
    if (opc == 3) {
        tcg_out_mov(s, TCG_REG_EDX, addr_reg2);
        tcg_out8(s, 0x6a); /* push Ib */
        tcg_out8(s, mem_index);
        tcg_out_opc(s, 0x50 + data_reg2); /* push */
        tcg_out_opc(s, 0x50 + data_reg); /* push */
        tcg_out8(s, 0xe8);
        tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] - 
                  (tcg_target_long)s->code_ptr - 4);
        tcg_out_addi(s, TCG_REG_ESP, 12);
    } else {
        tcg_out_mov(s, TCG_REG_EDX, addr_reg2);
        switch(opc) {
        case 0:
931
            tcg_out_ext8u(s, TCG_REG_ECX, data_reg);
B
bellard 已提交
932 933
            break;
        case 1:
934
            tcg_out_ext16u(s, TCG_REG_ECX, data_reg);
B
bellard 已提交
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949
            break;
        case 2:
            tcg_out_mov(s, TCG_REG_ECX, data_reg);
            break;
        }
        tcg_out8(s, 0x6a); /* push Ib */
        tcg_out8(s, mem_index);
        tcg_out8(s, 0xe8);
        tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] - 
                  (tcg_target_long)s->code_ptr - 4);
        tcg_out_addi(s, TCG_REG_ESP, 4);
    }
#endif
    
    /* jmp label2 */
R
Richard Henderson 已提交
950
    tcg_out8(s, OPC_JMP_short);
B
bellard 已提交
951 952 953 954 955 956 957
    label2_ptr = s->code_ptr;
    s->code_ptr++;
    
    /* label1: */
    *label1_ptr = s->code_ptr - label1_ptr - 1;

    /* add x(r1), r0 */
958 959
    tcg_out_modrm_offset(s, OPC_ADD_GvEv, r0, r1,
                         offsetof(CPUTLBEntry, addend) -
B
bellard 已提交
960 961 962 963 964 965 966 967 968 969 970 971
                         offsetof(CPUTLBEntry, addr_write));
#else
    r0 = addr_reg;
#endif

#ifdef TARGET_WORDS_BIGENDIAN
    bswap = 1;
#else
    bswap = 0;
#endif
    switch(opc) {
    case 0:
972
        tcg_out_modrm_offset(s, OPC_MOVB_EvGv, data_reg, r0, GUEST_BASE);
B
bellard 已提交
973 974 975 976
        break;
    case 1:
        if (bswap) {
            tcg_out_mov(s, r1, data_reg);
977
            tcg_out_rolw_8(s, r1);
B
bellard 已提交
978 979 980 981
            data_reg = r1;
        }
        /* movw */
        tcg_out8(s, 0x66);
982
        tcg_out_modrm_offset(s, OPC_MOVL_EvGv, data_reg, r0, GUEST_BASE);
B
bellard 已提交
983 984 985 986
        break;
    case 2:
        if (bswap) {
            tcg_out_mov(s, r1, data_reg);
987
            tcg_out_bswap32(s, r1);
B
bellard 已提交
988 989
            data_reg = r1;
        }
990
        tcg_out_st(s, TCG_TYPE_I32, data_reg, r0, GUEST_BASE);
B
bellard 已提交
991 992 993 994
        break;
    case 3:
        if (bswap) {
            tcg_out_mov(s, r1, data_reg2);
995
            tcg_out_bswap32(s, r1);
996
            tcg_out_st(s, TCG_TYPE_I32, r1, r0, GUEST_BASE);
B
bellard 已提交
997
            tcg_out_mov(s, r1, data_reg);
998
            tcg_out_bswap32(s, r1);
999
            tcg_out_st(s, TCG_TYPE_I32, r1, r0, GUEST_BASE + 4);
B
bellard 已提交
1000
        } else {
1001 1002
            tcg_out_st(s, TCG_TYPE_I32, data_reg, r0, GUEST_BASE);
            tcg_out_st(s, TCG_TYPE_I32, data_reg2, r0, GUEST_BASE + 4);
B
bellard 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
        }
        break;
    default:
        tcg_abort();
    }

#if defined(CONFIG_SOFTMMU)
    /* label2: */
    *label2_ptr = s->code_ptr - label2_ptr - 1;
#endif
}

1015
static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
B
bellard 已提交
1016 1017 1018 1019 1020 1021 1022
                              const TCGArg *args, const int *const_args)
{
    int c;
    
    switch(opc) {
    case INDEX_op_exit_tb:
        tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_EAX, args[0]);
R
Richard Henderson 已提交
1023
        tcg_out8(s, OPC_JMP_long); /* jmp tb_ret_addr */
1024
        tcg_out32(s, tb_ret_addr - s->code_ptr - 4);
B
bellard 已提交
1025 1026 1027 1028
        break;
    case INDEX_op_goto_tb:
        if (s->tb_jmp_offset) {
            /* direct jump method */
R
Richard Henderson 已提交
1029
            tcg_out8(s, OPC_JMP_long); /* jmp im */
B
bellard 已提交
1030 1031 1032 1033
            s->tb_jmp_offset[args[0]] = s->code_ptr - s->code_buf;
            tcg_out32(s, 0);
        } else {
            /* indirect jump method */
R
Richard Henderson 已提交
1034
            tcg_out_modrm_offset(s, 0xff, EXT_JMPN_Ev, -1,
B
bellard 已提交
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
                                 (tcg_target_long)(s->tb_next + args[0]));
        }
        s->tb_next_offset[args[0]] = s->code_ptr - s->code_buf;
        break;
    case INDEX_op_call:
        if (const_args[0]) {
            tcg_out8(s, 0xe8);
            tcg_out32(s, args[0] - (tcg_target_long)s->code_ptr - 4);
        } else {
            tcg_out_modrm(s, 0xff, 2, args[0]);
        }
        break;
    case INDEX_op_jmp:
        if (const_args[0]) {
R
Richard Henderson 已提交
1049
            tcg_out8(s, OPC_JMP_long);
B
bellard 已提交
1050 1051
            tcg_out32(s, args[0] - (tcg_target_long)s->code_ptr - 4);
        } else {
R
Richard Henderson 已提交
1052 1053
            /* jmp *reg */
            tcg_out_modrm(s, 0xff, EXT_JMPN_Ev, args[0]);
B
bellard 已提交
1054 1055 1056
        }
        break;
    case INDEX_op_br:
1057
        tcg_out_jxx(s, JCC_JMP, args[0], 0);
B
bellard 已提交
1058 1059 1060 1061 1062 1063
        break;
    case INDEX_op_movi_i32:
        tcg_out_movi(s, TCG_TYPE_I32, args[0], args[1]);
        break;
    case INDEX_op_ld8u_i32:
        /* movzbl */
1064
        tcg_out_modrm_offset(s, OPC_MOVZBL, args[0], args[1], args[2]);
B
bellard 已提交
1065 1066 1067
        break;
    case INDEX_op_ld8s_i32:
        /* movsbl */
1068
        tcg_out_modrm_offset(s, OPC_MOVSBL, args[0], args[1], args[2]);
B
bellard 已提交
1069 1070 1071
        break;
    case INDEX_op_ld16u_i32:
        /* movzwl */
1072
        tcg_out_modrm_offset(s, OPC_MOVZWL, args[0], args[1], args[2]);
B
bellard 已提交
1073 1074 1075
        break;
    case INDEX_op_ld16s_i32:
        /* movswl */
1076
        tcg_out_modrm_offset(s, OPC_MOVSWL, args[0], args[1], args[2]);
B
bellard 已提交
1077 1078
        break;
    case INDEX_op_ld_i32:
1079
        tcg_out_ld(s, TCG_TYPE_I32, args[0], args[1], args[2]);
B
bellard 已提交
1080 1081 1082
        break;
    case INDEX_op_st8_i32:
        /* movb */
1083
        tcg_out_modrm_offset(s, OPC_MOVB_EvGv, args[0], args[1], args[2]);
B
bellard 已提交
1084 1085 1086 1087
        break;
    case INDEX_op_st16_i32:
        /* movw */
        tcg_out8(s, 0x66);
1088
        tcg_out_modrm_offset(s, OPC_MOVL_EvGv, args[0], args[1], args[2]);
B
bellard 已提交
1089 1090
        break;
    case INDEX_op_st_i32:
1091
        tcg_out_st(s, TCG_TYPE_I32, args[0], args[1], args[2]);
B
bellard 已提交
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
        break;
    case INDEX_op_sub_i32:
        c = ARITH_SUB;
        goto gen_arith;
    case INDEX_op_and_i32:
        c = ARITH_AND;
        goto gen_arith;
    case INDEX_op_or_i32:
        c = ARITH_OR;
        goto gen_arith;
    case INDEX_op_xor_i32:
        c = ARITH_XOR;
        goto gen_arith;
    case INDEX_op_add_i32:
        c = ARITH_ADD;
    gen_arith:
        if (const_args[2]) {
1109
            tgen_arithi(s, c, args[0], args[2], 0);
B
bellard 已提交
1110
        } else {
1111
            tgen_arithr(s, c, args[0], args[2]);
B
bellard 已提交
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
        }
        break;
    case INDEX_op_mul_i32:
        if (const_args[2]) {
            int32_t val;
            val = args[2];
            if (val == (int8_t)val) {
                tcg_out_modrm(s, 0x6b, args[0], args[0]);
                tcg_out8(s, val);
            } else {
                tcg_out_modrm(s, 0x69, args[0], args[0]);
                tcg_out32(s, val);
            }
        } else {
            tcg_out_modrm(s, 0xaf | P_EXT, args[0], args[2]);
        }
        break;
    case INDEX_op_mulu2_i32:
        tcg_out_modrm(s, 0xf7, 4, args[3]);
        break;
    case INDEX_op_div2_i32:
        tcg_out_modrm(s, 0xf7, 7, args[4]);
        break;
    case INDEX_op_divu2_i32:
        tcg_out_modrm(s, 0xf7, 6, args[4]);
        break;
    case INDEX_op_shl_i32:
        c = SHIFT_SHL;
    gen_shift32:
        if (const_args[2]) {
1142
            tcg_out_shifti(s, c, args[0], args[2]);
B
bellard 已提交
1143
        } else {
1144
            tcg_out_modrm(s, OPC_SHIFT_cl, c, args[0]);
B
bellard 已提交
1145 1146 1147 1148 1149 1150 1151 1152
        }
        break;
    case INDEX_op_shr_i32:
        c = SHIFT_SHR;
        goto gen_shift32;
    case INDEX_op_sar_i32:
        c = SHIFT_SAR;
        goto gen_shift32;
1153 1154 1155 1156 1157 1158 1159
    case INDEX_op_rotl_i32:
        c = SHIFT_ROL;
        goto gen_shift32;
    case INDEX_op_rotr_i32:
        c = SHIFT_ROR;
        goto gen_shift32;

B
bellard 已提交
1160
    case INDEX_op_add2_i32:
1161
        if (const_args[4]) {
1162
            tgen_arithi(s, ARITH_ADD, args[0], args[4], 1);
1163 1164 1165 1166
        } else {
            tgen_arithr(s, ARITH_ADD, args[0], args[4]);
        }
        if (const_args[5]) {
1167
            tgen_arithi(s, ARITH_ADC, args[1], args[5], 1);
1168 1169 1170
        } else {
            tgen_arithr(s, ARITH_ADC, args[1], args[5]);
        }
B
bellard 已提交
1171 1172
        break;
    case INDEX_op_sub2_i32:
1173
        if (const_args[4]) {
1174
            tgen_arithi(s, ARITH_SUB, args[0], args[4], 1);
1175 1176 1177 1178
        } else {
            tgen_arithr(s, ARITH_SUB, args[0], args[4]);
        }
        if (const_args[5]) {
1179
            tgen_arithi(s, ARITH_SBB, args[1], args[5], 1);
1180 1181 1182
        } else {
            tgen_arithr(s, ARITH_SBB, args[1], args[5]);
        }
B
bellard 已提交
1183 1184
        break;
    case INDEX_op_brcond_i32:
1185 1186
        tcg_out_brcond(s, args[2], args[0], args[1], const_args[1],
                       args[3], 0);
B
bellard 已提交
1187 1188
        break;
    case INDEX_op_brcond2_i32:
1189
        tcg_out_brcond2(s, args, const_args, 0);
B
bellard 已提交
1190 1191
        break;

A
aurel32 已提交
1192
    case INDEX_op_bswap16_i32:
1193
        tcg_out_rolw_8(s, args[0]);
A
aurel32 已提交
1194
        break;
A
aurel32 已提交
1195
    case INDEX_op_bswap32_i32:
1196
        tcg_out_bswap32(s, args[0]);
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
        break;

    case INDEX_op_neg_i32:
        tcg_out_modrm(s, 0xf7, 3, args[0]);
        break;

    case INDEX_op_not_i32:
        tcg_out_modrm(s, 0xf7, 2, args[0]);
        break;

    case INDEX_op_ext8s_i32:
1208
        tcg_out_ext8s(s, args[0], args[1]);
1209 1210
        break;
    case INDEX_op_ext16s_i32:
1211
        tcg_out_ext16s(s, args[0], args[1]);
1212
        break;
1213
    case INDEX_op_ext8u_i32:
1214
        tcg_out_ext8u(s, args[0], args[1]);
1215 1216
        break;
    case INDEX_op_ext16u_i32:
1217
        tcg_out_ext16u(s, args[0], args[1]);
1218
        break;
1219

R
Richard Henderson 已提交
1220 1221 1222 1223 1224 1225 1226
    case INDEX_op_setcond_i32:
        tcg_out_setcond(s, args[3], args[0], args[1], args[2], const_args[2]);
        break;
    case INDEX_op_setcond2_i32:
        tcg_out_setcond2(s, args, const_args);
        break;

B
bellard 已提交
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
    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;
1239
    case INDEX_op_qemu_ld32:
B
bellard 已提交
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
        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 x86_op_defs[] = {
    { INDEX_op_exit_tb, { } },
    { INDEX_op_goto_tb, { } },
    { INDEX_op_call, { "ri" } },
    { INDEX_op_jmp, { "ri" } },
    { 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, { "q", "r" } },
    { INDEX_op_st16_i32, { "r", "r" } },
    { INDEX_op_st_i32, { "r", "r" } },

    { INDEX_op_add_i32, { "r", "0", "ri" } },
    { INDEX_op_sub_i32, { "r", "0", "ri" } },
    { INDEX_op_mul_i32, { "r", "0", "ri" } },
    { INDEX_op_mulu2_i32, { "a", "d", "a", "r" } },
    { INDEX_op_div2_i32, { "a", "d", "0", "1", "r" } },
    { INDEX_op_divu2_i32, { "a", "d", "0", "1", "r" } },
    { INDEX_op_and_i32, { "r", "0", "ri" } },
    { INDEX_op_or_i32, { "r", "0", "ri" } },
    { INDEX_op_xor_i32, { "r", "0", "ri" } },

    { INDEX_op_shl_i32, { "r", "0", "ci" } },
    { INDEX_op_shr_i32, { "r", "0", "ci" } },
    { INDEX_op_sar_i32, { "r", "0", "ci" } },
1294 1295
    { INDEX_op_rotl_i32, { "r", "0", "ci" } },
    { INDEX_op_rotr_i32, { "r", "0", "ci" } },
B
bellard 已提交
1296 1297 1298 1299 1300 1301 1302

    { INDEX_op_brcond_i32, { "r", "ri" } },

    { INDEX_op_add2_i32, { "r", "r", "0", "1", "ri", "ri" } },
    { INDEX_op_sub2_i32, { "r", "r", "0", "1", "ri", "ri" } },
    { INDEX_op_brcond2_i32, { "r", "r", "ri", "ri" } },

A
aurel32 已提交
1303
    { INDEX_op_bswap16_i32, { "r", "0" } },
A
aurel32 已提交
1304
    { INDEX_op_bswap32_i32, { "r", "0" } },
1305 1306 1307 1308 1309 1310 1311

    { INDEX_op_neg_i32, { "r", "0" } },

    { INDEX_op_not_i32, { "r", "0" } },

    { INDEX_op_ext8s_i32, { "r", "q" } },
    { INDEX_op_ext16s_i32, { "r", "r" } },
1312 1313
    { INDEX_op_ext8u_i32, { "r", "q" } },
    { INDEX_op_ext16u_i32, { "r", "r" } },
1314

R
Richard Henderson 已提交
1315 1316 1317
    { INDEX_op_setcond_i32, { "q", "r", "ri" } },
    { INDEX_op_setcond2_i32, { "r", "r", "r", "ri", "ri" } },

B
bellard 已提交
1318 1319 1320 1321 1322
#if TARGET_LONG_BITS == 32
    { INDEX_op_qemu_ld8u, { "r", "L" } },
    { INDEX_op_qemu_ld8s, { "r", "L" } },
    { INDEX_op_qemu_ld16u, { "r", "L" } },
    { INDEX_op_qemu_ld16s, { "r", "L" } },
1323
    { INDEX_op_qemu_ld32, { "r", "L" } },
B
bellard 已提交
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
    { INDEX_op_qemu_ld64, { "r", "r", "L" } },

    { INDEX_op_qemu_st8, { "cb", "L" } },
    { INDEX_op_qemu_st16, { "L", "L" } },
    { INDEX_op_qemu_st32, { "L", "L" } },
    { INDEX_op_qemu_st64, { "L", "L", "L" } },
#else
    { INDEX_op_qemu_ld8u, { "r", "L", "L" } },
    { INDEX_op_qemu_ld8s, { "r", "L", "L" } },
    { INDEX_op_qemu_ld16u, { "r", "L", "L" } },
    { INDEX_op_qemu_ld16s, { "r", "L", "L" } },
1335
    { INDEX_op_qemu_ld32, { "r", "L", "L" } },
B
bellard 已提交
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
    { INDEX_op_qemu_ld64, { "r", "r", "L", "L" } },

    { INDEX_op_qemu_st8, { "cb", "L", "L" } },
    { INDEX_op_qemu_st16, { "L", "L", "L" } },
    { INDEX_op_qemu_st32, { "L", "L", "L" } },
    { INDEX_op_qemu_st64, { "L", "L", "L", "L" } },
#endif
    { -1 },
};

1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381
static int tcg_target_callee_save_regs[] = {
    /*    TCG_REG_EBP, */ /* currently used for the global env, so no
                             need to save */
    TCG_REG_EBX,
    TCG_REG_ESI,
    TCG_REG_EDI,
};

static inline void tcg_out_push(TCGContext *s, int reg)
{
    tcg_out_opc(s, 0x50 + reg);
}

static inline void tcg_out_pop(TCGContext *s, int reg)
{
    tcg_out_opc(s, 0x58 + reg);
}

/* Generate global QEMU prologue and epilogue code */
void tcg_target_qemu_prologue(TCGContext *s)
{
    int i, frame_size, push_size, stack_addend;
    
    /* TB prologue */
    /* save all callee saved registers */
    for(i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); i++) {
        tcg_out_push(s, tcg_target_callee_save_regs[i]);
    }
    /* reserve some stack space */
    push_size = 4 + ARRAY_SIZE(tcg_target_callee_save_regs) * 4;
    frame_size = push_size + TCG_STATIC_CALL_ARGS_SIZE;
    frame_size = (frame_size + TCG_TARGET_STACK_ALIGN - 1) & 
        ~(TCG_TARGET_STACK_ALIGN - 1);
    stack_addend = frame_size - push_size;
    tcg_out_addi(s, TCG_REG_ESP, -stack_addend);

R
Richard Henderson 已提交
1382
    tcg_out_modrm(s, 0xff, EXT_JMPN_Ev, TCG_REG_EAX); /* jmp *%eax */
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392
    
    /* TB epilogue */
    tb_ret_addr = s->code_ptr;
    tcg_out_addi(s, TCG_REG_ESP, stack_addend);
    for(i = ARRAY_SIZE(tcg_target_callee_save_regs) - 1; i >= 0; i--) {
        tcg_out_pop(s, tcg_target_callee_save_regs[i]);
    }
    tcg_out8(s, 0xc3); /* ret */
}

B
bellard 已提交
1393 1394
void tcg_target_init(TCGContext *s)
{
P
Paul Brook 已提交
1395
#if !defined(CONFIG_USER_ONLY)
B
bellard 已提交
1396 1397 1398
    /* fail safe */
    if ((1 << CPU_TLB_ENTRY_BITS) != sizeof(CPUTLBEntry))
        tcg_abort();
P
Paul Brook 已提交
1399
#endif
B
bellard 已提交
1400 1401

    tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xff);
1402 1403 1404 1405 1406 1407

    tcg_regset_clear(tcg_target_call_clobber_regs);
    tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_EAX);
    tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_EDX);
    tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_ECX);

B
bellard 已提交
1408 1409 1410 1411 1412
    tcg_regset_clear(s->reserved_regs);
    tcg_regset_set_reg(s->reserved_regs, TCG_REG_ESP);

    tcg_add_target_add_op_defs(x86_op_defs);
}