translate-i386.c 127.2 KB
Newer Older
B
bellard 已提交
1 2 3 4 5
/*
 *  i386 translation
 * 
 *  Copyright (c) 2003 Fabrice Bellard
 *
B
bellard 已提交
6 7 8 9
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
B
bellard 已提交
10
 *
B
bellard 已提交
11 12 13 14
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
B
bellard 已提交
15
 *
B
bellard 已提交
16 17 18
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
B
bellard 已提交
19
 */
B
bellard 已提交
20 21 22 23 24
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
B
bellard 已提交
25
#include <signal.h>
B
bellard 已提交
26
#include <assert.h>
27
#include <sys/mman.h>
B
bellard 已提交
28

B
bellard 已提交
29
#include "cpu-i386.h"
B
bellard 已提交
30
#include "exec.h"
B
bellard 已提交
31
#include "disas.h"
B
bellard 已提交
32

B
bellard 已提交
33
/* XXX: move that elsewhere */
B
bellard 已提交
34 35
static uint16_t *gen_opc_ptr;
static uint32_t *gen_opparam_ptr;
B
bellard 已提交
36

37 38 39 40 41
#define PREFIX_REPZ   0x01
#define PREFIX_REPNZ  0x02
#define PREFIX_LOCK   0x04
#define PREFIX_DATA   0x08
#define PREFIX_ADR    0x10
B
bellard 已提交
42 43 44

typedef struct DisasContext {
    /* current insn context */
45
    int override; /* -1 if no override */
B
bellard 已提交
46 47
    int prefix;
    int aflag, dflag;
B
bellard 已提交
48
    uint8_t *pc; /* pc = eip + cs_base */
B
bellard 已提交
49 50 51
    int is_jmp; /* 1 = means jump (stop translation), 2 means CPU
                   static state change (stop translation) */
    /* current block context */
B
bellard 已提交
52
    uint8_t *cs_base; /* base of CS segment */
53
    int pe;     /* protected mode */
B
bellard 已提交
54
    int code32; /* 32 bit code segment */
B
bellard 已提交
55
    int ss32;   /* 32 bit stack segment */
B
bellard 已提交
56 57 58
    int cc_op;  /* current CC operation */
    int addseg; /* non zero if either DS/ES/SS have a non zero base */
    int f_st;   /* currently unused */
59
    int vm86;   /* vm86 mode */
60 61
    int cpl;
    int iopl;
62
    int tf;     /* TF cpu flag */
63
    int mem_index; /* select memory access functions */
B
bellard 已提交
64
    struct TranslationBlock *tb;
65
    int popl_esp_hack; /* for correct popl with esp base handling */
B
bellard 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
} DisasContext;

/* i386 arith/logic operations */
enum {
    OP_ADDL, 
    OP_ORL, 
    OP_ADCL, 
    OP_SBBL,
    OP_ANDL, 
    OP_SUBL, 
    OP_XORL, 
    OP_CMPL,
};

/* i386 shift ops */
enum {
    OP_ROL, 
    OP_ROR, 
    OP_RCL, 
    OP_RCR, 
    OP_SHL, 
    OP_SHR, 
    OP_SHL1, /* undocumented */
    OP_SAR = 7,
};

B
bellard 已提交
92
enum {
B
bellard 已提交
93
#define DEF(s, n, copy_size) INDEX_op_ ## s,
B
bellard 已提交
94 95 96 97 98
#include "opc-i386.h"
#undef DEF
    NB_OPS,
};

B
bellard 已提交
99
#include "gen-op-i386.h"
B
bellard 已提交
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

/* operand size */
enum {
    OT_BYTE = 0,
    OT_WORD,
    OT_LONG, 
    OT_QUAD,
};

enum {
    /* I386 int registers */
    OR_EAX,   /* MUST be even numbered */
    OR_ECX,
    OR_EDX,
    OR_EBX,
    OR_ESP,
    OR_EBP,
    OR_ESI,
    OR_EDI,
    OR_TMP0,    /* temporary operand register */
    OR_TMP1,
    OR_A0, /* temporary register used when doing address evaluation */
    OR_ZERO, /* fixed zero register */
    NB_OREGS,
};

typedef void (GenOpFunc)(void);
typedef void (GenOpFunc1)(long);
typedef void (GenOpFunc2)(long, long);
B
bellard 已提交
129
typedef void (GenOpFunc3)(long, long, long);
B
bellard 已提交
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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
                    
static GenOpFunc *gen_op_mov_reg_T0[3][8] = {
    [OT_BYTE] = {
        gen_op_movb_EAX_T0,
        gen_op_movb_ECX_T0,
        gen_op_movb_EDX_T0,
        gen_op_movb_EBX_T0,
        gen_op_movh_EAX_T0,
        gen_op_movh_ECX_T0,
        gen_op_movh_EDX_T0,
        gen_op_movh_EBX_T0,
    },
    [OT_WORD] = {
        gen_op_movw_EAX_T0,
        gen_op_movw_ECX_T0,
        gen_op_movw_EDX_T0,
        gen_op_movw_EBX_T0,
        gen_op_movw_ESP_T0,
        gen_op_movw_EBP_T0,
        gen_op_movw_ESI_T0,
        gen_op_movw_EDI_T0,
    },
    [OT_LONG] = {
        gen_op_movl_EAX_T0,
        gen_op_movl_ECX_T0,
        gen_op_movl_EDX_T0,
        gen_op_movl_EBX_T0,
        gen_op_movl_ESP_T0,
        gen_op_movl_EBP_T0,
        gen_op_movl_ESI_T0,
        gen_op_movl_EDI_T0,
    },
};

static GenOpFunc *gen_op_mov_reg_T1[3][8] = {
    [OT_BYTE] = {
        gen_op_movb_EAX_T1,
        gen_op_movb_ECX_T1,
        gen_op_movb_EDX_T1,
        gen_op_movb_EBX_T1,
        gen_op_movh_EAX_T1,
        gen_op_movh_ECX_T1,
        gen_op_movh_EDX_T1,
        gen_op_movh_EBX_T1,
    },
    [OT_WORD] = {
        gen_op_movw_EAX_T1,
        gen_op_movw_ECX_T1,
        gen_op_movw_EDX_T1,
        gen_op_movw_EBX_T1,
        gen_op_movw_ESP_T1,
        gen_op_movw_EBP_T1,
        gen_op_movw_ESI_T1,
        gen_op_movw_EDI_T1,
    },
    [OT_LONG] = {
        gen_op_movl_EAX_T1,
        gen_op_movl_ECX_T1,
        gen_op_movl_EDX_T1,
        gen_op_movl_EBX_T1,
        gen_op_movl_ESP_T1,
        gen_op_movl_EBP_T1,
        gen_op_movl_ESI_T1,
        gen_op_movl_EDI_T1,
    },
};

static GenOpFunc *gen_op_mov_reg_A0[2][8] = {
    [0] = {
        gen_op_movw_EAX_A0,
        gen_op_movw_ECX_A0,
        gen_op_movw_EDX_A0,
        gen_op_movw_EBX_A0,
        gen_op_movw_ESP_A0,
        gen_op_movw_EBP_A0,
        gen_op_movw_ESI_A0,
        gen_op_movw_EDI_A0,
    },
    [1] = {
        gen_op_movl_EAX_A0,
        gen_op_movl_ECX_A0,
        gen_op_movl_EDX_A0,
        gen_op_movl_EBX_A0,
        gen_op_movl_ESP_A0,
        gen_op_movl_EBP_A0,
        gen_op_movl_ESI_A0,
        gen_op_movl_EDI_A0,
    },
};

static GenOpFunc *gen_op_mov_TN_reg[3][2][8] = 
{
    [OT_BYTE] = {
        {
            gen_op_movl_T0_EAX,
            gen_op_movl_T0_ECX,
            gen_op_movl_T0_EDX,
            gen_op_movl_T0_EBX,
            gen_op_movh_T0_EAX,
            gen_op_movh_T0_ECX,
            gen_op_movh_T0_EDX,
            gen_op_movh_T0_EBX,
        },
        {
            gen_op_movl_T1_EAX,
            gen_op_movl_T1_ECX,
            gen_op_movl_T1_EDX,
            gen_op_movl_T1_EBX,
            gen_op_movh_T1_EAX,
            gen_op_movh_T1_ECX,
            gen_op_movh_T1_EDX,
            gen_op_movh_T1_EBX,
        },
    },
    [OT_WORD] = {
        {
            gen_op_movl_T0_EAX,
            gen_op_movl_T0_ECX,
            gen_op_movl_T0_EDX,
            gen_op_movl_T0_EBX,
            gen_op_movl_T0_ESP,
            gen_op_movl_T0_EBP,
            gen_op_movl_T0_ESI,
            gen_op_movl_T0_EDI,
        },
        {
            gen_op_movl_T1_EAX,
            gen_op_movl_T1_ECX,
            gen_op_movl_T1_EDX,
            gen_op_movl_T1_EBX,
            gen_op_movl_T1_ESP,
            gen_op_movl_T1_EBP,
            gen_op_movl_T1_ESI,
            gen_op_movl_T1_EDI,
        },
    },
    [OT_LONG] = {
        {
            gen_op_movl_T0_EAX,
            gen_op_movl_T0_ECX,
            gen_op_movl_T0_EDX,
            gen_op_movl_T0_EBX,
            gen_op_movl_T0_ESP,
            gen_op_movl_T0_EBP,
            gen_op_movl_T0_ESI,
            gen_op_movl_T0_EDI,
        },
        {
            gen_op_movl_T1_EAX,
            gen_op_movl_T1_ECX,
            gen_op_movl_T1_EDX,
            gen_op_movl_T1_EBX,
            gen_op_movl_T1_ESP,
            gen_op_movl_T1_EBP,
            gen_op_movl_T1_ESI,
            gen_op_movl_T1_EDI,
        },
    },
};

static GenOpFunc *gen_op_movl_A0_reg[8] = {
    gen_op_movl_A0_EAX,
    gen_op_movl_A0_ECX,
    gen_op_movl_A0_EDX,
    gen_op_movl_A0_EBX,
    gen_op_movl_A0_ESP,
    gen_op_movl_A0_EBP,
    gen_op_movl_A0_ESI,
    gen_op_movl_A0_EDI,
};

static GenOpFunc *gen_op_addl_A0_reg_sN[4][8] = {
    [0] = {
        gen_op_addl_A0_EAX,
        gen_op_addl_A0_ECX,
        gen_op_addl_A0_EDX,
        gen_op_addl_A0_EBX,
        gen_op_addl_A0_ESP,
        gen_op_addl_A0_EBP,
        gen_op_addl_A0_ESI,
        gen_op_addl_A0_EDI,
    },
    [1] = {
        gen_op_addl_A0_EAX_s1,
        gen_op_addl_A0_ECX_s1,
        gen_op_addl_A0_EDX_s1,
        gen_op_addl_A0_EBX_s1,
        gen_op_addl_A0_ESP_s1,
        gen_op_addl_A0_EBP_s1,
        gen_op_addl_A0_ESI_s1,
        gen_op_addl_A0_EDI_s1,
    },
    [2] = {
        gen_op_addl_A0_EAX_s2,
        gen_op_addl_A0_ECX_s2,
        gen_op_addl_A0_EDX_s2,
        gen_op_addl_A0_EBX_s2,
        gen_op_addl_A0_ESP_s2,
        gen_op_addl_A0_EBP_s2,
        gen_op_addl_A0_ESI_s2,
        gen_op_addl_A0_EDI_s2,
    },
    [3] = {
        gen_op_addl_A0_EAX_s3,
        gen_op_addl_A0_ECX_s3,
        gen_op_addl_A0_EDX_s3,
        gen_op_addl_A0_EBX_s3,
        gen_op_addl_A0_ESP_s3,
        gen_op_addl_A0_EBP_s3,
        gen_op_addl_A0_ESI_s3,
        gen_op_addl_A0_EDI_s3,
    },
};

B
bellard 已提交
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
static GenOpFunc *gen_op_cmov_reg_T1_T0[2][8] = {
    [0] = {
        gen_op_cmovw_EAX_T1_T0,
        gen_op_cmovw_ECX_T1_T0,
        gen_op_cmovw_EDX_T1_T0,
        gen_op_cmovw_EBX_T1_T0,
        gen_op_cmovw_ESP_T1_T0,
        gen_op_cmovw_EBP_T1_T0,
        gen_op_cmovw_ESI_T1_T0,
        gen_op_cmovw_EDI_T1_T0,
    },
    [1] = {
        gen_op_cmovl_EAX_T1_T0,
        gen_op_cmovl_ECX_T1_T0,
        gen_op_cmovl_EDX_T1_T0,
        gen_op_cmovl_EBX_T1_T0,
        gen_op_cmovl_ESP_T1_T0,
        gen_op_cmovl_EBP_T1_T0,
        gen_op_cmovl_ESI_T1_T0,
        gen_op_cmovl_EDI_T1_T0,
    },
};

B
bellard 已提交
367
static GenOpFunc *gen_op_arith_T0_T1_cc[8] = {
B
bellard 已提交
368
    NULL,
369 370 371 372 373 374
    gen_op_orl_T0_T1,
    NULL,
    NULL,
    gen_op_andl_T0_T1,
    NULL,
    gen_op_xorl_T0_T1,
B
bellard 已提交
375
    NULL,
B
bellard 已提交
376 377
};

B
bellard 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
static GenOpFunc *gen_op_arithc_T0_T1_cc[3][2] = {
    [OT_BYTE] = {
        gen_op_adcb_T0_T1_cc,
        gen_op_sbbb_T0_T1_cc,
    },
    [OT_WORD] = {
        gen_op_adcw_T0_T1_cc,
        gen_op_sbbw_T0_T1_cc,
    },
    [OT_LONG] = {
        gen_op_adcl_T0_T1_cc,
        gen_op_sbbl_T0_T1_cc,
    },
};

393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
static GenOpFunc *gen_op_arithc_mem_T0_T1_cc[3][2] = {
    [OT_BYTE] = {
        gen_op_adcb_mem_T0_T1_cc,
        gen_op_sbbb_mem_T0_T1_cc,
    },
    [OT_WORD] = {
        gen_op_adcw_mem_T0_T1_cc,
        gen_op_sbbw_mem_T0_T1_cc,
    },
    [OT_LONG] = {
        gen_op_adcl_mem_T0_T1_cc,
        gen_op_sbbl_mem_T0_T1_cc,
    },
};

B
bellard 已提交
408 409 410 411 412 413 414 415 416 417 418
static const int cc_op_arithb[8] = {
    CC_OP_ADDB,
    CC_OP_LOGICB,
    CC_OP_ADDB,
    CC_OP_SUBB,
    CC_OP_LOGICB,
    CC_OP_SUBB,
    CC_OP_LOGICB,
    CC_OP_SUBB,
};

B
bellard 已提交
419 420 421 422 423 424
static GenOpFunc *gen_op_cmpxchg_T0_T1_EAX_cc[3] = {
    gen_op_cmpxchgb_T0_T1_EAX_cc,
    gen_op_cmpxchgw_T0_T1_EAX_cc,
    gen_op_cmpxchgl_T0_T1_EAX_cc,
};

425 426 427 428 429 430
static GenOpFunc *gen_op_cmpxchg_mem_T0_T1_EAX_cc[3] = {
    gen_op_cmpxchgb_mem_T0_T1_EAX_cc,
    gen_op_cmpxchgw_mem_T0_T1_EAX_cc,
    gen_op_cmpxchgl_mem_T0_T1_EAX_cc,
};

B
bellard 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
static GenOpFunc *gen_op_shift_T0_T1_cc[3][8] = {
    [OT_BYTE] = {
        gen_op_rolb_T0_T1_cc,
        gen_op_rorb_T0_T1_cc,
        gen_op_rclb_T0_T1_cc,
        gen_op_rcrb_T0_T1_cc,
        gen_op_shlb_T0_T1_cc,
        gen_op_shrb_T0_T1_cc,
        gen_op_shlb_T0_T1_cc,
        gen_op_sarb_T0_T1_cc,
    },
    [OT_WORD] = {
        gen_op_rolw_T0_T1_cc,
        gen_op_rorw_T0_T1_cc,
        gen_op_rclw_T0_T1_cc,
        gen_op_rcrw_T0_T1_cc,
        gen_op_shlw_T0_T1_cc,
        gen_op_shrw_T0_T1_cc,
        gen_op_shlw_T0_T1_cc,
        gen_op_sarw_T0_T1_cc,
    },
    [OT_LONG] = {
        gen_op_roll_T0_T1_cc,
        gen_op_rorl_T0_T1_cc,
        gen_op_rcll_T0_T1_cc,
        gen_op_rcrl_T0_T1_cc,
        gen_op_shll_T0_T1_cc,
        gen_op_shrl_T0_T1_cc,
        gen_op_shll_T0_T1_cc,
        gen_op_sarl_T0_T1_cc,
    },
};

464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
static GenOpFunc *gen_op_shift_mem_T0_T1_cc[3][8] = {
    [OT_BYTE] = {
        gen_op_rolb_mem_T0_T1_cc,
        gen_op_rorb_mem_T0_T1_cc,
        gen_op_rclb_mem_T0_T1_cc,
        gen_op_rcrb_mem_T0_T1_cc,
        gen_op_shlb_mem_T0_T1_cc,
        gen_op_shrb_mem_T0_T1_cc,
        gen_op_shlb_mem_T0_T1_cc,
        gen_op_sarb_mem_T0_T1_cc,
    },
    [OT_WORD] = {
        gen_op_rolw_mem_T0_T1_cc,
        gen_op_rorw_mem_T0_T1_cc,
        gen_op_rclw_mem_T0_T1_cc,
        gen_op_rcrw_mem_T0_T1_cc,
        gen_op_shlw_mem_T0_T1_cc,
        gen_op_shrw_mem_T0_T1_cc,
        gen_op_shlw_mem_T0_T1_cc,
        gen_op_sarw_mem_T0_T1_cc,
    },
    [OT_LONG] = {
        gen_op_roll_mem_T0_T1_cc,
        gen_op_rorl_mem_T0_T1_cc,
        gen_op_rcll_mem_T0_T1_cc,
        gen_op_rcrl_mem_T0_T1_cc,
        gen_op_shll_mem_T0_T1_cc,
        gen_op_shrl_mem_T0_T1_cc,
        gen_op_shll_mem_T0_T1_cc,
        gen_op_sarl_mem_T0_T1_cc,
    },
};

497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
static GenOpFunc1 *gen_op_shiftd_T0_T1_im_cc[2][2] = {
    [0] = {
        gen_op_shldw_T0_T1_im_cc,
        gen_op_shrdw_T0_T1_im_cc,
    },
    [1] = {
        gen_op_shldl_T0_T1_im_cc,
        gen_op_shrdl_T0_T1_im_cc,
    },
};

static GenOpFunc *gen_op_shiftd_T0_T1_ECX_cc[2][2] = {
    [0] = {
        gen_op_shldw_T0_T1_ECX_cc,
        gen_op_shrdw_T0_T1_ECX_cc,
    },
    [1] = {
        gen_op_shldl_T0_T1_ECX_cc,
        gen_op_shrdl_T0_T1_ECX_cc,
    },
};

519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
static GenOpFunc1 *gen_op_shiftd_mem_T0_T1_im_cc[2][2] = {
    [0] = {
        gen_op_shldw_mem_T0_T1_im_cc,
        gen_op_shrdw_mem_T0_T1_im_cc,
    },
    [1] = {
        gen_op_shldl_mem_T0_T1_im_cc,
        gen_op_shrdl_mem_T0_T1_im_cc,
    },
};

static GenOpFunc *gen_op_shiftd_mem_T0_T1_ECX_cc[2][2] = {
    [0] = {
        gen_op_shldw_mem_T0_T1_ECX_cc,
        gen_op_shrdw_mem_T0_T1_ECX_cc,
    },
    [1] = {
        gen_op_shldl_mem_T0_T1_ECX_cc,
        gen_op_shrdl_mem_T0_T1_ECX_cc,
    },
};

B
bellard 已提交
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
static GenOpFunc *gen_op_btx_T0_T1_cc[2][4] = {
    [0] = {
        gen_op_btw_T0_T1_cc,
        gen_op_btsw_T0_T1_cc,
        gen_op_btrw_T0_T1_cc,
        gen_op_btcw_T0_T1_cc,
    },
    [1] = {
        gen_op_btl_T0_T1_cc,
        gen_op_btsl_T0_T1_cc,
        gen_op_btrl_T0_T1_cc,
        gen_op_btcl_T0_T1_cc,
    },
};

B
bellard 已提交
556 557 558 559 560 561 562 563 564 565 566
static GenOpFunc *gen_op_bsx_T0_cc[2][2] = {
    [0] = {
        gen_op_bsfw_T0_cc,
        gen_op_bsrw_T0_cc,
    },
    [1] = {
        gen_op_bsfl_T0_cc,
        gen_op_bsrl_T0_cc,
    },
};

567
static GenOpFunc *gen_op_lds_T0_A0[3 * 3] = {
B
bellard 已提交
568 569
    gen_op_ldsb_T0_A0,
    gen_op_ldsw_T0_A0,
570 571 572 573 574 575 576 577 578
    NULL,

    gen_op_ldsb_kernel_T0_A0,
    gen_op_ldsw_kernel_T0_A0,
    NULL,

    gen_op_ldsb_user_T0_A0,
    gen_op_ldsw_user_T0_A0,
    NULL,
B
bellard 已提交
579 580
};

581
static GenOpFunc *gen_op_ldu_T0_A0[3 * 3] = {
B
bellard 已提交
582 583
    gen_op_ldub_T0_A0,
    gen_op_lduw_T0_A0,
584 585 586 587 588 589 590 591 592
    NULL,

    gen_op_ldub_kernel_T0_A0,
    gen_op_lduw_kernel_T0_A0,
    NULL,

    gen_op_ldub_user_T0_A0,
    gen_op_lduw_user_T0_A0,
    NULL,
B
bellard 已提交
593 594
};

595 596
/* sign does not matter, except for lidt/lgdt call (TODO: fix it) */
static GenOpFunc *gen_op_ld_T0_A0[3 * 3] = {
B
bellard 已提交
597 598 599
    gen_op_ldub_T0_A0,
    gen_op_lduw_T0_A0,
    gen_op_ldl_T0_A0,
600 601 602 603 604 605 606 607

    gen_op_ldub_kernel_T0_A0,
    gen_op_lduw_kernel_T0_A0,
    gen_op_ldl_kernel_T0_A0,

    gen_op_ldub_user_T0_A0,
    gen_op_lduw_user_T0_A0,
    gen_op_ldl_user_T0_A0,
B
bellard 已提交
608 609
};

610
static GenOpFunc *gen_op_ld_T1_A0[3 * 3] = {
B
bellard 已提交
611 612 613
    gen_op_ldub_T1_A0,
    gen_op_lduw_T1_A0,
    gen_op_ldl_T1_A0,
614 615 616 617 618 619 620 621

    gen_op_ldub_kernel_T1_A0,
    gen_op_lduw_kernel_T1_A0,
    gen_op_ldl_kernel_T1_A0,

    gen_op_ldub_user_T1_A0,
    gen_op_lduw_user_T1_A0,
    gen_op_ldl_user_T1_A0,
B
bellard 已提交
622 623
};

624
static GenOpFunc *gen_op_st_T0_A0[3 * 3] = {
B
bellard 已提交
625 626 627
    gen_op_stb_T0_A0,
    gen_op_stw_T0_A0,
    gen_op_stl_T0_A0,
628 629 630 631 632 633 634 635

    gen_op_stb_kernel_T0_A0,
    gen_op_stw_kernel_T0_A0,
    gen_op_stl_kernel_T0_A0,

    gen_op_stb_user_T0_A0,
    gen_op_stw_user_T0_A0,
    gen_op_stl_user_T0_A0,
B
bellard 已提交
636 637
};

638 639
/* the _a32 and _a16 string operations use A0 as the base register. */

640 641
#define STRINGOP_NB 9

642 643 644 645 646 647 648 649 650 651 652
#define STRINGOP(x) \
    gen_op_ ## x ## b_fast, \
    gen_op_ ## x ## w_fast, \
    gen_op_ ## x ## l_fast, \
    gen_op_ ## x ## b_a32, \
    gen_op_ ## x ## w_a32, \
    gen_op_ ## x ## l_a32, \
    gen_op_ ## x ## b_a16, \
    gen_op_ ## x ## w_a16, \
    gen_op_ ## x ## l_a16,
     
653 654 655
static GenOpFunc *gen_op_scas[STRINGOP_NB * 3] = {
    STRINGOP(repz_scas)
    STRINGOP(repnz_scas)
B
bellard 已提交
656 657
};

658 659 660
static GenOpFunc *gen_op_cmps[STRINGOP_NB * 3] = {
    STRINGOP(repz_cmps)
    STRINGOP(repnz_cmps)
B
bellard 已提交
661 662
};

663 664 665
static inline void gen_string_movl_A0_ESI(DisasContext *s)
{
    int override;
B
bellard 已提交
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 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
    override = s->override;
    if (s->aflag) {
        /* 32 bit address */
        if (s->addseg && override < 0)
            override = R_DS;
        if (override >= 0) {
            gen_op_movl_A0_seg(offsetof(CPUX86State,segs[override].base));
            gen_op_addl_A0_reg_sN[0][R_ESI]();
        } else {
            gen_op_movl_A0_reg[R_ESI]();
        }
    } else {
        /* 16 address, always override */
        if (override < 0)
            override = R_DS;
        gen_op_movl_A0_reg[R_ESI]();
        gen_op_andl_A0_ffff();
        gen_op_addl_A0_seg(offsetof(CPUX86State,segs[override].base));
    }
}

static inline void gen_string_movl_A0_EDI(DisasContext *s)
{
    if (s->aflag) {
        if (s->addseg) {
            gen_op_movl_A0_seg(offsetof(CPUX86State,segs[R_ES].base));
            gen_op_addl_A0_reg_sN[0][R_EDI]();
        } else {
            gen_op_movl_A0_reg[R_EDI]();
        }
    } else {
        gen_op_movl_A0_reg[R_EDI]();
        gen_op_andl_A0_ffff();
        gen_op_addl_A0_seg(offsetof(CPUX86State,segs[R_ES].base));
    }
}

static GenOpFunc *gen_op_movl_T0_Dshift[3] = {
    gen_op_movl_T0_Dshiftb,
    gen_op_movl_T0_Dshiftw,
    gen_op_movl_T0_Dshiftl,
B
bellard 已提交
708 709
};

710 711 712 713 714 715 716 717
static GenOpFunc2 *gen_op_jz_ecx[2] = {
    gen_op_jz_ecxw,
    gen_op_jz_ecxl,
};
    
static GenOpFunc *gen_op_dec_ECX[2] = {
    gen_op_decw_ECX,
    gen_op_decl_ECX,
B
bellard 已提交
718 719
};

720 721 722 723 724 725 726 727 728 729 730
static GenOpFunc2 *gen_op_string_jnz_sub[2][3] = {
    {
        gen_op_string_jnz_subb,
        gen_op_string_jnz_subw,
        gen_op_string_jnz_subl,
    },
    {
        gen_op_string_jz_subb,
        gen_op_string_jz_subw,
        gen_op_string_jz_subl,
    },
B
bellard 已提交
731 732
};

733 734 735 736 737
static GenOpFunc *gen_op_in_DX_T0[3] = {
    gen_op_inb_DX_T0,
    gen_op_inw_DX_T0,
    gen_op_inl_DX_T0,
};
B
bellard 已提交
738

739 740 741 742
static GenOpFunc *gen_op_out_DX_T0[3] = {
    gen_op_outb_DX_T0,
    gen_op_outw_DX_T0,
    gen_op_outl_DX_T0,
B
bellard 已提交
743 744
};

745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 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 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 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921
static inline void gen_movs(DisasContext *s, int ot)
{
    gen_string_movl_A0_ESI(s);
    gen_op_ld_T0_A0[ot + s->mem_index]();
    gen_string_movl_A0_EDI(s);
    gen_op_st_T0_A0[ot + s->mem_index]();
    gen_op_movl_T0_Dshift[ot]();
    if (s->aflag) {
        gen_op_addl_ESI_T0();
        gen_op_addl_EDI_T0();
    } else {
        gen_op_addw_ESI_T0();
        gen_op_addw_EDI_T0();
    }
}

/* same method as Valgrind : we generate jumps to current or next
   instruction */
static inline void gen_repz_movs(DisasContext *s, int ot, 
                                 unsigned int cur_eip, unsigned int next_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jz_ecx[s->aflag]((long)s->tb, next_eip);
    gen_movs(s, ot);
    gen_op_dec_ECX[s->aflag]();
    gen_op_jmp_tb_next((long)s->tb, cur_eip);
    s->is_jmp = 3;
}

static inline void gen_stos(DisasContext *s, int ot)
{
    gen_op_mov_TN_reg[OT_LONG][0][R_EAX]();
    gen_string_movl_A0_EDI(s);
    gen_op_st_T0_A0[ot + s->mem_index]();
    gen_op_movl_T0_Dshift[ot]();
    if (s->aflag) {
        gen_op_addl_EDI_T0();
    } else {
        gen_op_addw_EDI_T0();
    }
}

static inline void gen_repz_stos(DisasContext *s, int ot, 
                                 unsigned int cur_eip, unsigned int next_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jz_ecx[s->aflag]((long)s->tb, next_eip);
    gen_stos(s, ot);
    gen_op_dec_ECX[s->aflag]();
    gen_op_jmp_tb_next((long)s->tb, cur_eip);
    s->is_jmp = 3;
}

static inline void gen_lods(DisasContext *s, int ot)
{
    gen_string_movl_A0_ESI(s);
    gen_op_ld_T0_A0[ot + s->mem_index]();
    gen_op_mov_reg_T0[ot][R_EAX]();
    gen_op_movl_T0_Dshift[ot]();
    if (s->aflag) {
        gen_op_addl_ESI_T0();
    } else {
        gen_op_addw_ESI_T0();
    }
}

static inline void gen_repz_lods(DisasContext *s, int ot, 
                                 unsigned int cur_eip, unsigned int next_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jz_ecx[s->aflag]((long)s->tb, next_eip);
    gen_lods(s, ot);
    gen_op_dec_ECX[s->aflag]();
    gen_op_jmp_tb_next((long)s->tb, cur_eip);
    s->is_jmp = 3;
}

static inline void gen_scas(DisasContext *s, int ot)
{
    gen_op_mov_TN_reg[OT_LONG][0][R_EAX]();
    gen_string_movl_A0_EDI(s);
    gen_op_ld_T1_A0[ot + s->mem_index]();
    gen_op_cmpl_T0_T1_cc();
    gen_op_movl_T0_Dshift[ot]();
    if (s->aflag) {
        gen_op_addl_EDI_T0();
    } else {
        gen_op_addw_EDI_T0();
    }
}

#if 0
static inline void gen_repz_scas(DisasContext *s, int ot, 
                                 unsigned int cur_eip, unsigned int next_eip,
                                 int nz)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jz_ecx[s->aflag]((long)s->tb, next_eip);
    gen_scas(s, ot);
    gen_op_set_cc_op(CC_OP_SUBB + ot);
    gen_op_string_jnz_sub[nz][ot]((long)s->tb, next_eip);
    gen_op_dec_ECX[s->aflag]();
    gen_op_jmp_tb_next((long)s->tb, cur_eip);
    s->is_jmp = 3;
}
#endif

static inline void gen_cmps(DisasContext *s, int ot)
{
    gen_string_movl_A0_ESI(s);
    gen_op_ld_T0_A0[ot + s->mem_index]();
    gen_string_movl_A0_EDI(s);
    gen_op_ld_T1_A0[ot + s->mem_index]();
    gen_op_cmpl_T0_T1_cc();
    gen_op_movl_T0_Dshift[ot]();
    if (s->aflag) {
        gen_op_addl_ESI_T0();
        gen_op_addl_EDI_T0();
    } else {
        gen_op_addw_ESI_T0();
        gen_op_addw_EDI_T0();
    }
}

static inline void gen_ins(DisasContext *s, int ot)
{
    gen_op_in_DX_T0[ot]();
    gen_string_movl_A0_EDI(s);
    gen_op_st_T0_A0[ot + s->mem_index]();
    gen_op_movl_T0_Dshift[ot]();
    if (s->aflag) {
        gen_op_addl_EDI_T0();
    } else {
        gen_op_addw_EDI_T0();
    }
}

static inline void gen_repz_ins(DisasContext *s, int ot, 
                                 unsigned int cur_eip, unsigned int next_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jz_ecx[s->aflag]((long)s->tb, next_eip);
    gen_ins(s, ot);
    gen_op_dec_ECX[s->aflag]();
    gen_op_jmp_tb_next((long)s->tb, cur_eip);
    s->is_jmp = 3;
}

static inline void gen_outs(DisasContext *s, int ot)
{
    gen_string_movl_A0_ESI(s);
    gen_op_ld_T0_A0[ot + s->mem_index]();
    gen_op_out_DX_T0[ot]();
    gen_op_movl_T0_Dshift[ot]();
    if (s->aflag) {
        gen_op_addl_ESI_T0();
    } else {
        gen_op_addw_ESI_T0();
    }
}

static inline void gen_repz_outs(DisasContext *s, int ot, 
                                 unsigned int cur_eip, unsigned int next_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jz_ecx[s->aflag]((long)s->tb, next_eip);
    gen_outs(s, ot);
    gen_op_dec_ECX[s->aflag]();
    gen_op_jmp_tb_next((long)s->tb, cur_eip);
    s->is_jmp = 3;
}
922 923 924 925 926 927 928 929 930 931 932

static inline void gen_string_ds(DisasContext *s, int ot, GenOpFunc **func)
{
    int index, override;

    override = s->override;
    if (s->aflag) {
        /* 32 bit address */
        if (s->addseg && override < 0)
            override = R_DS;
        if (override >= 0) {
B
bellard 已提交
933
            gen_op_movl_A0_seg(offsetof(CPUX86State,segs[override].base));
934 935 936 937 938 939 940
            index = 3 + ot;
        } else {
            index = ot;
        }
    } else {
        if (override < 0)
            override = R_DS;
B
bellard 已提交
941
        gen_op_movl_A0_seg(offsetof(CPUX86State,segs[override].base));
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
        /* 16 address, always override */
        index = 6 + ot;
    }
    func[index]();
}

static inline void gen_string_es(DisasContext *s, int ot, GenOpFunc **func)
{
    int index;
            
    if (s->aflag) {
        if (s->addseg) {
            index = 3 + ot;
        } else {
            index = ot;
        }
    } else {
        index = 6 + ot;
    }
    func[index]();
}


B
bellard 已提交
965 966 967 968 969 970 971 972 973 974 975 976
static GenOpFunc *gen_op_in[3] = {
    gen_op_inb_T0_T1,
    gen_op_inw_T0_T1,
    gen_op_inl_T0_T1,
};

static GenOpFunc *gen_op_out[3] = {
    gen_op_outb_T0_T1,
    gen_op_outw_T0_T1,
    gen_op_outl_T0_T1,
};

B
bellard 已提交
977 978 979 980 981 982 983 984 985 986 987
enum {
    JCC_O,
    JCC_B,
    JCC_Z,
    JCC_BE,
    JCC_S,
    JCC_P,
    JCC_L,
    JCC_LE,
};

B
bellard 已提交
988
static GenOpFunc3 *gen_jcc_sub[3][8] = {
B
bellard 已提交
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
    [OT_BYTE] = {
        NULL,
        gen_op_jb_subb,
        gen_op_jz_subb,
        gen_op_jbe_subb,
        gen_op_js_subb,
        NULL,
        gen_op_jl_subb,
        gen_op_jle_subb,
    },
    [OT_WORD] = {
        NULL,
        gen_op_jb_subw,
        gen_op_jz_subw,
        gen_op_jbe_subw,
        gen_op_js_subw,
        NULL,
        gen_op_jl_subw,
        gen_op_jle_subw,
    },
    [OT_LONG] = {
        NULL,
        gen_op_jb_subl,
        gen_op_jz_subl,
        gen_op_jbe_subl,
        gen_op_js_subl,
        NULL,
        gen_op_jl_subl,
        gen_op_jle_subl,
    },
};
B
bellard 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
static GenOpFunc2 *gen_op_loop[2][4] = {
    [0] = {
        gen_op_loopnzw,
        gen_op_loopzw,
        gen_op_loopw,
        gen_op_jecxzw,
    },
    [1] = {
        gen_op_loopnzl,
        gen_op_loopzl,
        gen_op_loopl,
        gen_op_jecxzl,
    },
};
B
bellard 已提交
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078

static GenOpFunc *gen_setcc_slow[8] = {
    gen_op_seto_T0_cc,
    gen_op_setb_T0_cc,
    gen_op_setz_T0_cc,
    gen_op_setbe_T0_cc,
    gen_op_sets_T0_cc,
    gen_op_setp_T0_cc,
    gen_op_setl_T0_cc,
    gen_op_setle_T0_cc,
};

static GenOpFunc *gen_setcc_sub[3][8] = {
    [OT_BYTE] = {
        NULL,
        gen_op_setb_T0_subb,
        gen_op_setz_T0_subb,
        gen_op_setbe_T0_subb,
        gen_op_sets_T0_subb,
        NULL,
        gen_op_setl_T0_subb,
        gen_op_setle_T0_subb,
    },
    [OT_WORD] = {
        NULL,
        gen_op_setb_T0_subw,
        gen_op_setz_T0_subw,
        gen_op_setbe_T0_subw,
        gen_op_sets_T0_subw,
        NULL,
        gen_op_setl_T0_subw,
        gen_op_setle_T0_subw,
    },
    [OT_LONG] = {
        NULL,
        gen_op_setb_T0_subl,
        gen_op_setz_T0_subl,
        gen_op_setbe_T0_subl,
        gen_op_sets_T0_subl,
        NULL,
        gen_op_setl_T0_subl,
        gen_op_setle_T0_subl,
    },
};

B
bellard 已提交
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
static GenOpFunc *gen_op_fp_arith_ST0_FT0[8] = {
    gen_op_fadd_ST0_FT0,
    gen_op_fmul_ST0_FT0,
    gen_op_fcom_ST0_FT0,
    gen_op_fcom_ST0_FT0,
    gen_op_fsub_ST0_FT0,
    gen_op_fsubr_ST0_FT0,
    gen_op_fdiv_ST0_FT0,
    gen_op_fdivr_ST0_FT0,
};

B
bellard 已提交
1090
/* NOTE the exception in "r" op ordering */
B
bellard 已提交
1091 1092 1093 1094 1095 1096
static GenOpFunc1 *gen_op_fp_arith_STN_ST0[8] = {
    gen_op_fadd_STN_ST0,
    gen_op_fmul_STN_ST0,
    NULL,
    NULL,
    gen_op_fsubr_STN_ST0,
B
bellard 已提交
1097
    gen_op_fsub_STN_ST0,
B
bellard 已提交
1098
    gen_op_fdivr_STN_ST0,
B
bellard 已提交
1099
    gen_op_fdiv_STN_ST0,
B
bellard 已提交
1100 1101
};

1102 1103
/* if d == OR_TMP0, it means memory operand (address in A0) */
static void gen_op(DisasContext *s1, int op, int ot, int d)
B
bellard 已提交
1104
{
1105 1106 1107
    GenOpFunc *gen_update_cc;
    
    if (d != OR_TMP0) {
B
bellard 已提交
1108
        gen_op_mov_TN_reg[ot][0][d]();
1109
    } else {
1110
        gen_op_ld_T0_A0[ot + s1->mem_index]();
1111 1112 1113 1114
    }
    switch(op) {
    case OP_ADCL:
    case OP_SBBL:
B
bellard 已提交
1115 1116
        if (s1->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s1->cc_op);
1117 1118 1119 1120 1121 1122
        if (d != OR_TMP0) {
            gen_op_arithc_T0_T1_cc[ot][op - OP_ADCL]();
            gen_op_mov_reg_T0[ot][d]();
        } else {
            gen_op_arithc_mem_T0_T1_cc[ot][op - OP_ADCL]();
        }
B
bellard 已提交
1123
        s1->cc_op = CC_OP_DYNAMIC;
1124
        goto the_end;
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
    case OP_ADDL:
        gen_op_addl_T0_T1();
        s1->cc_op = CC_OP_ADDB + ot;
        gen_update_cc = gen_op_update2_cc;
        break;
    case OP_SUBL:
        gen_op_subl_T0_T1();
        s1->cc_op = CC_OP_SUBB + ot;
        gen_update_cc = gen_op_update2_cc;
        break;
    default:
    case OP_ANDL:
    case OP_ORL:
    case OP_XORL:
B
bellard 已提交
1139
        gen_op_arith_T0_T1_cc[op]();
1140 1141 1142 1143 1144 1145 1146 1147
        s1->cc_op = CC_OP_LOGICB + ot;
        gen_update_cc = gen_op_update1_cc;
        break;
    case OP_CMPL:
        gen_op_cmpl_T0_T1_cc();
        s1->cc_op = CC_OP_SUBB + ot;
        gen_update_cc = NULL;
        break;
B
bellard 已提交
1148
    }
1149 1150 1151 1152
    if (op != OP_CMPL) {
        if (d != OR_TMP0)
            gen_op_mov_reg_T0[ot][d]();
        else
1153
            gen_op_st_T0_A0[ot + s1->mem_index]();
1154 1155 1156 1157 1158
    }
    /* the flags update must happen after the memory write (precise
       exception support) */
    if (gen_update_cc)
        gen_update_cc();
1159
 the_end: ;
B
bellard 已提交
1160 1161
}

1162
/* if d == OR_TMP0, it means memory operand (address in A0) */
B
bellard 已提交
1163 1164 1165 1166
static void gen_inc(DisasContext *s1, int ot, int d, int c)
{
    if (d != OR_TMP0)
        gen_op_mov_TN_reg[ot][0][d]();
1167
    else
1168
        gen_op_ld_T0_A0[ot + s1->mem_index]();
B
bellard 已提交
1169 1170
    if (s1->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s1->cc_op);
B
bellard 已提交
1171
    if (c > 0) {
1172
        gen_op_incl_T0();
B
bellard 已提交
1173 1174
        s1->cc_op = CC_OP_INCB + ot;
    } else {
1175
        gen_op_decl_T0();
B
bellard 已提交
1176 1177
        s1->cc_op = CC_OP_DECB + ot;
    }
B
bellard 已提交
1178 1179
    if (d != OR_TMP0)
        gen_op_mov_reg_T0[ot][d]();
1180
    else
1181
        gen_op_st_T0_A0[ot + s1->mem_index]();
1182
    gen_op_update_inc_cc();
B
bellard 已提交
1183 1184 1185 1186 1187 1188
}

static void gen_shift(DisasContext *s1, int op, int ot, int d, int s)
{
    if (d != OR_TMP0)
        gen_op_mov_TN_reg[ot][0][d]();
1189
    else
1190
        gen_op_ld_T0_A0[ot + s1->mem_index]();
B
bellard 已提交
1191 1192
    if (s != OR_TMP1)
        gen_op_mov_TN_reg[ot][1][s]();
B
bellard 已提交
1193 1194 1195
    /* for zero counts, flags are not updated, so must do it dynamically */
    if (s1->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s1->cc_op);
1196 1197 1198 1199 1200
    
    if (d != OR_TMP0)
        gen_op_shift_T0_T1_cc[ot][op]();
    else
        gen_op_shift_mem_T0_T1_cc[ot][op]();
B
bellard 已提交
1201 1202 1203 1204 1205 1206 1207 1208
    if (d != OR_TMP0)
        gen_op_mov_reg_T0[ot][d]();
    s1->cc_op = CC_OP_DYNAMIC; /* cannot predict flags after */
}

static void gen_shifti(DisasContext *s1, int op, int ot, int d, int c)
{
    /* currently not optimized */
B
bellard 已提交
1209
    gen_op_movl_T1_im(c);
B
bellard 已提交
1210 1211 1212 1213 1214 1215 1216
    gen_shift(s1, op, ot, d, OR_TMP1);
}

static void gen_lea_modrm(DisasContext *s, int modrm, int *reg_ptr, int *offset_ptr)
{
    int havesib;
    int base, disp;
B
bellard 已提交
1217 1218 1219 1220 1221
    int index;
    int scale;
    int opreg;
    int mod, rm, code, override, must_add_seg;

1222
    override = s->override;
B
bellard 已提交
1223
    must_add_seg = s->addseg;
1224
    if (override >= 0)
B
bellard 已提交
1225
        must_add_seg = 1;
B
bellard 已提交
1226 1227 1228 1229 1230 1231 1232
    mod = (modrm >> 6) & 3;
    rm = modrm & 7;

    if (s->aflag) {

        havesib = 0;
        base = rm;
B
bellard 已提交
1233 1234
        index = 0;
        scale = 0;
B
bellard 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
        
        if (base == 4) {
            havesib = 1;
            code = ldub(s->pc++);
            scale = (code >> 6) & 3;
            index = (code >> 3) & 7;
            base = code & 7;
        }

        switch (mod) {
        case 0:
            if (base == 5) {
B
bellard 已提交
1247
                base = -1;
B
bellard 已提交
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
                disp = ldl(s->pc);
                s->pc += 4;
            } else {
                disp = 0;
            }
            break;
        case 1:
            disp = (int8_t)ldub(s->pc++);
            break;
        default:
        case 2:
            disp = ldl(s->pc);
            s->pc += 4;
            break;
        }
B
bellard 已提交
1263 1264
        
        if (base >= 0) {
1265 1266
            /* for correct popl handling with esp */
            if (base == 4 && s->popl_esp_hack)
1267
                disp += s->popl_esp_hack;
B
bellard 已提交
1268 1269 1270
            gen_op_movl_A0_reg[base]();
            if (disp != 0)
                gen_op_addl_A0_im(disp);
B
bellard 已提交
1271
        } else {
B
bellard 已提交
1272 1273
            gen_op_movl_A0_im(disp);
        }
1274
        /* XXX: index == 4 is always invalid */
B
bellard 已提交
1275 1276 1277 1278 1279 1280 1281 1282 1283
        if (havesib && (index != 4 || scale != 0)) {
            gen_op_addl_A0_reg_sN[scale][index]();
        }
        if (must_add_seg) {
            if (override < 0) {
                if (base == R_EBP || base == R_ESP)
                    override = R_SS;
                else
                    override = R_DS;
B
bellard 已提交
1284
            }
B
bellard 已提交
1285
            gen_op_addl_A0_seg(offsetof(CPUX86State,segs[override].base));
B
bellard 已提交
1286 1287
        }
    } else {
B
bellard 已提交
1288 1289 1290 1291 1292 1293
        switch (mod) {
        case 0:
            if (rm == 6) {
                disp = lduw(s->pc);
                s->pc += 2;
                gen_op_movl_A0_im(disp);
B
bellard 已提交
1294
                rm = 0; /* avoid SS override */
B
bellard 已提交
1295 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 1339 1340 1341 1342
                goto no_rm;
            } else {
                disp = 0;
            }
            break;
        case 1:
            disp = (int8_t)ldub(s->pc++);
            break;
        default:
        case 2:
            disp = lduw(s->pc);
            s->pc += 2;
            break;
        }
        switch(rm) {
        case 0:
            gen_op_movl_A0_reg[R_EBX]();
            gen_op_addl_A0_reg_sN[0][R_ESI]();
            break;
        case 1:
            gen_op_movl_A0_reg[R_EBX]();
            gen_op_addl_A0_reg_sN[0][R_EDI]();
            break;
        case 2:
            gen_op_movl_A0_reg[R_EBP]();
            gen_op_addl_A0_reg_sN[0][R_ESI]();
            break;
        case 3:
            gen_op_movl_A0_reg[R_EBP]();
            gen_op_addl_A0_reg_sN[0][R_EDI]();
            break;
        case 4:
            gen_op_movl_A0_reg[R_ESI]();
            break;
        case 5:
            gen_op_movl_A0_reg[R_EDI]();
            break;
        case 6:
            gen_op_movl_A0_reg[R_EBP]();
            break;
        default:
        case 7:
            gen_op_movl_A0_reg[R_EBX]();
            break;
        }
        if (disp != 0)
            gen_op_addl_A0_im(disp);
        gen_op_andl_A0_ffff();
B
bellard 已提交
1343 1344 1345 1346 1347 1348 1349 1350
    no_rm:
        if (must_add_seg) {
            if (override < 0) {
                if (rm == 2 || rm == 3 || rm == 6)
                    override = R_SS;
                else
                    override = R_DS;
            }
B
bellard 已提交
1351
            gen_op_addl_A0_seg(offsetof(CPUX86State,segs[override].base));
B
bellard 已提交
1352
        }
B
bellard 已提交
1353
    }
B
bellard 已提交
1354

B
bellard 已提交
1355 1356
    opreg = OR_A0;
    disp = 0;
B
bellard 已提交
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 1382 1383
    *reg_ptr = opreg;
    *offset_ptr = disp;
}

/* generate modrm memory load or store of 'reg'. TMP0 is used if reg !=
   OR_TMP0 */
static void gen_ldst_modrm(DisasContext *s, int modrm, int ot, int reg, int is_store)
{
    int mod, rm, opreg, disp;

    mod = (modrm >> 6) & 3;
    rm = modrm & 7;
    if (mod == 3) {
        if (is_store) {
            if (reg != OR_TMP0)
                gen_op_mov_TN_reg[ot][0][reg]();
            gen_op_mov_reg_T0[ot][rm]();
        } else {
            gen_op_mov_TN_reg[ot][0][rm]();
            if (reg != OR_TMP0)
                gen_op_mov_reg_T0[ot][reg]();
        }
    } else {
        gen_lea_modrm(s, modrm, &opreg, &disp);
        if (is_store) {
            if (reg != OR_TMP0)
                gen_op_mov_TN_reg[ot][0][reg]();
1384
            gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1385
        } else {
1386
            gen_op_ld_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1387 1388 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
            if (reg != OR_TMP0)
                gen_op_mov_reg_T0[ot][reg]();
        }
    }
}

static inline uint32_t insn_get(DisasContext *s, int ot)
{
    uint32_t ret;

    switch(ot) {
    case OT_BYTE:
        ret = ldub(s->pc);
        s->pc++;
        break;
    case OT_WORD:
        ret = lduw(s->pc);
        s->pc += 2;
        break;
    default:
    case OT_LONG:
        ret = ldl(s->pc);
        s->pc += 4;
        break;
    }
    return ret;
}

B
bellard 已提交
1415
static inline void gen_jcc(DisasContext *s, int b, int val, int next_eip)
B
bellard 已提交
1416
{
B
bellard 已提交
1417
    TranslationBlock *tb;
B
bellard 已提交
1418
    int inv, jcc_op;
B
bellard 已提交
1419
    GenOpFunc3 *func;
B
bellard 已提交
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434

    inv = b & 1;
    jcc_op = (b >> 1) & 7;
    switch(s->cc_op) {
        /* we optimize the cmp/jcc case */
    case CC_OP_SUBB:
    case CC_OP_SUBW:
    case CC_OP_SUBL:
        func = gen_jcc_sub[s->cc_op - CC_OP_SUBB][jcc_op];
        break;
        
        /* some jumps are easy to compute */
    case CC_OP_ADDB:
    case CC_OP_ADDW:
    case CC_OP_ADDL:
B
bellard 已提交
1435 1436 1437 1438 1439 1440
    case CC_OP_ADCB:
    case CC_OP_ADCW:
    case CC_OP_ADCL:
    case CC_OP_SBBB:
    case CC_OP_SBBW:
    case CC_OP_SBBL:
B
bellard 已提交
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
    case CC_OP_LOGICB:
    case CC_OP_LOGICW:
    case CC_OP_LOGICL:
    case CC_OP_INCB:
    case CC_OP_INCW:
    case CC_OP_INCL:
    case CC_OP_DECB:
    case CC_OP_DECW:
    case CC_OP_DECL:
    case CC_OP_SHLB:
    case CC_OP_SHLW:
    case CC_OP_SHLL:
B
bellard 已提交
1453 1454 1455
    case CC_OP_SARB:
    case CC_OP_SARW:
    case CC_OP_SARL:
B
bellard 已提交
1456 1457 1458 1459 1460 1461 1462 1463
        switch(jcc_op) {
        case JCC_Z:
            func = gen_jcc_sub[(s->cc_op - CC_OP_ADDB) % 3][jcc_op];
            break;
        case JCC_S:
            func = gen_jcc_sub[(s->cc_op - CC_OP_ADDB) % 3][jcc_op];
            break;
        default:
B
bellard 已提交
1464 1465
            func = NULL;
            break;
B
bellard 已提交
1466 1467 1468
        }
        break;
    default:
B
bellard 已提交
1469
        func = NULL;
B
bellard 已提交
1470 1471
        break;
    }
B
bellard 已提交
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481

    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);

    if (!func) {
        gen_setcc_slow[jcc_op]();
        func = gen_op_jcc;
    }
    
    tb = s->tb;
B
bellard 已提交
1482
    if (!inv) {
B
bellard 已提交
1483
        func((long)tb, val, next_eip);
B
bellard 已提交
1484
    } else {
B
bellard 已提交
1485
        func((long)tb, next_eip, val);
B
bellard 已提交
1486
    }
B
bellard 已提交
1487
    s->is_jmp = 3;
B
bellard 已提交
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
}

static void gen_setcc(DisasContext *s, int b)
{
    int inv, jcc_op;
    GenOpFunc *func;

    inv = b & 1;
    jcc_op = (b >> 1) & 7;
    switch(s->cc_op) {
        /* we optimize the cmp/jcc case */
    case CC_OP_SUBB:
    case CC_OP_SUBW:
    case CC_OP_SUBL:
        func = gen_setcc_sub[s->cc_op - CC_OP_SUBB][jcc_op];
        if (!func)
            goto slow_jcc;
        break;
        
        /* some jumps are easy to compute */
    case CC_OP_ADDB:
    case CC_OP_ADDW:
    case CC_OP_ADDL:
    case CC_OP_LOGICB:
    case CC_OP_LOGICW:
    case CC_OP_LOGICL:
    case CC_OP_INCB:
    case CC_OP_INCW:
    case CC_OP_INCL:
    case CC_OP_DECB:
    case CC_OP_DECW:
    case CC_OP_DECL:
    case CC_OP_SHLB:
    case CC_OP_SHLW:
    case CC_OP_SHLL:
        switch(jcc_op) {
        case JCC_Z:
1525
            func = gen_setcc_sub[(s->cc_op - CC_OP_ADDB) % 3][jcc_op];
B
bellard 已提交
1526 1527
            break;
        case JCC_S:
1528
            func = gen_setcc_sub[(s->cc_op - CC_OP_ADDB) % 3][jcc_op];
B
bellard 已提交
1529 1530 1531 1532 1533 1534 1535 1536
            break;
        default:
            goto slow_jcc;
        }
        break;
    default:
    slow_jcc:
        if (s->cc_op != CC_OP_DYNAMIC)
1537
            gen_op_set_cc_op(s->cc_op);
B
bellard 已提交
1538 1539 1540 1541 1542 1543 1544 1545 1546
        func = gen_setcc_slow[jcc_op];
        break;
    }
    func();
    if (inv) {
        gen_op_xor_T0_1();
    }
}

1547 1548
/* move T0 to seg_reg and compute if the CPU state may change. Never
   call this function with seg_reg == R_CS */
B
bellard 已提交
1549
static void gen_movl_seg_T0(DisasContext *s, int seg_reg, unsigned int cur_eip)
B
bellard 已提交
1550
{
1551
    if (s->pe && !s->vm86)
B
bellard 已提交
1552 1553
        gen_op_movl_seg_T0(seg_reg, cur_eip);
    else
B
bellard 已提交
1554
        gen_op_movl_seg_T0_vm(offsetof(CPUX86State,segs[seg_reg]));
1555
    /* abort translation because the register may have a non zero base
1556 1557 1558
       or because ss32 may change. For R_SS, translation must always
       stop as a special handling must be done to disable hardware
       interrupts for the next instruction */
1559 1560
    if (seg_reg == R_SS || (!s->addseg && seg_reg < R_FS))
        s->is_jmp = 2; 
B
bellard 已提交
1561 1562
}

B
bellard 已提交
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
/* generate a push. It depends on ss32, addseg and dflag */
static void gen_push_T0(DisasContext *s)
{
    if (s->ss32) {
        if (!s->addseg) {
            if (s->dflag)
                gen_op_pushl_T0();
            else
                gen_op_pushw_T0();
        } else {
            if (s->dflag)
                gen_op_pushl_ss32_T0();
            else
                gen_op_pushw_ss32_T0();
        }
    } else {
        if (s->dflag)
            gen_op_pushl_ss16_T0();
        else
            gen_op_pushw_ss16_T0();
    }
}

/* two step pop is necessary for precise exceptions */
static void gen_pop_T0(DisasContext *s)
{
    if (s->ss32) {
        if (!s->addseg) {
            if (s->dflag)
                gen_op_popl_T0();
            else
                gen_op_popw_T0();
        } else {
            if (s->dflag)
                gen_op_popl_ss32_T0();
            else
                gen_op_popw_ss32_T0();
        }
    } else {
        if (s->dflag)
            gen_op_popl_ss16_T0();
        else
            gen_op_popw_ss16_T0();
    }
}

1609
static inline void gen_stack_update(DisasContext *s, int addend)
B
bellard 已提交
1610 1611
{
    if (s->ss32) {
1612
        if (addend == 2)
B
bellard 已提交
1613
            gen_op_addl_ESP_2();
1614 1615 1616 1617
        else if (addend == 4)
            gen_op_addl_ESP_4();
        else 
            gen_op_addl_ESP_im(addend);
B
bellard 已提交
1618
    } else {
1619 1620 1621
        if (addend == 2)
            gen_op_addw_ESP_2();
        else if (addend == 4)
B
bellard 已提交
1622 1623
            gen_op_addw_ESP_4();
        else
1624
            gen_op_addw_ESP_im(addend);
B
bellard 已提交
1625 1626 1627
    }
}

1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
static void gen_pop_update(DisasContext *s)
{
    gen_stack_update(s, 2 << s->dflag);
}

static void gen_stack_A0(DisasContext *s)
{
    gen_op_movl_A0_ESP();
    if (!s->ss32)
        gen_op_andl_A0_ffff();
    gen_op_movl_T1_A0();
    if (s->addseg)
B
bellard 已提交
1640
        gen_op_addl_A0_seg(offsetof(CPUX86State,segs[R_SS].base));
1641 1642
}

B
bellard 已提交
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
/* NOTE: wrap around in 16 bit not fully handled */
static void gen_pusha(DisasContext *s)
{
    int i;
    gen_op_movl_A0_ESP();
    gen_op_addl_A0_im(-16 <<  s->dflag);
    if (!s->ss32)
        gen_op_andl_A0_ffff();
    gen_op_movl_T1_A0();
    if (s->addseg)
B
bellard 已提交
1653
        gen_op_addl_A0_seg(offsetof(CPUX86State,segs[R_SS].base));
B
bellard 已提交
1654 1655
    for(i = 0;i < 8; i++) {
        gen_op_mov_TN_reg[OT_LONG][0][7 - i]();
1656
        gen_op_st_T0_A0[OT_WORD + s->dflag + s->mem_index]();
B
bellard 已提交
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
        gen_op_addl_A0_im(2 <<  s->dflag);
    }
    gen_op_mov_reg_T1[OT_WORD + s->dflag][R_ESP]();
}

/* NOTE: wrap around in 16 bit not fully handled */
static void gen_popa(DisasContext *s)
{
    int i;
    gen_op_movl_A0_ESP();
    if (!s->ss32)
        gen_op_andl_A0_ffff();
    gen_op_movl_T1_A0();
    gen_op_addl_T1_im(16 <<  s->dflag);
    if (s->addseg)
B
bellard 已提交
1672
        gen_op_addl_A0_seg(offsetof(CPUX86State,segs[R_SS].base));
B
bellard 已提交
1673 1674 1675
    for(i = 0;i < 8; i++) {
        /* ESP is not reloaded */
        if (i != 3) {
1676
            gen_op_ld_T0_A0[OT_WORD + s->dflag + s->mem_index]();
B
bellard 已提交
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
            gen_op_mov_reg_T0[OT_WORD + s->dflag][7 - i]();
        }
        gen_op_addl_A0_im(2 <<  s->dflag);
    }
    gen_op_mov_reg_T1[OT_WORD + s->dflag][R_ESP]();
}

/* NOTE: wrap around in 16 bit not fully handled */
/* XXX: check this */
static void gen_enter(DisasContext *s, int esp_addend, int level)
{
    int ot, level1, addend, opsize;

    ot = s->dflag + OT_WORD;
    level &= 0x1f;
    level1 = level;
    opsize = 2 << s->dflag;

    gen_op_movl_A0_ESP();
    gen_op_addl_A0_im(-opsize);
    if (!s->ss32)
        gen_op_andl_A0_ffff();
    gen_op_movl_T1_A0();
    if (s->addseg)
B
bellard 已提交
1701
        gen_op_addl_A0_seg(offsetof(CPUX86State,segs[R_SS].base));
B
bellard 已提交
1702 1703
    /* push bp */
    gen_op_mov_TN_reg[OT_LONG][0][R_EBP]();
1704
    gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1705 1706 1707 1708
    if (level) {
        while (level--) {
            gen_op_addl_A0_im(-opsize);
            gen_op_addl_T0_im(-opsize);
1709
            gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1710 1711 1712 1713
        }
        gen_op_addl_A0_im(-opsize);
        /* XXX: add st_T1_A0 ? */
        gen_op_movl_T0_T1();
1714
        gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1715 1716 1717 1718 1719 1720 1721 1722 1723
    }
    gen_op_mov_reg_T1[ot][R_EBP]();
    addend = -esp_addend;
    if (level1)
        addend -= opsize * (level1 + 1);
    gen_op_addl_T1_im(addend);
    gen_op_mov_reg_T1[ot][R_ESP]();
}

1724 1725 1726 1727 1728 1729 1730 1731 1732
static void gen_exception(DisasContext *s, int trapno, unsigned int cur_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jmp_im(cur_eip);
    gen_op_raise_exception(trapno);
    s->is_jmp = 1;
}

B
bellard 已提交
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
/* an interrupt is different from an exception because of the
   priviledge checks */
static void gen_interrupt(DisasContext *s, int intno, 
                          unsigned int cur_eip, unsigned int next_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jmp_im(cur_eip);
    gen_op_raise_interrupt(intno, next_eip);
    s->is_jmp = 1;
}

B
bellard 已提交
1745 1746 1747 1748 1749 1750 1751 1752 1753
static void gen_debug(DisasContext *s, unsigned int cur_eip)
{
    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jmp_im(cur_eip);
    gen_op_debug();
    s->is_jmp = 1;
}

B
bellard 已提交
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
/* generate a jump to eip. No segment change must happen before as a
   direct call to the next block may occur */
static void gen_jmp(DisasContext *s, unsigned int eip)
{
    TranslationBlock *tb = s->tb;

    if (s->cc_op != CC_OP_DYNAMIC)
        gen_op_set_cc_op(s->cc_op);
    gen_op_jmp_tb_next((long)tb, eip);
    s->is_jmp = 3;
}

B
bellard 已提交
1766 1767 1768
/* return the next pc address. Return -1 if no insn found. *is_jmp_ptr
   is set to true if the instruction sets the PC (last instruction of
   a basic block) */
B
bellard 已提交
1769
long disas_insn(DisasContext *s, uint8_t *pc_start)
B
bellard 已提交
1770 1771 1772 1773
{
    int b, prefixes, aflag, dflag;
    int shift, ot;
    int modrm, reg, rm, mod, reg_addr, op, opreg, offset_addr, val;
B
bellard 已提交
1774
    unsigned int next_eip;
B
bellard 已提交
1775 1776 1777

    s->pc = pc_start;
    prefixes = 0;
B
bellard 已提交
1778 1779
    aflag = s->code32;
    dflag = s->code32;
1780
    s->override = -1;
B
bellard 已提交
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795
 next_byte:
    b = ldub(s->pc);
    s->pc++;
    /* check prefixes */
    switch (b) {
    case 0xf3:
        prefixes |= PREFIX_REPZ;
        goto next_byte;
    case 0xf2:
        prefixes |= PREFIX_REPNZ;
        goto next_byte;
    case 0xf0:
        prefixes |= PREFIX_LOCK;
        goto next_byte;
    case 0x2e:
1796
        s->override = R_CS;
B
bellard 已提交
1797 1798
        goto next_byte;
    case 0x36:
1799
        s->override = R_SS;
B
bellard 已提交
1800 1801
        goto next_byte;
    case 0x3e:
1802
        s->override = R_DS;
B
bellard 已提交
1803 1804
        goto next_byte;
    case 0x26:
1805
        s->override = R_ES;
B
bellard 已提交
1806 1807
        goto next_byte;
    case 0x64:
1808
        s->override = R_FS;
B
bellard 已提交
1809 1810
        goto next_byte;
    case 0x65:
1811
        s->override = R_GS;
B
bellard 已提交
1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829
        goto next_byte;
    case 0x66:
        prefixes |= PREFIX_DATA;
        goto next_byte;
    case 0x67:
        prefixes |= PREFIX_ADR;
        goto next_byte;
    }

    if (prefixes & PREFIX_DATA)
        dflag ^= 1;
    if (prefixes & PREFIX_ADR)
        aflag ^= 1;

    s->prefix = prefixes;
    s->aflag = aflag;
    s->dflag = dflag;

B
bellard 已提交
1830 1831 1832 1833
    /* lock generation */
    if (prefixes & PREFIX_LOCK)
        gen_op_lock();

B
bellard 已提交
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
    /* now check op code */
 reswitch:
    switch(b) {
    case 0x0f:
        /**************************/
        /* extended op code */
        b = ldub(s->pc++) | 0x100;
        goto reswitch;
        
        /**************************/
        /* arith & logic */
    case 0x00 ... 0x05:
    case 0x08 ... 0x0d:
    case 0x10 ... 0x15:
    case 0x18 ... 0x1d:
    case 0x20 ... 0x25:
    case 0x28 ... 0x2d:
    case 0x30 ... 0x35:
    case 0x38 ... 0x3d:
        {
            int op, f, val;
            op = (b >> 3) & 7;
            f = (b >> 1) & 3;

            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
            
            switch(f) {
            case 0: /* OP Ev, Gv */
                modrm = ldub(s->pc++);
1866
                reg = ((modrm >> 3) & 7);
B
bellard 已提交
1867 1868 1869 1870 1871
                mod = (modrm >> 6) & 3;
                rm = modrm & 7;
                if (mod != 3) {
                    gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
                    opreg = OR_TMP0;
1872 1873 1874 1875 1876 1877 1878 1879
                } else if (op == OP_XORL && rm == reg) {
                xor_zero:
                    /* xor reg, reg optimisation */
                    gen_op_movl_T0_0();
                    s->cc_op = CC_OP_LOGICB + ot;
                    gen_op_mov_reg_T0[ot][reg]();
                    gen_op_update1_cc();
                    break;
B
bellard 已提交
1880
                } else {
1881
                    opreg = rm;
B
bellard 已提交
1882
                }
1883 1884
                gen_op_mov_TN_reg[ot][1][reg]();
                gen_op(s, op, ot, opreg);
B
bellard 已提交
1885 1886 1887 1888
                break;
            case 1: /* OP Gv, Ev */
                modrm = ldub(s->pc++);
                mod = (modrm >> 6) & 3;
1889
                reg = ((modrm >> 3) & 7);
B
bellard 已提交
1890 1891 1892
                rm = modrm & 7;
                if (mod != 3) {
                    gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
1893
                    gen_op_ld_T1_A0[ot + s->mem_index]();
1894 1895
                } else if (op == OP_XORL && rm == reg) {
                    goto xor_zero;
B
bellard 已提交
1896
                } else {
1897
                    gen_op_mov_TN_reg[ot][1][rm]();
B
bellard 已提交
1898
                }
1899
                gen_op(s, op, ot, reg);
B
bellard 已提交
1900 1901 1902
                break;
            case 2: /* OP A, Iv */
                val = insn_get(s, ot);
1903 1904
                gen_op_movl_T1_im(val);
                gen_op(s, op, ot, OR_EAX);
B
bellard 已提交
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
                break;
            }
        }
        break;

    case 0x80: /* GRP1 */
    case 0x81:
    case 0x83:
        {
            int val;

            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
            
            modrm = ldub(s->pc++);
            mod = (modrm >> 6) & 3;
            rm = modrm & 7;
            op = (modrm >> 3) & 7;
            
            if (mod != 3) {
                gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
                opreg = OR_TMP0;
            } else {
                opreg = rm + OR_EAX;
            }

            switch(b) {
            default:
            case 0x80:
            case 0x81:
                val = insn_get(s, ot);
                break;
            case 0x83:
                val = (int8_t)insn_get(s, OT_BYTE);
                break;
            }
1943 1944
            gen_op_movl_T1_im(val);
            gen_op(s, op, ot, opreg);
B
bellard 已提交
1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
        }
        break;

        /**************************/
        /* inc, dec, and other misc arith */
    case 0x40 ... 0x47: /* inc Gv */
        ot = dflag ? OT_LONG : OT_WORD;
        gen_inc(s, ot, OR_EAX + (b & 7), 1);
        break;
    case 0x48 ... 0x4f: /* dec Gv */
        ot = dflag ? OT_LONG : OT_WORD;
        gen_inc(s, ot, OR_EAX + (b & 7), -1);
        break;
    case 0xf6: /* GRP3 */
    case 0xf7:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;

        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        rm = modrm & 7;
        op = (modrm >> 3) & 7;
        if (mod != 3) {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
1971
            gen_op_ld_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1972 1973 1974 1975 1976 1977 1978
        } else {
            gen_op_mov_TN_reg[ot][0][rm]();
        }

        switch(op) {
        case 0: /* test */
            val = insn_get(s, ot);
B
bellard 已提交
1979
            gen_op_movl_T1_im(val);
B
bellard 已提交
1980 1981 1982 1983 1984 1985
            gen_op_testl_T0_T1_cc();
            s->cc_op = CC_OP_LOGICB + ot;
            break;
        case 2: /* not */
            gen_op_notl_T0();
            if (mod != 3) {
1986
                gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1987 1988 1989 1990 1991
            } else {
                gen_op_mov_reg_T0[ot][rm]();
            }
            break;
        case 3: /* neg */
1992
            gen_op_negl_T0();
B
bellard 已提交
1993
            if (mod != 3) {
1994
                gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
1995 1996 1997
            } else {
                gen_op_mov_reg_T0[ot][rm]();
            }
1998
            gen_op_update_neg_cc();
B
bellard 已提交
1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
            s->cc_op = CC_OP_SUBB + ot;
            break;
        case 4: /* mul */
            switch(ot) {
            case OT_BYTE:
                gen_op_mulb_AL_T0();
                break;
            case OT_WORD:
                gen_op_mulw_AX_T0();
                break;
            default:
            case OT_LONG:
                gen_op_mull_EAX_T0();
                break;
            }
B
bellard 已提交
2014
            s->cc_op = CC_OP_MUL;
B
bellard 已提交
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028
            break;
        case 5: /* imul */
            switch(ot) {
            case OT_BYTE:
                gen_op_imulb_AL_T0();
                break;
            case OT_WORD:
                gen_op_imulw_AX_T0();
                break;
            default:
            case OT_LONG:
                gen_op_imull_EAX_T0();
                break;
            }
B
bellard 已提交
2029
            s->cc_op = CC_OP_MUL;
B
bellard 已提交
2030 2031 2032 2033
            break;
        case 6: /* div */
            switch(ot) {
            case OT_BYTE:
B
bellard 已提交
2034
                gen_op_divb_AL_T0(pc_start - s->cs_base);
B
bellard 已提交
2035 2036
                break;
            case OT_WORD:
B
bellard 已提交
2037
                gen_op_divw_AX_T0(pc_start - s->cs_base);
B
bellard 已提交
2038 2039 2040
                break;
            default:
            case OT_LONG:
B
bellard 已提交
2041
                gen_op_divl_EAX_T0(pc_start - s->cs_base);
B
bellard 已提交
2042 2043 2044 2045 2046 2047
                break;
            }
            break;
        case 7: /* idiv */
            switch(ot) {
            case OT_BYTE:
B
bellard 已提交
2048
                gen_op_idivb_AL_T0(pc_start - s->cs_base);
B
bellard 已提交
2049 2050
                break;
            case OT_WORD:
B
bellard 已提交
2051
                gen_op_idivw_AX_T0(pc_start - s->cs_base);
B
bellard 已提交
2052 2053 2054
                break;
            default:
            case OT_LONG:
B
bellard 已提交
2055
                gen_op_idivl_EAX_T0(pc_start - s->cs_base);
B
bellard 已提交
2056 2057 2058 2059
                break;
            }
            break;
        default:
B
bellard 已提交
2060
            goto illegal_op;
B
bellard 已提交
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
        }
        break;

    case 0xfe: /* GRP4 */
    case 0xff: /* GRP5 */
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;

        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        rm = modrm & 7;
        op = (modrm >> 3) & 7;
        if (op >= 2 && b == 0xfe) {
B
bellard 已提交
2076
            goto illegal_op;
B
bellard 已提交
2077 2078 2079
        }
        if (mod != 3) {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
2080
            if (op >= 2 && op != 3 && op != 5)
2081
                gen_op_ld_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2082 2083 2084 2085 2086 2087 2088
        } else {
            gen_op_mov_TN_reg[ot][0][rm]();
        }

        switch(op) {
        case 0: /* inc Ev */
            if (mod != 3)
2089
                opreg = OR_TMP0;
B
bellard 已提交
2090
            else
2091 2092
                opreg = rm;
            gen_inc(s, ot, opreg, 1);
B
bellard 已提交
2093 2094 2095
            break;
        case 1: /* dec Ev */
            if (mod != 3)
2096
                opreg = OR_TMP0;
B
bellard 已提交
2097
            else
2098 2099
                opreg = rm;
            gen_inc(s, ot, opreg, -1);
B
bellard 已提交
2100 2101
            break;
        case 2: /* call Ev */
B
bellard 已提交
2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
            /* XXX: optimize if memory (no and is necessary) */
            if (s->dflag == 0)
                gen_op_andl_T0_ffff();
            gen_op_jmp_T0();
            next_eip = s->pc - s->cs_base;
            gen_op_movl_T0_im(next_eip);
            gen_push_T0(s);
            s->is_jmp = 1;
            break;
        case 3: /* lcall Ev */
2112
            gen_op_ld_T1_A0[ot + s->mem_index]();
B
bellard 已提交
2113
            gen_op_addl_A0_im(1 << (ot - OT_WORD + 1));
2114
            gen_op_ld_T0_A0[OT_WORD + s->mem_index]();
2115 2116 2117 2118 2119 2120 2121 2122 2123
        do_lcall:
            if (s->pe && !s->vm86) {
                if (s->cc_op != CC_OP_DYNAMIC)
                    gen_op_set_cc_op(s->cc_op);
                gen_op_jmp_im(pc_start - s->cs_base);
                gen_op_lcall_protected_T0_T1(dflag, s->pc - s->cs_base);
            } else {
                gen_op_lcall_real_T0_T1(dflag, s->pc - s->cs_base);
            }
B
bellard 已提交
2124
            s->is_jmp = 1;
B
bellard 已提交
2125 2126
            break;
        case 4: /* jmp Ev */
B
bellard 已提交
2127 2128 2129 2130 2131 2132
            if (s->dflag == 0)
                gen_op_andl_T0_ffff();
            gen_op_jmp_T0();
            s->is_jmp = 1;
            break;
        case 5: /* ljmp Ev */
2133
            gen_op_ld_T1_A0[ot + s->mem_index]();
B
bellard 已提交
2134 2135
            gen_op_addl_A0_im(1 << (ot - OT_WORD + 1));
            gen_op_lduw_T0_A0();
2136
        do_ljmp:
2137
            if (s->pe && !s->vm86) {
2138 2139
                if (s->cc_op != CC_OP_DYNAMIC)
                    gen_op_set_cc_op(s->cc_op);
B
bellard 已提交
2140
                gen_op_jmp_im(pc_start - s->cs_base);
2141
                gen_op_ljmp_protected_T0_T1();
B
bellard 已提交
2142 2143 2144 2145 2146
            } else {
                gen_op_movl_seg_T0_vm(offsetof(CPUX86State,segs[R_CS]));
                gen_op_movl_T0_T1();
                gen_op_jmp_T0();
            }
B
bellard 已提交
2147
            s->is_jmp = 1;
B
bellard 已提交
2148 2149
            break;
        case 6: /* push Ev */
B
bellard 已提交
2150
            gen_push_T0(s);
B
bellard 已提交
2151 2152
            break;
        default:
B
bellard 已提交
2153
            goto illegal_op;
B
bellard 已提交
2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183
        }
        break;

    case 0x84: /* test Ev, Gv */
    case 0x85: 
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;

        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        rm = modrm & 7;
        reg = (modrm >> 3) & 7;
        
        gen_ldst_modrm(s, modrm, ot, OR_TMP0, 0);
        gen_op_mov_TN_reg[ot][1][reg + OR_EAX]();
        gen_op_testl_T0_T1_cc();
        s->cc_op = CC_OP_LOGICB + ot;
        break;
        
    case 0xa8: /* test eAX, Iv */
    case 0xa9:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        val = insn_get(s, ot);

        gen_op_mov_TN_reg[ot][0][OR_EAX]();
B
bellard 已提交
2184
        gen_op_movl_T1_im(val);
B
bellard 已提交
2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209
        gen_op_testl_T0_T1_cc();
        s->cc_op = CC_OP_LOGICB + ot;
        break;
        
    case 0x98: /* CWDE/CBW */
        if (dflag)
            gen_op_movswl_EAX_AX();
        else
            gen_op_movsbw_AX_AL();
        break;
    case 0x99: /* CDQ/CWD */
        if (dflag)
            gen_op_movslq_EDX_EAX();
        else
            gen_op_movswl_DX_AX();
        break;
    case 0x1af: /* imul Gv, Ev */
    case 0x69: /* imul Gv, Ev, I */
    case 0x6b:
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = ((modrm >> 3) & 7) + OR_EAX;
        gen_ldst_modrm(s, modrm, ot, OR_TMP0, 0);
        if (b == 0x69) {
            val = insn_get(s, ot);
B
bellard 已提交
2210
            gen_op_movl_T1_im(val);
B
bellard 已提交
2211 2212
        } else if (b == 0x6b) {
            val = insn_get(s, OT_BYTE);
B
bellard 已提交
2213
            gen_op_movl_T1_im(val);
B
bellard 已提交
2214 2215 2216 2217 2218
        } else {
            gen_op_mov_TN_reg[ot][1][reg]();
        }

        if (ot == OT_LONG) {
B
bellard 已提交
2219
            gen_op_imull_T0_T1();
B
bellard 已提交
2220
        } else {
B
bellard 已提交
2221
            gen_op_imulw_T0_T1();
B
bellard 已提交
2222 2223
        }
        gen_op_mov_reg_T0[ot][reg]();
B
bellard 已提交
2224
        s->cc_op = CC_OP_MUL;
B
bellard 已提交
2225
        break;
B
bellard 已提交
2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238
    case 0x1c0:
    case 0x1c1: /* xadd Ev, Gv */
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        mod = (modrm >> 6) & 3;
        if (mod == 3) {
            rm = modrm & 7;
            gen_op_mov_TN_reg[ot][0][reg]();
            gen_op_mov_TN_reg[ot][1][rm]();
2239
            gen_op_addl_T0_T1();
B
bellard 已提交
2240 2241 2242 2243 2244
            gen_op_mov_reg_T0[ot][rm]();
            gen_op_mov_reg_T1[ot][reg]();
        } else {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
            gen_op_mov_TN_reg[ot][0][reg]();
2245
            gen_op_ld_T1_A0[ot + s->mem_index]();
2246
            gen_op_addl_T0_T1();
2247
            gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2248 2249
            gen_op_mov_reg_T1[ot][reg]();
        }
2250
        gen_op_update2_cc();
B
bellard 已提交
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269
        s->cc_op = CC_OP_ADDB + ot;
        break;
    case 0x1b0:
    case 0x1b1: /* cmpxchg Ev, Gv */
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        mod = (modrm >> 6) & 3;
        gen_op_mov_TN_reg[ot][1][reg]();
        if (mod == 3) {
            rm = modrm & 7;
            gen_op_mov_TN_reg[ot][0][rm]();
            gen_op_cmpxchg_T0_T1_EAX_cc[ot]();
            gen_op_mov_reg_T0[ot][rm]();
        } else {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
2270
            gen_op_ld_T0_A0[ot + s->mem_index]();
2271
            gen_op_cmpxchg_mem_T0_T1_EAX_cc[ot]();
B
bellard 已提交
2272 2273 2274
        }
        s->cc_op = CC_OP_SUBB + ot;
        break;
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285
    case 0x1c7: /* cmpxchg8b */
        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        if (mod == 3)
            goto illegal_op;
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
        gen_op_cmpxchg8b();
        s->cc_op = CC_OP_EFLAGS;
        break;
B
bellard 已提交
2286 2287 2288 2289
        
        /**************************/
        /* push/pop */
    case 0x50 ... 0x57: /* push */
B
bellard 已提交
2290
        gen_op_mov_TN_reg[OT_LONG][0][b & 7]();
B
bellard 已提交
2291
        gen_push_T0(s);
B
bellard 已提交
2292 2293
        break;
    case 0x58 ... 0x5f: /* pop */
B
bellard 已提交
2294 2295 2296 2297
        ot = dflag ? OT_LONG : OT_WORD;
        gen_pop_T0(s);
        gen_op_mov_reg_T0[ot][b & 7]();
        gen_pop_update(s);
B
bellard 已提交
2298
        break;
B
bellard 已提交
2299
    case 0x60: /* pusha */
B
bellard 已提交
2300
        gen_pusha(s);
B
bellard 已提交
2301 2302
        break;
    case 0x61: /* popa */
B
bellard 已提交
2303
        gen_popa(s);
B
bellard 已提交
2304
        break;
B
bellard 已提交
2305 2306 2307 2308 2309 2310 2311
    case 0x68: /* push Iv */
    case 0x6a:
        ot = dflag ? OT_LONG : OT_WORD;
        if (b == 0x68)
            val = insn_get(s, ot);
        else
            val = (int8_t)insn_get(s, OT_BYTE);
B
bellard 已提交
2312
        gen_op_movl_T0_im(val);
B
bellard 已提交
2313
        gen_push_T0(s);
B
bellard 已提交
2314 2315 2316 2317
        break;
    case 0x8f: /* pop Ev */
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
B
bellard 已提交
2318
        gen_pop_T0(s);
2319
        s->popl_esp_hack = 2 << dflag;
B
bellard 已提交
2320
        gen_ldst_modrm(s, modrm, ot, OR_TMP0, 1);
2321
        s->popl_esp_hack = 0;
B
bellard 已提交
2322
        gen_pop_update(s);
B
bellard 已提交
2323
        break;
B
bellard 已提交
2324 2325 2326 2327 2328 2329
    case 0xc8: /* enter */
        {
            int level;
            val = lduw(s->pc);
            s->pc += 2;
            level = ldub(s->pc++);
B
bellard 已提交
2330
            gen_enter(s, val, level);
B
bellard 已提交
2331 2332
        }
        break;
B
bellard 已提交
2333
    case 0xc9: /* leave */
2334
        /* XXX: exception not precise (ESP is updated before potential exception) */
B
bellard 已提交
2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
        if (s->ss32) {
            gen_op_mov_TN_reg[OT_LONG][0][R_EBP]();
            gen_op_mov_reg_T0[OT_LONG][R_ESP]();
        } else {
            gen_op_mov_TN_reg[OT_WORD][0][R_EBP]();
            gen_op_mov_reg_T0[OT_WORD][R_ESP]();
        }
        gen_pop_T0(s);
        ot = dflag ? OT_LONG : OT_WORD;
        gen_op_mov_reg_T0[ot][R_EBP]();
        gen_pop_update(s);
B
bellard 已提交
2346
        break;
B
bellard 已提交
2347 2348 2349 2350 2351
    case 0x06: /* push es */
    case 0x0e: /* push cs */
    case 0x16: /* push ss */
    case 0x1e: /* push ds */
        gen_op_movl_T0_seg(b >> 3);
B
bellard 已提交
2352
        gen_push_T0(s);
B
bellard 已提交
2353 2354 2355
        break;
    case 0x1a0: /* push fs */
    case 0x1a8: /* push gs */
2356
        gen_op_movl_T0_seg((b >> 3) & 7);
B
bellard 已提交
2357
        gen_push_T0(s);
B
bellard 已提交
2358 2359 2360 2361
        break;
    case 0x07: /* pop es */
    case 0x17: /* pop ss */
    case 0x1f: /* pop ds */
2362
        reg = b >> 3;
B
bellard 已提交
2363
        gen_pop_T0(s);
2364
        gen_movl_seg_T0(s, reg, pc_start - s->cs_base);
B
bellard 已提交
2365
        gen_pop_update(s);
2366 2367 2368 2369
        if (reg == R_SS) {
            /* if reg == SS, inhibit interrupts/trace */
            gen_op_set_inhibit_irq();
        }
B
bellard 已提交
2370 2371 2372
        break;
    case 0x1a1: /* pop fs */
    case 0x1a9: /* pop gs */
B
bellard 已提交
2373
        gen_pop_T0(s);
B
bellard 已提交
2374
        gen_movl_seg_T0(s, (b >> 3) & 7, pc_start - s->cs_base);
B
bellard 已提交
2375
        gen_pop_update(s);
B
bellard 已提交
2376 2377
        break;

B
bellard 已提交
2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
        /**************************/
        /* mov */
    case 0x88:
    case 0x89: /* mov Gv, Ev */
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        
        /* generate a generic store */
        gen_ldst_modrm(s, modrm, ot, OR_EAX + reg, 1);
        break;
    case 0xc6:
    case 0xc7: /* mov Ev, Iv */
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
B
bellard 已提交
2400 2401
        if (mod != 3)
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
B
bellard 已提交
2402
        val = insn_get(s, ot);
B
bellard 已提交
2403
        gen_op_movl_T0_im(val);
B
bellard 已提交
2404
        if (mod != 3)
2405
            gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2406 2407
        else
            gen_op_mov_reg_T0[ot][modrm & 7]();
B
bellard 已提交
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420
        break;
    case 0x8a:
    case 0x8b: /* mov Ev, Gv */
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        
        gen_ldst_modrm(s, modrm, ot, OR_TMP0, 0);
        gen_op_mov_reg_T0[ot][reg]();
        break;
B
bellard 已提交
2421 2422 2423
    case 0x8e: /* mov seg, Gv */
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
B
bellard 已提交
2424
        if (reg >= 6 || reg == R_CS)
B
bellard 已提交
2425
            goto illegal_op;
2426
        gen_ldst_modrm(s, modrm, OT_WORD, OR_TMP0, 0);
B
bellard 已提交
2427
        gen_movl_seg_T0(s, reg, pc_start - s->cs_base);
2428 2429 2430 2431
        if (reg == R_SS) {
            /* if reg == SS, inhibit interrupts/trace */
            gen_op_set_inhibit_irq();
        }
B
bellard 已提交
2432 2433 2434 2435
        break;
    case 0x8c: /* mov Gv, seg */
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
2436
        mod = (modrm >> 6) & 3;
B
bellard 已提交
2437 2438 2439
        if (reg >= 6)
            goto illegal_op;
        gen_op_movl_T0_seg(reg);
2440 2441 2442
        ot = OT_WORD;
        if (mod == 3 && dflag)
            ot = OT_LONG;
B
bellard 已提交
2443 2444
        gen_ldst_modrm(s, modrm, ot, OR_TMP0, 1);
        break;
B
bellard 已提交
2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481

    case 0x1b6: /* movzbS Gv, Eb */
    case 0x1b7: /* movzwS Gv, Eb */
    case 0x1be: /* movsbS Gv, Eb */
    case 0x1bf: /* movswS Gv, Eb */
        {
            int d_ot;
            /* d_ot is the size of destination */
            d_ot = dflag + OT_WORD;
            /* ot is the size of source */
            ot = (b & 1) + OT_BYTE;
            modrm = ldub(s->pc++);
            reg = ((modrm >> 3) & 7) + OR_EAX;
            mod = (modrm >> 6) & 3;
            rm = modrm & 7;
            
            if (mod == 3) {
                gen_op_mov_TN_reg[ot][0][rm]();
                switch(ot | (b & 8)) {
                case OT_BYTE:
                    gen_op_movzbl_T0_T0();
                    break;
                case OT_BYTE | 8:
                    gen_op_movsbl_T0_T0();
                    break;
                case OT_WORD:
                    gen_op_movzwl_T0_T0();
                    break;
                default:
                case OT_WORD | 8:
                    gen_op_movswl_T0_T0();
                    break;
                }
                gen_op_mov_reg_T0[d_ot][reg]();
            } else {
                gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
                if (b & 8) {
2482
                    gen_op_lds_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2483
                } else {
2484
                    gen_op_ldu_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2485 2486 2487 2488 2489 2490 2491 2492 2493 2494
                }
                gen_op_mov_reg_T0[d_ot][reg]();
            }
        }
        break;

    case 0x8d: /* lea */
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
B
bellard 已提交
2495
        /* we must ensure that no segment is added */
2496
        s->override = -1;
B
bellard 已提交
2497 2498
        val = s->addseg;
        s->addseg = 0;
B
bellard 已提交
2499
        gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
B
bellard 已提交
2500
        s->addseg = val;
B
bellard 已提交
2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
        gen_op_mov_reg_A0[ot - OT_WORD][reg]();
        break;
        
    case 0xa0: /* mov EAX, Ov */
    case 0xa1:
    case 0xa2: /* mov Ov, EAX */
    case 0xa3:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        if (s->aflag)
            offset_addr = insn_get(s, OT_LONG);
        else
            offset_addr = insn_get(s, OT_WORD);
B
bellard 已提交
2516
        gen_op_movl_A0_im(offset_addr);
B
bellard 已提交
2517 2518 2519 2520
        /* handle override */
        {
            int override, must_add_seg;
            must_add_seg = s->addseg;
2521 2522
            if (s->override >= 0) {
                override = s->override;
B
bellard 已提交
2523
                must_add_seg = 1;
2524 2525
            } else {
                override = R_DS;
B
bellard 已提交
2526 2527
            }
            if (must_add_seg) {
B
bellard 已提交
2528
                gen_op_addl_A0_seg(offsetof(CPUX86State,segs[override].base));
B
bellard 已提交
2529 2530
            }
        }
B
bellard 已提交
2531
        if ((b & 2) == 0) {
2532
            gen_op_ld_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2533 2534 2535
            gen_op_mov_reg_T0[ot][R_EAX]();
        } else {
            gen_op_mov_TN_reg[ot][0][R_EAX]();
2536
            gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2537 2538
        }
        break;
B
bellard 已提交
2539 2540 2541 2542 2543
    case 0xd7: /* xlat */
        gen_op_movl_A0_reg[R_EBX]();
        gen_op_addl_A0_AL();
        if (s->aflag == 0)
            gen_op_andl_A0_ffff();
2544
        /* handle override */
B
bellard 已提交
2545 2546 2547
        {
            int override, must_add_seg;
            must_add_seg = s->addseg;
2548 2549 2550
            override = R_DS;
            if (s->override >= 0) {
                override = s->override;
B
bellard 已提交
2551
                must_add_seg = 1;
2552 2553
            } else {
                override = R_DS;
B
bellard 已提交
2554 2555
            }
            if (must_add_seg) {
B
bellard 已提交
2556
                gen_op_addl_A0_seg(offsetof(CPUX86State,segs[override].base));
B
bellard 已提交
2557 2558
            }
        }
2559
        gen_op_ldu_T0_A0[OT_BYTE + s->mem_index]();
B
bellard 已提交
2560 2561
        gen_op_mov_reg_T0[OT_BYTE][R_EAX]();
        break;
B
bellard 已提交
2562 2563
    case 0xb0 ... 0xb7: /* mov R, Ib */
        val = insn_get(s, OT_BYTE);
B
bellard 已提交
2564
        gen_op_movl_T0_im(val);
B
bellard 已提交
2565 2566 2567 2568 2569 2570
        gen_op_mov_reg_T0[OT_BYTE][b & 7]();
        break;
    case 0xb8 ... 0xbf: /* mov R, Iv */
        ot = dflag ? OT_LONG : OT_WORD;
        val = insn_get(s, ot);
        reg = OR_EAX + (b & 7);
B
bellard 已提交
2571
        gen_op_movl_T0_im(val);
B
bellard 已提交
2572 2573 2574 2575 2576 2577
        gen_op_mov_reg_T0[ot][reg]();
        break;

    case 0x91 ... 0x97: /* xchg R, EAX */
        ot = dflag ? OT_LONG : OT_WORD;
        reg = b & 7;
B
bellard 已提交
2578 2579
        rm = R_EAX;
        goto do_xchg_reg;
B
bellard 已提交
2580 2581 2582 2583 2584 2585 2586 2587
    case 0x86:
    case 0x87: /* xchg Ev, Gv */
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
B
bellard 已提交
2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598
        mod = (modrm >> 6) & 3;
        if (mod == 3) {
            rm = modrm & 7;
        do_xchg_reg:
            gen_op_mov_TN_reg[ot][0][reg]();
            gen_op_mov_TN_reg[ot][1][rm]();
            gen_op_mov_reg_T0[ot][rm]();
            gen_op_mov_reg_T1[ot][reg]();
        } else {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
            gen_op_mov_TN_reg[ot][0][reg]();
B
bellard 已提交
2599 2600 2601
            /* for xchg, lock is implicit */
            if (!(prefixes & PREFIX_LOCK))
                gen_op_lock();
2602 2603
            gen_op_ld_T1_A0[ot + s->mem_index]();
            gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
2604 2605
            if (!(prefixes & PREFIX_LOCK))
                gen_op_unlock();
B
bellard 已提交
2606 2607
            gen_op_mov_reg_T1[ot][reg]();
        }
B
bellard 已提交
2608
        break;
B
bellard 已提交
2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629
    case 0xc4: /* les Gv */
        op = R_ES;
        goto do_lxx;
    case 0xc5: /* lds Gv */
        op = R_DS;
        goto do_lxx;
    case 0x1b2: /* lss Gv */
        op = R_SS;
        goto do_lxx;
    case 0x1b4: /* lfs Gv */
        op = R_FS;
        goto do_lxx;
    case 0x1b5: /* lgs Gv */
        op = R_GS;
    do_lxx:
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        mod = (modrm >> 6) & 3;
        if (mod == 3)
            goto illegal_op;
2630
        gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
2631
        gen_op_ld_T1_A0[ot + s->mem_index]();
B
bellard 已提交
2632
        gen_op_addl_A0_im(1 << (ot - OT_WORD + 1));
B
bellard 已提交
2633 2634
        /* load the segment first to handle exceptions properly */
        gen_op_lduw_T0_A0();
B
bellard 已提交
2635
        gen_movl_seg_T0(s, op, pc_start - s->cs_base);
B
bellard 已提交
2636 2637 2638
        /* then put the data */
        gen_op_mov_reg_T1[ot][reg]();
        break;
B
bellard 已提交
2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
        
        /************************/
        /* shifts */
    case 0xc0:
    case 0xc1:
        /* shift Ev,Ib */
        shift = 2;
    grp2:
        {
            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
            
            modrm = ldub(s->pc++);
            mod = (modrm >> 6) & 3;
            rm = modrm & 7;
            op = (modrm >> 3) & 7;
            
            if (mod != 3) {
                gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
                opreg = OR_TMP0;
            } else {
                opreg = rm + OR_EAX;
            }

            /* simpler op */
            if (shift == 0) {
                gen_shift(s, op, ot, opreg, OR_ECX);
            } else {
                if (shift == 2) {
                    shift = ldub(s->pc++);
                }
                gen_shifti(s, op, ot, opreg, shift);
            }
        }
        break;
    case 0xd0:
    case 0xd1:
        /* shift Ev,1 */
        shift = 1;
        goto grp2;
    case 0xd2:
    case 0xd3:
        /* shift Ev,cl */
        shift = 0;
        goto grp2;

2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710
    case 0x1a4: /* shld imm */
        op = 0;
        shift = 1;
        goto do_shiftd;
    case 0x1a5: /* shld cl */
        op = 0;
        shift = 0;
        goto do_shiftd;
    case 0x1ac: /* shrd imm */
        op = 1;
        shift = 1;
        goto do_shiftd;
    case 0x1ad: /* shrd cl */
        op = 1;
        shift = 0;
    do_shiftd:
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        rm = modrm & 7;
        reg = (modrm >> 3) & 7;
        
        if (mod != 3) {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
2711
            gen_op_ld_T0_A0[ot + s->mem_index]();
2712 2713 2714 2715 2716 2717 2718 2719 2720
        } else {
            gen_op_mov_TN_reg[ot][0][rm]();
        }
        gen_op_mov_TN_reg[ot][1][reg]();
        
        if (shift) {
            val = ldub(s->pc++);
            val &= 0x1f;
            if (val) {
2721 2722 2723 2724
                if (mod == 3)
                    gen_op_shiftd_T0_T1_im_cc[ot - OT_WORD][op](val);
                else
                    gen_op_shiftd_mem_T0_T1_im_cc[ot - OT_WORD][op](val);
2725 2726 2727 2728 2729 2730 2731 2732
                if (op == 0 && ot != OT_WORD)
                    s->cc_op = CC_OP_SHLB + ot;
                else
                    s->cc_op = CC_OP_SARB + ot;
            }
        } else {
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
2733 2734 2735 2736
            if (mod == 3)
                gen_op_shiftd_T0_T1_ECX_cc[ot - OT_WORD][op]();
            else
                gen_op_shiftd_mem_T0_T1_ECX_cc[ot - OT_WORD][op]();
2737 2738
            s->cc_op = CC_OP_DYNAMIC; /* cannot predict flags after */
        }
2739
        if (mod == 3) {
2740 2741 2742 2743
            gen_op_mov_reg_T0[ot][rm]();
        }
        break;

B
bellard 已提交
2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760
        /************************/
        /* floats */
    case 0xd8 ... 0xdf: 
        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        rm = modrm & 7;
        op = ((b & 7) << 3) | ((modrm >> 3) & 7);
        
        if (mod != 3) {
            /* memory op */
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
            switch(op) {
            case 0x00 ... 0x07: /* fxxxs */
            case 0x10 ... 0x17: /* fixxxl */
            case 0x20 ... 0x27: /* fxxxl */
            case 0x30 ... 0x37: /* fixxx */
                {
B
bellard 已提交
2761 2762
                    int op1;
                    op1 = op & 7;
B
bellard 已提交
2763 2764 2765

                    switch(op >> 4) {
                    case 0:
B
bellard 已提交
2766
                        gen_op_flds_FT0_A0();
B
bellard 已提交
2767 2768
                        break;
                    case 1:
B
bellard 已提交
2769
                        gen_op_fildl_FT0_A0();
B
bellard 已提交
2770 2771
                        break;
                    case 2:
B
bellard 已提交
2772
                        gen_op_fldl_FT0_A0();
B
bellard 已提交
2773 2774 2775
                        break;
                    case 3:
                    default:
B
bellard 已提交
2776
                        gen_op_fild_FT0_A0();
B
bellard 已提交
2777 2778 2779
                        break;
                    }
                    
B
bellard 已提交
2780 2781
                    gen_op_fp_arith_ST0_FT0[op1]();
                    if (op1 == 3) {
B
bellard 已提交
2782
                        /* fcomp needs pop */
B
bellard 已提交
2783
                        gen_op_fpop();
B
bellard 已提交
2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801
                    }
                }
                break;
            case 0x08: /* flds */
            case 0x0a: /* fsts */
            case 0x0b: /* fstps */
            case 0x18: /* fildl */
            case 0x1a: /* fistl */
            case 0x1b: /* fistpl */
            case 0x28: /* fldl */
            case 0x2a: /* fstl */
            case 0x2b: /* fstpl */
            case 0x38: /* filds */
            case 0x3a: /* fists */
            case 0x3b: /* fistps */
                
                switch(op & 7) {
                case 0:
B
bellard 已提交
2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815
                    switch(op >> 4) {
                    case 0:
                        gen_op_flds_ST0_A0();
                        break;
                    case 1:
                        gen_op_fildl_ST0_A0();
                        break;
                    case 2:
                        gen_op_fldl_ST0_A0();
                        break;
                    case 3:
                    default:
                        gen_op_fild_ST0_A0();
                        break;
B
bellard 已提交
2816 2817 2818
                    }
                    break;
                default:
B
bellard 已提交
2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832
                    switch(op >> 4) {
                    case 0:
                        gen_op_fsts_ST0_A0();
                        break;
                    case 1:
                        gen_op_fistl_ST0_A0();
                        break;
                    case 2:
                        gen_op_fstl_ST0_A0();
                        break;
                    case 3:
                    default:
                        gen_op_fist_ST0_A0();
                        break;
B
bellard 已提交
2833 2834
                    }
                    if ((op & 7) == 3)
B
bellard 已提交
2835
                        gen_op_fpop();
B
bellard 已提交
2836 2837 2838
                    break;
                }
                break;
2839 2840 2841
            case 0x0c: /* fldenv mem */
                gen_op_fldenv_A0(s->dflag);
                break;
B
bellard 已提交
2842 2843 2844
            case 0x0d: /* fldcw mem */
                gen_op_fldcw_A0();
                break;
2845 2846 2847
            case 0x0e: /* fnstenv mem */
                gen_op_fnstenv_A0(s->dflag);
                break;
B
bellard 已提交
2848 2849 2850
            case 0x0f: /* fnstcw mem */
                gen_op_fnstcw_A0();
                break;
B
bellard 已提交
2851 2852 2853 2854 2855 2856 2857
            case 0x1d: /* fldt mem */
                gen_op_fldt_ST0_A0();
                break;
            case 0x1f: /* fstpt mem */
                gen_op_fstt_ST0_A0();
                gen_op_fpop();
                break;
2858 2859 2860 2861 2862 2863
            case 0x2c: /* frstor mem */
                gen_op_frstor_A0(s->dflag);
                break;
            case 0x2e: /* fnsave mem */
                gen_op_fnsave_A0(s->dflag);
                break;
B
bellard 已提交
2864
            case 0x2f: /* fnstsw mem */
B
bellard 已提交
2865
                gen_op_fnstsw_A0();
B
bellard 已提交
2866 2867
                break;
            case 0x3c: /* fbld */
2868
                gen_op_fbld_ST0_A0();
B
bellard 已提交
2869
                break;
B
bellard 已提交
2870
            case 0x3e: /* fbstp */
B
bellard 已提交
2871 2872 2873
                gen_op_fbst_ST0_A0();
                gen_op_fpop();
                break;
B
bellard 已提交
2874
            case 0x3d: /* fildll */
B
bellard 已提交
2875
                gen_op_fildll_ST0_A0();
B
bellard 已提交
2876 2877
                break;
            case 0x3f: /* fistpll */
B
bellard 已提交
2878 2879
                gen_op_fistll_ST0_A0();
                gen_op_fpop();
B
bellard 已提交
2880 2881
                break;
            default:
B
bellard 已提交
2882
                goto illegal_op;
B
bellard 已提交
2883 2884 2885
            }
        } else {
            /* register float ops */
B
bellard 已提交
2886
            opreg = rm;
B
bellard 已提交
2887 2888 2889

            switch(op) {
            case 0x08: /* fld sti */
B
bellard 已提交
2890 2891
                gen_op_fpush();
                gen_op_fmov_ST0_STN((opreg + 1) & 7);
B
bellard 已提交
2892 2893
                break;
            case 0x09: /* fxchg sti */
B
bellard 已提交
2894
                gen_op_fxchg_ST0_STN(opreg);
B
bellard 已提交
2895 2896 2897 2898 2899 2900
                break;
            case 0x0a: /* grp d9/2 */
                switch(rm) {
                case 0: /* fnop */
                    break;
                default:
B
bellard 已提交
2901
                    goto illegal_op;
B
bellard 已提交
2902 2903 2904 2905 2906
                }
                break;
            case 0x0c: /* grp d9/4 */
                switch(rm) {
                case 0: /* fchs */
B
bellard 已提交
2907
                    gen_op_fchs_ST0();
B
bellard 已提交
2908 2909
                    break;
                case 1: /* fabs */
B
bellard 已提交
2910
                    gen_op_fabs_ST0();
B
bellard 已提交
2911 2912
                    break;
                case 4: /* ftst */
B
bellard 已提交
2913 2914
                    gen_op_fldz_FT0();
                    gen_op_fcom_ST0_FT0();
B
bellard 已提交
2915 2916
                    break;
                case 5: /* fxam */
B
bellard 已提交
2917
                    gen_op_fxam_ST0();
B
bellard 已提交
2918 2919
                    break;
                default:
B
bellard 已提交
2920
                    goto illegal_op;
B
bellard 已提交
2921 2922 2923 2924
                }
                break;
            case 0x0d: /* grp d9/5 */
                {
B
bellard 已提交
2925 2926
                    switch(rm) {
                    case 0:
B
bellard 已提交
2927
                        gen_op_fpush();
B
bellard 已提交
2928 2929 2930
                        gen_op_fld1_ST0();
                        break;
                    case 1:
B
bellard 已提交
2931 2932
                        gen_op_fpush();
                        gen_op_fldl2t_ST0();
B
bellard 已提交
2933 2934
                        break;
                    case 2:
B
bellard 已提交
2935 2936
                        gen_op_fpush();
                        gen_op_fldl2e_ST0();
B
bellard 已提交
2937 2938
                        break;
                    case 3:
B
bellard 已提交
2939
                        gen_op_fpush();
B
bellard 已提交
2940 2941 2942
                        gen_op_fldpi_ST0();
                        break;
                    case 4:
B
bellard 已提交
2943
                        gen_op_fpush();
B
bellard 已提交
2944 2945 2946
                        gen_op_fldlg2_ST0();
                        break;
                    case 5:
B
bellard 已提交
2947
                        gen_op_fpush();
B
bellard 已提交
2948 2949 2950
                        gen_op_fldln2_ST0();
                        break;
                    case 6:
B
bellard 已提交
2951
                        gen_op_fpush();
B
bellard 已提交
2952 2953 2954
                        gen_op_fldz_ST0();
                        break;
                    default:
B
bellard 已提交
2955
                        goto illegal_op;
B
bellard 已提交
2956 2957 2958 2959 2960 2961
                    }
                }
                break;
            case 0x0e: /* grp d9/6 */
                switch(rm) {
                case 0: /* f2xm1 */
B
bellard 已提交
2962
                    gen_op_f2xm1();
B
bellard 已提交
2963 2964
                    break;
                case 1: /* fyl2x */
B
bellard 已提交
2965
                    gen_op_fyl2x();
B
bellard 已提交
2966 2967
                    break;
                case 2: /* fptan */
B
bellard 已提交
2968
                    gen_op_fptan();
B
bellard 已提交
2969 2970
                    break;
                case 3: /* fpatan */
B
bellard 已提交
2971
                    gen_op_fpatan();
B
bellard 已提交
2972 2973
                    break;
                case 4: /* fxtract */
B
bellard 已提交
2974
                    gen_op_fxtract();
B
bellard 已提交
2975 2976
                    break;
                case 5: /* fprem1 */
B
bellard 已提交
2977
                    gen_op_fprem1();
B
bellard 已提交
2978 2979
                    break;
                case 6: /* fdecstp */
B
bellard 已提交
2980
                    gen_op_fdecstp();
B
bellard 已提交
2981 2982
                    break;
                default:
B
bellard 已提交
2983 2984
                case 7: /* fincstp */
                    gen_op_fincstp();
B
bellard 已提交
2985 2986 2987 2988 2989 2990
                    break;
                }
                break;
            case 0x0f: /* grp d9/7 */
                switch(rm) {
                case 0: /* fprem */
B
bellard 已提交
2991
                    gen_op_fprem();
B
bellard 已提交
2992 2993
                    break;
                case 1: /* fyl2xp1 */
B
bellard 已提交
2994 2995 2996 2997
                    gen_op_fyl2xp1();
                    break;
                case 2: /* fsqrt */
                    gen_op_fsqrt();
B
bellard 已提交
2998 2999
                    break;
                case 3: /* fsincos */
B
bellard 已提交
3000
                    gen_op_fsincos();
B
bellard 已提交
3001 3002
                    break;
                case 5: /* fscale */
B
bellard 已提交
3003
                    gen_op_fscale();
B
bellard 已提交
3004 3005
                    break;
                case 4: /* frndint */
B
bellard 已提交
3006 3007
                    gen_op_frndint();
                    break;
B
bellard 已提交
3008
                case 6: /* fsin */
B
bellard 已提交
3009 3010
                    gen_op_fsin();
                    break;
B
bellard 已提交
3011 3012
                default:
                case 7: /* fcos */
B
bellard 已提交
3013
                    gen_op_fcos();
B
bellard 已提交
3014 3015 3016 3017 3018 3019 3020
                    break;
                }
                break;
            case 0x00: case 0x01: case 0x04 ... 0x07: /* fxxx st, sti */
            case 0x20: case 0x21: case 0x24 ... 0x27: /* fxxx sti, st */
            case 0x30: case 0x31: case 0x34 ... 0x37: /* fxxxp sti, st */
                {
B
bellard 已提交
3021
                    int op1;
B
bellard 已提交
3022
                    
B
bellard 已提交
3023
                    op1 = op & 7;
B
bellard 已提交
3024
                    if (op >= 0x20) {
B
bellard 已提交
3025
                        gen_op_fp_arith_STN_ST0[op1](opreg);
B
bellard 已提交
3026 3027
                        if (op >= 0x30)
                            gen_op_fpop();
B
bellard 已提交
3028
                    } else {
B
bellard 已提交
3029 3030
                        gen_op_fmov_FT0_STN(opreg);
                        gen_op_fp_arith_ST0_FT0[op1]();
B
bellard 已提交
3031 3032 3033 3034
                    }
                }
                break;
            case 0x02: /* fcom */
B
bellard 已提交
3035 3036
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fcom_ST0_FT0();
B
bellard 已提交
3037 3038
                break;
            case 0x03: /* fcomp */
B
bellard 已提交
3039 3040 3041
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fcom_ST0_FT0();
                gen_op_fpop();
B
bellard 已提交
3042 3043 3044 3045
                break;
            case 0x15: /* da/5 */
                switch(rm) {
                case 1: /* fucompp */
B
bellard 已提交
3046
                    gen_op_fmov_FT0_STN(1);
B
bellard 已提交
3047
                    gen_op_fucom_ST0_FT0();
B
bellard 已提交
3048 3049
                    gen_op_fpop();
                    gen_op_fpop();
B
bellard 已提交
3050 3051
                    break;
                default:
B
bellard 已提交
3052 3053 3054 3055 3056
                    goto illegal_op;
                }
                break;
            case 0x1c:
                switch(rm) {
B
bellard 已提交
3057 3058 3059 3060
                case 0: /* feni (287 only, just do nop here) */
                    break;
                case 1: /* fdisi (287 only, just do nop here) */
                    break;
B
bellard 已提交
3061 3062 3063 3064 3065 3066
                case 2: /* fclex */
                    gen_op_fclex();
                    break;
                case 3: /* fninit */
                    gen_op_fninit();
                    break;
B
bellard 已提交
3067 3068
                case 4: /* fsetpm (287 only, just do nop here) */
                    break;
B
bellard 已提交
3069 3070
                default:
                    goto illegal_op;
B
bellard 已提交
3071 3072
                }
                break;
3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086
            case 0x1d: /* fucomi */
                if (s->cc_op != CC_OP_DYNAMIC)
                    gen_op_set_cc_op(s->cc_op);
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fucomi_ST0_FT0();
                s->cc_op = CC_OP_EFLAGS;
                break;
            case 0x1e: /* fcomi */
                if (s->cc_op != CC_OP_DYNAMIC)
                    gen_op_set_cc_op(s->cc_op);
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fcomi_ST0_FT0();
                s->cc_op = CC_OP_EFLAGS;
                break;
B
bellard 已提交
3087
            case 0x2a: /* fst sti */
B
bellard 已提交
3088
                gen_op_fmov_STN_ST0(opreg);
B
bellard 已提交
3089 3090
                break;
            case 0x2b: /* fstp sti */
B
bellard 已提交
3091 3092
                gen_op_fmov_STN_ST0(opreg);
                gen_op_fpop();
B
bellard 已提交
3093
                break;
B
bellard 已提交
3094 3095 3096 3097 3098 3099 3100 3101 3102
            case 0x2c: /* fucom st(i) */
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fucom_ST0_FT0();
                break;
            case 0x2d: /* fucomp st(i) */
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fucom_ST0_FT0();
                gen_op_fpop();
                break;
B
bellard 已提交
3103 3104 3105
            case 0x33: /* de/3 */
                switch(rm) {
                case 1: /* fcompp */
B
bellard 已提交
3106 3107 3108 3109
                    gen_op_fmov_FT0_STN(1);
                    gen_op_fcom_ST0_FT0();
                    gen_op_fpop();
                    gen_op_fpop();
B
bellard 已提交
3110 3111
                    break;
                default:
B
bellard 已提交
3112
                    goto illegal_op;
B
bellard 已提交
3113 3114 3115 3116 3117
                }
                break;
            case 0x3c: /* df/4 */
                switch(rm) {
                case 0:
B
bellard 已提交
3118
                    gen_op_fnstsw_EAX();
B
bellard 已提交
3119 3120
                    break;
                default:
B
bellard 已提交
3121
                    goto illegal_op;
B
bellard 已提交
3122 3123
                }
                break;
3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139
            case 0x3d: /* fucomip */
                if (s->cc_op != CC_OP_DYNAMIC)
                    gen_op_set_cc_op(s->cc_op);
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fucomi_ST0_FT0();
                gen_op_fpop();
                s->cc_op = CC_OP_EFLAGS;
                break;
            case 0x3e: /* fcomip */
                if (s->cc_op != CC_OP_DYNAMIC)
                    gen_op_set_cc_op(s->cc_op);
                gen_op_fmov_FT0_STN(opreg);
                gen_op_fcomi_ST0_FT0();
                gen_op_fpop();
                s->cc_op = CC_OP_EFLAGS;
                break;
B
bellard 已提交
3140
            default:
B
bellard 已提交
3141
                goto illegal_op;
B
bellard 已提交
3142 3143 3144 3145 3146
            }
        }
        break;
        /************************/
        /* string ops */
3147

B
bellard 已提交
3148 3149 3150 3151 3152 3153
    case 0xa4: /* movsS */
    case 0xa5:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
3154

3155
        if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ)) {
3156
            gen_repz_movs(s, ot, pc_start - s->cs_base, s->pc - s->cs_base);
B
bellard 已提交
3157
        } else {
3158
            gen_movs(s, ot);
B
bellard 已提交
3159 3160 3161 3162 3163 3164 3165 3166 3167
        }
        break;
        
    case 0xaa: /* stosS */
    case 0xab:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
3168

3169
        if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ)) {
3170
            gen_repz_stos(s, ot, pc_start - s->cs_base, s->pc - s->cs_base);
B
bellard 已提交
3171
        } else {
3172
            gen_stos(s, ot);
B
bellard 已提交
3173 3174 3175 3176 3177 3178 3179 3180
        }
        break;
    case 0xac: /* lodsS */
    case 0xad:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
3181
        if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ)) {
3182
            gen_repz_lods(s, ot, pc_start - s->cs_base, s->pc - s->cs_base);
B
bellard 已提交
3183
        } else {
3184
            gen_lods(s, ot);
B
bellard 已提交
3185 3186 3187 3188 3189 3190 3191
        }
        break;
    case 0xae: /* scasS */
    case 0xaf:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
3192
                ot = dflag ? OT_LONG : OT_WORD;
B
bellard 已提交
3193
        if (prefixes & PREFIX_REPNZ) {
B
bellard 已提交
3194 3195
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
3196
            gen_string_es(s, ot, gen_op_scas + STRINGOP_NB);
B
bellard 已提交
3197
            s->cc_op = CC_OP_DYNAMIC; /* cannot predict flags after */
B
bellard 已提交
3198
        } else if (prefixes & PREFIX_REPZ) {
B
bellard 已提交
3199 3200
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
3201
            gen_string_es(s, ot, gen_op_scas);
B
bellard 已提交
3202
            s->cc_op = CC_OP_DYNAMIC; /* cannot predict flags after */
B
bellard 已提交
3203
        } else {
3204
            gen_scas(s, ot);
B
bellard 已提交
3205
            s->cc_op = CC_OP_SUBB + ot;
B
bellard 已提交
3206 3207 3208 3209 3210 3211 3212 3213 3214 3215
        }
        break;

    case 0xa6: /* cmpsS */
    case 0xa7:
        if ((b & 1) == 0)
            ot = OT_BYTE;
        else
            ot = dflag ? OT_LONG : OT_WORD;
        if (prefixes & PREFIX_REPNZ) {
B
bellard 已提交
3216 3217
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
3218
            gen_string_ds(s, ot, gen_op_cmps + STRINGOP_NB);
B
bellard 已提交
3219
            s->cc_op = CC_OP_DYNAMIC; /* cannot predict flags after */
B
bellard 已提交
3220
        } else if (prefixes & PREFIX_REPZ) {
B
bellard 已提交
3221 3222
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
3223
            gen_string_ds(s, ot, gen_op_cmps);
B
bellard 已提交
3224
            s->cc_op = CC_OP_DYNAMIC; /* cannot predict flags after */
B
bellard 已提交
3225
        } else {
3226
            gen_cmps(s, ot);
B
bellard 已提交
3227
            s->cc_op = CC_OP_SUBB + ot;
B
bellard 已提交
3228 3229 3230 3231
        }
        break;
    case 0x6c: /* insS */
    case 0x6d:
3232
        if (s->pe && (s->cpl > s->iopl || s->vm86)) {
3233
            /* NOTE: even for (E)CX = 0 the exception is raised */
3234
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
B
bellard 已提交
3235
        } else {
3236 3237 3238 3239
            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
3240
            if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ)) {
3241
                gen_repz_ins(s, ot, pc_start - s->cs_base, s->pc - s->cs_base);
3242
            } else {
3243
                gen_ins(s, ot);
3244
            }
B
bellard 已提交
3245 3246 3247 3248
        }
        break;
    case 0x6e: /* outsS */
    case 0x6f:
3249
        if (s->pe && (s->cpl > s->iopl || s->vm86)) {
3250
            /* NOTE: even for (E)CX = 0 the exception is raised */
3251
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
B
bellard 已提交
3252
        } else {
3253 3254 3255 3256
            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
3257
            if (prefixes & (PREFIX_REPZ | PREFIX_REPNZ)) {
3258
                gen_repz_outs(s, ot, pc_start - s->cs_base, s->pc - s->cs_base);
3259
            } else {
3260
                gen_outs(s, ot);
3261
            }
B
bellard 已提交
3262 3263
        }
        break;
3264 3265 3266

        /************************/
        /* port I/O */
B
bellard 已提交
3267 3268
    case 0xe4:
    case 0xe5:
3269
        if (s->pe && (s->cpl > s->iopl || s->vm86)) {
3270
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3271 3272 3273 3274 3275 3276 3277 3278 3279 3280
        } else {
            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
            val = ldub(s->pc++);
            gen_op_movl_T0_im(val);
            gen_op_in[ot]();
            gen_op_mov_reg_T1[ot][R_EAX]();
        }
B
bellard 已提交
3281 3282 3283
        break;
    case 0xe6:
    case 0xe7:
3284
        if (s->pe && (s->cpl > s->iopl || s->vm86)) {
3285
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3286 3287 3288 3289 3290 3291 3292 3293 3294 3295
        } else {
            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
            val = ldub(s->pc++);
            gen_op_movl_T0_im(val);
            gen_op_mov_TN_reg[ot][1][R_EAX]();
            gen_op_out[ot]();
        }
B
bellard 已提交
3296 3297 3298
        break;
    case 0xec:
    case 0xed:
3299
        if (s->pe && (s->cpl > s->iopl || s->vm86)) {
3300
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3301 3302 3303 3304 3305 3306 3307 3308 3309
        } else {
            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
            gen_op_mov_TN_reg[OT_WORD][0][R_EDX]();
            gen_op_in[ot]();
            gen_op_mov_reg_T1[ot][R_EAX]();
        }
B
bellard 已提交
3310 3311 3312
        break;
    case 0xee:
    case 0xef:
3313
        if (s->pe && (s->cpl > s->iopl || s->vm86)) {
3314
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3315 3316 3317 3318 3319 3320 3321 3322 3323
        } else {
            if ((b & 1) == 0)
                ot = OT_BYTE;
            else
                ot = dflag ? OT_LONG : OT_WORD;
            gen_op_mov_TN_reg[OT_WORD][0][R_EDX]();
            gen_op_mov_TN_reg[ot][1][R_EAX]();
            gen_op_out[ot]();
        }
B
bellard 已提交
3324
        break;
B
bellard 已提交
3325 3326 3327 3328 3329 3330

        /************************/
        /* control */
    case 0xc2: /* ret im */
        val = ldsw(s->pc);
        s->pc += 2;
B
bellard 已提交
3331
        gen_pop_T0(s);
3332
        gen_stack_update(s, val + (2 << s->dflag));
B
bellard 已提交
3333 3334
        if (s->dflag == 0)
            gen_op_andl_T0_ffff();
B
bellard 已提交
3335
        gen_op_jmp_T0();
B
bellard 已提交
3336
        s->is_jmp = 1;
B
bellard 已提交
3337 3338
        break;
    case 0xc3: /* ret */
B
bellard 已提交
3339 3340 3341 3342
        gen_pop_T0(s);
        gen_pop_update(s);
        if (s->dflag == 0)
            gen_op_andl_T0_ffff();
B
bellard 已提交
3343
        gen_op_jmp_T0();
B
bellard 已提交
3344
        s->is_jmp = 1;
B
bellard 已提交
3345
        break;
B
bellard 已提交
3346 3347 3348
    case 0xca: /* lret im */
        val = ldsw(s->pc);
        s->pc += 2;
3349
    do_lret:
3350 3351 3352 3353 3354 3355 3356 3357
        if (s->pe && !s->vm86) {
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
            gen_op_jmp_im(pc_start - s->cs_base);
            gen_op_lret_protected(s->dflag, val);
        } else {
            gen_stack_A0(s);
            /* pop offset */
3358
            gen_op_ld_T0_A0[1 + s->dflag + s->mem_index]();
3359 3360 3361 3362 3363 3364 3365
            if (s->dflag == 0)
                gen_op_andl_T0_ffff();
            /* NOTE: keeping EIP updated is not a problem in case of
               exception */
            gen_op_jmp_T0();
            /* pop selector */
            gen_op_addl_A0_im(2 << s->dflag);
3366
            gen_op_ld_T0_A0[1 + s->dflag + s->mem_index]();
3367 3368 3369 3370
            gen_op_movl_seg_T0_vm(offsetof(CPUX86State,segs[R_CS]));
            /* add stack offset */
            gen_stack_update(s, val + (4 << s->dflag));
        }
B
bellard 已提交
3371 3372 3373
        s->is_jmp = 1;
        break;
    case 0xcb: /* lret */
3374 3375
        val = 0;
        goto do_lret;
3376
    case 0xcf: /* iret */
3377 3378 3379 3380 3381
        if (!s->pe) {
            /* real mode */
            gen_op_iret_real(s->dflag);
            s->cc_op = CC_OP_EFLAGS;
        } else if (s->vm86 && s->iopl != 3) {
3382
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3383
        } else {
3384 3385 3386 3387
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
            gen_op_jmp_im(pc_start - s->cs_base);
            gen_op_iret_protected(s->dflag);
3388
            s->cc_op = CC_OP_EFLAGS;
3389 3390 3391
        }
        s->is_jmp = 1;
        break;
B
bellard 已提交
3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402
    case 0xe8: /* call im */
        {
            unsigned int next_eip;
            ot = dflag ? OT_LONG : OT_WORD;
            val = insn_get(s, ot);
            next_eip = s->pc - s->cs_base;
            val += next_eip;
            if (s->dflag == 0)
                val &= 0xffff;
            gen_op_movl_T0_im(next_eip);
            gen_push_T0(s);
B
bellard 已提交
3403
            gen_jmp(s, val);
B
bellard 已提交
3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414
        }
        break;
    case 0x9a: /* lcall im */
        {
            unsigned int selector, offset;

            ot = dflag ? OT_LONG : OT_WORD;
            offset = insn_get(s, ot);
            selector = insn_get(s, OT_WORD);
            
            gen_op_movl_T0_im(selector);
3415
            gen_op_movl_T1_im(offset);
B
bellard 已提交
3416
        }
3417
        goto do_lcall;
B
bellard 已提交
3418
    case 0xe9: /* jmp */
B
bellard 已提交
3419 3420 3421 3422 3423
        ot = dflag ? OT_LONG : OT_WORD;
        val = insn_get(s, ot);
        val += s->pc - s->cs_base;
        if (s->dflag == 0)
            val = val & 0xffff;
B
bellard 已提交
3424
        gen_jmp(s, val);
B
bellard 已提交
3425
        break;
B
bellard 已提交
3426 3427 3428 3429 3430 3431 3432 3433 3434
    case 0xea: /* ljmp im */
        {
            unsigned int selector, offset;

            ot = dflag ? OT_LONG : OT_WORD;
            offset = insn_get(s, ot);
            selector = insn_get(s, OT_WORD);
            
            gen_op_movl_T0_im(selector);
3435
            gen_op_movl_T1_im(offset);
B
bellard 已提交
3436
        }
3437
        goto do_ljmp;
B
bellard 已提交
3438 3439
    case 0xeb: /* jmp Jb */
        val = (int8_t)insn_get(s, OT_BYTE);
B
bellard 已提交
3440 3441 3442
        val += s->pc - s->cs_base;
        if (s->dflag == 0)
            val = val & 0xffff;
B
bellard 已提交
3443
        gen_jmp(s, val);
B
bellard 已提交
3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454
        break;
    case 0x70 ... 0x7f: /* jcc Jb */
        val = (int8_t)insn_get(s, OT_BYTE);
        goto do_jcc;
    case 0x180 ... 0x18f: /* jcc Jv */
        if (dflag) {
            val = insn_get(s, OT_LONG);
        } else {
            val = (int16_t)insn_get(s, OT_WORD); 
        }
    do_jcc:
B
bellard 已提交
3455 3456 3457 3458 3459
        next_eip = s->pc - s->cs_base;
        val += next_eip;
        if (s->dflag == 0)
            val &= 0xffff;
        gen_jcc(s, b, val, next_eip);
B
bellard 已提交
3460 3461
        break;

B
bellard 已提交
3462
    case 0x190 ... 0x19f: /* setcc Gv */
B
bellard 已提交
3463 3464 3465 3466
        modrm = ldub(s->pc++);
        gen_setcc(s, b);
        gen_ldst_modrm(s, modrm, OT_BYTE, OR_TMP0, 1);
        break;
B
bellard 已提交
3467 3468 3469 3470 3471 3472 3473 3474
    case 0x140 ... 0x14f: /* cmov Gv, Ev */
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        mod = (modrm >> 6) & 3;
        gen_setcc(s, b);
        if (mod != 3) {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
3475
            gen_op_ld_T1_A0[ot + s->mem_index]();
B
bellard 已提交
3476 3477 3478 3479 3480 3481 3482
        } else {
            rm = modrm & 7;
            gen_op_mov_TN_reg[ot][1][rm]();
        }
        gen_op_cmov_reg_T1_T0[ot - OT_WORD][reg]();
        break;
        
B
bellard 已提交
3483 3484 3485
        /************************/
        /* flags */
    case 0x9c: /* pushf */
3486
        if (s->vm86 && s->iopl != 3) {
3487
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3488 3489 3490
        } else {
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
3491
            gen_op_movl_T0_eflags();
3492 3493
            gen_push_T0(s);
        }
B
bellard 已提交
3494 3495
        break;
    case 0x9d: /* popf */
3496
        if (s->vm86 && s->iopl != 3) {
3497
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3498
        } else {
3499
            gen_pop_T0(s);
3500 3501 3502 3503 3504 3505
            if (s->cpl == 0) {
                if (s->dflag) {
                    gen_op_movl_eflags_T0_cpl0();
                } else {
                    gen_op_movw_eflags_T0_cpl0();
                }
3506
            } else {
3507 3508 3509 3510 3511
                if (s->dflag) {
                    gen_op_movl_eflags_T0();
                } else {
                    gen_op_movw_eflags_T0();
                }
3512 3513 3514
            }
            gen_pop_update(s);
            s->cc_op = CC_OP_EFLAGS;
3515
            s->is_jmp = 2; /* abort translation because TF flag may change */
3516
        }
B
bellard 已提交
3517 3518 3519 3520
        break;
    case 0x9e: /* sahf */
        gen_op_mov_TN_reg[OT_BYTE][0][R_AH]();
        if (s->cc_op != CC_OP_DYNAMIC)
3521
            gen_op_set_cc_op(s->cc_op);
B
bellard 已提交
3522 3523 3524 3525 3526
        gen_op_movb_eflags_T0();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0x9f: /* lahf */
        if (s->cc_op != CC_OP_DYNAMIC)
3527
            gen_op_set_cc_op(s->cc_op);
B
bellard 已提交
3528 3529 3530 3531 3532
        gen_op_movl_T0_eflags();
        gen_op_mov_reg_T0[OT_BYTE][R_AH]();
        break;
    case 0xf5: /* cmc */
        if (s->cc_op != CC_OP_DYNAMIC)
3533
            gen_op_set_cc_op(s->cc_op);
B
bellard 已提交
3534 3535 3536 3537 3538
        gen_op_cmc();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0xf8: /* clc */
        if (s->cc_op != CC_OP_DYNAMIC)
3539
            gen_op_set_cc_op(s->cc_op);
B
bellard 已提交
3540 3541 3542 3543 3544
        gen_op_clc();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0xf9: /* stc */
        if (s->cc_op != CC_OP_DYNAMIC)
3545
            gen_op_set_cc_op(s->cc_op);
B
bellard 已提交
3546 3547 3548 3549 3550 3551 3552 3553 3554 3555
        gen_op_stc();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0xfc: /* cld */
        gen_op_cld();
        break;
    case 0xfd: /* std */
        gen_op_std();
        break;

B
bellard 已提交
3556 3557 3558 3559 3560 3561 3562 3563 3564 3565
        /************************/
        /* bit operations */
    case 0x1ba: /* bt/bts/btr/btc Gv, im */
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        op = (modrm >> 3) & 7;
        mod = (modrm >> 6) & 3;
        rm = modrm & 7;
        if (mod != 3) {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
3566
            gen_op_ld_T0_A0[ot + s->mem_index]();
B
bellard 已提交
3567 3568 3569 3570 3571 3572 3573
        } else {
            gen_op_mov_TN_reg[ot][0][rm]();
        }
        /* load shift */
        val = ldub(s->pc++);
        gen_op_movl_T1_im(val);
        if (op < 4)
B
bellard 已提交
3574
            goto illegal_op;
B
bellard 已提交
3575 3576
        op -= 4;
        gen_op_btx_T0_T1_cc[ot - OT_WORD][op]();
3577
        s->cc_op = CC_OP_SARB + ot;
B
bellard 已提交
3578 3579
        if (op != 0) {
            if (mod != 3)
3580
                gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
3581 3582
            else
                gen_op_mov_reg_T0[ot][rm]();
3583
            gen_op_update_bt_cc();
B
bellard 已提交
3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610
        }
        break;
    case 0x1a3: /* bt Gv, Ev */
        op = 0;
        goto do_btx;
    case 0x1ab: /* bts */
        op = 1;
        goto do_btx;
    case 0x1b3: /* btr */
        op = 2;
        goto do_btx;
    case 0x1bb: /* btc */
        op = 3;
    do_btx:
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        mod = (modrm >> 6) & 3;
        rm = modrm & 7;
        gen_op_mov_TN_reg[OT_LONG][1][reg]();
        if (mod != 3) {
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
            /* specific case: we need to add a displacement */
            if (ot == OT_WORD)
                gen_op_add_bitw_A0_T1();
            else
                gen_op_add_bitl_A0_T1();
3611
            gen_op_ld_T0_A0[ot + s->mem_index]();
B
bellard 已提交
3612 3613 3614 3615
        } else {
            gen_op_mov_TN_reg[ot][0][rm]();
        }
        gen_op_btx_T0_T1_cc[ot - OT_WORD][op]();
3616
        s->cc_op = CC_OP_SARB + ot;
B
bellard 已提交
3617 3618
        if (op != 0) {
            if (mod != 3)
3619
                gen_op_st_T0_A0[ot + s->mem_index]();
B
bellard 已提交
3620 3621
            else
                gen_op_mov_reg_T0[ot][rm]();
3622
            gen_op_update_bt_cc();
B
bellard 已提交
3623 3624
        }
        break;
B
bellard 已提交
3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636
    case 0x1bc: /* bsf */
    case 0x1bd: /* bsr */
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        gen_ldst_modrm(s, modrm, ot, OR_TMP0, 0);
        gen_op_bsx_T0_cc[ot - OT_WORD][b & 1]();
        /* NOTE: we always write back the result. Intel doc says it is
           undefined if T0 == 0 */
        gen_op_mov_reg_T0[ot][reg]();
        s->cc_op = CC_OP_LOGICB + ot;
        break;
B
bellard 已提交
3637
        /************************/
B
bellard 已提交
3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673
        /* bcd */
    case 0x27: /* daa */
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        gen_op_daa();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0x2f: /* das */
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        gen_op_das();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0x37: /* aaa */
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        gen_op_aaa();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0x3f: /* aas */
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        gen_op_aas();
        s->cc_op = CC_OP_EFLAGS;
        break;
    case 0xd4: /* aam */
        val = ldub(s->pc++);
        gen_op_aam(val);
        s->cc_op = CC_OP_LOGICB;
        break;
    case 0xd5: /* aad */
        val = ldub(s->pc++);
        gen_op_aad(val);
        s->cc_op = CC_OP_LOGICB;
        break;
        /************************/
B
bellard 已提交
3674 3675 3676
        /* misc */
    case 0x90: /* nop */
        break;
B
bellard 已提交
3677 3678
    case 0x9b: /* fwait */
        break;
B
bellard 已提交
3679
    case 0xcc: /* int3 */
B
bellard 已提交
3680
        gen_interrupt(s, EXCP03_INT3, pc_start - s->cs_base, s->pc - s->cs_base);
B
bellard 已提交
3681 3682 3683
        break;
    case 0xcd: /* int N */
        val = ldub(s->pc++);
B
bellard 已提交
3684 3685 3686 3687 3688
        /* XXX: add error code for vm86 GPF */
        if (!s->vm86)
            gen_interrupt(s, val, pc_start - s->cs_base, s->pc - s->cs_base);
        else
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base); 
B
bellard 已提交
3689 3690 3691 3692
        break;
    case 0xce: /* into */
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
3693
        gen_op_into(s->pc - s->cs_base);
3694
        break;
3695 3696 3697
    case 0xf1: /* icebp (undocumented, exits to external debugger) */
        gen_debug(s, pc_start - s->cs_base);
        break;
3698
    case 0xfa: /* cli */
3699
        if (!s->vm86) {
3700
            if (s->cpl <= s->iopl) {
3701
                gen_op_cli();
3702
            } else {
3703
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3704
            }
3705
        } else {
3706
            if (s->iopl == 3) {
3707
                gen_op_cli();
3708
            } else {
3709
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3710
            }
3711
        }
3712 3713
        break;
    case 0xfb: /* sti */
3714
        if (!s->vm86) {
3715
            if (s->cpl <= s->iopl) {
3716
                gen_op_sti();
3717 3718
                /* interruptions are enabled only the first insn after sti */
                gen_op_set_inhibit_irq();
B
bellard 已提交
3719
                s->is_jmp = 2; /* give a chance to handle pending irqs */
3720
            } else {
3721
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3722
            }
3723
        } else {
3724
            if (s->iopl == 3) {
3725
                gen_op_sti();
3726 3727
                /* interruptions are enabled only the first insn after sti */
                gen_op_set_inhibit_irq();
B
bellard 已提交
3728
                s->is_jmp = 2; /* give a chance to handle pending irqs */
3729
            } else {
3730
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
3731
            }
3732
        }
3733
        break;
3734 3735 3736 3737 3738 3739 3740 3741 3742 3743
    case 0x62: /* bound */
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        mod = (modrm >> 6) & 3;
        if (mod == 3)
            goto illegal_op;
        gen_op_mov_reg_T0[ot][reg]();
        gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
        if (ot == OT_WORD)
B
bellard 已提交
3744
            gen_op_boundw(pc_start - s->cs_base);
3745
        else
B
bellard 已提交
3746
            gen_op_boundl(pc_start - s->cs_base);
B
bellard 已提交
3747
        break;
B
bellard 已提交
3748
    case 0x1c8 ... 0x1cf: /* bswap reg */
B
bellard 已提交
3749 3750 3751 3752 3753 3754 3755 3756 3757 3758
        reg = b & 7;
        gen_op_mov_TN_reg[OT_LONG][0][reg]();
        gen_op_bswapl_T0();
        gen_op_mov_reg_T0[OT_LONG][reg]();
        break;
    case 0xd6: /* salc */
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        gen_op_salc();
        break;
B
bellard 已提交
3759 3760 3761 3762 3763 3764 3765 3766
    case 0xe0: /* loopnz */
    case 0xe1: /* loopz */
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        /* FALL THRU */
    case 0xe2: /* loop */
    case 0xe3: /* jecxz */
        val = (int8_t)insn_get(s, OT_BYTE);
B
bellard 已提交
3767 3768 3769 3770 3771
        next_eip = s->pc - s->cs_base;
        val += next_eip;
        if (s->dflag == 0)
            val &= 0xffff;
        gen_op_loop[s->aflag][b & 3](val, next_eip);
B
bellard 已提交
3772 3773
        s->is_jmp = 1;
        break;
3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784
    case 0x130: /* wrmsr */
    case 0x132: /* rdmsr */
        if (s->cpl != 0) {
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
        } else {
            if (b & 2)
                gen_op_rdmsr();
            else
                gen_op_wrmsr();
        }
        break;
B
bellard 已提交
3785
    case 0x131: /* rdtsc */
B
bellard 已提交
3786 3787
        gen_op_rdtsc();
        break;
B
bellard 已提交
3788
    case 0x1a2: /* cpuid */
3789
        gen_op_cpuid();
B
bellard 已提交
3790
        break;
3791
    case 0xf4: /* hlt */
3792 3793 3794 3795 3796 3797 3798 3799 3800
        if (s->cpl != 0) {
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
        } else {
            if (s->cc_op != CC_OP_DYNAMIC)
                gen_op_set_cc_op(s->cc_op);
            gen_op_jmp_im(s->pc - s->cs_base);
            gen_op_hlt();
            s->is_jmp = 1;
        }
3801
        break;
B
bellard 已提交
3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858
    case 0x100:
        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        op = (modrm >> 3) & 7;
        switch(op) {
        case 0: /* sldt */
            gen_op_movl_T0_env(offsetof(CPUX86State,ldt.selector));
            ot = OT_WORD;
            if (mod == 3)
                ot += s->dflag;
            gen_ldst_modrm(s, modrm, ot, OR_TMP0, 1);
            break;
        case 2: /* lldt */
            if (s->cpl != 0) {
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
            } else {
                gen_ldst_modrm(s, modrm, OT_WORD, OR_TMP0, 0);
                gen_op_jmp_im(pc_start - s->cs_base);
                gen_op_lldt_T0();
            }
            break;
        case 1: /* str */
            gen_op_movl_T0_env(offsetof(CPUX86State,tr.selector));
            ot = OT_WORD;
            if (mod == 3)
                ot += s->dflag;
            gen_ldst_modrm(s, modrm, ot, OR_TMP0, 1);
            break;
        case 3: /* ltr */
            if (s->cpl != 0) {
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
            } else {
                gen_ldst_modrm(s, modrm, OT_WORD, OR_TMP0, 0);
                gen_op_jmp_im(pc_start - s->cs_base);
                gen_op_ltr_T0();
            }
            break;
        case 4: /* verr */
        case 5: /* verw */
        default:
            goto illegal_op;
        }
        break;
    case 0x101:
        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        op = (modrm >> 3) & 7;
        switch(op) {
        case 0: /* sgdt */
        case 1: /* sidt */
            if (mod == 3)
                goto illegal_op;
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
            if (op == 0)
                gen_op_movl_T0_env(offsetof(CPUX86State,gdt.limit));
            else
                gen_op_movl_T0_env(offsetof(CPUX86State,idt.limit));
3859
            gen_op_st_T0_A0[OT_WORD + s->mem_index]();
B
bellard 已提交
3860 3861 3862 3863 3864 3865 3866
            gen_op_addl_A0_im(2);
            if (op == 0)
                gen_op_movl_T0_env(offsetof(CPUX86State,gdt.base));
            else
                gen_op_movl_T0_env(offsetof(CPUX86State,idt.base));
            if (!s->dflag)
                gen_op_andl_T0_im(0xffffff);
3867
            gen_op_st_T0_A0[OT_LONG + s->mem_index]();
B
bellard 已提交
3868 3869 3870 3871 3872 3873 3874 3875 3876
            break;
        case 2: /* lgdt */
        case 3: /* lidt */
            if (mod == 3)
                goto illegal_op;
            if (s->cpl != 0) {
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
            } else {
                gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
3877
                gen_op_ld_T1_A0[OT_WORD + s->mem_index]();
B
bellard 已提交
3878
                gen_op_addl_A0_im(2);
3879
                gen_op_ld_T0_A0[OT_LONG + s->mem_index]();
B
bellard 已提交
3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902
                if (!s->dflag)
                    gen_op_andl_T0_im(0xffffff);
                if (op == 2) {
                    gen_op_movl_env_T0(offsetof(CPUX86State,gdt.base));
                    gen_op_movl_env_T1(offsetof(CPUX86State,gdt.limit));
                } else {
                    gen_op_movl_env_T0(offsetof(CPUX86State,idt.base));
                    gen_op_movl_env_T1(offsetof(CPUX86State,idt.limit));
                }
            }
            break;
        case 4: /* smsw */
            gen_op_movl_T0_env(offsetof(CPUX86State,cr[0]));
            gen_ldst_modrm(s, modrm, OT_WORD, OR_TMP0, 1);
            break;
        case 6: /* lmsw */
            if (s->cpl != 0) {
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
            } else {
                gen_ldst_modrm(s, modrm, OT_WORD, OR_TMP0, 0);
                gen_op_lmsw_T0();
            }
            break;
3903 3904 3905 3906 3907 3908 3909 3910 3911 3912
        case 7: /* invlpg */
            if (s->cpl != 0) {
                gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
            } else {
                if (mod == 3)
                    goto illegal_op;
                gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
                gen_op_invlpg_A0();
            }
            break;
B
bellard 已提交
3913 3914 3915 3916
        default:
            goto illegal_op;
        }
        break;
3917 3918
    case 0x102: /* lar */
    case 0x103: /* lsl */
3919
        if (!s->pe || s->vm86)
3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934
            goto illegal_op;
        ot = dflag ? OT_LONG : OT_WORD;
        modrm = ldub(s->pc++);
        reg = (modrm >> 3) & 7;
        gen_ldst_modrm(s, modrm, ot, OR_TMP0, 0);
        gen_op_mov_TN_reg[ot][1][reg]();
        if (s->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(s->cc_op);
        if (b == 0x102)
            gen_op_lar();
        else
            gen_op_lsl();
        s->cc_op = CC_OP_EFLAGS;
        gen_op_mov_reg_T1[ot][reg]();
        break;
B
bellard 已提交
3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011
    case 0x118:
        modrm = ldub(s->pc++);
        mod = (modrm >> 6) & 3;
        op = (modrm >> 3) & 7;
        switch(op) {
        case 0: /* prefetchnta */
        case 1: /* prefetchnt0 */
        case 2: /* prefetchnt0 */
        case 3: /* prefetchnt0 */
            if (mod == 3)
                goto illegal_op;
            gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
            /* nothing more to do */
            break;
        default:
            goto illegal_op;
        }
        break;
    case 0x120: /* mov reg, crN */
    case 0x122: /* mov crN, reg */
        if (s->cpl != 0) {
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
        } else {
            modrm = ldub(s->pc++);
            if ((modrm & 0xc0) != 0xc0)
                goto illegal_op;
            rm = modrm & 7;
            reg = (modrm >> 3) & 7;
            switch(reg) {
            case 0:
            case 2:
            case 3:
            case 4:
                if (b & 2) {
                    gen_op_mov_TN_reg[OT_LONG][0][rm]();
                    gen_op_movl_crN_T0(reg);
                    s->is_jmp = 2;
                } else {
                    gen_op_movl_T0_env(offsetof(CPUX86State,cr[reg]));
                    gen_op_mov_reg_T0[OT_LONG][rm]();
                }
                break;
            default:
                goto illegal_op;
            }
        }
        break;
    case 0x121: /* mov reg, drN */
    case 0x123: /* mov drN, reg */
        if (s->cpl != 0) {
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
        } else {
            modrm = ldub(s->pc++);
            if ((modrm & 0xc0) != 0xc0)
                goto illegal_op;
            rm = modrm & 7;
            reg = (modrm >> 3) & 7;
            /* XXX: do it dynamically with CR4.DE bit */
            if (reg == 4 || reg == 5)
                goto illegal_op;
            if (b & 2) {
                gen_op_mov_TN_reg[OT_LONG][0][rm]();
                gen_op_movl_drN_T0(reg);
                s->is_jmp = 2;
            } else {
                gen_op_movl_T0_env(offsetof(CPUX86State,dr[reg]));
                gen_op_mov_reg_T0[OT_LONG][rm]();
            }
        }
        break;
    case 0x106: /* clts */
        if (s->cpl != 0) {
            gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
        } else {
            gen_op_clts();
        }
        break;
B
bellard 已提交
4012
    default:
B
bellard 已提交
4013
        goto illegal_op;
B
bellard 已提交
4014
    }
B
bellard 已提交
4015 4016 4017
    /* lock generation */
    if (s->prefix & PREFIX_LOCK)
        gen_op_unlock();
B
bellard 已提交
4018
    return (long)s->pc;
B
bellard 已提交
4019
 illegal_op:
B
bellard 已提交
4020
    /* XXX: ensure that no lock was generated */
B
bellard 已提交
4021
    return -1;
B
bellard 已提交
4022 4023
}

B
bellard 已提交
4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040
#define CC_OSZAPC (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C)
#define CC_OSZAP (CC_O | CC_S | CC_Z | CC_A | CC_P)

/* flags read by an operation */
static uint16_t opc_read_flags[NB_OPS] = { 
    [INDEX_op_aas] = CC_A,
    [INDEX_op_aaa] = CC_A,
    [INDEX_op_das] = CC_A | CC_C,
    [INDEX_op_daa] = CC_A | CC_C,

    [INDEX_op_adcb_T0_T1_cc] = CC_C,
    [INDEX_op_adcw_T0_T1_cc] = CC_C,
    [INDEX_op_adcl_T0_T1_cc] = CC_C,
    [INDEX_op_sbbb_T0_T1_cc] = CC_C,
    [INDEX_op_sbbw_T0_T1_cc] = CC_C,
    [INDEX_op_sbbl_T0_T1_cc] = CC_C,

4041 4042 4043 4044 4045 4046 4047
    [INDEX_op_adcb_mem_T0_T1_cc] = CC_C,
    [INDEX_op_adcw_mem_T0_T1_cc] = CC_C,
    [INDEX_op_adcl_mem_T0_T1_cc] = CC_C,
    [INDEX_op_sbbb_mem_T0_T1_cc] = CC_C,
    [INDEX_op_sbbw_mem_T0_T1_cc] = CC_C,
    [INDEX_op_sbbl_mem_T0_T1_cc] = CC_C,

4048
    /* subtle: due to the incl/decl implementation, C is used */
4049
    [INDEX_op_update_inc_cc] = CC_C, 
4050

B
bellard 已提交
4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124
    [INDEX_op_into] = CC_O,

    [INDEX_op_jb_subb] = CC_C,
    [INDEX_op_jb_subw] = CC_C,
    [INDEX_op_jb_subl] = CC_C,

    [INDEX_op_jz_subb] = CC_Z,
    [INDEX_op_jz_subw] = CC_Z,
    [INDEX_op_jz_subl] = CC_Z,

    [INDEX_op_jbe_subb] = CC_Z | CC_C,
    [INDEX_op_jbe_subw] = CC_Z | CC_C,
    [INDEX_op_jbe_subl] = CC_Z | CC_C,

    [INDEX_op_js_subb] = CC_S,
    [INDEX_op_js_subw] = CC_S,
    [INDEX_op_js_subl] = CC_S,

    [INDEX_op_jl_subb] = CC_O | CC_S,
    [INDEX_op_jl_subw] = CC_O | CC_S,
    [INDEX_op_jl_subl] = CC_O | CC_S,

    [INDEX_op_jle_subb] = CC_O | CC_S | CC_Z,
    [INDEX_op_jle_subw] = CC_O | CC_S | CC_Z,
    [INDEX_op_jle_subl] = CC_O | CC_S | CC_Z,

    [INDEX_op_loopnzw] = CC_Z,
    [INDEX_op_loopnzl] = CC_Z,
    [INDEX_op_loopzw] = CC_Z,
    [INDEX_op_loopzl] = CC_Z,

    [INDEX_op_seto_T0_cc] = CC_O,
    [INDEX_op_setb_T0_cc] = CC_C,
    [INDEX_op_setz_T0_cc] = CC_Z,
    [INDEX_op_setbe_T0_cc] = CC_Z | CC_C,
    [INDEX_op_sets_T0_cc] = CC_S,
    [INDEX_op_setp_T0_cc] = CC_P,
    [INDEX_op_setl_T0_cc] = CC_O | CC_S,
    [INDEX_op_setle_T0_cc] = CC_O | CC_S | CC_Z,

    [INDEX_op_setb_T0_subb] = CC_C,
    [INDEX_op_setb_T0_subw] = CC_C,
    [INDEX_op_setb_T0_subl] = CC_C,

    [INDEX_op_setz_T0_subb] = CC_Z,
    [INDEX_op_setz_T0_subw] = CC_Z,
    [INDEX_op_setz_T0_subl] = CC_Z,

    [INDEX_op_setbe_T0_subb] = CC_Z | CC_C,
    [INDEX_op_setbe_T0_subw] = CC_Z | CC_C,
    [INDEX_op_setbe_T0_subl] = CC_Z | CC_C,

    [INDEX_op_sets_T0_subb] = CC_S,
    [INDEX_op_sets_T0_subw] = CC_S,
    [INDEX_op_sets_T0_subl] = CC_S,

    [INDEX_op_setl_T0_subb] = CC_O | CC_S,
    [INDEX_op_setl_T0_subw] = CC_O | CC_S,
    [INDEX_op_setl_T0_subl] = CC_O | CC_S,

    [INDEX_op_setle_T0_subb] = CC_O | CC_S | CC_Z,
    [INDEX_op_setle_T0_subw] = CC_O | CC_S | CC_Z,
    [INDEX_op_setle_T0_subl] = CC_O | CC_S | CC_Z,

    [INDEX_op_movl_T0_eflags] = CC_OSZAPC,
    [INDEX_op_cmc] = CC_C,
    [INDEX_op_salc] = CC_C,

    [INDEX_op_rclb_T0_T1_cc] = CC_C,
    [INDEX_op_rclw_T0_T1_cc] = CC_C,
    [INDEX_op_rcll_T0_T1_cc] = CC_C,
    [INDEX_op_rcrb_T0_T1_cc] = CC_C,
    [INDEX_op_rcrw_T0_T1_cc] = CC_C,
    [INDEX_op_rcrl_T0_T1_cc] = CC_C,
4125 4126 4127 4128 4129 4130 4131

    [INDEX_op_rclb_mem_T0_T1_cc] = CC_C,
    [INDEX_op_rclw_mem_T0_T1_cc] = CC_C,
    [INDEX_op_rcll_mem_T0_T1_cc] = CC_C,
    [INDEX_op_rcrb_mem_T0_T1_cc] = CC_C,
    [INDEX_op_rcrw_mem_T0_T1_cc] = CC_C,
    [INDEX_op_rcrl_mem_T0_T1_cc] = CC_C,
B
bellard 已提交
4132 4133 4134 4135
};

/* flags written by an operation */
static uint16_t opc_write_flags[NB_OPS] = { 
4136 4137
    [INDEX_op_update2_cc] = CC_OSZAPC,
    [INDEX_op_update1_cc] = CC_OSZAPC,
4138 4139 4140 4141 4142 4143
    [INDEX_op_cmpl_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_update_neg_cc] = CC_OSZAPC,
    /* subtle: due to the incl/decl implementation, C is used */
    [INDEX_op_update_inc_cc] = CC_OSZAPC, 
    [INDEX_op_testl_T0_T1_cc] = CC_OSZAPC,

B
bellard 已提交
4144 4145 4146 4147 4148 4149
    [INDEX_op_adcb_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_adcw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_adcl_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sbbb_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sbbw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sbbl_T0_T1_cc] = CC_OSZAPC,
4150 4151 4152 4153 4154 4155 4156

    [INDEX_op_adcb_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_adcw_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_adcl_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sbbb_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sbbw_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sbbl_mem_T0_T1_cc] = CC_OSZAPC,
B
bellard 已提交
4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175

    [INDEX_op_mulb_AL_T0] = CC_OSZAPC,
    [INDEX_op_imulb_AL_T0] = CC_OSZAPC,
    [INDEX_op_mulw_AX_T0] = CC_OSZAPC,
    [INDEX_op_imulw_AX_T0] = CC_OSZAPC,
    [INDEX_op_mull_EAX_T0] = CC_OSZAPC,
    [INDEX_op_imull_EAX_T0] = CC_OSZAPC,
    [INDEX_op_imulw_T0_T1] = CC_OSZAPC,
    [INDEX_op_imull_T0_T1] = CC_OSZAPC,
    
    /* bcd */
    [INDEX_op_aam] = CC_OSZAPC,
    [INDEX_op_aad] = CC_OSZAPC,
    [INDEX_op_aas] = CC_OSZAPC,
    [INDEX_op_aaa] = CC_OSZAPC,
    [INDEX_op_das] = CC_OSZAPC,
    [INDEX_op_daa] = CC_OSZAPC,

    [INDEX_op_movb_eflags_T0] = CC_S | CC_Z | CC_A | CC_P | CC_C,
4176
    [INDEX_op_movw_eflags_T0] = CC_OSZAPC,
B
bellard 已提交
4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217
    [INDEX_op_movl_eflags_T0] = CC_OSZAPC,
    [INDEX_op_clc] = CC_C,
    [INDEX_op_stc] = CC_C,
    [INDEX_op_cmc] = CC_C,

    [INDEX_op_rolb_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rolw_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_roll_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rorb_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rorw_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rorl_T0_T1_cc] = CC_O | CC_C,

    [INDEX_op_rclb_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rclw_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcll_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcrb_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcrw_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcrl_T0_T1_cc] = CC_O | CC_C,

    [INDEX_op_shlb_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shlw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shll_T0_T1_cc] = CC_OSZAPC,

    [INDEX_op_shrb_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shrw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shrl_T0_T1_cc] = CC_OSZAPC,

    [INDEX_op_sarb_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sarw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sarl_T0_T1_cc] = CC_OSZAPC,

    [INDEX_op_shldw_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shldl_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shldw_T0_T1_im_cc] = CC_OSZAPC,
    [INDEX_op_shldl_T0_T1_im_cc] = CC_OSZAPC,

    [INDEX_op_shrdw_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shrdl_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shrdw_T0_T1_im_cc] = CC_OSZAPC,
    [INDEX_op_shrdl_T0_T1_im_cc] = CC_OSZAPC,

4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253
    [INDEX_op_rolb_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rolw_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_roll_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rorb_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rorw_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rorl_mem_T0_T1_cc] = CC_O | CC_C,

    [INDEX_op_rclb_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rclw_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcll_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcrb_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcrw_mem_T0_T1_cc] = CC_O | CC_C,
    [INDEX_op_rcrl_mem_T0_T1_cc] = CC_O | CC_C,

    [INDEX_op_shlb_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shlw_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shll_mem_T0_T1_cc] = CC_OSZAPC,

    [INDEX_op_shrb_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shrw_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_shrl_mem_T0_T1_cc] = CC_OSZAPC,

    [INDEX_op_sarb_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sarw_mem_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_sarl_mem_T0_T1_cc] = CC_OSZAPC,

    [INDEX_op_shldw_mem_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shldl_mem_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shldw_mem_T0_T1_im_cc] = CC_OSZAPC,
    [INDEX_op_shldl_mem_T0_T1_im_cc] = CC_OSZAPC,

    [INDEX_op_shrdw_mem_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shrdl_mem_T0_T1_ECX_cc] = CC_OSZAPC,
    [INDEX_op_shrdw_mem_T0_T1_im_cc] = CC_OSZAPC,
    [INDEX_op_shrdl_mem_T0_T1_im_cc] = CC_OSZAPC,

B
bellard 已提交
4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267
    [INDEX_op_btw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_btl_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_btsw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_btsl_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_btrw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_btrl_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_btcw_T0_T1_cc] = CC_OSZAPC,
    [INDEX_op_btcl_T0_T1_cc] = CC_OSZAPC,

    [INDEX_op_bsfw_T0_cc] = CC_OSZAPC,
    [INDEX_op_bsfl_T0_cc] = CC_OSZAPC,
    [INDEX_op_bsrw_T0_cc] = CC_OSZAPC,
    [INDEX_op_bsrl_T0_cc] = CC_OSZAPC,

4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285
#undef STRINGOP
#define STRINGOP(x) \
    [INDEX_op_ ## x ## b_fast] = CC_OSZAPC, \
    [INDEX_op_ ## x ## w_fast] = CC_OSZAPC, \
    [INDEX_op_ ## x ## l_fast] = CC_OSZAPC, \
    [INDEX_op_ ## x ## b_a32] = CC_OSZAPC, \
    [INDEX_op_ ## x ## w_a32] = CC_OSZAPC, \
    [INDEX_op_ ## x ## l_a32] = CC_OSZAPC, \
    [INDEX_op_ ## x ## b_a16] = CC_OSZAPC, \
    [INDEX_op_ ## x ## w_a16] = CC_OSZAPC, \
    [INDEX_op_ ## x ## l_a16] = CC_OSZAPC,

    STRINGOP(repz_scas)
    STRINGOP(repnz_scas)
    STRINGOP(repz_cmps)
    STRINGOP(repnz_cmps)

    [INDEX_op_cmpxchgb_T0_T1_EAX_cc] = CC_OSZAPC,
B
bellard 已提交
4286 4287
    [INDEX_op_cmpxchgw_T0_T1_EAX_cc] = CC_OSZAPC,
    [INDEX_op_cmpxchgl_T0_T1_EAX_cc] = CC_OSZAPC,
4288

4289 4290 4291 4292
    [INDEX_op_cmpxchgb_mem_T0_T1_EAX_cc] = CC_OSZAPC,
    [INDEX_op_cmpxchgw_mem_T0_T1_EAX_cc] = CC_OSZAPC,
    [INDEX_op_cmpxchgl_mem_T0_T1_EAX_cc] = CC_OSZAPC,

4293
    [INDEX_op_cmpxchg8b] = CC_Z,
4294 4295
    [INDEX_op_lar] = CC_Z,
    [INDEX_op_lsl] = CC_Z,
4296 4297
    [INDEX_op_fcomi_ST0_FT0] = CC_Z | CC_P | CC_C,
    [INDEX_op_fucomi_ST0_FT0] = CC_Z | CC_P | CC_C,
B
bellard 已提交
4298 4299 4300 4301
};

/* simpler form of an operation if no flags need to be generated */
static uint16_t opc_simpler[NB_OPS] = { 
4302 4303 4304
    [INDEX_op_update2_cc] = INDEX_op_nop,
    [INDEX_op_update1_cc] = INDEX_op_nop,
    [INDEX_op_update_neg_cc] = INDEX_op_nop,
4305 4306
#if 0
    /* broken: CC_OP logic must be rewritten */
4307
    [INDEX_op_update_inc_cc] = INDEX_op_nop,
4308
#endif
B
bellard 已提交
4309 4310 4311 4312 4313 4314 4315 4316
    [INDEX_op_rolb_T0_T1_cc] = INDEX_op_rolb_T0_T1,
    [INDEX_op_rolw_T0_T1_cc] = INDEX_op_rolw_T0_T1,
    [INDEX_op_roll_T0_T1_cc] = INDEX_op_roll_T0_T1,

    [INDEX_op_rorb_T0_T1_cc] = INDEX_op_rorb_T0_T1,
    [INDEX_op_rorw_T0_T1_cc] = INDEX_op_rorw_T0_T1,
    [INDEX_op_rorl_T0_T1_cc] = INDEX_op_rorl_T0_T1,

4317 4318 4319 4320 4321 4322 4323 4324
    [INDEX_op_rolb_mem_T0_T1_cc] = INDEX_op_rolb_mem_T0_T1,
    [INDEX_op_rolw_mem_T0_T1_cc] = INDEX_op_rolw_mem_T0_T1,
    [INDEX_op_roll_mem_T0_T1_cc] = INDEX_op_roll_mem_T0_T1,

    [INDEX_op_rorb_mem_T0_T1_cc] = INDEX_op_rorb_mem_T0_T1,
    [INDEX_op_rorw_mem_T0_T1_cc] = INDEX_op_rorw_mem_T0_T1,
    [INDEX_op_rorl_mem_T0_T1_cc] = INDEX_op_rorl_mem_T0_T1,

B
bellard 已提交
4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337
    [INDEX_op_shlb_T0_T1_cc] = INDEX_op_shlb_T0_T1,
    [INDEX_op_shlw_T0_T1_cc] = INDEX_op_shlw_T0_T1,
    [INDEX_op_shll_T0_T1_cc] = INDEX_op_shll_T0_T1,

    [INDEX_op_shrb_T0_T1_cc] = INDEX_op_shrb_T0_T1,
    [INDEX_op_shrw_T0_T1_cc] = INDEX_op_shrw_T0_T1,
    [INDEX_op_shrl_T0_T1_cc] = INDEX_op_shrl_T0_T1,

    [INDEX_op_sarb_T0_T1_cc] = INDEX_op_sarb_T0_T1,
    [INDEX_op_sarw_T0_T1_cc] = INDEX_op_sarw_T0_T1,
    [INDEX_op_sarl_T0_T1_cc] = INDEX_op_sarl_T0_T1,
};

4338
void optimize_flags_init(void)
B
bellard 已提交
4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374
{
    int i;
    /* put default values in arrays */
    for(i = 0; i < NB_OPS; i++) {
        if (opc_simpler[i] == 0)
            opc_simpler[i] = i;
    }
}

/* CPU flags computation optimization: we move backward thru the
   generated code to see which flags are needed. The operation is
   modified if suitable */
static void optimize_flags(uint16_t *opc_buf, int opc_buf_len)
{
    uint16_t *opc_ptr;
    int live_flags, write_flags, op;

    opc_ptr = opc_buf + opc_buf_len;
    /* live_flags contains the flags needed by the next instructions
       in the code. At the end of the bloc, we consider that all the
       flags are live. */
    live_flags = CC_OSZAPC;
    while (opc_ptr > opc_buf) {
        op = *--opc_ptr;
        /* if none of the flags written by the instruction is used,
           then we can try to find a simpler instruction */
        write_flags = opc_write_flags[op];
        if ((live_flags & write_flags) == 0) {
            *opc_ptr = opc_simpler[op];
        }
        /* compute the live flags before the instruction */
        live_flags &= ~write_flags;
        live_flags |= opc_read_flags[op];
    }
}

B
bellard 已提交
4375 4376 4377
/* generate intermediate code in gen_opc_buf and gen_opparam_buf for
   basic block 'tb'. If search_pc is TRUE, also generate PC
   information for each intermediate instruction. */
B
bellard 已提交
4378 4379 4380
static inline int gen_intermediate_code_internal(CPUState *env,
                                                 TranslationBlock *tb, 
                                                 int search_pc)
B
bellard 已提交
4381 4382
{
    DisasContext dc1, *dc = &dc1;
B
bellard 已提交
4383 4384
    uint8_t *pc_ptr;
    uint16_t *gen_opc_end;
B
bellard 已提交
4385
    int flags, j, lj;
B
bellard 已提交
4386
    long ret;
B
bellard 已提交
4387 4388
    uint8_t *pc_start;
    uint8_t *cs_base;
B
bellard 已提交
4389 4390
    
    /* generate intermediate code */
B
bellard 已提交
4391 4392 4393 4394
    pc_start = (uint8_t *)tb->pc;
    cs_base = (uint8_t *)tb->cs_base;
    flags = tb->flags;
       
4395
    dc->pe = env->cr[0] & CR0_PE_MASK;
4396 4397 4398 4399 4400 4401 4402 4403
    dc->code32 = (flags >> HF_CS32_SHIFT) & 1;
    dc->ss32 = (flags >> HF_SS32_SHIFT) & 1;
    dc->addseg = (flags >> HF_ADDSEG_SHIFT) & 1;
    dc->f_st = 0;
    dc->vm86 = (flags >> VM_SHIFT) & 1;
    dc->cpl = (flags >> HF_CPL_SHIFT) & 3;
    dc->iopl = (flags >> IOPL_SHIFT) & 3;
    dc->tf = (flags >> TF_SHIFT) & 1;
B
bellard 已提交
4404
    dc->cc_op = CC_OP_DYNAMIC;
B
bellard 已提交
4405
    dc->cs_base = cs_base;
B
bellard 已提交
4406
    dc->tb = tb;
4407
    dc->popl_esp_hack = 0;
4408 4409
    /* select memory access functions */
    dc->mem_index = 0;
4410
    if (flags & HF_SOFTMMU_MASK) {
4411 4412 4413 4414 4415
        if (dc->cpl == 3)
            dc->mem_index = 6;
        else
            dc->mem_index = 3;
    }
4416

B
bellard 已提交
4417 4418 4419
    gen_opc_ptr = gen_opc_buf;
    gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
    gen_opparam_ptr = gen_opparam_buf;
B
bellard 已提交
4420

B
bellard 已提交
4421
    dc->is_jmp = DISAS_NEXT;
4422
    pc_ptr = pc_start;
B
bellard 已提交
4423
    lj = -1;
4424 4425 4426 4427 4428 4429 4430

    /* if irq were inhibited for the next instruction, we can disable
       them here as it is simpler (otherwise jumps would have to
       handled as special case) */
    if (flags & HF_INHIBIT_IRQ_MASK) {
        gen_op_reset_inhibit_irq();
    }
4431
    do {
B
bellard 已提交
4432 4433 4434 4435 4436 4437 4438 4439
        if (env->nb_breakpoints > 0) {
            for(j = 0; j < env->nb_breakpoints; j++) {
                if (env->breakpoints[j] == (unsigned long)pc_ptr) {
                    gen_debug(dc, pc_ptr - dc->cs_base);
                    goto the_end;
                }
            }
        }
B
bellard 已提交
4440 4441 4442 4443 4444 4445 4446
        if (search_pc) {
            j = gen_opc_ptr - gen_opc_buf;
            if (lj < j) {
                lj++;
                while (lj < j)
                    gen_opc_instr_start[lj++] = 0;
            }
4447 4448 4449
            gen_opc_pc[lj] = (uint32_t)pc_ptr;
            gen_opc_cc_op[lj] = dc->cc_op;
            gen_opc_instr_start[lj] = 1;
B
bellard 已提交
4450
        }
B
bellard 已提交
4451
        ret = disas_insn(dc, pc_ptr);
B
bellard 已提交
4452
        if (ret == -1) {
B
bellard 已提交
4453 4454 4455 4456 4457 4458 4459
            /* we trigger an illegal instruction operation only if it
               is the first instruction. Otherwise, we simply stop
               generating the code just before it */
            if (pc_ptr == pc_start)
                return -1;
            else
                break;
B
bellard 已提交
4460
        }
4461
        pc_ptr = (void *)ret;
4462 4463 4464 4465
        /* if single step mode, we generate only one instruction and
           generate an exception */
        if (dc->tf)
            break;
B
bellard 已提交
4466 4467
    } while (!dc->is_jmp && gen_opc_ptr < gen_opc_end && 
             (pc_ptr - pc_start) < (TARGET_PAGE_SIZE - 32));
4468 4469 4470 4471
    if (!dc->tf && dc->is_jmp == DISAS_NEXT) {
        gen_jmp(dc, ret - (unsigned long)dc->cs_base);
    }

B
bellard 已提交
4472
    /* we must store the eflags state if it is not already done */
B
bellard 已提交
4473
    if (dc->is_jmp != DISAS_TB_JUMP) {
B
bellard 已提交
4474 4475
        if (dc->cc_op != CC_OP_DYNAMIC)
            gen_op_set_cc_op(dc->cc_op);
B
bellard 已提交
4476
        if (dc->is_jmp != DISAS_JUMP) {
B
bellard 已提交
4477 4478 4479
            /* we add an additionnal jmp to update the simulated PC */
            gen_op_jmp_im(ret - (unsigned long)dc->cs_base);
        }
B
bellard 已提交
4480
    }
4481 4482 4483
    if (dc->tf) {
        gen_op_raise_exception(EXCP01_SSTP);
    }
B
bellard 已提交
4484
 the_end:
4485
    if (dc->is_jmp != DISAS_TB_JUMP) {
B
bellard 已提交
4486 4487
        /* indicate that the hash table must be used to find the next TB */
        gen_op_movl_T0_0();
B
bellard 已提交
4488
        gen_op_exit_tb();
B
bellard 已提交
4489
    }
B
bellard 已提交
4490
    *gen_opc_ptr = INDEX_op_end;
4491 4492 4493 4494 4495 4496 4497 4498
    /* we don't forget to fill the last values */
    if (search_pc) {
        j = gen_opc_ptr - gen_opc_buf;
        lj++;
        while (lj <= j)
            gen_opc_instr_start[lj++] = 0;
    }
        
B
bellard 已提交
4499
#ifdef DEBUG_DISAS
B
bellard 已提交
4500
    if (loglevel) {
B
bellard 已提交
4501
        fprintf(logfile, "----------------\n");
B
bellard 已提交
4502
        fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
B
bellard 已提交
4503
	disas(logfile, pc_start, pc_ptr - pc_start, 0, !dc->code32);
4504
        fprintf(logfile, "\n");
4505

B
bellard 已提交
4506
        fprintf(logfile, "OP:\n");
4507
        dump_ops(gen_opc_buf, gen_opparam_buf);
B
bellard 已提交
4508 4509 4510 4511 4512 4513 4514 4515 4516 4517
        fprintf(logfile, "\n");
    }
#endif

    /* optimize flag computations */
    optimize_flags(gen_opc_buf, gen_opc_ptr - gen_opc_buf);

#ifdef DEBUG_DISAS
    if (loglevel) {
        fprintf(logfile, "AFTER FLAGS OPT:\n");
4518
        dump_ops(gen_opc_buf, gen_opparam_buf);
B
bellard 已提交
4519 4520 4521
        fprintf(logfile, "\n");
    }
#endif
B
bellard 已提交
4522 4523 4524 4525 4526
    if (!search_pc)
        tb->size = pc_ptr - pc_start;
    return 0;
}

B
bellard 已提交
4527
int gen_intermediate_code(CPUState *env, TranslationBlock *tb)
4528
{
B
bellard 已提交
4529
    return gen_intermediate_code_internal(env, tb, 0);
4530 4531
}

B
bellard 已提交
4532
int gen_intermediate_code_pc(CPUState *env, TranslationBlock *tb)
4533
{
B
bellard 已提交
4534
    return gen_intermediate_code_internal(env, tb, 1);
4535 4536
}