helper.c 129.8 KB
Newer Older
B
bellard 已提交
1 2
/*
 *  i386 helpers
3
 *
B
bellard 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *  Copyright (c) 2003 Fabrice Bellard
 *
 * 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.
 *
 * 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.
 *
 * 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
 */
#include "exec.h"

B
bellard 已提交
22 23
//#define DEBUG_PCALL

24 25 26
#if 0
#define raise_exception_err(a, b)\
do {\
27 28
    if (logfile)\
        fprintf(logfile, "raise_exception line=%d\n", __LINE__);\
29 30 31 32
    (raise_exception_err)(a, b);\
} while (0)
#endif

B
bellard 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
const uint8_t parity_table[256] = {
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    CC_P, 0, 0, CC_P, 0, CC_P, CC_P, 0,
    0, CC_P, CC_P, 0, CC_P, 0, 0, CC_P,
};

/* modulo 17 table */
const uint8_t rclw_table[32] = {
70
    0, 1, 2, 3, 4, 5, 6, 7,
B
bellard 已提交
71 72 73 74 75 76 77
    8, 9,10,11,12,13,14,15,
   16, 0, 1, 2, 3, 4, 5, 6,
    7, 8, 9,10,11,12,13,14,
};

/* modulo 9 table */
const uint8_t rclb_table[32] = {
78
    0, 1, 2, 3, 4, 5, 6, 7,
B
bellard 已提交
79
    8, 0, 1, 2, 3, 4, 5, 6,
80
    7, 8, 0, 1, 2, 3, 4, 5,
B
bellard 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93
    6, 7, 8, 0, 1, 2, 3, 4,
};

const CPU86_LDouble f15rk[7] =
{
    0.00000000000000000000L,
    1.00000000000000000000L,
    3.14159265358979323851L,  /*pi*/
    0.30102999566398119523L,  /*lg2*/
    0.69314718055994530943L,  /*ln2*/
    1.44269504088896340739L,  /*l2e*/
    3.32192809488736234781L,  /*l2t*/
};
94

B
bellard 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108
/* thread support */

spinlock_t global_cpu_lock = SPIN_LOCK_UNLOCKED;

void cpu_lock(void)
{
    spin_lock(&global_cpu_lock);
}

void cpu_unlock(void)
{
    spin_unlock(&global_cpu_lock);
}

109 110 111 112 113 114
/* return non zero if error */
static inline int load_segment(uint32_t *e1_ptr, uint32_t *e2_ptr,
                               int selector)
{
    SegmentCache *dt;
    int index;
B
bellard 已提交
115
    target_ulong ptr;
116 117 118 119 120 121 122 123 124 125 126 127 128

    if (selector & 0x4)
        dt = &env->ldt;
    else
        dt = &env->gdt;
    index = selector & ~7;
    if ((index + 7) > dt->limit)
        return -1;
    ptr = dt->base + index;
    *e1_ptr = ldl_kernel(ptr);
    *e2_ptr = ldl_kernel(ptr + 4);
    return 0;
}
129

130 131 132 133 134 135 136 137 138
static inline unsigned int get_seg_limit(uint32_t e1, uint32_t e2)
{
    unsigned int limit;
    limit = (e1 & 0xffff) | (e2 & 0x000f0000);
    if (e2 & DESC_G_MASK)
        limit = (limit << 12) | 0xfff;
    return limit;
}

B
bellard 已提交
139
static inline uint32_t get_seg_base(uint32_t e1, uint32_t e2)
140
{
B
bellard 已提交
141
    return ((e1 >> 16) | ((e2 & 0xff) << 16) | (e2 & 0xff000000));
142 143 144 145 146 147 148 149 150 151 152 153 154
}

static inline void load_seg_cache_raw_dt(SegmentCache *sc, uint32_t e1, uint32_t e2)
{
    sc->base = get_seg_base(e1, e2);
    sc->limit = get_seg_limit(e1, e2);
    sc->flags = e2;
}

/* init the segment cache in vm86 mode. */
static inline void load_seg_vm(int seg, int selector)
{
    selector &= 0xffff;
155
    cpu_x86_load_seg_cache(env, seg, selector,
B
bellard 已提交
156
                           (selector << 4), 0xffff, 0);
157 158
}

159
static inline void get_ss_esp_from_tss(uint32_t *ss_ptr,
B
bellard 已提交
160 161 162
                                       uint32_t *esp_ptr, int dpl)
{
    int type, index, shift;
163

B
bellard 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
#if 0
    {
        int i;
        printf("TR: base=%p limit=%x\n", env->tr.base, env->tr.limit);
        for(i=0;i<env->tr.limit;i++) {
            printf("%02x ", env->tr.base[i]);
            if ((i & 7) == 7) printf("\n");
        }
        printf("\n");
    }
#endif

    if (!(env->tr.flags & DESC_P_MASK))
        cpu_abort(env, "invalid tss");
    type = (env->tr.flags >> DESC_TYPE_SHIFT) & 0xf;
    if ((type & 7) != 1)
        cpu_abort(env, "invalid tss type");
    shift = type >> 3;
    index = (dpl * 4 + 2) << shift;
    if (index + (4 << shift) - 1 > env->tr.limit)
        raise_exception_err(EXCP0A_TSS, env->tr.selector & 0xfffc);
    if (shift == 0) {
B
bellard 已提交
186 187
        *esp_ptr = lduw_kernel(env->tr.base + index);
        *ss_ptr = lduw_kernel(env->tr.base + index + 2);
B
bellard 已提交
188
    } else {
B
bellard 已提交
189 190
        *esp_ptr = ldl_kernel(env->tr.base + index);
        *ss_ptr = lduw_kernel(env->tr.base + index + 4);
B
bellard 已提交
191 192 193
    }
}

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
/* XXX: merge with load_seg() */
static void tss_load_seg(int seg_reg, int selector)
{
    uint32_t e1, e2;
    int rpl, dpl, cpl;

    if ((selector & 0xfffc) != 0) {
        if (load_segment(&e1, &e2, selector) != 0)
            raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
        if (!(e2 & DESC_S_MASK))
            raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
        rpl = selector & 3;
        dpl = (e2 >> DESC_DPL_SHIFT) & 3;
        cpl = env->hflags & HF_CPL_MASK;
        if (seg_reg == R_CS) {
            if (!(e2 & DESC_CS_MASK))
                raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
211
            /* XXX: is it correct ? */
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
            if (dpl != rpl)
                raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
            if ((e2 & DESC_C_MASK) && dpl > rpl)
                raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
        } else if (seg_reg == R_SS) {
            /* SS must be writable data */
            if ((e2 & DESC_CS_MASK) || !(e2 & DESC_W_MASK))
                raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
            if (dpl != cpl || dpl != rpl)
                raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
        } else {
            /* not readable code */
            if ((e2 & DESC_CS_MASK) && !(e2 & DESC_R_MASK))
                raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
            /* if data or non conforming code, checks the rights */
            if (((e2 >> DESC_TYPE_SHIFT) & 0xf) < 12) {
                if (dpl < cpl || dpl < rpl)
                    raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
            }
        }
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, selector & 0xfffc);
234
        cpu_x86_load_seg_cache(env, seg_reg, selector,
235 236 237 238
                       get_seg_base(e1, e2),
                       get_seg_limit(e1, e2),
                       e2);
    } else {
239
        if (seg_reg == R_SS || seg_reg == R_CS)
240 241 242 243 244 245 246 247 248
            raise_exception_err(EXCP0A_TSS, selector & 0xfffc);
    }
}

#define SWITCH_TSS_JMP  0
#define SWITCH_TSS_IRET 1
#define SWITCH_TSS_CALL 2

/* XXX: restore CPU state in registers (PowerPC case) */
249
static void switch_tss(int tss_selector,
B
bellard 已提交
250 251
                       uint32_t e1, uint32_t e2, int source,
                       uint32_t next_eip)
B
bellard 已提交
252
{
253
    int tss_limit, tss_limit_max, type, old_tss_limit_max, old_type, v1, v2, i;
B
bellard 已提交
254
    target_ulong tss_base;
255 256 257
    uint32_t new_regs[8], new_segs[6];
    uint32_t new_eflags, new_eip, new_cr3, new_ldt, new_trap;
    uint32_t old_eflags, eflags_mask;
B
bellard 已提交
258 259
    SegmentCache *dt;
    int index;
B
bellard 已提交
260
    target_ulong ptr;
B
bellard 已提交
261

262
    type = (e2 >> DESC_TYPE_SHIFT) & 0xf;
263
#ifdef DEBUG_PCALL
B
bellard 已提交
264
    if (loglevel & CPU_LOG_PCALL)
265 266
        fprintf(logfile, "switch_tss: sel=0x%04x type=%d src=%d\n", tss_selector, type, source);
#endif
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288

    /* if task gate, we read the TSS segment and we load it */
    if (type == 5) {
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, tss_selector & 0xfffc);
        tss_selector = e1 >> 16;
        if (tss_selector & 4)
            raise_exception_err(EXCP0A_TSS, tss_selector & 0xfffc);
        if (load_segment(&e1, &e2, tss_selector) != 0)
            raise_exception_err(EXCP0D_GPF, tss_selector & 0xfffc);
        if (e2 & DESC_S_MASK)
            raise_exception_err(EXCP0D_GPF, tss_selector & 0xfffc);
        type = (e2 >> DESC_TYPE_SHIFT) & 0xf;
        if ((type & 7) != 1)
            raise_exception_err(EXCP0D_GPF, tss_selector & 0xfffc);
    }

    if (!(e2 & DESC_P_MASK))
        raise_exception_err(EXCP0B_NOSEG, tss_selector & 0xfffc);

    if (type & 8)
        tss_limit_max = 103;
B
bellard 已提交
289
    else
290 291 292
        tss_limit_max = 43;
    tss_limit = get_seg_limit(e1, e2);
    tss_base = get_seg_base(e1, e2);
293
    if ((tss_selector & 4) != 0 ||
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
        tss_limit < tss_limit_max)
        raise_exception_err(EXCP0A_TSS, tss_selector & 0xfffc);
    old_type = (env->tr.flags >> DESC_TYPE_SHIFT) & 0xf;
    if (old_type & 8)
        old_tss_limit_max = 103;
    else
        old_tss_limit_max = 43;

    /* read all the registers from the new TSS */
    if (type & 8) {
        /* 32 bit */
        new_cr3 = ldl_kernel(tss_base + 0x1c);
        new_eip = ldl_kernel(tss_base + 0x20);
        new_eflags = ldl_kernel(tss_base + 0x24);
        for(i = 0; i < 8; i++)
            new_regs[i] = ldl_kernel(tss_base + (0x28 + i * 4));
        for(i = 0; i < 6; i++)
            new_segs[i] = lduw_kernel(tss_base + (0x48 + i * 4));
        new_ldt = lduw_kernel(tss_base + 0x60);
        new_trap = ldl_kernel(tss_base + 0x64);
    } else {
        /* 16 bit */
        new_cr3 = 0;
        new_eip = lduw_kernel(tss_base + 0x0e);
        new_eflags = lduw_kernel(tss_base + 0x10);
        for(i = 0; i < 8; i++)
            new_regs[i] = lduw_kernel(tss_base + (0x12 + i * 2)) | 0xffff0000;
        for(i = 0; i < 4; i++)
            new_segs[i] = lduw_kernel(tss_base + (0x22 + i * 4));
        new_ldt = lduw_kernel(tss_base + 0x2a);
        new_segs[R_FS] = 0;
        new_segs[R_GS] = 0;
        new_trap = 0;
    }
328

329 330 331 332 333 334
    /* NOTE: we must avoid memory exceptions during the task switch,
       so we make dummy accesses before */
    /* XXX: it can still fail in some cases, so a bigger hack is
       necessary to valid the TLB after having done the accesses */

    v1 = ldub_kernel(env->tr.base);
B
bellard 已提交
335
    v2 = ldub_kernel(env->tr.base + old_tss_limit_max);
336 337
    stb_kernel(env->tr.base, v1);
    stb_kernel(env->tr.base + old_tss_limit_max, v2);
338

339 340
    /* clear busy bit (it is restartable) */
    if (source == SWITCH_TSS_JMP || source == SWITCH_TSS_IRET) {
B
bellard 已提交
341
        target_ulong ptr;
342
        uint32_t e2;
B
bellard 已提交
343
        ptr = env->gdt.base + (env->tr.selector & ~7);
344 345 346 347 348 349 350
        e2 = ldl_kernel(ptr + 4);
        e2 &= ~DESC_TSS_BUSY_MASK;
        stl_kernel(ptr + 4, e2);
    }
    old_eflags = compute_eflags();
    if (source == SWITCH_TSS_IRET)
        old_eflags &= ~NT_MASK;
351

352 353 354
    /* save the current state in the old TSS */
    if (type & 8) {
        /* 32 bit */
B
bellard 已提交
355
        stl_kernel(env->tr.base + 0x20, next_eip);
356
        stl_kernel(env->tr.base + 0x24, old_eflags);
B
bellard 已提交
357 358 359 360 361 362 363 364
        stl_kernel(env->tr.base + (0x28 + 0 * 4), EAX);
        stl_kernel(env->tr.base + (0x28 + 1 * 4), ECX);
        stl_kernel(env->tr.base + (0x28 + 2 * 4), EDX);
        stl_kernel(env->tr.base + (0x28 + 3 * 4), EBX);
        stl_kernel(env->tr.base + (0x28 + 4 * 4), ESP);
        stl_kernel(env->tr.base + (0x28 + 5 * 4), EBP);
        stl_kernel(env->tr.base + (0x28 + 6 * 4), ESI);
        stl_kernel(env->tr.base + (0x28 + 7 * 4), EDI);
365 366 367 368
        for(i = 0; i < 6; i++)
            stw_kernel(env->tr.base + (0x48 + i * 4), env->segs[i].selector);
    } else {
        /* 16 bit */
B
bellard 已提交
369
        stw_kernel(env->tr.base + 0x0e, next_eip);
370
        stw_kernel(env->tr.base + 0x10, old_eflags);
B
bellard 已提交
371 372 373 374 375 376 377 378
        stw_kernel(env->tr.base + (0x12 + 0 * 2), EAX);
        stw_kernel(env->tr.base + (0x12 + 1 * 2), ECX);
        stw_kernel(env->tr.base + (0x12 + 2 * 2), EDX);
        stw_kernel(env->tr.base + (0x12 + 3 * 2), EBX);
        stw_kernel(env->tr.base + (0x12 + 4 * 2), ESP);
        stw_kernel(env->tr.base + (0x12 + 5 * 2), EBP);
        stw_kernel(env->tr.base + (0x12 + 6 * 2), ESI);
        stw_kernel(env->tr.base + (0x12 + 7 * 2), EDI);
379 380 381
        for(i = 0; i < 4; i++)
            stw_kernel(env->tr.base + (0x22 + i * 4), env->segs[i].selector);
    }
382

383 384 385 386 387 388 389 390 391 392
    /* now if an exception occurs, it will occurs in the next task
       context */

    if (source == SWITCH_TSS_CALL) {
        stw_kernel(tss_base, env->tr.selector);
        new_eflags |= NT_MASK;
    }

    /* set busy bit */
    if (source == SWITCH_TSS_JMP || source == SWITCH_TSS_CALL) {
B
bellard 已提交
393
        target_ulong ptr;
394
        uint32_t e2;
B
bellard 已提交
395
        ptr = env->gdt.base + (tss_selector & ~7);
396 397 398 399 400 401 402 403
        e2 = ldl_kernel(ptr + 4);
        e2 |= DESC_TSS_BUSY_MASK;
        stl_kernel(ptr + 4, e2);
    }

    /* set the new CPU state */
    /* from this point, any exception which occurs can give problems */
    env->cr[0] |= CR0_TS_MASK;
B
bellard 已提交
404
    env->hflags |= HF_TS_MASK;
405 406 407 408
    env->tr.selector = tss_selector;
    env->tr.base = tss_base;
    env->tr.limit = tss_limit;
    env->tr.flags = e2 & ~DESC_TSS_BUSY_MASK;
409

410
    if ((type & 8) && (env->cr[0] & CR0_PG_MASK)) {
411
        cpu_x86_update_cr3(env, new_cr3);
412
    }
413

414 415 416
    /* load all registers without an exception, then reload them with
       possible exception */
    env->eip = new_eip;
417
    eflags_mask = TF_MASK | AC_MASK | ID_MASK |
418
        IF_MASK | IOPL_MASK | VM_MASK | RF_MASK | NT_MASK;
419 420 421
    if (!(type & 8))
        eflags_mask &= 0xffff;
    load_eflags(new_eflags, eflags_mask);
B
bellard 已提交
422 423 424 425 426 427 428 429 430
    /* XXX: what to do in 16 bit case ? */
    EAX = new_regs[0];
    ECX = new_regs[1];
    EDX = new_regs[2];
    EBX = new_regs[3];
    ESP = new_regs[4];
    EBP = new_regs[5];
    ESI = new_regs[6];
    EDI = new_regs[7];
431
    if (new_eflags & VM_MASK) {
432
        for(i = 0; i < 6; i++)
433 434 435 436 437 438 439 440
            load_seg_vm(i, new_segs[i]);
        /* in vm86, CPL is always 3 */
        cpu_x86_set_cpl(env, 3);
    } else {
        /* CPL is set the RPL of CS */
        cpu_x86_set_cpl(env, new_segs[R_CS] & 3);
        /* first just selectors as the rest may trigger exceptions */
        for(i = 0; i < 6; i++)
B
bellard 已提交
441
            cpu_x86_load_seg_cache(env, i, new_segs[i], 0, 0, 0);
442
    }
443

444
    env->ldt.selector = new_ldt & ~4;
B
bellard 已提交
445
    env->ldt.base = 0;
446 447 448 449 450 451 452
    env->ldt.limit = 0;
    env->ldt.flags = 0;

    /* load the LDT */
    if (new_ldt & 4)
        raise_exception_err(EXCP0A_TSS, new_ldt & 0xfffc);

453 454 455 456 457 458 459 460 461 462 463 464 465 466
    if ((new_ldt & 0xfffc) != 0) {
        dt = &env->gdt;
        index = new_ldt & ~7;
        if ((index + 7) > dt->limit)
            raise_exception_err(EXCP0A_TSS, new_ldt & 0xfffc);
        ptr = dt->base + index;
        e1 = ldl_kernel(ptr);
        e2 = ldl_kernel(ptr + 4);
        if ((e2 & DESC_S_MASK) || ((e2 >> DESC_TYPE_SHIFT) & 0xf) != 2)
            raise_exception_err(EXCP0A_TSS, new_ldt & 0xfffc);
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0A_TSS, new_ldt & 0xfffc);
        load_seg_cache_raw_dt(&env->ldt, e1, e2);
    }
467

468 469 470 471 472 473 474 475 476
    /* load the segments */
    if (!(new_eflags & VM_MASK)) {
        tss_load_seg(R_CS, new_segs[R_CS]);
        tss_load_seg(R_SS, new_segs[R_SS]);
        tss_load_seg(R_ES, new_segs[R_ES]);
        tss_load_seg(R_DS, new_segs[R_DS]);
        tss_load_seg(R_FS, new_segs[R_FS]);
        tss_load_seg(R_GS, new_segs[R_GS]);
    }
477

478 479
    /* check that EIP is in the CS segment limits */
    if (new_eip > env->segs[R_CS].limit) {
B
bellard 已提交
480
        /* XXX: different exception if CALL ? */
481 482
        raise_exception_err(EXCP0D_GPF, 0);
    }
B
bellard 已提交
483
}
484 485 486

/* check if Port I/O is allowed in TSS */
static inline void check_io(int addr, int size)
B
bellard 已提交
487
{
488
    int io_offset, val, mask;
489

490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
    /* TSS must be a valid 32 bit one */
    if (!(env->tr.flags & DESC_P_MASK) ||
        ((env->tr.flags >> DESC_TYPE_SHIFT) & 0xf) != 9 ||
        env->tr.limit < 103)
        goto fail;
    io_offset = lduw_kernel(env->tr.base + 0x66);
    io_offset += (addr >> 3);
    /* Note: the check needs two bytes */
    if ((io_offset + 1) > env->tr.limit)
        goto fail;
    val = lduw_kernel(env->tr.base + io_offset);
    val >>= (addr & 7);
    mask = (1 << size) - 1;
    /* all bits must be zero to allow the I/O */
    if ((val & mask) != 0) {
    fail:
        raise_exception_err(EXCP0D_GPF, 0);
    }
B
bellard 已提交
508 509
}

510
void check_iob_T0(void)
B
bellard 已提交
511
{
512
    check_io(T0, 1);
B
bellard 已提交
513 514
}

515
void check_iow_T0(void)
B
bellard 已提交
516
{
517
    check_io(T0, 2);
B
bellard 已提交
518 519
}

520
void check_iol_T0(void)
B
bellard 已提交
521
{
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
    check_io(T0, 4);
}

void check_iob_DX(void)
{
    check_io(EDX & 0xffff, 1);
}

void check_iow_DX(void)
{
    check_io(EDX & 0xffff, 2);
}

void check_iol_DX(void)
{
    check_io(EDX & 0xffff, 4);
B
bellard 已提交
538 539
}

540 541 542 543 544 545 546 547
static inline unsigned int get_sp_mask(unsigned int e2)
{
    if (e2 & DESC_B_MASK)
        return 0xffffffff;
    else
        return 0xffff;
}

548 549 550 551 552 553 554 555 556 557 558 559 560 561
#ifdef TARGET_X86_64
#define SET_ESP(val, sp_mask)\
do {\
    if ((sp_mask) == 0xffff)\
        ESP = (ESP & ~0xffff) | ((val) & 0xffff);\
    else if ((sp_mask) == 0xffffffffLL)\
        ESP = (uint32_t)(val);\
    else\
        ESP = (val);\
} while (0)
#else
#define SET_ESP(val, sp_mask) ESP = (ESP & ~(sp_mask)) | ((val) & (sp_mask))
#endif

562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
/* XXX: add a is_user flag to have proper security support */
#define PUSHW(ssp, sp, sp_mask, val)\
{\
    sp -= 2;\
    stw_kernel((ssp) + (sp & (sp_mask)), (val));\
}

#define PUSHL(ssp, sp, sp_mask, val)\
{\
    sp -= 4;\
    stl_kernel((ssp) + (sp & (sp_mask)), (val));\
}

#define POPW(ssp, sp, sp_mask, val)\
{\
    val = lduw_kernel((ssp) + (sp & (sp_mask)));\
    sp += 2;\
}

#define POPL(ssp, sp, sp_mask, val)\
{\
B
bellard 已提交
583
    val = (uint32_t)ldl_kernel((ssp) + (sp & (sp_mask)));\
584 585 586
    sp += 4;\
}

B
bellard 已提交
587 588 589 590 591
/* protected mode interrupt */
static void do_interrupt_protected(int intno, int is_int, int error_code,
                                   unsigned int next_eip, int is_hw)
{
    SegmentCache *dt;
B
bellard 已提交
592
    target_ulong ptr, ssp;
593
    int type, dpl, selector, ss_dpl, cpl;
B
bellard 已提交
594
    int has_error_code, new_stack, shift;
595
    uint32_t e1, e2, offset, ss, esp, ss_e1, ss_e2;
596
    uint32_t old_eip, sp_mask;
T
ths 已提交
597
    int svm_should_check = 1;
B
bellard 已提交
598

T
ths 已提交
599 600 601 602 603 604 605 606 607 608
    if ((env->intercept & INTERCEPT_SVM_MASK) && !is_int && next_eip==-1) {
        next_eip = EIP;
        svm_should_check = 0;
    }

    if (svm_should_check
        && (INTERCEPTEDl(_exceptions, 1 << intno)
        && !is_int)) {
        raise_interrupt(intno, is_int, error_code, 0);
    }
609 610 611 612 613 614 615 616 617 618 619 620 621 622
    has_error_code = 0;
    if (!is_int && !is_hw) {
        switch(intno) {
        case 8:
        case 10:
        case 11:
        case 12:
        case 13:
        case 14:
        case 17:
            has_error_code = 1;
            break;
        }
    }
B
bellard 已提交
623 624 625 626
    if (is_int)
        old_eip = next_eip;
    else
        old_eip = env->eip;
627

B
bellard 已提交
628 629 630 631
    dt = &env->idt;
    if (intno * 8 + 7 > dt->limit)
        raise_exception_err(EXCP0D_GPF, intno * 8 + 2);
    ptr = dt->base + intno * 8;
B
bellard 已提交
632 633
    e1 = ldl_kernel(ptr);
    e2 = ldl_kernel(ptr + 4);
B
bellard 已提交
634 635 636 637
    /* check gate type */
    type = (e2 >> DESC_TYPE_SHIFT) & 0x1f;
    switch(type) {
    case 5: /* task gate */
638 639 640
        /* must do that check here to return the correct error code */
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, intno * 8 + 2);
B
bellard 已提交
641
        switch_tss(intno * 8, e1, e2, SWITCH_TSS_CALL, old_eip);
642
        if (has_error_code) {
643 644
            int type;
            uint32_t mask;
645
            /* push the error code */
B
bellard 已提交
646 647
            type = (env->tr.flags >> DESC_TYPE_SHIFT) & 0xf;
            shift = type >> 3;
648 649 650 651
            if (env->segs[R_SS].flags & DESC_B_MASK)
                mask = 0xffffffff;
            else
                mask = 0xffff;
B
bellard 已提交
652
            esp = (ESP - (2 << shift)) & mask;
653 654 655 656 657
            ssp = env->segs[R_SS].base + esp;
            if (shift)
                stl_kernel(ssp, error_code);
            else
                stw_kernel(ssp, error_code);
658
            SET_ESP(esp, mask);
659 660
        }
        return;
B
bellard 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
    case 6: /* 286 interrupt gate */
    case 7: /* 286 trap gate */
    case 14: /* 386 interrupt gate */
    case 15: /* 386 trap gate */
        break;
    default:
        raise_exception_err(EXCP0D_GPF, intno * 8 + 2);
        break;
    }
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    cpl = env->hflags & HF_CPL_MASK;
    /* check privledge if software int */
    if (is_int && dpl < cpl)
        raise_exception_err(EXCP0D_GPF, intno * 8 + 2);
    /* check valid bit */
    if (!(e2 & DESC_P_MASK))
        raise_exception_err(EXCP0B_NOSEG, intno * 8 + 2);
    selector = e1 >> 16;
    offset = (e2 & 0xffff0000) | (e1 & 0x0000ffff);
    if ((selector & 0xfffc) == 0)
        raise_exception_err(EXCP0D_GPF, 0);

    if (load_segment(&e1, &e2, selector) != 0)
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
    if (!(e2 & DESC_S_MASK) || !(e2 & (DESC_CS_MASK)))
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    if (dpl > cpl)
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
    if (!(e2 & DESC_P_MASK))
        raise_exception_err(EXCP0B_NOSEG, selector & 0xfffc);
    if (!(e2 & DESC_C_MASK) && dpl < cpl) {
B
blueswir1 已提交
693
        /* to inner privilege */
B
bellard 已提交
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
        get_ss_esp_from_tss(&ss, &esp, dpl);
        if ((ss & 0xfffc) == 0)
            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
        if ((ss & 3) != dpl)
            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
        if (load_segment(&ss_e1, &ss_e2, ss) != 0)
            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
        ss_dpl = (ss_e2 >> DESC_DPL_SHIFT) & 3;
        if (ss_dpl != dpl)
            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
        if (!(ss_e2 & DESC_S_MASK) ||
            (ss_e2 & DESC_CS_MASK) ||
            !(ss_e2 & DESC_W_MASK))
            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
        if (!(ss_e2 & DESC_P_MASK))
            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
        new_stack = 1;
711 712
        sp_mask = get_sp_mask(ss_e2);
        ssp = get_seg_base(ss_e1, ss_e2);
B
bellard 已提交
713
    } else if ((e2 & DESC_C_MASK) || dpl == cpl) {
B
blueswir1 已提交
714
        /* to same privilege */
715 716
        if (env->eflags & VM_MASK)
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
B
bellard 已提交
717
        new_stack = 0;
718 719 720
        sp_mask = get_sp_mask(env->segs[R_SS].flags);
        ssp = env->segs[R_SS].base;
        esp = ESP;
721
        dpl = cpl;
B
bellard 已提交
722 723 724
    } else {
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        new_stack = 0; /* avoid warning */
725
        sp_mask = 0; /* avoid warning */
B
bellard 已提交
726
        ssp = 0; /* avoid warning */
727
        esp = 0; /* avoid warning */
B
bellard 已提交
728 729 730
    }

    shift = type >> 3;
731 732 733

#if 0
    /* XXX: check that enough room is available */
B
bellard 已提交
734 735 736 737
    push_size = 6 + (new_stack << 2) + (has_error_code << 1);
    if (env->eflags & VM_MASK)
        push_size += 8;
    push_size <<= shift;
738
#endif
B
bellard 已提交
739 740
    if (shift == 1) {
        if (new_stack) {
741 742 743 744 745 746
            if (env->eflags & VM_MASK) {
                PUSHL(ssp, esp, sp_mask, env->segs[R_GS].selector);
                PUSHL(ssp, esp, sp_mask, env->segs[R_FS].selector);
                PUSHL(ssp, esp, sp_mask, env->segs[R_DS].selector);
                PUSHL(ssp, esp, sp_mask, env->segs[R_ES].selector);
            }
747 748
            PUSHL(ssp, esp, sp_mask, env->segs[R_SS].selector);
            PUSHL(ssp, esp, sp_mask, ESP);
B
bellard 已提交
749
        }
750 751 752
        PUSHL(ssp, esp, sp_mask, compute_eflags());
        PUSHL(ssp, esp, sp_mask, env->segs[R_CS].selector);
        PUSHL(ssp, esp, sp_mask, old_eip);
B
bellard 已提交
753
        if (has_error_code) {
754
            PUSHL(ssp, esp, sp_mask, error_code);
B
bellard 已提交
755 756 757
        }
    } else {
        if (new_stack) {
758 759 760 761 762 763
            if (env->eflags & VM_MASK) {
                PUSHW(ssp, esp, sp_mask, env->segs[R_GS].selector);
                PUSHW(ssp, esp, sp_mask, env->segs[R_FS].selector);
                PUSHW(ssp, esp, sp_mask, env->segs[R_DS].selector);
                PUSHW(ssp, esp, sp_mask, env->segs[R_ES].selector);
            }
764 765
            PUSHW(ssp, esp, sp_mask, env->segs[R_SS].selector);
            PUSHW(ssp, esp, sp_mask, ESP);
B
bellard 已提交
766
        }
767 768 769
        PUSHW(ssp, esp, sp_mask, compute_eflags());
        PUSHW(ssp, esp, sp_mask, env->segs[R_CS].selector);
        PUSHW(ssp, esp, sp_mask, old_eip);
B
bellard 已提交
770
        if (has_error_code) {
771
            PUSHW(ssp, esp, sp_mask, error_code);
B
bellard 已提交
772 773
        }
    }
774

775
    if (new_stack) {
776
        if (env->eflags & VM_MASK) {
B
bellard 已提交
777 778 779 780
            cpu_x86_load_seg_cache(env, R_ES, 0, 0, 0, 0);
            cpu_x86_load_seg_cache(env, R_DS, 0, 0, 0, 0);
            cpu_x86_load_seg_cache(env, R_FS, 0, 0, 0, 0);
            cpu_x86_load_seg_cache(env, R_GS, 0, 0, 0, 0);
781
        }
782
        ss = (ss & ~3) | dpl;
783
        cpu_x86_load_seg_cache(env, R_SS, ss,
784 785
                               ssp, get_seg_limit(ss_e1, ss_e2), ss_e2);
    }
786
    SET_ESP(esp, sp_mask);
787 788

    selector = (selector & ~3) | dpl;
789
    cpu_x86_load_seg_cache(env, R_CS, selector,
790 791 792 793 794 795
                   get_seg_base(e1, e2),
                   get_seg_limit(e1, e2),
                   e2);
    cpu_x86_set_cpl(env, dpl);
    env->eip = offset;

B
bellard 已提交
796 797 798 799 800 801 802
    /* interrupt gate clear IF mask */
    if ((type & 1) == 0) {
        env->eflags &= ~IF_MASK;
    }
    env->eflags &= ~(TF_MASK | VM_MASK | RF_MASK | NT_MASK);
}

B
bellard 已提交
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
#ifdef TARGET_X86_64

#define PUSHQ(sp, val)\
{\
    sp -= 8;\
    stq_kernel(sp, (val));\
}

#define POPQ(sp, val)\
{\
    val = ldq_kernel(sp);\
    sp += 8;\
}

static inline target_ulong get_rsp_from_tss(int level)
{
    int index;
820

B
bellard 已提交
821
#if 0
822
    printf("TR: base=" TARGET_FMT_lx " limit=%x\n",
B
bellard 已提交
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
           env->tr.base, env->tr.limit);
#endif

    if (!(env->tr.flags & DESC_P_MASK))
        cpu_abort(env, "invalid tss");
    index = 8 * level + 4;
    if ((index + 7) > env->tr.limit)
        raise_exception_err(EXCP0A_TSS, env->tr.selector & 0xfffc);
    return ldq_kernel(env->tr.base + index);
}

/* 64 bit interrupt */
static void do_interrupt64(int intno, int is_int, int error_code,
                           target_ulong next_eip, int is_hw)
{
    SegmentCache *dt;
    target_ulong ptr;
    int type, dpl, selector, cpl, ist;
    int has_error_code, new_stack;
    uint32_t e1, e2, e3, ss;
    target_ulong old_eip, esp, offset;
T
ths 已提交
844
    int svm_should_check = 1;
B
bellard 已提交
845

T
ths 已提交
846 847 848 849 850 851 852 853 854
    if ((env->intercept & INTERCEPT_SVM_MASK) && !is_int && next_eip==-1) {
        next_eip = EIP;
        svm_should_check = 0;
    }
    if (svm_should_check
        && INTERCEPTEDl(_exceptions, 1 << intno)
        && !is_int) {
        raise_interrupt(intno, is_int, error_code, 0);
    }
B
bellard 已提交
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
    has_error_code = 0;
    if (!is_int && !is_hw) {
        switch(intno) {
        case 8:
        case 10:
        case 11:
        case 12:
        case 13:
        case 14:
        case 17:
            has_error_code = 1;
            break;
        }
    }
    if (is_int)
        old_eip = next_eip;
    else
        old_eip = env->eip;

    dt = &env->idt;
    if (intno * 16 + 15 > dt->limit)
        raise_exception_err(EXCP0D_GPF, intno * 16 + 2);
    ptr = dt->base + intno * 16;
    e1 = ldl_kernel(ptr);
    e2 = ldl_kernel(ptr + 4);
    e3 = ldl_kernel(ptr + 8);
    /* check gate type */
    type = (e2 >> DESC_TYPE_SHIFT) & 0x1f;
    switch(type) {
    case 14: /* 386 interrupt gate */
    case 15: /* 386 trap gate */
        break;
    default:
        raise_exception_err(EXCP0D_GPF, intno * 16 + 2);
        break;
    }
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    cpl = env->hflags & HF_CPL_MASK;
    /* check privledge if software int */
    if (is_int && dpl < cpl)
        raise_exception_err(EXCP0D_GPF, intno * 16 + 2);
    /* check valid bit */
    if (!(e2 & DESC_P_MASK))
        raise_exception_err(EXCP0B_NOSEG, intno * 16 + 2);
    selector = e1 >> 16;
    offset = ((target_ulong)e3 << 32) | (e2 & 0xffff0000) | (e1 & 0x0000ffff);
    ist = e2 & 7;
    if ((selector & 0xfffc) == 0)
        raise_exception_err(EXCP0D_GPF, 0);

    if (load_segment(&e1, &e2, selector) != 0)
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
    if (!(e2 & DESC_S_MASK) || !(e2 & (DESC_CS_MASK)))
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    if (dpl > cpl)
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
    if (!(e2 & DESC_P_MASK))
        raise_exception_err(EXCP0B_NOSEG, selector & 0xfffc);
    if (!(e2 & DESC_L_MASK) || (e2 & DESC_B_MASK))
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
    if ((!(e2 & DESC_C_MASK) && dpl < cpl) || ist != 0) {
B
blueswir1 已提交
917
        /* to inner privilege */
B
bellard 已提交
918 919 920 921
        if (ist != 0)
            esp = get_rsp_from_tss(ist + 3);
        else
            esp = get_rsp_from_tss(dpl);
922
        esp &= ~0xfLL; /* align stack */
B
bellard 已提交
923 924 925
        ss = 0;
        new_stack = 1;
    } else if ((e2 & DESC_C_MASK) || dpl == cpl) {
B
blueswir1 已提交
926
        /* to same privilege */
B
bellard 已提交
927 928 929
        if (env->eflags & VM_MASK)
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        new_stack = 0;
930 931 932 933 934
        if (ist != 0)
            esp = get_rsp_from_tss(ist + 3);
        else
            esp = ESP;
        esp &= ~0xfLL; /* align stack */
B
bellard 已提交
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949
        dpl = cpl;
    } else {
        raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        new_stack = 0; /* avoid warning */
        esp = 0; /* avoid warning */
    }

    PUSHQ(esp, env->segs[R_SS].selector);
    PUSHQ(esp, ESP);
    PUSHQ(esp, compute_eflags());
    PUSHQ(esp, env->segs[R_CS].selector);
    PUSHQ(esp, old_eip);
    if (has_error_code) {
        PUSHQ(esp, error_code);
    }
950

B
bellard 已提交
951 952 953 954 955 956 957
    if (new_stack) {
        ss = 0 | dpl;
        cpu_x86_load_seg_cache(env, R_SS, ss, 0, 0, 0);
    }
    ESP = esp;

    selector = (selector & ~3) | dpl;
958
    cpu_x86_load_seg_cache(env, R_CS, selector,
B
bellard 已提交
959 960 961 962 963 964 965 966 967 968 969 970
                   get_seg_base(e1, e2),
                   get_seg_limit(e1, e2),
                   e2);
    cpu_x86_set_cpl(env, dpl);
    env->eip = offset;

    /* interrupt gate clear IF mask */
    if ((type & 1) == 0) {
        env->eflags &= ~IF_MASK;
    }
    env->eflags &= ~(TF_MASK | VM_MASK | RF_MASK | NT_MASK);
}
971
#endif
B
bellard 已提交
972

B
bellard 已提交
973
void helper_syscall(int next_eip_addend)
B
bellard 已提交
974 975 976 977 978 979 980
{
    int selector;

    if (!(env->efer & MSR_EFER_SCE)) {
        raise_exception_err(EXCP06_ILLOP, 0);
    }
    selector = (env->star >> 32) & 0xffff;
981
#ifdef TARGET_X86_64
B
bellard 已提交
982
    if (env->hflags & HF_LMA_MASK) {
983 984
        int code64;

B
bellard 已提交
985
        ECX = env->eip + next_eip_addend;
B
bellard 已提交
986
        env->regs[11] = compute_eflags();
987

988
        code64 = env->hflags & HF_CS64_MASK;
B
bellard 已提交
989 990

        cpu_x86_set_cpl(env, 0);
991 992
        cpu_x86_load_seg_cache(env, R_CS, selector & 0xfffc,
                           0, 0xffffffff,
993
                               DESC_G_MASK | DESC_P_MASK |
B
bellard 已提交
994 995
                               DESC_S_MASK |
                               DESC_CS_MASK | DESC_R_MASK | DESC_A_MASK | DESC_L_MASK);
996
        cpu_x86_load_seg_cache(env, R_SS, (selector + 8) & 0xfffc,
B
bellard 已提交
997 998 999 1000 1001
                               0, 0xffffffff,
                               DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                               DESC_S_MASK |
                               DESC_W_MASK | DESC_A_MASK);
        env->eflags &= ~env->fmask;
1002
        if (code64)
B
bellard 已提交
1003 1004 1005
            env->eip = env->lstar;
        else
            env->eip = env->cstar;
1006
    } else
1007 1008
#endif
    {
B
bellard 已提交
1009
        ECX = (uint32_t)(env->eip + next_eip_addend);
1010

B
bellard 已提交
1011
        cpu_x86_set_cpl(env, 0);
1012 1013
        cpu_x86_load_seg_cache(env, R_CS, selector & 0xfffc,
                           0, 0xffffffff,
B
bellard 已提交
1014 1015 1016
                               DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                               DESC_S_MASK |
                               DESC_CS_MASK | DESC_R_MASK | DESC_A_MASK);
1017
        cpu_x86_load_seg_cache(env, R_SS, (selector + 8) & 0xfffc,
B
bellard 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
                               0, 0xffffffff,
                               DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                               DESC_S_MASK |
                               DESC_W_MASK | DESC_A_MASK);
        env->eflags &= ~(IF_MASK | RF_MASK | VM_MASK);
        env->eip = (uint32_t)env->star;
    }
}

void helper_sysret(int dflag)
{
    int cpl, selector;

1031 1032 1033
    if (!(env->efer & MSR_EFER_SCE)) {
        raise_exception_err(EXCP06_ILLOP, 0);
    }
B
bellard 已提交
1034 1035 1036 1037 1038
    cpl = env->hflags & HF_CPL_MASK;
    if (!(env->cr[0] & CR0_PE_MASK) || cpl != 0) {
        raise_exception_err(EXCP0D_GPF, 0);
    }
    selector = (env->star >> 48) & 0xffff;
1039
#ifdef TARGET_X86_64
B
bellard 已提交
1040 1041
    if (env->hflags & HF_LMA_MASK) {
        if (dflag == 2) {
1042 1043
            cpu_x86_load_seg_cache(env, R_CS, (selector + 16) | 3,
                                   0, 0xffffffff,
1044
                                   DESC_G_MASK | DESC_P_MASK |
B
bellard 已提交
1045
                                   DESC_S_MASK | (3 << DESC_DPL_SHIFT) |
1046
                                   DESC_CS_MASK | DESC_R_MASK | DESC_A_MASK |
B
bellard 已提交
1047 1048 1049
                                   DESC_L_MASK);
            env->eip = ECX;
        } else {
1050 1051
            cpu_x86_load_seg_cache(env, R_CS, selector | 3,
                                   0, 0xffffffff,
B
bellard 已提交
1052 1053 1054 1055 1056
                                   DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                                   DESC_S_MASK | (3 << DESC_DPL_SHIFT) |
                                   DESC_CS_MASK | DESC_R_MASK | DESC_A_MASK);
            env->eip = (uint32_t)ECX;
        }
1057
        cpu_x86_load_seg_cache(env, R_SS, selector + 8,
B
bellard 已提交
1058 1059 1060 1061
                               0, 0xffffffff,
                               DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                               DESC_S_MASK | (3 << DESC_DPL_SHIFT) |
                               DESC_W_MASK | DESC_A_MASK);
1062
        load_eflags((uint32_t)(env->regs[11]), TF_MASK | AC_MASK | ID_MASK |
B
bellard 已提交
1063
                    IF_MASK | IOPL_MASK | VM_MASK | RF_MASK | NT_MASK);
B
bellard 已提交
1064
        cpu_x86_set_cpl(env, 3);
1065
    } else
1066 1067
#endif
    {
1068 1069
        cpu_x86_load_seg_cache(env, R_CS, selector | 3,
                               0, 0xffffffff,
B
bellard 已提交
1070 1071 1072 1073
                               DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                               DESC_S_MASK | (3 << DESC_DPL_SHIFT) |
                               DESC_CS_MASK | DESC_R_MASK | DESC_A_MASK);
        env->eip = (uint32_t)ECX;
1074
        cpu_x86_load_seg_cache(env, R_SS, selector + 8,
B
bellard 已提交
1075 1076 1077 1078 1079 1080 1081
                               0, 0xffffffff,
                               DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                               DESC_S_MASK | (3 << DESC_DPL_SHIFT) |
                               DESC_W_MASK | DESC_A_MASK);
        env->eflags |= IF_MASK;
        cpu_x86_set_cpl(env, 3);
    }
1082 1083 1084 1085 1086 1087 1088
#ifdef USE_KQEMU
    if (kqemu_is_ok(env)) {
        if (env->hflags & HF_LMA_MASK)
            CC_OP = CC_OP_EFLAGS;
        env->exception_index = -1;
        cpu_loop_exit();
    }
B
bellard 已提交
1089
#endif
1090
}
B
bellard 已提交
1091

B
bellard 已提交
1092 1093
/* real mode interrupt */
static void do_interrupt_real(int intno, int is_int, int error_code,
B
bellard 已提交
1094
                              unsigned int next_eip)
B
bellard 已提交
1095 1096
{
    SegmentCache *dt;
B
bellard 已提交
1097
    target_ulong ptr, ssp;
B
bellard 已提交
1098 1099 1100
    int selector;
    uint32_t offset, esp;
    uint32_t old_cs, old_eip;
T
ths 已提交
1101
    int svm_should_check = 1;
B
bellard 已提交
1102

T
ths 已提交
1103 1104 1105 1106 1107 1108 1109 1110 1111
    if ((env->intercept & INTERCEPT_SVM_MASK) && !is_int && next_eip==-1) {
        next_eip = EIP;
        svm_should_check = 0;
    }
    if (svm_should_check
        && INTERCEPTEDl(_exceptions, 1 << intno)
        && !is_int) {
        raise_interrupt(intno, is_int, error_code, 0);
    }
B
bellard 已提交
1112 1113 1114 1115 1116
    /* real mode (simpler !) */
    dt = &env->idt;
    if (intno * 4 + 3 > dt->limit)
        raise_exception_err(EXCP0D_GPF, intno * 8 + 2);
    ptr = dt->base + intno * 4;
B
bellard 已提交
1117 1118
    offset = lduw_kernel(ptr);
    selector = lduw_kernel(ptr + 2);
B
bellard 已提交
1119 1120 1121 1122 1123 1124 1125
    esp = ESP;
    ssp = env->segs[R_SS].base;
    if (is_int)
        old_eip = next_eip;
    else
        old_eip = env->eip;
    old_cs = env->segs[R_CS].selector;
1126 1127 1128 1129
    /* XXX: use SS segment size ? */
    PUSHW(ssp, esp, 0xffff, compute_eflags());
    PUSHW(ssp, esp, 0xffff, old_cs);
    PUSHW(ssp, esp, 0xffff, old_eip);
1130

B
bellard 已提交
1131 1132 1133 1134
    /* update processor state */
    ESP = (ESP & ~0xffff) | (esp & 0xffff);
    env->eip = offset;
    env->segs[R_CS].selector = selector;
B
bellard 已提交
1135
    env->segs[R_CS].base = (selector << 4);
B
bellard 已提交
1136 1137 1138 1139
    env->eflags &= ~(IF_MASK | TF_MASK | AC_MASK | RF_MASK);
}

/* fake user mode interrupt */
1140
void do_interrupt_user(int intno, int is_int, int error_code,
B
bellard 已提交
1141
                       target_ulong next_eip)
B
bellard 已提交
1142 1143
{
    SegmentCache *dt;
B
bellard 已提交
1144
    target_ulong ptr;
B
bellard 已提交
1145 1146 1147 1148 1149
    int dpl, cpl;
    uint32_t e2;

    dt = &env->idt;
    ptr = dt->base + (intno * 8);
B
bellard 已提交
1150
    e2 = ldl_kernel(ptr + 4);
1151

B
bellard 已提交
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    cpl = env->hflags & HF_CPL_MASK;
    /* check privledge if software int */
    if (is_int && dpl < cpl)
        raise_exception_err(EXCP0D_GPF, intno * 8 + 2);

    /* Since we emulate only user space, we cannot do more than
       exiting the emulation with the suitable exception and error
       code */
    if (is_int)
        EIP = next_eip;
}

/*
B
bellard 已提交
1166
 * Begin execution of an interruption. is_int is TRUE if coming from
B
bellard 已提交
1167
 * the int instruction. next_eip is the EIP value AFTER the interrupt
1168
 * instruction. It is only relevant if is_int is TRUE.
B
bellard 已提交
1169
 */
1170
void do_interrupt(int intno, int is_int, int error_code,
B
bellard 已提交
1171
                  target_ulong next_eip, int is_hw)
B
bellard 已提交
1172
{
B
bellard 已提交
1173
    if (loglevel & CPU_LOG_INT) {
B
bellard 已提交
1174 1175
        if ((env->cr[0] & CR0_PE_MASK)) {
            static int count;
B
bellard 已提交
1176
            fprintf(logfile, "%6d: v=%02x e=%04x i=%d cpl=%d IP=%04x:" TARGET_FMT_lx " pc=" TARGET_FMT_lx " SP=%04x:" TARGET_FMT_lx,
1177 1178 1179
                    count, intno, error_code, is_int,
                    env->hflags & HF_CPL_MASK,
                    env->segs[R_CS].selector, EIP,
B
bellard 已提交
1180
                    (int)env->segs[R_CS].base + EIP,
1181 1182
                    env->segs[R_SS].selector, ESP);
            if (intno == 0x0e) {
B
bellard 已提交
1183
                fprintf(logfile, " CR2=" TARGET_FMT_lx, env->cr[2]);
1184
            } else {
B
bellard 已提交
1185
                fprintf(logfile, " EAX=" TARGET_FMT_lx, EAX);
1186
            }
B
bellard 已提交
1187
            fprintf(logfile, "\n");
B
bellard 已提交
1188
            cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
B
bellard 已提交
1189
#if 0
B
bellard 已提交
1190 1191 1192 1193 1194 1195 1196
            {
                int i;
                uint8_t *ptr;
                fprintf(logfile, "       code=");
                ptr = env->segs[R_CS].base + env->eip;
                for(i = 0; i < 16; i++) {
                    fprintf(logfile, " %02x", ldub(ptr + i));
1197
                }
B
bellard 已提交
1198
                fprintf(logfile, "\n");
1199
            }
1200
#endif
B
bellard 已提交
1201
            count++;
B
bellard 已提交
1202 1203
        }
    }
B
bellard 已提交
1204
    if (env->cr[0] & CR0_PE_MASK) {
B
bellard 已提交
1205 1206 1207 1208 1209 1210 1211 1212
#if TARGET_X86_64
        if (env->hflags & HF_LMA_MASK) {
            do_interrupt64(intno, is_int, error_code, next_eip, is_hw);
        } else
#endif
        {
            do_interrupt_protected(intno, is_int, error_code, next_eip, is_hw);
        }
B
bellard 已提交
1213 1214 1215 1216 1217
    } else {
        do_interrupt_real(intno, is_int, error_code, next_eip);
    }
}

1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
/*
 * Check nested exceptions and change to double or triple fault if
 * needed. It should only be called, if this is not an interrupt.
 * Returns the new exception number.
 */
int check_exception(int intno, int *error_code)
{
    char first_contributory = env->old_exception == 0 ||
                              (env->old_exception >= 10 &&
                               env->old_exception <= 13);
    char second_contributory = intno == 0 ||
                               (intno >= 10 && intno <= 13);

    if (loglevel & CPU_LOG_INT)
        fprintf(logfile, "check_exception old: %x new %x\n",
                env->old_exception, intno);

    if (env->old_exception == EXCP08_DBLE)
        cpu_abort(env, "triple fault");

    if ((first_contributory && second_contributory)
        || (env->old_exception == EXCP0E_PAGE &&
            (second_contributory || (intno == EXCP0E_PAGE)))) {
        intno = EXCP08_DBLE;
        *error_code = 0;
    }

    if (second_contributory || (intno == EXCP0E_PAGE) ||
        (intno == EXCP08_DBLE))
        env->old_exception = intno;

    return intno;
}

B
bellard 已提交
1252 1253 1254 1255
/*
 * Signal an interruption. It is executed in the main CPU loop.
 * is_int is TRUE if coming from the int instruction. next_eip is the
 * EIP value AFTER the interrupt instruction. It is only relevant if
1256
 * is_int is TRUE.
B
bellard 已提交
1257
 */
1258
void raise_interrupt(int intno, int is_int, int error_code,
1259
                     int next_eip_addend)
B
bellard 已提交
1260
{
T
ths 已提交
1261 1262
    if (!is_int) {
        svm_check_intercept_param(SVM_EXIT_EXCP_BASE + intno, error_code);
1263
        intno = check_exception(intno, &error_code);
T
ths 已提交
1264
    }
1265

B
bellard 已提交
1266 1267 1268
    env->exception_index = intno;
    env->error_code = error_code;
    env->exception_is_int = is_int;
1269
    env->exception_next_eip = env->eip + next_eip_addend;
B
bellard 已提交
1270 1271 1272
    cpu_loop_exit();
}

B
bellard 已提交
1273 1274 1275
/* same as raise_exception_err, but do not restore global registers */
static void raise_exception_err_norestore(int exception_index, int error_code)
{
1276 1277
    exception_index = check_exception(exception_index, &error_code);

B
bellard 已提交
1278 1279 1280 1281 1282 1283 1284
    env->exception_index = exception_index;
    env->error_code = error_code;
    env->exception_is_int = 0;
    env->exception_next_eip = 0;
    longjmp(env->jmp_env, 1);
}

B
bellard 已提交
1285
/* shortcuts to generate exceptions */
1286 1287

void (raise_exception_err)(int exception_index, int error_code)
B
bellard 已提交
1288 1289 1290 1291 1292 1293 1294 1295 1296
{
    raise_interrupt(exception_index, 0, error_code, 0);
}

void raise_exception(int exception_index)
{
    raise_interrupt(exception_index, 0, 0, 0);
}

B
bellard 已提交
1297 1298
/* SMM support */

1299
#if defined(CONFIG_USER_ONLY)
B
bellard 已提交
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310

void do_smm_enter(void)
{
}

void helper_rsm(void)
{
}

#else

B
bellard 已提交
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
#ifdef TARGET_X86_64
#define SMM_REVISION_ID 0x00020064
#else
#define SMM_REVISION_ID 0x00020000
#endif

void do_smm_enter(void)
{
    target_ulong sm_state;
    SegmentCache *dt;
    int i, offset;

    if (loglevel & CPU_LOG_INT) {
        fprintf(logfile, "SMM: enter\n");
        cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
    }

    env->hflags |= HF_SMM_MASK;
    cpu_smm_update(env);

    sm_state = env->smbase + 0x8000;
1332

B
bellard 已提交
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
#ifdef TARGET_X86_64
    for(i = 0; i < 6; i++) {
        dt = &env->segs[i];
        offset = 0x7e00 + i * 16;
        stw_phys(sm_state + offset, dt->selector);
        stw_phys(sm_state + offset + 2, (dt->flags >> 8) & 0xf0ff);
        stl_phys(sm_state + offset + 4, dt->limit);
        stq_phys(sm_state + offset + 8, dt->base);
    }

    stq_phys(sm_state + 0x7e68, env->gdt.base);
    stl_phys(sm_state + 0x7e64, env->gdt.limit);

    stw_phys(sm_state + 0x7e70, env->ldt.selector);
    stq_phys(sm_state + 0x7e78, env->ldt.base);
    stl_phys(sm_state + 0x7e74, env->ldt.limit);
    stw_phys(sm_state + 0x7e72, (env->ldt.flags >> 8) & 0xf0ff);
1350

B
bellard 已提交
1351 1352 1353 1354 1355 1356 1357
    stq_phys(sm_state + 0x7e88, env->idt.base);
    stl_phys(sm_state + 0x7e84, env->idt.limit);

    stw_phys(sm_state + 0x7e90, env->tr.selector);
    stq_phys(sm_state + 0x7e98, env->tr.base);
    stl_phys(sm_state + 0x7e94, env->tr.limit);
    stw_phys(sm_state + 0x7e92, (env->tr.flags >> 8) & 0xf0ff);
1358

B
bellard 已提交
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
    stq_phys(sm_state + 0x7ed0, env->efer);

    stq_phys(sm_state + 0x7ff8, EAX);
    stq_phys(sm_state + 0x7ff0, ECX);
    stq_phys(sm_state + 0x7fe8, EDX);
    stq_phys(sm_state + 0x7fe0, EBX);
    stq_phys(sm_state + 0x7fd8, ESP);
    stq_phys(sm_state + 0x7fd0, EBP);
    stq_phys(sm_state + 0x7fc8, ESI);
    stq_phys(sm_state + 0x7fc0, EDI);
1369
    for(i = 8; i < 16; i++)
B
bellard 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
        stq_phys(sm_state + 0x7ff8 - i * 8, env->regs[i]);
    stq_phys(sm_state + 0x7f78, env->eip);
    stl_phys(sm_state + 0x7f70, compute_eflags());
    stl_phys(sm_state + 0x7f68, env->dr[6]);
    stl_phys(sm_state + 0x7f60, env->dr[7]);

    stl_phys(sm_state + 0x7f48, env->cr[4]);
    stl_phys(sm_state + 0x7f50, env->cr[3]);
    stl_phys(sm_state + 0x7f58, env->cr[0]);

    stl_phys(sm_state + 0x7efc, SMM_REVISION_ID);
    stl_phys(sm_state + 0x7f00, env->smbase);
#else
    stl_phys(sm_state + 0x7ffc, env->cr[0]);
    stl_phys(sm_state + 0x7ff8, env->cr[3]);
    stl_phys(sm_state + 0x7ff4, compute_eflags());
    stl_phys(sm_state + 0x7ff0, env->eip);
    stl_phys(sm_state + 0x7fec, EDI);
    stl_phys(sm_state + 0x7fe8, ESI);
    stl_phys(sm_state + 0x7fe4, EBP);
    stl_phys(sm_state + 0x7fe0, ESP);
    stl_phys(sm_state + 0x7fdc, EBX);
    stl_phys(sm_state + 0x7fd8, EDX);
    stl_phys(sm_state + 0x7fd4, ECX);
    stl_phys(sm_state + 0x7fd0, EAX);
    stl_phys(sm_state + 0x7fcc, env->dr[6]);
    stl_phys(sm_state + 0x7fc8, env->dr[7]);
1397

B
bellard 已提交
1398 1399 1400 1401
    stl_phys(sm_state + 0x7fc4, env->tr.selector);
    stl_phys(sm_state + 0x7f64, env->tr.base);
    stl_phys(sm_state + 0x7f60, env->tr.limit);
    stl_phys(sm_state + 0x7f5c, (env->tr.flags >> 8) & 0xf0ff);
1402

B
bellard 已提交
1403 1404 1405 1406
    stl_phys(sm_state + 0x7fc0, env->ldt.selector);
    stl_phys(sm_state + 0x7f80, env->ldt.base);
    stl_phys(sm_state + 0x7f7c, env->ldt.limit);
    stl_phys(sm_state + 0x7f78, (env->ldt.flags >> 8) & 0xf0ff);
1407

B
bellard 已提交
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
    stl_phys(sm_state + 0x7f74, env->gdt.base);
    stl_phys(sm_state + 0x7f70, env->gdt.limit);

    stl_phys(sm_state + 0x7f58, env->idt.base);
    stl_phys(sm_state + 0x7f54, env->idt.limit);

    for(i = 0; i < 6; i++) {
        dt = &env->segs[i];
        if (i < 3)
            offset = 0x7f84 + i * 12;
        else
            offset = 0x7f2c + (i - 3) * 12;
        stl_phys(sm_state + 0x7fa8 + i * 4, dt->selector);
        stl_phys(sm_state + offset + 8, dt->base);
        stl_phys(sm_state + offset + 4, dt->limit);
        stl_phys(sm_state + offset, (dt->flags >> 8) & 0xf0ff);
    }
    stl_phys(sm_state + 0x7f14, env->cr[4]);

    stl_phys(sm_state + 0x7efc, SMM_REVISION_ID);
    stl_phys(sm_state + 0x7ef8, env->smbase);
#endif
    /* init SMM cpu state */

B
bellard 已提交
1432 1433 1434 1435
#ifdef TARGET_X86_64
    env->efer = 0;
    env->hflags &= ~HF_LMA_MASK;
#endif
B
bellard 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444
    load_eflags(0, ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
    env->eip = 0x00008000;
    cpu_x86_load_seg_cache(env, R_CS, (env->smbase >> 4) & 0xffff, env->smbase,
                           0xffffffff, 0);
    cpu_x86_load_seg_cache(env, R_DS, 0, 0, 0xffffffff, 0);
    cpu_x86_load_seg_cache(env, R_ES, 0, 0, 0xffffffff, 0);
    cpu_x86_load_seg_cache(env, R_SS, 0, 0, 0xffffffff, 0);
    cpu_x86_load_seg_cache(env, R_FS, 0, 0, 0xffffffff, 0);
    cpu_x86_load_seg_cache(env, R_GS, 0, 0, 0xffffffff, 0);
1445

1446
    cpu_x86_update_cr0(env,
B
bellard 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
                       env->cr[0] & ~(CR0_PE_MASK | CR0_EM_MASK | CR0_TS_MASK | CR0_PG_MASK));
    cpu_x86_update_cr4(env, 0);
    env->dr[7] = 0x00000400;
    CC_OP = CC_OP_EFLAGS;
}

void helper_rsm(void)
{
    target_ulong sm_state;
    int i, offset;
    uint32_t val;

    sm_state = env->smbase + 0x8000;
#ifdef TARGET_X86_64
B
bellard 已提交
1461 1462 1463 1464 1465 1466
    env->efer = ldq_phys(sm_state + 0x7ed0);
    if (env->efer & MSR_EFER_LMA)
        env->hflags |= HF_LMA_MASK;
    else
        env->hflags &= ~HF_LMA_MASK;

B
bellard 已提交
1467 1468
    for(i = 0; i < 6; i++) {
        offset = 0x7e00 + i * 16;
1469
        cpu_x86_load_seg_cache(env, i,
B
bellard 已提交
1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
                               lduw_phys(sm_state + offset),
                               ldq_phys(sm_state + offset + 8),
                               ldl_phys(sm_state + offset + 4),
                               (lduw_phys(sm_state + offset + 2) & 0xf0ff) << 8);
    }

    env->gdt.base = ldq_phys(sm_state + 0x7e68);
    env->gdt.limit = ldl_phys(sm_state + 0x7e64);

    env->ldt.selector = lduw_phys(sm_state + 0x7e70);
    env->ldt.base = ldq_phys(sm_state + 0x7e78);
    env->ldt.limit = ldl_phys(sm_state + 0x7e74);
    env->ldt.flags = (lduw_phys(sm_state + 0x7e72) & 0xf0ff) << 8;
1483

B
bellard 已提交
1484 1485 1486 1487 1488 1489 1490
    env->idt.base = ldq_phys(sm_state + 0x7e88);
    env->idt.limit = ldl_phys(sm_state + 0x7e84);

    env->tr.selector = lduw_phys(sm_state + 0x7e90);
    env->tr.base = ldq_phys(sm_state + 0x7e98);
    env->tr.limit = ldl_phys(sm_state + 0x7e94);
    env->tr.flags = (lduw_phys(sm_state + 0x7e92) & 0xf0ff) << 8;
1491

B
bellard 已提交
1492 1493 1494 1495 1496 1497 1498 1499
    EAX = ldq_phys(sm_state + 0x7ff8);
    ECX = ldq_phys(sm_state + 0x7ff0);
    EDX = ldq_phys(sm_state + 0x7fe8);
    EBX = ldq_phys(sm_state + 0x7fe0);
    ESP = ldq_phys(sm_state + 0x7fd8);
    EBP = ldq_phys(sm_state + 0x7fd0);
    ESI = ldq_phys(sm_state + 0x7fc8);
    EDI = ldq_phys(sm_state + 0x7fc0);
1500
    for(i = 8; i < 16; i++)
B
bellard 已提交
1501 1502
        env->regs[i] = ldq_phys(sm_state + 0x7ff8 - i * 8);
    env->eip = ldq_phys(sm_state + 0x7f78);
1503
    load_eflags(ldl_phys(sm_state + 0x7f70),
B
bellard 已提交
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
                ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
    env->dr[6] = ldl_phys(sm_state + 0x7f68);
    env->dr[7] = ldl_phys(sm_state + 0x7f60);

    cpu_x86_update_cr4(env, ldl_phys(sm_state + 0x7f48));
    cpu_x86_update_cr3(env, ldl_phys(sm_state + 0x7f50));
    cpu_x86_update_cr0(env, ldl_phys(sm_state + 0x7f58));

    val = ldl_phys(sm_state + 0x7efc); /* revision ID */
    if (val & 0x20000) {
        env->smbase = ldl_phys(sm_state + 0x7f00) & ~0x7fff;
    }
#else
    cpu_x86_update_cr0(env, ldl_phys(sm_state + 0x7ffc));
    cpu_x86_update_cr3(env, ldl_phys(sm_state + 0x7ff8));
1519
    load_eflags(ldl_phys(sm_state + 0x7ff4),
B
bellard 已提交
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
                ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
    env->eip = ldl_phys(sm_state + 0x7ff0);
    EDI = ldl_phys(sm_state + 0x7fec);
    ESI = ldl_phys(sm_state + 0x7fe8);
    EBP = ldl_phys(sm_state + 0x7fe4);
    ESP = ldl_phys(sm_state + 0x7fe0);
    EBX = ldl_phys(sm_state + 0x7fdc);
    EDX = ldl_phys(sm_state + 0x7fd8);
    ECX = ldl_phys(sm_state + 0x7fd4);
    EAX = ldl_phys(sm_state + 0x7fd0);
    env->dr[6] = ldl_phys(sm_state + 0x7fcc);
    env->dr[7] = ldl_phys(sm_state + 0x7fc8);
1532

B
bellard 已提交
1533 1534 1535 1536
    env->tr.selector = ldl_phys(sm_state + 0x7fc4) & 0xffff;
    env->tr.base = ldl_phys(sm_state + 0x7f64);
    env->tr.limit = ldl_phys(sm_state + 0x7f60);
    env->tr.flags = (ldl_phys(sm_state + 0x7f5c) & 0xf0ff) << 8;
1537

B
bellard 已提交
1538 1539 1540 1541
    env->ldt.selector = ldl_phys(sm_state + 0x7fc0) & 0xffff;
    env->ldt.base = ldl_phys(sm_state + 0x7f80);
    env->ldt.limit = ldl_phys(sm_state + 0x7f7c);
    env->ldt.flags = (ldl_phys(sm_state + 0x7f78) & 0xf0ff) << 8;
1542

B
bellard 已提交
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
    env->gdt.base = ldl_phys(sm_state + 0x7f74);
    env->gdt.limit = ldl_phys(sm_state + 0x7f70);

    env->idt.base = ldl_phys(sm_state + 0x7f58);
    env->idt.limit = ldl_phys(sm_state + 0x7f54);

    for(i = 0; i < 6; i++) {
        if (i < 3)
            offset = 0x7f84 + i * 12;
        else
            offset = 0x7f2c + (i - 3) * 12;
1554
        cpu_x86_load_seg_cache(env, i,
B
bellard 已提交
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
                               ldl_phys(sm_state + 0x7fa8 + i * 4) & 0xffff,
                               ldl_phys(sm_state + offset + 8),
                               ldl_phys(sm_state + offset + 4),
                               (ldl_phys(sm_state + offset) & 0xf0ff) << 8);
    }
    cpu_x86_update_cr4(env, ldl_phys(sm_state + 0x7f14));

    val = ldl_phys(sm_state + 0x7efc); /* revision ID */
    if (val & 0x20000) {
        env->smbase = ldl_phys(sm_state + 0x7ef8) & ~0x7fff;
    }
#endif
    CC_OP = CC_OP_EFLAGS;
    env->hflags &= ~HF_SMM_MASK;
    cpu_smm_update(env);

    if (loglevel & CPU_LOG_INT) {
        fprintf(logfile, "SMM: after RSM\n");
        cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
    }
}

B
bellard 已提交
1577 1578 1579
#endif /* !CONFIG_USER_ONLY */


B
bellard 已提交
1580 1581 1582
#ifdef BUGGY_GCC_DIV64
/* gcc 2.95.4 on PowerPC does not seem to like using __udivdi3, so we
   call it from another function */
B
bellard 已提交
1583
uint32_t div32(uint64_t *q_ptr, uint64_t num, uint32_t den)
B
bellard 已提交
1584 1585 1586 1587 1588
{
    *q_ptr = num / den;
    return num % den;
}

B
bellard 已提交
1589
int32_t idiv32(int64_t *q_ptr, int64_t num, int32_t den)
B
bellard 已提交
1590 1591 1592 1593 1594 1595
{
    *q_ptr = num / den;
    return num % den;
}
#endif

B
bellard 已提交
1596
void helper_divl_EAX_T0(void)
B
bellard 已提交
1597
{
B
bellard 已提交
1598 1599
    unsigned int den, r;
    uint64_t num, q;
1600

B
bellard 已提交
1601
    num = ((uint32_t)EAX) | ((uint64_t)((uint32_t)EDX) << 32);
B
bellard 已提交
1602 1603 1604 1605 1606
    den = T0;
    if (den == 0) {
        raise_exception(EXCP00_DIVZ);
    }
#ifdef BUGGY_GCC_DIV64
B
bellard 已提交
1607
    r = div32(&q, num, den);
B
bellard 已提交
1608 1609 1610 1611
#else
    q = (num / den);
    r = (num % den);
#endif
B
bellard 已提交
1612 1613
    if (q > 0xffffffff)
        raise_exception(EXCP00_DIVZ);
B
bellard 已提交
1614 1615
    EAX = (uint32_t)q;
    EDX = (uint32_t)r;
B
bellard 已提交
1616 1617
}

B
bellard 已提交
1618
void helper_idivl_EAX_T0(void)
B
bellard 已提交
1619
{
B
bellard 已提交
1620 1621
    int den, r;
    int64_t num, q;
1622

B
bellard 已提交
1623
    num = ((uint32_t)EAX) | ((uint64_t)((uint32_t)EDX) << 32);
B
bellard 已提交
1624 1625 1626 1627 1628
    den = T0;
    if (den == 0) {
        raise_exception(EXCP00_DIVZ);
    }
#ifdef BUGGY_GCC_DIV64
B
bellard 已提交
1629
    r = idiv32(&q, num, den);
B
bellard 已提交
1630 1631 1632 1633
#else
    q = (num / den);
    r = (num % den);
#endif
B
bellard 已提交
1634 1635
    if (q != (int32_t)q)
        raise_exception(EXCP00_DIVZ);
B
bellard 已提交
1636 1637
    EAX = (uint32_t)q;
    EDX = (uint32_t)r;
B
bellard 已提交
1638 1639 1640 1641 1642 1643 1644 1645
}

void helper_cmpxchg8b(void)
{
    uint64_t d;
    int eflags;

    eflags = cc_table[CC_OP].compute_all();
B
bellard 已提交
1646
    d = ldq(A0);
B
bellard 已提交
1647
    if (d == (((uint64_t)EDX << 32) | EAX)) {
B
bellard 已提交
1648
        stq(A0, ((uint64_t)ECX << 32) | EBX);
B
bellard 已提交
1649 1650 1651 1652 1653 1654 1655 1656 1657
        eflags |= CC_Z;
    } else {
        EDX = d >> 32;
        EAX = d;
        eflags &= ~CC_Z;
    }
    CC_SRC = eflags;
}

1658 1659 1660 1661 1662 1663
void helper_single_step()
{
    env->dr[6] |= 0x4000;
    raise_exception(EXCP01_SSTP);
}

B
bellard 已提交
1664 1665
void helper_cpuid(void)
{
1666 1667
    uint32_t index;
    index = (uint32_t)EAX;
1668

1669 1670
    /* test if maximum index reached */
    if (index & 0x80000000) {
1671
        if (index > env->cpuid_xlevel)
1672 1673
            index = env->cpuid_level;
    } else {
1674
        if (index > env->cpuid_level)
1675 1676
            index = env->cpuid_level;
    }
1677

1678
    switch(index) {
1679
    case 0:
1680
        EAX = env->cpuid_level;
B
bellard 已提交
1681 1682 1683
        EBX = env->cpuid_vendor1;
        EDX = env->cpuid_vendor2;
        ECX = env->cpuid_vendor3;
1684 1685
        break;
    case 1:
B
bellard 已提交
1686
        EAX = env->cpuid_version;
1687
        EBX = (env->cpuid_apic_id << 24) | 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */
B
bellard 已提交
1688
        ECX = env->cpuid_ext_features;
B
bellard 已提交
1689
        EDX = env->cpuid_features;
1690
        break;
1691
    case 2:
1692
        /* cache info: needed for Pentium Pro compatibility */
T
ths 已提交
1693
        EAX = 1;
B
bellard 已提交
1694 1695
        EBX = 0;
        ECX = 0;
T
ths 已提交
1696
        EDX = 0x2c307d;
1697
        break;
B
bellard 已提交
1698
    case 0x80000000:
1699
        EAX = env->cpuid_xlevel;
B
bellard 已提交
1700 1701 1702 1703 1704 1705 1706
        EBX = env->cpuid_vendor1;
        EDX = env->cpuid_vendor2;
        ECX = env->cpuid_vendor3;
        break;
    case 0x80000001:
        EAX = env->cpuid_features;
        EBX = 0;
T
ths 已提交
1707
        ECX = env->cpuid_ext3_features;
1708 1709 1710 1711 1712 1713 1714 1715 1716
        EDX = env->cpuid_ext2_features;
        break;
    case 0x80000002:
    case 0x80000003:
    case 0x80000004:
        EAX = env->cpuid_model[(index - 0x80000002) * 4 + 0];
        EBX = env->cpuid_model[(index - 0x80000002) * 4 + 1];
        ECX = env->cpuid_model[(index - 0x80000002) * 4 + 2];
        EDX = env->cpuid_model[(index - 0x80000002) * 4 + 3];
B
bellard 已提交
1717
        break;
1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731
    case 0x80000005:
        /* cache info (L1 cache) */
        EAX = 0x01ff01ff;
        EBX = 0x01ff01ff;
        ECX = 0x40020140;
        EDX = 0x40020140;
        break;
    case 0x80000006:
        /* cache info (L2 cache) */
        EAX = 0;
        EBX = 0x42004200;
        ECX = 0x02008140;
        EDX = 0;
        break;
B
bellard 已提交
1732 1733 1734 1735 1736 1737 1738
    case 0x80000008:
        /* virtual & phys address size in low 2 bytes. */
        EAX = 0x00003028;
        EBX = 0;
        ECX = 0;
        EDX = 0;
        break;
1739 1740 1741 1742 1743 1744 1745
    default:
        /* reserved values: zero */
        EAX = 0;
        EBX = 0;
        ECX = 0;
        EDX = 0;
        break;
B
bellard 已提交
1746 1747 1748
    }
}

B
bellard 已提交
1749 1750
void helper_enter_level(int level, int data32)
{
B
bellard 已提交
1751
    target_ulong ssp;
B
bellard 已提交
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
    uint32_t esp_mask, esp, ebp;

    esp_mask = get_sp_mask(env->segs[R_SS].flags);
    ssp = env->segs[R_SS].base;
    ebp = EBP;
    esp = ESP;
    if (data32) {
        /* 32 bit */
        esp -= 4;
        while (--level) {
            esp -= 4;
            ebp -= 4;
            stl(ssp + (esp & esp_mask), ldl(ssp + (ebp & esp_mask)));
        }
        esp -= 4;
        stl(ssp + (esp & esp_mask), T1);
    } else {
        /* 16 bit */
        esp -= 2;
        while (--level) {
            esp -= 2;
            ebp -= 2;
            stw(ssp + (esp & esp_mask), lduw(ssp + (ebp & esp_mask)));
        }
        esp -= 2;
        stw(ssp + (esp & esp_mask), T1);
    }
}

1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
#ifdef TARGET_X86_64
void helper_enter64_level(int level, int data64)
{
    target_ulong esp, ebp;
    ebp = EBP;
    esp = ESP;

    if (data64) {
        /* 64 bit */
        esp -= 8;
        while (--level) {
            esp -= 8;
            ebp -= 8;
            stq(esp, ldq(ebp));
        }
        esp -= 8;
        stq(esp, T1);
    } else {
        /* 16 bit */
        esp -= 2;
        while (--level) {
            esp -= 2;
            ebp -= 2;
            stw(esp, lduw(ebp));
        }
        esp -= 2;
        stw(esp, T1);
    }
}
#endif

B
bellard 已提交
1812 1813 1814 1815 1816
void helper_lldt_T0(void)
{
    int selector;
    SegmentCache *dt;
    uint32_t e1, e2;
B
bellard 已提交
1817 1818
    int index, entry_limit;
    target_ulong ptr;
1819

B
bellard 已提交
1820 1821 1822
    selector = T0 & 0xffff;
    if ((selector & 0xfffc) == 0) {
        /* XXX: NULL selector case: invalid LDT */
B
bellard 已提交
1823
        env->ldt.base = 0;
B
bellard 已提交
1824 1825 1826 1827 1828 1829
        env->ldt.limit = 0;
    } else {
        if (selector & 0x4)
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        dt = &env->gdt;
        index = selector & ~7;
B
bellard 已提交
1830 1831 1832 1833
#ifdef TARGET_X86_64
        if (env->hflags & HF_LMA_MASK)
            entry_limit = 15;
        else
1834
#endif
B
bellard 已提交
1835 1836
            entry_limit = 7;
        if ((index + entry_limit) > dt->limit)
B
bellard 已提交
1837 1838
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        ptr = dt->base + index;
B
bellard 已提交
1839 1840
        e1 = ldl_kernel(ptr);
        e2 = ldl_kernel(ptr + 4);
B
bellard 已提交
1841 1842 1843 1844
        if ((e2 & DESC_S_MASK) || ((e2 >> DESC_TYPE_SHIFT) & 0xf) != 2)
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, selector & 0xfffc);
B
bellard 已提交
1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
#ifdef TARGET_X86_64
        if (env->hflags & HF_LMA_MASK) {
            uint32_t e3;
            e3 = ldl_kernel(ptr + 8);
            load_seg_cache_raw_dt(&env->ldt, e1, e2);
            env->ldt.base |= (target_ulong)e3 << 32;
        } else
#endif
        {
            load_seg_cache_raw_dt(&env->ldt, e1, e2);
        }
B
bellard 已提交
1856 1857 1858 1859 1860 1861 1862 1863 1864
    }
    env->ldt.selector = selector;
}

void helper_ltr_T0(void)
{
    int selector;
    SegmentCache *dt;
    uint32_t e1, e2;
B
bellard 已提交
1865 1866
    int index, type, entry_limit;
    target_ulong ptr;
1867

B
bellard 已提交
1868 1869
    selector = T0 & 0xffff;
    if ((selector & 0xfffc) == 0) {
B
bellard 已提交
1870 1871
        /* NULL selector case: invalid TR */
        env->tr.base = 0;
B
bellard 已提交
1872 1873 1874 1875 1876 1877 1878
        env->tr.limit = 0;
        env->tr.flags = 0;
    } else {
        if (selector & 0x4)
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        dt = &env->gdt;
        index = selector & ~7;
B
bellard 已提交
1879 1880 1881 1882
#ifdef TARGET_X86_64
        if (env->hflags & HF_LMA_MASK)
            entry_limit = 15;
        else
1883
#endif
B
bellard 已提交
1884 1885
            entry_limit = 7;
        if ((index + entry_limit) > dt->limit)
B
bellard 已提交
1886 1887
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        ptr = dt->base + index;
B
bellard 已提交
1888 1889
        e1 = ldl_kernel(ptr);
        e2 = ldl_kernel(ptr + 4);
B
bellard 已提交
1890
        type = (e2 >> DESC_TYPE_SHIFT) & 0xf;
1891
        if ((e2 & DESC_S_MASK) ||
1892
            (type != 1 && type != 9))
B
bellard 已提交
1893 1894 1895
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, selector & 0xfffc);
B
bellard 已提交
1896 1897
#ifdef TARGET_X86_64
        if (env->hflags & HF_LMA_MASK) {
1898
            uint32_t e3, e4;
B
bellard 已提交
1899
            e3 = ldl_kernel(ptr + 8);
1900 1901 1902
            e4 = ldl_kernel(ptr + 12);
            if ((e4 >> DESC_TYPE_SHIFT) & 0xf)
                raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
B
bellard 已提交
1903 1904
            load_seg_cache_raw_dt(&env->tr, e1, e2);
            env->tr.base |= (target_ulong)e3 << 32;
1905
        } else
B
bellard 已提交
1906 1907 1908 1909
#endif
        {
            load_seg_cache_raw_dt(&env->tr, e1, e2);
        }
1910
        e2 |= DESC_TSS_BUSY_MASK;
B
bellard 已提交
1911
        stl_kernel(ptr + 4, e2);
B
bellard 已提交
1912 1913 1914 1915
    }
    env->tr.selector = selector;
}

1916
/* only works if protected mode and not VM86. seg_reg must be != R_CS */
1917
void load_seg(int seg_reg, int selector)
B
bellard 已提交
1918 1919
{
    uint32_t e1, e2;
1920 1921 1922
    int cpl, dpl, rpl;
    SegmentCache *dt;
    int index;
B
bellard 已提交
1923
    target_ulong ptr;
1924

1925
    selector &= 0xffff;
1926
    cpl = env->hflags & HF_CPL_MASK;
B
bellard 已提交
1927 1928
    if ((selector & 0xfffc) == 0) {
        /* null selector case */
B
bellard 已提交
1929 1930
        if (seg_reg == R_SS
#ifdef TARGET_X86_64
1931
            && (!(env->hflags & HF_CS64_MASK) || cpl == 3)
B
bellard 已提交
1932 1933
#endif
            )
B
bellard 已提交
1934
            raise_exception_err(EXCP0D_GPF, 0);
B
bellard 已提交
1935
        cpu_x86_load_seg_cache(env, seg_reg, selector, 0, 0, 0);
B
bellard 已提交
1936
    } else {
1937

1938 1939 1940 1941 1942
        if (selector & 0x4)
            dt = &env->ldt;
        else
            dt = &env->gdt;
        index = selector & ~7;
1943
        if ((index + 7) > dt->limit)
B
bellard 已提交
1944
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
1945 1946 1947
        ptr = dt->base + index;
        e1 = ldl_kernel(ptr);
        e2 = ldl_kernel(ptr + 4);
1948

1949
        if (!(e2 & DESC_S_MASK))
B
bellard 已提交
1950
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
1951 1952
        rpl = selector & 3;
        dpl = (e2 >> DESC_DPL_SHIFT) & 3;
B
bellard 已提交
1953
        if (seg_reg == R_SS) {
1954
            /* must be writable segment */
1955
            if ((e2 & DESC_CS_MASK) || !(e2 & DESC_W_MASK))
B
bellard 已提交
1956
                raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
1957
            if (rpl != cpl || dpl != cpl)
1958
                raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
B
bellard 已提交
1959
        } else {
1960
            /* must be readable segment */
1961
            if ((e2 & (DESC_CS_MASK | DESC_R_MASK)) == DESC_CS_MASK)
B
bellard 已提交
1962
                raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
1963

1964 1965
            if (!(e2 & DESC_CS_MASK) || !(e2 & DESC_C_MASK)) {
                /* if not conforming code, test rights */
1966
                if (dpl < cpl || dpl < rpl)
1967 1968
                    raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
            }
B
bellard 已提交
1969 1970 1971 1972 1973 1974 1975 1976
        }

        if (!(e2 & DESC_P_MASK)) {
            if (seg_reg == R_SS)
                raise_exception_err(EXCP0C_STACK, selector & 0xfffc);
            else
                raise_exception_err(EXCP0B_NOSEG, selector & 0xfffc);
        }
1977 1978 1979 1980 1981 1982 1983

        /* set the access bit if not already set */
        if (!(e2 & DESC_A_MASK)) {
            e2 |= DESC_A_MASK;
            stl_kernel(ptr + 4, e2);
        }

1984
        cpu_x86_load_seg_cache(env, seg_reg, selector,
B
bellard 已提交
1985 1986 1987 1988
                       get_seg_base(e1, e2),
                       get_seg_limit(e1, e2),
                       e2);
#if 0
1989
        fprintf(logfile, "load_seg: sel=0x%04x base=0x%08lx limit=0x%08lx flags=%08x\n",
B
bellard 已提交
1990 1991 1992 1993 1994 1995
                selector, (unsigned long)sc->base, sc->limit, sc->flags);
#endif
    }
}

/* protected mode jump */
1996
void helper_ljmp_protected_T0_T1(int next_eip_addend)
B
bellard 已提交
1997
{
B
bellard 已提交
1998
    int new_cs, gate_cs, type;
B
bellard 已提交
1999
    uint32_t e1, e2, cpl, dpl, rpl, limit;
2000
    target_ulong new_eip, next_eip;
2001

B
bellard 已提交
2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012
    new_cs = T0;
    new_eip = T1;
    if ((new_cs & 0xfffc) == 0)
        raise_exception_err(EXCP0D_GPF, 0);
    if (load_segment(&e1, &e2, new_cs) != 0)
        raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    cpl = env->hflags & HF_CPL_MASK;
    if (e2 & DESC_S_MASK) {
        if (!(e2 & DESC_CS_MASK))
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        dpl = (e2 >> DESC_DPL_SHIFT) & 3;
2013
        if (e2 & DESC_C_MASK) {
B
bellard 已提交
2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027
            /* conforming code segment */
            if (dpl > cpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        } else {
            /* non conforming code segment */
            rpl = new_cs & 3;
            if (rpl > cpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
            if (dpl != cpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        }
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, new_cs & 0xfffc);
        limit = get_seg_limit(e1, e2);
2028
        if (new_eip > limit &&
B
bellard 已提交
2029
            !(env->hflags & HF_LMA_MASK) && !(e2 & DESC_L_MASK))
B
bellard 已提交
2030 2031 2032 2033 2034
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        cpu_x86_load_seg_cache(env, R_CS, (new_cs & 0xfffc) | cpl,
                       get_seg_base(e1, e2), limit, e2);
        EIP = new_eip;
    } else {
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
        /* jump to call or task gate */
        dpl = (e2 >> DESC_DPL_SHIFT) & 3;
        rpl = new_cs & 3;
        cpl = env->hflags & HF_CPL_MASK;
        type = (e2 >> DESC_TYPE_SHIFT) & 0xf;
        switch(type) {
        case 1: /* 286 TSS */
        case 9: /* 386 TSS */
        case 5: /* task gate */
            if (dpl < cpl || dpl < rpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
2046
            next_eip = env->eip + next_eip_addend;
B
bellard 已提交
2047
            switch_tss(new_cs, e1, e2, SWITCH_TSS_JMP, next_eip);
B
bellard 已提交
2048
            CC_OP = CC_OP_EFLAGS;
2049 2050 2051 2052 2053 2054 2055 2056
            break;
        case 4: /* 286 call gate */
        case 12: /* 386 call gate */
            if ((dpl < cpl) || (dpl < rpl))
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
            if (!(e2 & DESC_P_MASK))
                raise_exception_err(EXCP0B_NOSEG, new_cs & 0xfffc);
            gate_cs = e1 >> 16;
2057 2058 2059
            new_eip = (e1 & 0xffff);
            if (type == 12)
                new_eip |= (e2 & 0xffff0000);
2060 2061 2062 2063
            if (load_segment(&e1, &e2, gate_cs) != 0)
                raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc);
            dpl = (e2 >> DESC_DPL_SHIFT) & 3;
            /* must be code segment */
2064
            if (((e2 & (DESC_S_MASK | DESC_CS_MASK)) !=
2065 2066
                 (DESC_S_MASK | DESC_CS_MASK)))
                raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc);
2067
            if (((e2 & DESC_C_MASK) && (dpl > cpl)) ||
2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
                (!(e2 & DESC_C_MASK) && (dpl != cpl)))
                raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc);
            if (!(e2 & DESC_P_MASK))
                raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc);
            limit = get_seg_limit(e1, e2);
            if (new_eip > limit)
                raise_exception_err(EXCP0D_GPF, 0);
            cpu_x86_load_seg_cache(env, R_CS, (gate_cs & 0xfffc) | cpl,
                                   get_seg_base(e1, e2), limit, e2);
            EIP = new_eip;
            break;
        default:
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
            break;
        }
B
bellard 已提交
2083 2084 2085 2086 2087 2088 2089 2090
    }
}

/* real mode call */
void helper_lcall_real_T0_T1(int shift, int next_eip)
{
    int new_cs, new_eip;
    uint32_t esp, esp_mask;
B
bellard 已提交
2091
    target_ulong ssp;
B
bellard 已提交
2092 2093 2094 2095

    new_cs = T0;
    new_eip = T1;
    esp = ESP;
2096
    esp_mask = get_sp_mask(env->segs[R_SS].flags);
B
bellard 已提交
2097 2098
    ssp = env->segs[R_SS].base;
    if (shift) {
2099 2100
        PUSHL(ssp, esp, esp_mask, env->segs[R_CS].selector);
        PUSHL(ssp, esp, esp_mask, next_eip);
B
bellard 已提交
2101
    } else {
2102 2103
        PUSHW(ssp, esp, esp_mask, env->segs[R_CS].selector);
        PUSHW(ssp, esp, esp_mask, next_eip);
B
bellard 已提交
2104 2105
    }

2106
    SET_ESP(esp, esp_mask);
B
bellard 已提交
2107 2108
    env->eip = new_eip;
    env->segs[R_CS].selector = new_cs;
B
bellard 已提交
2109
    env->segs[R_CS].base = (new_cs << 4);
B
bellard 已提交
2110 2111 2112
}

/* protected mode call */
2113
void helper_lcall_protected_T0_T1(int shift, int next_eip_addend)
B
bellard 已提交
2114
{
B
bellard 已提交
2115
    int new_cs, new_stack, i;
B
bellard 已提交
2116
    uint32_t e1, e2, cpl, dpl, rpl, selector, offset, param_count;
2117 2118
    uint32_t ss, ss_e1, ss_e2, sp, type, ss_dpl, sp_mask;
    uint32_t val, limit, old_sp_mask;
B
bellard 已提交
2119
    target_ulong ssp, old_ssp, next_eip, new_eip;
2120

B
bellard 已提交
2121 2122
    new_cs = T0;
    new_eip = T1;
2123
    next_eip = env->eip + next_eip_addend;
B
bellard 已提交
2124
#ifdef DEBUG_PCALL
B
bellard 已提交
2125 2126
    if (loglevel & CPU_LOG_PCALL) {
        fprintf(logfile, "lcall %04x:%08x s=%d\n",
B
bellard 已提交
2127
                new_cs, (uint32_t)new_eip, shift);
B
bellard 已提交
2128
        cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
B
bellard 已提交
2129 2130
    }
#endif
B
bellard 已提交
2131 2132 2133 2134 2135
    if ((new_cs & 0xfffc) == 0)
        raise_exception_err(EXCP0D_GPF, 0);
    if (load_segment(&e1, &e2, new_cs) != 0)
        raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    cpl = env->hflags & HF_CPL_MASK;
B
bellard 已提交
2136
#ifdef DEBUG_PCALL
B
bellard 已提交
2137
    if (loglevel & CPU_LOG_PCALL) {
B
bellard 已提交
2138 2139 2140
        fprintf(logfile, "desc=%08x:%08x\n", e1, e2);
    }
#endif
B
bellard 已提交
2141 2142 2143 2144
    if (e2 & DESC_S_MASK) {
        if (!(e2 & DESC_CS_MASK))
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        dpl = (e2 >> DESC_DPL_SHIFT) & 3;
2145
        if (e2 & DESC_C_MASK) {
B
bellard 已提交
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159
            /* conforming code segment */
            if (dpl > cpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        } else {
            /* non conforming code segment */
            rpl = new_cs & 3;
            if (rpl > cpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
            if (dpl != cpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        }
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, new_cs & 0xfffc);

2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170
#ifdef TARGET_X86_64
        /* XXX: check 16/32 bit cases in long mode */
        if (shift == 2) {
            target_ulong rsp;
            /* 64 bit case */
            rsp = ESP;
            PUSHQ(rsp, env->segs[R_CS].selector);
            PUSHQ(rsp, next_eip);
            /* from this point, not restartable */
            ESP = rsp;
            cpu_x86_load_seg_cache(env, R_CS, (new_cs & 0xfffc) | cpl,
2171
                                   get_seg_base(e1, e2),
2172 2173
                                   get_seg_limit(e1, e2), e2);
            EIP = new_eip;
2174
        } else
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186
#endif
        {
            sp = ESP;
            sp_mask = get_sp_mask(env->segs[R_SS].flags);
            ssp = env->segs[R_SS].base;
            if (shift) {
                PUSHL(ssp, sp, sp_mask, env->segs[R_CS].selector);
                PUSHL(ssp, sp, sp_mask, next_eip);
            } else {
                PUSHW(ssp, sp, sp_mask, env->segs[R_CS].selector);
                PUSHW(ssp, sp, sp_mask, next_eip);
            }
2187

2188 2189 2190 2191
            limit = get_seg_limit(e1, e2);
            if (new_eip > limit)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
            /* from this point, not restartable */
2192
            SET_ESP(sp, sp_mask);
2193 2194 2195
            cpu_x86_load_seg_cache(env, R_CS, (new_cs & 0xfffc) | cpl,
                                   get_seg_base(e1, e2), limit, e2);
            EIP = new_eip;
B
bellard 已提交
2196 2197 2198 2199
        }
    } else {
        /* check gate type */
        type = (e2 >> DESC_TYPE_SHIFT) & 0x1f;
2200 2201
        dpl = (e2 >> DESC_DPL_SHIFT) & 3;
        rpl = new_cs & 3;
B
bellard 已提交
2202 2203 2204 2205
        switch(type) {
        case 1: /* available 286 TSS */
        case 9: /* available 386 TSS */
        case 5: /* task gate */
2206 2207
            if (dpl < cpl || dpl < rpl)
                raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
B
bellard 已提交
2208
            switch_tss(new_cs, e1, e2, SWITCH_TSS_CALL, next_eip);
B
bellard 已提交
2209
            CC_OP = CC_OP_EFLAGS;
2210
            return;
B
bellard 已提交
2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
        case 4: /* 286 call gate */
        case 12: /* 386 call gate */
            break;
        default:
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
            break;
        }
        shift = type >> 3;

        if (dpl < cpl || dpl < rpl)
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
        /* check valid bit */
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG,  new_cs & 0xfffc);
        selector = e1 >> 16;
        offset = (e2 & 0xffff0000) | (e1 & 0x0000ffff);
B
bellard 已提交
2227
        param_count = e2 & 0x1f;
B
bellard 已提交
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241
        if ((selector & 0xfffc) == 0)
            raise_exception_err(EXCP0D_GPF, 0);

        if (load_segment(&e1, &e2, selector) != 0)
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        if (!(e2 & DESC_S_MASK) || !(e2 & (DESC_CS_MASK)))
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        dpl = (e2 >> DESC_DPL_SHIFT) & 3;
        if (dpl > cpl)
            raise_exception_err(EXCP0D_GPF, selector & 0xfffc);
        if (!(e2 & DESC_P_MASK))
            raise_exception_err(EXCP0B_NOSEG, selector & 0xfffc);

        if (!(e2 & DESC_C_MASK) && dpl < cpl) {
B
blueswir1 已提交
2242
            /* to inner privilege */
B
bellard 已提交
2243
            get_ss_esp_from_tss(&ss, &sp, dpl);
B
bellard 已提交
2244
#ifdef DEBUG_PCALL
B
bellard 已提交
2245
            if (loglevel & CPU_LOG_PCALL)
2246
                fprintf(logfile, "new ss:esp=%04x:%08x param_count=%d ESP=" TARGET_FMT_lx "\n",
B
bellard 已提交
2247 2248
                        ss, sp, param_count, ESP);
#endif
B
bellard 已提交
2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
            if ((ss & 0xfffc) == 0)
                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
            if ((ss & 3) != dpl)
                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
            if (load_segment(&ss_e1, &ss_e2, ss) != 0)
                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
            ss_dpl = (ss_e2 >> DESC_DPL_SHIFT) & 3;
            if (ss_dpl != dpl)
                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
            if (!(ss_e2 & DESC_S_MASK) ||
                (ss_e2 & DESC_CS_MASK) ||
                !(ss_e2 & DESC_W_MASK))
                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
            if (!(ss_e2 & DESC_P_MASK))
                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
2264

2265
            //            push_size = ((param_count * 2) + 8) << shift;
B
bellard 已提交
2266

2267 2268
            old_sp_mask = get_sp_mask(env->segs[R_SS].flags);
            old_ssp = env->segs[R_SS].base;
2269

2270 2271
            sp_mask = get_sp_mask(ss_e2);
            ssp = get_seg_base(ss_e1, ss_e2);
B
bellard 已提交
2272
            if (shift) {
2273 2274 2275 2276 2277
                PUSHL(ssp, sp, sp_mask, env->segs[R_SS].selector);
                PUSHL(ssp, sp, sp_mask, ESP);
                for(i = param_count - 1; i >= 0; i--) {
                    val = ldl_kernel(old_ssp + ((ESP + i * 4) & old_sp_mask));
                    PUSHL(ssp, sp, sp_mask, val);
B
bellard 已提交
2278 2279
                }
            } else {
2280 2281 2282 2283 2284
                PUSHW(ssp, sp, sp_mask, env->segs[R_SS].selector);
                PUSHW(ssp, sp, sp_mask, ESP);
                for(i = param_count - 1; i >= 0; i--) {
                    val = lduw_kernel(old_ssp + ((ESP + i * 2) & old_sp_mask));
                    PUSHW(ssp, sp, sp_mask, val);
B
bellard 已提交
2285 2286
                }
            }
2287
            new_stack = 1;
B
bellard 已提交
2288
        } else {
B
blueswir1 已提交
2289
            /* to same privilege */
2290 2291 2292 2293 2294
            sp = ESP;
            sp_mask = get_sp_mask(env->segs[R_SS].flags);
            ssp = env->segs[R_SS].base;
            //            push_size = (4 << shift);
            new_stack = 0;
B
bellard 已提交
2295 2296 2297
        }

        if (shift) {
2298 2299
            PUSHL(ssp, sp, sp_mask, env->segs[R_CS].selector);
            PUSHL(ssp, sp, sp_mask, next_eip);
B
bellard 已提交
2300
        } else {
2301 2302 2303 2304 2305 2306 2307 2308
            PUSHW(ssp, sp, sp_mask, env->segs[R_CS].selector);
            PUSHW(ssp, sp, sp_mask, next_eip);
        }

        /* from this point, not restartable */

        if (new_stack) {
            ss = (ss & ~3) | dpl;
2309
            cpu_x86_load_seg_cache(env, R_SS, ss,
2310 2311 2312
                                   ssp,
                                   get_seg_limit(ss_e1, ss_e2),
                                   ss_e2);
B
bellard 已提交
2313 2314 2315
        }

        selector = (selector & ~3) | dpl;
2316
        cpu_x86_load_seg_cache(env, R_CS, selector,
B
bellard 已提交
2317 2318 2319 2320
                       get_seg_base(e1, e2),
                       get_seg_limit(e1, e2),
                       e2);
        cpu_x86_set_cpl(env, dpl);
2321
        SET_ESP(sp, sp_mask);
B
bellard 已提交
2322 2323
        EIP = offset;
    }
B
bellard 已提交
2324 2325 2326 2327 2328 2329
#ifdef USE_KQEMU
    if (kqemu_is_ok(env)) {
        env->exception_index = -1;
        cpu_loop_exit();
    }
#endif
B
bellard 已提交
2330 2331
}

2332
/* real and vm86 mode iret */
B
bellard 已提交
2333 2334
void helper_iret_real(int shift)
{
2335
    uint32_t sp, new_cs, new_eip, new_eflags, sp_mask;
B
bellard 已提交
2336
    target_ulong ssp;
B
bellard 已提交
2337
    int eflags_mask;
2338

2339 2340 2341
    sp_mask = 0xffff; /* XXXX: use SS segment size ? */
    sp = ESP;
    ssp = env->segs[R_SS].base;
B
bellard 已提交
2342 2343
    if (shift == 1) {
        /* 32 bits */
2344 2345 2346 2347
        POPL(ssp, sp, sp_mask, new_eip);
        POPL(ssp, sp, sp_mask, new_cs);
        new_cs &= 0xffff;
        POPL(ssp, sp, sp_mask, new_eflags);
B
bellard 已提交
2348 2349
    } else {
        /* 16 bits */
2350 2351 2352
        POPW(ssp, sp, sp_mask, new_eip);
        POPW(ssp, sp, sp_mask, new_cs);
        POPW(ssp, sp, sp_mask, new_eflags);
B
bellard 已提交
2353
    }
B
bellard 已提交
2354
    ESP = (ESP & ~sp_mask) | (sp & sp_mask);
B
bellard 已提交
2355 2356
    load_seg_vm(R_CS, new_cs);
    env->eip = new_eip;
2357
    if (env->eflags & VM_MASK)
2358
        eflags_mask = TF_MASK | AC_MASK | ID_MASK | IF_MASK | RF_MASK | NT_MASK;
2359
    else
2360
        eflags_mask = TF_MASK | AC_MASK | ID_MASK | IF_MASK | IOPL_MASK | RF_MASK | NT_MASK;
B
bellard 已提交
2361 2362 2363 2364 2365
    if (shift == 0)
        eflags_mask &= 0xffff;
    load_eflags(new_eflags, eflags_mask);
}

2366 2367 2368 2369
static inline void validate_seg(int seg_reg, int cpl)
{
    int dpl;
    uint32_t e2;
2370 2371 2372 2373

    /* XXX: on x86_64, we do not want to nullify FS and GS because
       they may still contain a valid base. I would be interested to
       know how a real x86_64 CPU behaves */
2374
    if ((seg_reg == R_FS || seg_reg == R_GS) &&
2375 2376 2377
        (env->segs[seg_reg].selector & 0xfffc) == 0)
        return;

2378 2379 2380 2381 2382
    e2 = env->segs[seg_reg].flags;
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    if (!(e2 & DESC_CS_MASK) || !(e2 & DESC_C_MASK)) {
        /* data or non conforming code segment */
        if (dpl < cpl) {
B
bellard 已提交
2383
            cpu_x86_load_seg_cache(env, seg_reg, 0, 0, 0, 0);
2384 2385 2386 2387
        }
    }
}

B
bellard 已提交
2388 2389 2390
/* protected mode iret */
static inline void helper_ret_protected(int shift, int is_iret, int addend)
{
B
bellard 已提交
2391
    uint32_t new_cs, new_eflags, new_ss;
B
bellard 已提交
2392 2393
    uint32_t new_es, new_ds, new_fs, new_gs;
    uint32_t e1, e2, ss_e1, ss_e2;
B
bellard 已提交
2394
    int cpl, dpl, rpl, eflags_mask, iopl;
B
bellard 已提交
2395
    target_ulong ssp, sp, new_eip, new_esp, sp_mask;
2396

B
bellard 已提交
2397 2398 2399 2400 2401 2402
#ifdef TARGET_X86_64
    if (shift == 2)
        sp_mask = -1;
    else
#endif
        sp_mask = get_sp_mask(env->segs[R_SS].flags);
B
bellard 已提交
2403
    sp = ESP;
2404
    ssp = env->segs[R_SS].base;
B
bellard 已提交
2405
    new_eflags = 0; /* avoid warning */
B
bellard 已提交
2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
#ifdef TARGET_X86_64
    if (shift == 2) {
        POPQ(sp, new_eip);
        POPQ(sp, new_cs);
        new_cs &= 0xffff;
        if (is_iret) {
            POPQ(sp, new_eflags);
        }
    } else
#endif
B
bellard 已提交
2416 2417
    if (shift == 1) {
        /* 32 bits */
2418 2419 2420 2421 2422 2423 2424 2425
        POPL(ssp, sp, sp_mask, new_eip);
        POPL(ssp, sp, sp_mask, new_cs);
        new_cs &= 0xffff;
        if (is_iret) {
            POPL(ssp, sp, sp_mask, new_eflags);
            if (new_eflags & VM_MASK)
                goto return_to_vm86;
        }
B
bellard 已提交
2426 2427
    } else {
        /* 16 bits */
2428 2429
        POPW(ssp, sp, sp_mask, new_eip);
        POPW(ssp, sp, sp_mask, new_cs);
B
bellard 已提交
2430
        if (is_iret)
2431
            POPW(ssp, sp, sp_mask, new_eflags);
B
bellard 已提交
2432
    }
2433
#ifdef DEBUG_PCALL
B
bellard 已提交
2434
    if (loglevel & CPU_LOG_PCALL) {
B
bellard 已提交
2435
        fprintf(logfile, "lret new %04x:" TARGET_FMT_lx " s=%d addend=0x%x\n",
B
bellard 已提交
2436
                new_cs, new_eip, shift, addend);
B
bellard 已提交
2437
        cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
2438 2439
    }
#endif
B
bellard 已提交
2440 2441 2442 2443 2444 2445 2446 2447
    if ((new_cs & 0xfffc) == 0)
        raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    if (load_segment(&e1, &e2, new_cs) != 0)
        raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    if (!(e2 & DESC_S_MASK) ||
        !(e2 & DESC_CS_MASK))
        raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    cpl = env->hflags & HF_CPL_MASK;
2448
    rpl = new_cs & 3;
B
bellard 已提交
2449 2450 2451
    if (rpl < cpl)
        raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
2452
    if (e2 & DESC_C_MASK) {
B
bellard 已提交
2453 2454 2455 2456 2457 2458 2459 2460
        if (dpl > rpl)
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    } else {
        if (dpl != rpl)
            raise_exception_err(EXCP0D_GPF, new_cs & 0xfffc);
    }
    if (!(e2 & DESC_P_MASK))
        raise_exception_err(EXCP0B_NOSEG, new_cs & 0xfffc);
2461

2462
    sp += addend;
2463
    if (rpl == cpl && (!(env->hflags & HF_CS64_MASK) ||
B
bellard 已提交
2464
                       ((env->hflags & HF_CS64_MASK) && !is_iret))) {
B
bellard 已提交
2465
        /* return to same priledge level */
2466
        cpu_x86_load_seg_cache(env, R_CS, new_cs,
B
bellard 已提交
2467 2468 2469 2470
                       get_seg_base(e1, e2),
                       get_seg_limit(e1, e2),
                       e2);
    } else {
B
blueswir1 已提交
2471
        /* return to different privilege level */
B
bellard 已提交
2472 2473 2474 2475 2476 2477 2478
#ifdef TARGET_X86_64
        if (shift == 2) {
            POPQ(sp, new_esp);
            POPQ(sp, new_ss);
            new_ss &= 0xffff;
        } else
#endif
B
bellard 已提交
2479 2480
        if (shift == 1) {
            /* 32 bits */
2481 2482 2483
            POPL(ssp, sp, sp_mask, new_esp);
            POPL(ssp, sp, sp_mask, new_ss);
            new_ss &= 0xffff;
B
bellard 已提交
2484 2485
        } else {
            /* 16 bits */
2486 2487
            POPW(ssp, sp, sp_mask, new_esp);
            POPW(ssp, sp, sp_mask, new_ss);
B
bellard 已提交
2488
        }
B
bellard 已提交
2489 2490
#ifdef DEBUG_PCALL
        if (loglevel & CPU_LOG_PCALL) {
B
bellard 已提交
2491
            fprintf(logfile, "new ss:esp=%04x:" TARGET_FMT_lx "\n",
B
bellard 已提交
2492 2493 2494
                    new_ss, new_esp);
        }
#endif
2495 2496 2497
        if ((new_ss & 0xfffc) == 0) {
#ifdef TARGET_X86_64
            /* NULL ss is allowed in long mode if cpl != 3*/
2498
            /* XXX: test CS64 ? */
2499
            if ((env->hflags & HF_LMA_MASK) && rpl != 3) {
2500
                cpu_x86_load_seg_cache(env, R_SS, new_ss,
2501 2502 2503 2504
                                       0, 0xffffffff,
                                       DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                                       DESC_S_MASK | (rpl << DESC_DPL_SHIFT) |
                                       DESC_W_MASK | DESC_A_MASK);
2505
                ss_e2 = DESC_B_MASK; /* XXX: should not be needed ? */
2506
            } else
2507 2508 2509 2510
#endif
            {
                raise_exception_err(EXCP0D_GPF, 0);
            }
B
bellard 已提交
2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524
        } else {
            if ((new_ss & 3) != rpl)
                raise_exception_err(EXCP0D_GPF, new_ss & 0xfffc);
            if (load_segment(&ss_e1, &ss_e2, new_ss) != 0)
                raise_exception_err(EXCP0D_GPF, new_ss & 0xfffc);
            if (!(ss_e2 & DESC_S_MASK) ||
                (ss_e2 & DESC_CS_MASK) ||
                !(ss_e2 & DESC_W_MASK))
                raise_exception_err(EXCP0D_GPF, new_ss & 0xfffc);
            dpl = (ss_e2 >> DESC_DPL_SHIFT) & 3;
            if (dpl != rpl)
                raise_exception_err(EXCP0D_GPF, new_ss & 0xfffc);
            if (!(ss_e2 & DESC_P_MASK))
                raise_exception_err(EXCP0B_NOSEG, new_ss & 0xfffc);
2525
            cpu_x86_load_seg_cache(env, R_SS, new_ss,
B
bellard 已提交
2526 2527 2528 2529
                                   get_seg_base(ss_e1, ss_e2),
                                   get_seg_limit(ss_e1, ss_e2),
                                   ss_e2);
        }
B
bellard 已提交
2530

2531
        cpu_x86_load_seg_cache(env, R_CS, new_cs,
B
bellard 已提交
2532 2533 2534 2535
                       get_seg_base(e1, e2),
                       get_seg_limit(e1, e2),
                       e2);
        cpu_x86_set_cpl(env, rpl);
2536
        sp = new_esp;
B
bellard 已提交
2537
#ifdef TARGET_X86_64
B
bellard 已提交
2538
        if (env->hflags & HF_CS64_MASK)
B
bellard 已提交
2539 2540 2541 2542
            sp_mask = -1;
        else
#endif
            sp_mask = get_sp_mask(ss_e2);
2543 2544

        /* validate data segments */
B
bellard 已提交
2545 2546 2547 2548
        validate_seg(R_ES, rpl);
        validate_seg(R_DS, rpl);
        validate_seg(R_FS, rpl);
        validate_seg(R_GS, rpl);
2549 2550

        sp += addend;
B
bellard 已提交
2551
    }
2552
    SET_ESP(sp, sp_mask);
B
bellard 已提交
2553 2554
    env->eip = new_eip;
    if (is_iret) {
B
bellard 已提交
2555
        /* NOTE: 'cpl' is the _old_ CPL */
2556
        eflags_mask = TF_MASK | AC_MASK | ID_MASK | RF_MASK | NT_MASK;
B
bellard 已提交
2557
        if (cpl == 0)
B
bellard 已提交
2558 2559 2560 2561
            eflags_mask |= IOPL_MASK;
        iopl = (env->eflags >> IOPL_SHIFT) & 3;
        if (cpl <= iopl)
            eflags_mask |= IF_MASK;
B
bellard 已提交
2562 2563 2564 2565 2566 2567 2568
        if (shift == 0)
            eflags_mask &= 0xffff;
        load_eflags(new_eflags, eflags_mask);
    }
    return;

 return_to_vm86:
2569 2570 2571 2572 2573 2574
    POPL(ssp, sp, sp_mask, new_esp);
    POPL(ssp, sp, sp_mask, new_ss);
    POPL(ssp, sp, sp_mask, new_es);
    POPL(ssp, sp, sp_mask, new_ds);
    POPL(ssp, sp, sp_mask, new_fs);
    POPL(ssp, sp, sp_mask, new_gs);
2575

B
bellard 已提交
2576
    /* modify processor state */
2577
    load_eflags(new_eflags, TF_MASK | AC_MASK | ID_MASK |
2578
                IF_MASK | IOPL_MASK | VM_MASK | NT_MASK | VIF_MASK | VIP_MASK);
2579
    load_seg_vm(R_CS, new_cs & 0xffff);
B
bellard 已提交
2580
    cpu_x86_set_cpl(env, 3);
2581 2582 2583 2584 2585
    load_seg_vm(R_SS, new_ss & 0xffff);
    load_seg_vm(R_ES, new_es & 0xffff);
    load_seg_vm(R_DS, new_ds & 0xffff);
    load_seg_vm(R_FS, new_fs & 0xffff);
    load_seg_vm(R_GS, new_gs & 0xffff);
B
bellard 已提交
2586

2587
    env->eip = new_eip & 0xffff;
B
bellard 已提交
2588 2589 2590
    ESP = new_esp;
}

B
bellard 已提交
2591
void helper_iret_protected(int shift, int next_eip)
B
bellard 已提交
2592
{
2593 2594
    int tss_selector, type;
    uint32_t e1, e2;
2595

2596 2597
    /* specific case for TSS */
    if (env->eflags & NT_MASK) {
B
bellard 已提交
2598 2599 2600 2601
#ifdef TARGET_X86_64
        if (env->hflags & HF_LMA_MASK)
            raise_exception_err(EXCP0D_GPF, 0);
#endif
2602 2603 2604 2605 2606 2607 2608 2609 2610
        tss_selector = lduw_kernel(env->tr.base + 0);
        if (tss_selector & 4)
            raise_exception_err(EXCP0A_TSS, tss_selector & 0xfffc);
        if (load_segment(&e1, &e2, tss_selector) != 0)
            raise_exception_err(EXCP0A_TSS, tss_selector & 0xfffc);
        type = (e2 >> DESC_TYPE_SHIFT) & 0x17;
        /* NOTE: we check both segment and busy TSS */
        if (type != 3)
            raise_exception_err(EXCP0A_TSS, tss_selector & 0xfffc);
B
bellard 已提交
2611
        switch_tss(tss_selector, e1, e2, SWITCH_TSS_IRET, next_eip);
2612 2613 2614
    } else {
        helper_ret_protected(shift, 1, 0);
    }
B
bellard 已提交
2615 2616 2617 2618 2619 2620 2621
#ifdef USE_KQEMU
    if (kqemu_is_ok(env)) {
        CC_OP = CC_OP_EFLAGS;
        env->exception_index = -1;
        cpu_loop_exit();
    }
#endif
B
bellard 已提交
2622 2623 2624 2625 2626
}

void helper_lret_protected(int shift, int addend)
{
    helper_ret_protected(shift, 0, addend);
B
bellard 已提交
2627 2628 2629 2630 2631 2632
#ifdef USE_KQEMU
    if (kqemu_is_ok(env)) {
        env->exception_index = -1;
        cpu_loop_exit();
    }
#endif
B
bellard 已提交
2633 2634
}

2635 2636 2637 2638 2639 2640 2641
void helper_sysenter(void)
{
    if (env->sysenter_cs == 0) {
        raise_exception_err(EXCP0D_GPF, 0);
    }
    env->eflags &= ~(VM_MASK | IF_MASK | RF_MASK);
    cpu_x86_set_cpl(env, 0);
2642 2643
    cpu_x86_load_seg_cache(env, R_CS, env->sysenter_cs & 0xfffc,
                           0, 0xffffffff,
2644 2645 2646
                           DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                           DESC_S_MASK |
                           DESC_CS_MASK | DESC_R_MASK | DESC_A_MASK);
2647
    cpu_x86_load_seg_cache(env, R_SS, (env->sysenter_cs + 8) & 0xfffc,
B
bellard 已提交
2648
                           0, 0xffffffff,
2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664
                           DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                           DESC_S_MASK |
                           DESC_W_MASK | DESC_A_MASK);
    ESP = env->sysenter_esp;
    EIP = env->sysenter_eip;
}

void helper_sysexit(void)
{
    int cpl;

    cpl = env->hflags & HF_CPL_MASK;
    if (env->sysenter_cs == 0 || cpl != 0) {
        raise_exception_err(EXCP0D_GPF, 0);
    }
    cpu_x86_set_cpl(env, 3);
2665 2666
    cpu_x86_load_seg_cache(env, R_CS, ((env->sysenter_cs + 16) & 0xfffc) | 3,
                           0, 0xffffffff,
2667 2668 2669
                           DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                           DESC_S_MASK | (3 << DESC_DPL_SHIFT) |
                           DESC_CS_MASK | DESC_R_MASK | DESC_A_MASK);
2670
    cpu_x86_load_seg_cache(env, R_SS, ((env->sysenter_cs + 24) & 0xfffc) | 3,
B
bellard 已提交
2671
                           0, 0xffffffff,
2672 2673 2674 2675 2676
                           DESC_G_MASK | DESC_B_MASK | DESC_P_MASK |
                           DESC_S_MASK | (3 << DESC_DPL_SHIFT) |
                           DESC_W_MASK | DESC_A_MASK);
    ESP = ECX;
    EIP = EDX;
B
bellard 已提交
2677 2678 2679 2680 2681 2682
#ifdef USE_KQEMU
    if (kqemu_is_ok(env)) {
        env->exception_index = -1;
        cpu_loop_exit();
    }
#endif
2683 2684
}

B
bellard 已提交
2685 2686
void helper_movl_crN_T0(int reg)
{
2687
#if !defined(CONFIG_USER_ONLY)
B
bellard 已提交
2688 2689
    switch(reg) {
    case 0:
2690
        cpu_x86_update_cr0(env, T0);
B
bellard 已提交
2691 2692
        break;
    case 3:
2693 2694 2695 2696 2697
        cpu_x86_update_cr3(env, T0);
        break;
    case 4:
        cpu_x86_update_cr4(env, T0);
        break;
B
bellard 已提交
2698 2699 2700
    case 8:
        cpu_set_apic_tpr(env, T0);
        break;
2701 2702
    default:
        env->cr[reg] = T0;
B
bellard 已提交
2703 2704
        break;
    }
B
bellard 已提交
2705
#endif
B
bellard 已提交
2706 2707 2708 2709 2710 2711 2712 2713
}

/* XXX: do more */
void helper_movl_drN_T0(int reg)
{
    env->dr[reg] = T0;
}

2714
void helper_invlpg(target_ulong addr)
B
bellard 已提交
2715 2716 2717 2718 2719 2720 2721
{
    cpu_x86_flush_tlb(env, addr);
}

void helper_rdtsc(void)
{
    uint64_t val;
B
bellard 已提交
2722 2723 2724 2725

    if ((env->cr[4] & CR4_TSD_MASK) && ((env->hflags & HF_CPL_MASK) != 0)) {
        raise_exception(EXCP0D_GPF);
    }
B
bellard 已提交
2726
    val = cpu_get_tsc(env);
B
bellard 已提交
2727 2728 2729 2730
    EAX = (uint32_t)(val);
    EDX = (uint32_t)(val >> 32);
}

2731
#if defined(CONFIG_USER_ONLY)
B
bellard 已提交
2732 2733
void helper_wrmsr(void)
{
B
bellard 已提交
2734 2735
}

B
bellard 已提交
2736 2737 2738 2739
void helper_rdmsr(void)
{
}
#else
B
bellard 已提交
2740 2741
void helper_wrmsr(void)
{
B
bellard 已提交
2742 2743 2744 2745 2746
    uint64_t val;

    val = ((uint32_t)EAX) | ((uint64_t)((uint32_t)EDX) << 32);

    switch((uint32_t)ECX) {
B
bellard 已提交
2747
    case MSR_IA32_SYSENTER_CS:
B
bellard 已提交
2748
        env->sysenter_cs = val & 0xffff;
B
bellard 已提交
2749 2750
        break;
    case MSR_IA32_SYSENTER_ESP:
B
bellard 已提交
2751
        env->sysenter_esp = val;
B
bellard 已提交
2752 2753
        break;
    case MSR_IA32_SYSENTER_EIP:
B
bellard 已提交
2754 2755 2756 2757 2758 2759
        env->sysenter_eip = val;
        break;
    case MSR_IA32_APICBASE:
        cpu_set_apic_base(env, val);
        break;
    case MSR_EFER:
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770
        {
            uint64_t update_mask;
            update_mask = 0;
            if (env->cpuid_ext2_features & CPUID_EXT2_SYSCALL)
                update_mask |= MSR_EFER_SCE;
            if (env->cpuid_ext2_features & CPUID_EXT2_LM)
                update_mask |= MSR_EFER_LME;
            if (env->cpuid_ext2_features & CPUID_EXT2_FFXSR)
                update_mask |= MSR_EFER_FFXSR;
            if (env->cpuid_ext2_features & CPUID_EXT2_NX)
                update_mask |= MSR_EFER_NXE;
2771
            env->efer = (env->efer & ~update_mask) |
2772 2773
            (val & update_mask);
        }
B
bellard 已提交
2774
        break;
B
bellard 已提交
2775 2776 2777
    case MSR_STAR:
        env->star = val;
        break;
2778 2779 2780
    case MSR_PAT:
        env->pat = val;
        break;
T
ths 已提交
2781 2782 2783
    case MSR_VM_HSAVE_PA:
        env->vm_hsave = val;
        break;
2784
#ifdef TARGET_X86_64
B
bellard 已提交
2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803
    case MSR_LSTAR:
        env->lstar = val;
        break;
    case MSR_CSTAR:
        env->cstar = val;
        break;
    case MSR_FMASK:
        env->fmask = val;
        break;
    case MSR_FSBASE:
        env->segs[R_FS].base = val;
        break;
    case MSR_GSBASE:
        env->segs[R_GS].base = val;
        break;
    case MSR_KERNELGSBASE:
        env->kernelgsbase = val;
        break;
#endif
B
bellard 已提交
2804 2805
    default:
        /* XXX: exception ? */
2806
        break;
B
bellard 已提交
2807 2808 2809 2810 2811
    }
}

void helper_rdmsr(void)
{
B
bellard 已提交
2812 2813
    uint64_t val;
    switch((uint32_t)ECX) {
B
bellard 已提交
2814
    case MSR_IA32_SYSENTER_CS:
B
bellard 已提交
2815
        val = env->sysenter_cs;
B
bellard 已提交
2816 2817
        break;
    case MSR_IA32_SYSENTER_ESP:
B
bellard 已提交
2818
        val = env->sysenter_esp;
B
bellard 已提交
2819 2820
        break;
    case MSR_IA32_SYSENTER_EIP:
B
bellard 已提交
2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831
        val = env->sysenter_eip;
        break;
    case MSR_IA32_APICBASE:
        val = cpu_get_apic_base(env);
        break;
    case MSR_EFER:
        val = env->efer;
        break;
    case MSR_STAR:
        val = env->star;
        break;
2832 2833 2834
    case MSR_PAT:
        val = env->pat;
        break;
T
ths 已提交
2835 2836 2837
    case MSR_VM_HSAVE_PA:
        val = env->vm_hsave;
        break;
2838
#ifdef TARGET_X86_64
B
bellard 已提交
2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852
    case MSR_LSTAR:
        val = env->lstar;
        break;
    case MSR_CSTAR:
        val = env->cstar;
        break;
    case MSR_FMASK:
        val = env->fmask;
        break;
    case MSR_FSBASE:
        val = env->segs[R_FS].base;
        break;
    case MSR_GSBASE:
        val = env->segs[R_GS].base;
B
bellard 已提交
2853
        break;
B
bellard 已提交
2854 2855 2856 2857
    case MSR_KERNELGSBASE:
        val = env->kernelgsbase;
        break;
#endif
B
bellard 已提交
2858 2859
    default:
        /* XXX: exception ? */
B
bellard 已提交
2860
        val = 0;
2861
        break;
B
bellard 已提交
2862
    }
B
bellard 已提交
2863 2864
    EAX = (uint32_t)(val);
    EDX = (uint32_t)(val >> 32);
B
bellard 已提交
2865
}
B
bellard 已提交
2866
#endif
B
bellard 已提交
2867 2868 2869 2870

void helper_lsl(void)
{
    unsigned int selector, limit;
2871
    uint32_t e1, e2, eflags;
2872
    int rpl, dpl, cpl, type;
B
bellard 已提交
2873

2874
    eflags = cc_table[CC_OP].compute_all();
B
bellard 已提交
2875 2876
    selector = T0 & 0xffff;
    if (load_segment(&e1, &e2, selector) != 0)
2877
        goto fail;
2878 2879 2880 2881 2882 2883 2884 2885
    rpl = selector & 3;
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    cpl = env->hflags & HF_CPL_MASK;
    if (e2 & DESC_S_MASK) {
        if ((e2 & DESC_CS_MASK) && (e2 & DESC_C_MASK)) {
            /* conforming */
        } else {
            if (dpl < cpl || dpl < rpl)
2886
                goto fail;
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897
        }
    } else {
        type = (e2 >> DESC_TYPE_SHIFT) & 0xf;
        switch(type) {
        case 1:
        case 2:
        case 3:
        case 9:
        case 11:
            break;
        default:
2898
            goto fail;
2899
        }
2900 2901 2902
        if (dpl < cpl || dpl < rpl) {
        fail:
            CC_SRC = eflags & ~CC_Z;
2903
            return;
2904
        }
2905 2906
    }
    limit = get_seg_limit(e1, e2);
B
bellard 已提交
2907
    T1 = limit;
2908
    CC_SRC = eflags | CC_Z;
B
bellard 已提交
2909 2910 2911 2912 2913
}

void helper_lar(void)
{
    unsigned int selector;
2914
    uint32_t e1, e2, eflags;
2915
    int rpl, dpl, cpl, type;
B
bellard 已提交
2916

2917
    eflags = cc_table[CC_OP].compute_all();
B
bellard 已提交
2918
    selector = T0 & 0xffff;
2919
    if ((selector & 0xfffc) == 0)
2920
        goto fail;
B
bellard 已提交
2921
    if (load_segment(&e1, &e2, selector) != 0)
2922
        goto fail;
2923 2924 2925 2926 2927 2928 2929 2930
    rpl = selector & 3;
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    cpl = env->hflags & HF_CPL_MASK;
    if (e2 & DESC_S_MASK) {
        if ((e2 & DESC_CS_MASK) && (e2 & DESC_C_MASK)) {
            /* conforming */
        } else {
            if (dpl < cpl || dpl < rpl)
2931
                goto fail;
2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945
        }
    } else {
        type = (e2 >> DESC_TYPE_SHIFT) & 0xf;
        switch(type) {
        case 1:
        case 2:
        case 3:
        case 4:
        case 5:
        case 9:
        case 11:
        case 12:
            break;
        default:
2946
            goto fail;
2947
        }
2948 2949 2950
        if (dpl < cpl || dpl < rpl) {
        fail:
            CC_SRC = eflags & ~CC_Z;
2951
            return;
2952
        }
2953
    }
B
bellard 已提交
2954
    T1 = e2 & 0x00f0ff00;
2955
    CC_SRC = eflags | CC_Z;
B
bellard 已提交
2956 2957
}

2958 2959 2960
void helper_verr(void)
{
    unsigned int selector;
2961
    uint32_t e1, e2, eflags;
2962 2963
    int rpl, dpl, cpl;

2964
    eflags = cc_table[CC_OP].compute_all();
2965 2966
    selector = T0 & 0xffff;
    if ((selector & 0xfffc) == 0)
2967
        goto fail;
2968
    if (load_segment(&e1, &e2, selector) != 0)
2969
        goto fail;
2970
    if (!(e2 & DESC_S_MASK))
2971
        goto fail;
2972 2973 2974 2975 2976
    rpl = selector & 3;
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    cpl = env->hflags & HF_CPL_MASK;
    if (e2 & DESC_CS_MASK) {
        if (!(e2 & DESC_R_MASK))
2977
            goto fail;
2978 2979
        if (!(e2 & DESC_C_MASK)) {
            if (dpl < cpl || dpl < rpl)
2980
                goto fail;
2981 2982
        }
    } else {
2983 2984 2985
        if (dpl < cpl || dpl < rpl) {
        fail:
            CC_SRC = eflags & ~CC_Z;
2986
            return;
2987
        }
2988
    }
2989
    CC_SRC = eflags | CC_Z;
2990 2991 2992 2993 2994
}

void helper_verw(void)
{
    unsigned int selector;
2995
    uint32_t e1, e2, eflags;
2996 2997
    int rpl, dpl, cpl;

2998
    eflags = cc_table[CC_OP].compute_all();
2999 3000
    selector = T0 & 0xffff;
    if ((selector & 0xfffc) == 0)
3001
        goto fail;
3002
    if (load_segment(&e1, &e2, selector) != 0)
3003
        goto fail;
3004
    if (!(e2 & DESC_S_MASK))
3005
        goto fail;
3006 3007 3008 3009
    rpl = selector & 3;
    dpl = (e2 >> DESC_DPL_SHIFT) & 3;
    cpl = env->hflags & HF_CPL_MASK;
    if (e2 & DESC_CS_MASK) {
3010
        goto fail;
3011 3012
    } else {
        if (dpl < cpl || dpl < rpl)
3013 3014 3015 3016
            goto fail;
        if (!(e2 & DESC_W_MASK)) {
        fail:
            CC_SRC = eflags & ~CC_Z;
3017
            return;
3018
        }
3019
    }
3020
    CC_SRC = eflags | CC_Z;
3021 3022
}

B
bellard 已提交
3023 3024 3025 3026 3027 3028
/* FPU helpers */

void helper_fldt_ST0_A0(void)
{
    int new_fpstt;
    new_fpstt = (env->fpstt - 1) & 7;
B
bellard 已提交
3029
    env->fpregs[new_fpstt].d = helper_fldt(A0);
B
bellard 已提交
3030 3031 3032 3033 3034 3035
    env->fpstt = new_fpstt;
    env->fptags[new_fpstt] = 0; /* validate stack entry */
}

void helper_fstt_ST0_A0(void)
{
B
bellard 已提交
3036
    helper_fstt(ST0, A0);
B
bellard 已提交
3037 3038
}

B
bellard 已提交
3039 3040 3041 3042 3043 3044 3045 3046 3047
void fpu_set_exception(int mask)
{
    env->fpus |= mask;
    if (env->fpus & (~env->fpuc & FPUC_EM))
        env->fpus |= FPUS_SE | FPUS_B;
}

CPU86_LDouble helper_fdiv(CPU86_LDouble a, CPU86_LDouble b)
{
3048
    if (b == 0.0)
B
bellard 已提交
3049 3050 3051 3052 3053 3054 3055 3056
        fpu_set_exception(FPUS_ZE);
    return a / b;
}

void fpu_raise_exception(void)
{
    if (env->cr[0] & CR0_NE_MASK) {
        raise_exception(EXCP10_COPR);
3057 3058
    }
#if !defined(CONFIG_USER_ONLY)
B
bellard 已提交
3059 3060 3061 3062 3063 3064
    else {
        cpu_set_ferr(env);
    }
#endif
}

B
bellard 已提交
3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075
/* BCD ops */

void helper_fbld_ST0_A0(void)
{
    CPU86_LDouble tmp;
    uint64_t val;
    unsigned int v;
    int i;

    val = 0;
    for(i = 8; i >= 0; i--) {
B
bellard 已提交
3076
        v = ldub(A0 + i);
B
bellard 已提交
3077 3078 3079
        val = (val * 100) + ((v >> 4) * 10) + (v & 0xf);
    }
    tmp = val;
B
bellard 已提交
3080
    if (ldub(A0 + 9) & 0x80)
B
bellard 已提交
3081 3082 3083 3084 3085 3086 3087 3088
        tmp = -tmp;
    fpush();
    ST0 = tmp;
}

void helper_fbst_ST0_A0(void)
{
    int v;
B
bellard 已提交
3089
    target_ulong mem_ref, mem_end;
B
bellard 已提交
3090 3091
    int64_t val;

B
bellard 已提交
3092
    val = floatx_to_int64(ST0, &env->fp_status);
B
bellard 已提交
3093
    mem_ref = A0;
B
bellard 已提交
3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121
    mem_end = mem_ref + 9;
    if (val < 0) {
        stb(mem_end, 0x80);
        val = -val;
    } else {
        stb(mem_end, 0x00);
    }
    while (mem_ref < mem_end) {
        if (val == 0)
            break;
        v = val % 100;
        val = val / 100;
        v = ((v / 10) << 4) | (v % 10);
        stb(mem_ref++, v);
    }
    while (mem_ref < mem_end) {
        stb(mem_ref++, 0);
    }
}

void helper_f2xm1(void)
{
    ST0 = pow(2.0,ST0) - 1.0;
}

void helper_fyl2x(void)
{
    CPU86_LDouble fptemp;
3122

B
bellard 已提交
3123 3124 3125 3126 3127
    fptemp = ST0;
    if (fptemp>0.0){
        fptemp = log(fptemp)/log(2.0);	 /* log2(ST) */
        ST1 *= fptemp;
        fpop();
3128
    } else {
B
bellard 已提交
3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178
        env->fpus &= (~0x4700);
        env->fpus |= 0x400;
    }
}

void helper_fptan(void)
{
    CPU86_LDouble fptemp;

    fptemp = ST0;
    if((fptemp > MAXTAN)||(fptemp < -MAXTAN)) {
        env->fpus |= 0x400;
    } else {
        ST0 = tan(fptemp);
        fpush();
        ST0 = 1.0;
        env->fpus &= (~0x400);  /* C2 <-- 0 */
        /* the above code is for  |arg| < 2**52 only */
    }
}

void helper_fpatan(void)
{
    CPU86_LDouble fptemp, fpsrcop;

    fpsrcop = ST1;
    fptemp = ST0;
    ST1 = atan2(fpsrcop,fptemp);
    fpop();
}

void helper_fxtract(void)
{
    CPU86_LDoubleU temp;
    unsigned int expdif;

    temp.d = ST0;
    expdif = EXPD(temp) - EXPBIAS;
    /*DP exponent bias*/
    ST0 = expdif;
    fpush();
    BIASEXPONENT(temp);
    ST0 = temp.d;
}

void helper_fprem1(void)
{
    CPU86_LDouble dblq, fpsrcop, fptemp;
    CPU86_LDoubleU fpsrcop1, fptemp1;
    int expdif;
3179 3180 3181 3182 3183 3184 3185
    signed long long int q;

    if (isinf(ST0) || isnan(ST0) || isnan(ST1) || (ST1 == 0.0)) {
        ST0 = 0.0 / 0.0; /* NaN */
        env->fpus &= (~0x4700); /* (C3,C2,C1,C0) <-- 0000 */
        return;
    }
B
bellard 已提交
3186 3187 3188 3189 3190 3191

    fpsrcop = ST0;
    fptemp = ST1;
    fpsrcop1.d = fpsrcop;
    fptemp1.d = fptemp;
    expdif = EXPD(fpsrcop1) - EXPD(fptemp1);
3192 3193 3194 3195 3196 3197 3198 3199

    if (expdif < 0) {
        /* optimisation? taken from the AMD docs */
        env->fpus &= (~0x4700); /* (C3,C2,C1,C0) <-- 0000 */
        /* ST0 is unchanged */
        return;
    }

B
bellard 已提交
3200 3201
    if (expdif < 53) {
        dblq = fpsrcop / fptemp;
3202 3203 3204 3205 3206 3207 3208 3209 3210 3211
        /* round dblq towards nearest integer */
        dblq = rint(dblq);
        ST0 = fpsrcop - fptemp * dblq;

        /* convert dblq to q by truncating towards zero */
        if (dblq < 0.0)
           q = (signed long long int)(-dblq);
        else
           q = (signed long long int)dblq;

B
bellard 已提交
3212
        env->fpus &= (~0x4700); /* (C3,C2,C1,C0) <-- 0000 */
3213 3214 3215 3216
                                /* (C0,C3,C1) <-- (q2,q1,q0) */
        env->fpus |= (q & 0x4) << (8 - 2);  /* (C0) <-- q2 */
        env->fpus |= (q & 0x2) << (14 - 1); /* (C3) <-- q1 */
        env->fpus |= (q & 0x1) << (9 - 0);  /* (C1) <-- q0 */
B
bellard 已提交
3217 3218
    } else {
        env->fpus |= 0x400;  /* C2 <-- 1 */
3219
        fptemp = pow(2.0, expdif - 50);
B
bellard 已提交
3220
        fpsrcop = (ST0 / ST1) / fptemp;
3221 3222 3223
        /* fpsrcop = integer obtained by chopping */
        fpsrcop = (fpsrcop < 0.0) ?
                  -(floor(fabs(fpsrcop))) : floor(fpsrcop);
B
bellard 已提交
3224 3225 3226 3227 3228 3229 3230 3231 3232
        ST0 -= (ST1 * fpsrcop * fptemp);
    }
}

void helper_fprem(void)
{
    CPU86_LDouble dblq, fpsrcop, fptemp;
    CPU86_LDoubleU fpsrcop1, fptemp1;
    int expdif;
3233 3234 3235 3236 3237 3238 3239 3240 3241 3242
    signed long long int q;

    if (isinf(ST0) || isnan(ST0) || isnan(ST1) || (ST1 == 0.0)) {
       ST0 = 0.0 / 0.0; /* NaN */
       env->fpus &= (~0x4700); /* (C3,C2,C1,C0) <-- 0000 */
       return;
    }

    fpsrcop = (CPU86_LDouble)ST0;
    fptemp = (CPU86_LDouble)ST1;
B
bellard 已提交
3243 3244 3245
    fpsrcop1.d = fpsrcop;
    fptemp1.d = fptemp;
    expdif = EXPD(fpsrcop1) - EXPD(fptemp1);
3246 3247 3248 3249 3250 3251 3252 3253

    if (expdif < 0) {
        /* optimisation? taken from the AMD docs */
        env->fpus &= (~0x4700); /* (C3,C2,C1,C0) <-- 0000 */
        /* ST0 is unchanged */
        return;
    }

B
bellard 已提交
3254
    if ( expdif < 53 ) {
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265
        dblq = fpsrcop/*ST0*/ / fptemp/*ST1*/;
        /* round dblq towards zero */
        dblq = (dblq < 0.0) ? ceil(dblq) : floor(dblq);
        ST0 = fpsrcop/*ST0*/ - fptemp * dblq;

        /* convert dblq to q by truncating towards zero */
        if (dblq < 0.0)
           q = (signed long long int)(-dblq);
        else
           q = (signed long long int)dblq;

B
bellard 已提交
3266
        env->fpus &= (~0x4700); /* (C3,C2,C1,C0) <-- 0000 */
3267 3268 3269 3270
                                /* (C0,C3,C1) <-- (q2,q1,q0) */
        env->fpus |= (q & 0x4) << (8 - 2);  /* (C0) <-- q2 */
        env->fpus |= (q & 0x2) << (14 - 1); /* (C3) <-- q1 */
        env->fpus |= (q & 0x1) << (9 - 0);  /* (C1) <-- q0 */
B
bellard 已提交
3271
    } else {
3272
        int N = 32 + (expdif % 32); /* as per AMD docs */
B
bellard 已提交
3273
        env->fpus |= 0x400;  /* C2 <-- 1 */
3274
        fptemp = pow(2.0, (double)(expdif - N));
B
bellard 已提交
3275 3276
        fpsrcop = (ST0 / ST1) / fptemp;
        /* fpsrcop = integer obtained by chopping */
3277 3278
        fpsrcop = (fpsrcop < 0.0) ?
                  -(floor(fabs(fpsrcop))) : floor(fpsrcop);
B
bellard 已提交
3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291
        ST0 -= (ST1 * fpsrcop * fptemp);
    }
}

void helper_fyl2xp1(void)
{
    CPU86_LDouble fptemp;

    fptemp = ST0;
    if ((fptemp+1.0)>0.0) {
        fptemp = log(fptemp+1.0) / log(2.0); /* log2(ST+1.0) */
        ST1 *= fptemp;
        fpop();
3292
    } else {
B
bellard 已提交
3293 3294 3295 3296 3297 3298 3299 3300 3301 3302
        env->fpus &= (~0x4700);
        env->fpus |= 0x400;
    }
}

void helper_fsqrt(void)
{
    CPU86_LDouble fptemp;

    fptemp = ST0;
3303
    if (fptemp<0.0) {
B
bellard 已提交
3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327
        env->fpus &= (~0x4700);  /* (C3,C2,C1,C0) <-- 0000 */
        env->fpus |= 0x400;
    }
    ST0 = sqrt(fptemp);
}

void helper_fsincos(void)
{
    CPU86_LDouble fptemp;

    fptemp = ST0;
    if ((fptemp > MAXTAN)||(fptemp < -MAXTAN)) {
        env->fpus |= 0x400;
    } else {
        ST0 = sin(fptemp);
        fpush();
        ST0 = cos(fptemp);
        env->fpus &= (~0x400);  /* C2 <-- 0 */
        /* the above code is for  |arg| < 2**63 only */
    }
}

void helper_frndint(void)
{
B
bellard 已提交
3328
    ST0 = floatx_round_to_int(ST0, &env->fp_status);
B
bellard 已提交
3329 3330 3331 3332
}

void helper_fscale(void)
{
3333
    ST0 = ldexp (ST0, (int)(ST1));
B
bellard 已提交
3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374
}

void helper_fsin(void)
{
    CPU86_LDouble fptemp;

    fptemp = ST0;
    if ((fptemp > MAXTAN)||(fptemp < -MAXTAN)) {
        env->fpus |= 0x400;
    } else {
        ST0 = sin(fptemp);
        env->fpus &= (~0x400);  /* C2 <-- 0 */
        /* the above code is for  |arg| < 2**53 only */
    }
}

void helper_fcos(void)
{
    CPU86_LDouble fptemp;

    fptemp = ST0;
    if((fptemp > MAXTAN)||(fptemp < -MAXTAN)) {
        env->fpus |= 0x400;
    } else {
        ST0 = cos(fptemp);
        env->fpus &= (~0x400);  /* C2 <-- 0 */
        /* the above code is for  |arg5 < 2**63 only */
    }
}

void helper_fxam_ST0(void)
{
    CPU86_LDoubleU temp;
    int expdif;

    temp.d = ST0;

    env->fpus &= (~0x4700);  /* (C3,C2,C1,C0) <-- 0000 */
    if (SIGND(temp))
        env->fpus |= 0x200; /* C1 <-- 1 */

B
bellard 已提交
3375
    /* XXX: test fptags too */
B
bellard 已提交
3376 3377
    expdif = EXPD(temp);
    if (expdif == MAXEXPD) {
B
bellard 已提交
3378 3379 3380
#ifdef USE_X86LDOUBLE
        if (MANTD(temp) == 0x8000000000000000ULL)
#else
B
bellard 已提交
3381
        if (MANTD(temp) == 0)
B
bellard 已提交
3382
#endif
B
bellard 已提交
3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395
            env->fpus |=  0x500 /*Infinity*/;
        else
            env->fpus |=  0x100 /*NaN*/;
    } else if (expdif == 0) {
        if (MANTD(temp) == 0)
            env->fpus |=  0x4000 /*Zero*/;
        else
            env->fpus |= 0x4400 /*Denormal*/;
    } else {
        env->fpus |= 0x400;
    }
}

B
bellard 已提交
3396
void helper_fstenv(target_ulong ptr, int data32)
B
bellard 已提交
3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408
{
    int fpus, fptag, exp, i;
    uint64_t mant;
    CPU86_LDoubleU tmp;

    fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
    fptag = 0;
    for (i=7; i>=0; i--) {
	fptag <<= 2;
	if (env->fptags[i]) {
            fptag |= 3;
	} else {
B
bellard 已提交
3409
            tmp.d = env->fpregs[i].d;
B
bellard 已提交
3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429
            exp = EXPD(tmp);
            mant = MANTD(tmp);
            if (exp == 0 && mant == 0) {
                /* zero */
	        fptag |= 1;
	    } else if (exp == 0 || exp == MAXEXPD
#ifdef USE_X86LDOUBLE
                       || (mant & (1LL << 63)) == 0
#endif
                       ) {
                /* NaNs, infinity, denormal */
                fptag |= 2;
            }
        }
    }
    if (data32) {
        /* 32 bit */
        stl(ptr, env->fpuc);
        stl(ptr + 4, fpus);
        stl(ptr + 8, fptag);
B
fpu fix  
bellard 已提交
3430 3431 3432 3433
        stl(ptr + 12, 0); /* fpip */
        stl(ptr + 16, 0); /* fpcs */
        stl(ptr + 20, 0); /* fpoo */
        stl(ptr + 24, 0); /* fpos */
B
bellard 已提交
3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445
    } else {
        /* 16 bit */
        stw(ptr, env->fpuc);
        stw(ptr + 2, fpus);
        stw(ptr + 4, fptag);
        stw(ptr + 6, 0);
        stw(ptr + 8, 0);
        stw(ptr + 10, 0);
        stw(ptr + 12, 0);
    }
}

B
bellard 已提交
3446
void helper_fldenv(target_ulong ptr, int data32)
B
bellard 已提交
3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461
{
    int i, fpus, fptag;

    if (data32) {
	env->fpuc = lduw(ptr);
        fpus = lduw(ptr + 4);
        fptag = lduw(ptr + 8);
    }
    else {
	env->fpuc = lduw(ptr);
        fpus = lduw(ptr + 2);
        fptag = lduw(ptr + 4);
    }
    env->fpstt = (fpus >> 11) & 7;
    env->fpus = fpus & ~0x3800;
B
fpu fix  
bellard 已提交
3462
    for(i = 0;i < 8; i++) {
B
bellard 已提交
3463 3464 3465 3466 3467
        env->fptags[i] = ((fptag & 3) == 3);
        fptag >>= 2;
    }
}

B
bellard 已提交
3468
void helper_fsave(target_ulong ptr, int data32)
B
bellard 已提交
3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495
{
    CPU86_LDouble tmp;
    int i;

    helper_fstenv(ptr, data32);

    ptr += (14 << data32);
    for(i = 0;i < 8; i++) {
        tmp = ST(i);
        helper_fstt(tmp, ptr);
        ptr += 10;
    }

    /* fninit */
    env->fpus = 0;
    env->fpstt = 0;
    env->fpuc = 0x37f;
    env->fptags[0] = 1;
    env->fptags[1] = 1;
    env->fptags[2] = 1;
    env->fptags[3] = 1;
    env->fptags[4] = 1;
    env->fptags[5] = 1;
    env->fptags[6] = 1;
    env->fptags[7] = 1;
}

B
bellard 已提交
3496
void helper_frstor(target_ulong ptr, int data32)
B
bellard 已提交
3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510
{
    CPU86_LDouble tmp;
    int i;

    helper_fldenv(ptr, data32);
    ptr += (14 << data32);

    for(i = 0;i < 8; i++) {
        tmp = helper_fldt(ptr);
        ST(i) = tmp;
        ptr += 10;
    }
}

B
bellard 已提交
3511 3512 3513 3514 3515 3516 3517 3518 3519
void helper_fxsave(target_ulong ptr, int data64)
{
    int fpus, fptag, i, nb_xmm_regs;
    CPU86_LDouble tmp;
    target_ulong addr;

    fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
    fptag = 0;
    for(i = 0; i < 8; i++) {
B
bellard 已提交
3520
        fptag |= (env->fptags[i] << i);
B
bellard 已提交
3521 3522 3523
    }
    stw(ptr, env->fpuc);
    stw(ptr + 2, fpus);
B
bellard 已提交
3524
    stw(ptr + 4, fptag ^ 0xff);
B
bellard 已提交
3525 3526 3527 3528 3529 3530 3531

    addr = ptr + 0x20;
    for(i = 0;i < 8; i++) {
        tmp = ST(i);
        helper_fstt(tmp, addr);
        addr += 16;
    }
3532

B
bellard 已提交
3533
    if (env->cr[4] & CR4_OSFXSR_MASK) {
3534
        /* XXX: finish it */
B
bellard 已提交
3535
        stl(ptr + 0x18, env->mxcsr); /* mxcsr */
B
bellard 已提交
3536
        stl(ptr + 0x1c, 0x0000ffff); /* mxcsr_mask */
B
bellard 已提交
3537 3538 3539
        nb_xmm_regs = 8 << data64;
        addr = ptr + 0xa0;
        for(i = 0; i < nb_xmm_regs; i++) {
3540 3541
            stq(addr, env->xmm_regs[i].XMM_Q(0));
            stq(addr + 8, env->xmm_regs[i].XMM_Q(1));
B
bellard 已提交
3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554
            addr += 16;
        }
    }
}

void helper_fxrstor(target_ulong ptr, int data64)
{
    int i, fpus, fptag, nb_xmm_regs;
    CPU86_LDouble tmp;
    target_ulong addr;

    env->fpuc = lduw(ptr);
    fpus = lduw(ptr + 2);
B
bellard 已提交
3555
    fptag = lduw(ptr + 4);
B
bellard 已提交
3556 3557 3558 3559
    env->fpstt = (fpus >> 11) & 7;
    env->fpus = fpus & ~0x3800;
    fptag ^= 0xff;
    for(i = 0;i < 8; i++) {
B
bellard 已提交
3560
        env->fptags[i] = ((fptag >> i) & 1);
B
bellard 已提交
3561 3562 3563 3564 3565 3566 3567 3568 3569 3570
    }

    addr = ptr + 0x20;
    for(i = 0;i < 8; i++) {
        tmp = helper_fldt(addr);
        ST(i) = tmp;
        addr += 16;
    }

    if (env->cr[4] & CR4_OSFXSR_MASK) {
B
bellard 已提交
3571
        /* XXX: finish it */
B
bellard 已提交
3572
        env->mxcsr = ldl(ptr + 0x18);
B
bellard 已提交
3573 3574 3575 3576
        //ldl(ptr + 0x1c);
        nb_xmm_regs = 8 << data64;
        addr = ptr + 0xa0;
        for(i = 0; i < nb_xmm_regs; i++) {
3577 3578
            env->xmm_regs[i].XMM_Q(0) = ldq(addr);
            env->xmm_regs[i].XMM_Q(1) = ldq(addr + 8);
B
bellard 已提交
3579 3580 3581 3582
            addr += 16;
        }
    }
}
3583 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 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639

#ifndef USE_X86LDOUBLE

void cpu_get_fp80(uint64_t *pmant, uint16_t *pexp, CPU86_LDouble f)
{
    CPU86_LDoubleU temp;
    int e;

    temp.d = f;
    /* mantissa */
    *pmant = (MANTD(temp) << 11) | (1LL << 63);
    /* exponent + sign */
    e = EXPD(temp) - EXPBIAS + 16383;
    e |= SIGND(temp) >> 16;
    *pexp = e;
}

CPU86_LDouble cpu_set_fp80(uint64_t mant, uint16_t upper)
{
    CPU86_LDoubleU temp;
    int e;
    uint64_t ll;

    /* XXX: handle overflow ? */
    e = (upper & 0x7fff) - 16383 + EXPBIAS; /* exponent */
    e |= (upper >> 4) & 0x800; /* sign */
    ll = (mant >> 11) & ((1LL << 52) - 1);
#ifdef __arm__
    temp.l.upper = (e << 20) | (ll >> 32);
    temp.l.lower = ll;
#else
    temp.ll = ll | ((uint64_t)e << 52);
#endif
    return temp.d;
}

#else

void cpu_get_fp80(uint64_t *pmant, uint16_t *pexp, CPU86_LDouble f)
{
    CPU86_LDoubleU temp;

    temp.d = f;
    *pmant = temp.l.lower;
    *pexp = temp.l.upper;
}

CPU86_LDouble cpu_set_fp80(uint64_t mant, uint16_t upper)
{
    CPU86_LDoubleU temp;

    temp.l.upper = upper;
    temp.l.lower = mant;
    return temp.d;
}
#endif

B
bellard 已提交
3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659
#ifdef TARGET_X86_64

//#define DEBUG_MULDIV

static void add128(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b)
{
    *plow += a;
    /* carry test */
    if (*plow < a)
        (*phigh)++;
    *phigh += b;
}

static void neg128(uint64_t *plow, uint64_t *phigh)
{
    *plow = ~ *plow;
    *phigh = ~ *phigh;
    add128(plow, phigh, 1, 0);
}

B
bellard 已提交
3660 3661
/* return TRUE if overflow */
static int div64(uint64_t *plow, uint64_t *phigh, uint64_t b)
B
bellard 已提交
3662 3663
{
    uint64_t q, r, a1, a0;
B
bellard 已提交
3664
    int i, qb, ab;
B
bellard 已提交
3665 3666 3667 3668 3669 3670 3671 3672 3673

    a0 = *plow;
    a1 = *phigh;
    if (a1 == 0) {
        q = a0 / b;
        r = a0 % b;
        *plow = q;
        *phigh = r;
    } else {
B
bellard 已提交
3674 3675
        if (a1 >= b)
            return 1;
B
bellard 已提交
3676 3677
        /* XXX: use a better algorithm */
        for(i = 0; i < 64; i++) {
B
bellard 已提交
3678
            ab = a1 >> 63;
3679
            a1 = (a1 << 1) | (a0 >> 63);
B
bellard 已提交
3680
            if (ab || a1 >= b) {
B
bellard 已提交
3681 3682 3683 3684 3685 3686 3687
                a1 -= b;
                qb = 1;
            } else {
                qb = 0;
            }
            a0 = (a0 << 1) | qb;
        }
3688
#if defined(DEBUG_MULDIV)
B
bellard 已提交
3689
        printf("div: 0x%016" PRIx64 "%016" PRIx64 " / 0x%016" PRIx64 ": q=0x%016" PRIx64 " r=0x%016" PRIx64 "\n",
B
bellard 已提交
3690 3691 3692 3693 3694
               *phigh, *plow, b, a0, a1);
#endif
        *plow = a0;
        *phigh = a1;
    }
B
bellard 已提交
3695
    return 0;
B
bellard 已提交
3696 3697
}

B
bellard 已提交
3698 3699
/* return TRUE if overflow */
static int idiv64(uint64_t *plow, uint64_t *phigh, int64_t b)
B
bellard 已提交
3700 3701 3702 3703 3704 3705 3706 3707
{
    int sa, sb;
    sa = ((int64_t)*phigh < 0);
    if (sa)
        neg128(plow, phigh);
    sb = (b < 0);
    if (sb)
        b = -b;
B
bellard 已提交
3708 3709 3710 3711 3712
    if (div64(plow, phigh, b) != 0)
        return 1;
    if (sa ^ sb) {
        if (*plow > (1ULL << 63))
            return 1;
B
bellard 已提交
3713
        *plow = - *plow;
B
bellard 已提交
3714 3715 3716 3717
    } else {
        if (*plow >= (1ULL << 63))
            return 1;
    }
B
bellard 已提交
3718
    if (sa)
B
bellard 已提交
3719
        *phigh = - *phigh;
B
bellard 已提交
3720
    return 0;
B
bellard 已提交
3721 3722 3723 3724 3725 3726
}

void helper_mulq_EAX_T0(void)
{
    uint64_t r0, r1;

3727
    mulu64(&r0, &r1, EAX, T0);
B
bellard 已提交
3728 3729 3730 3731 3732 3733 3734 3735 3736 3737
    EAX = r0;
    EDX = r1;
    CC_DST = r0;
    CC_SRC = r1;
}

void helper_imulq_EAX_T0(void)
{
    uint64_t r0, r1;

3738
    muls64(&r0, &r1, EAX, T0);
B
bellard 已提交
3739 3740 3741
    EAX = r0;
    EDX = r1;
    CC_DST = r0;
3742
    CC_SRC = ((int64_t)r1 != ((int64_t)r0 >> 63));
B
bellard 已提交
3743 3744 3745 3746 3747 3748
}

void helper_imulq_T0_T1(void)
{
    uint64_t r0, r1;

3749
    muls64(&r0, &r1, T0, T1);
B
bellard 已提交
3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762
    T0 = r0;
    CC_DST = r0;
    CC_SRC = ((int64_t)r1 != ((int64_t)r0 >> 63));
}

void helper_divq_EAX_T0(void)
{
    uint64_t r0, r1;
    if (T0 == 0) {
        raise_exception(EXCP00_DIVZ);
    }
    r0 = EAX;
    r1 = EDX;
B
bellard 已提交
3763 3764
    if (div64(&r0, &r1, T0))
        raise_exception(EXCP00_DIVZ);
B
bellard 已提交
3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776
    EAX = r0;
    EDX = r1;
}

void helper_idivq_EAX_T0(void)
{
    uint64_t r0, r1;
    if (T0 == 0) {
        raise_exception(EXCP00_DIVZ);
    }
    r0 = EAX;
    r1 = EDX;
B
bellard 已提交
3777 3778
    if (idiv64(&r0, &r1, T0))
        raise_exception(EXCP00_DIVZ);
B
bellard 已提交
3779 3780 3781 3782
    EAX = r0;
    EDX = r1;
}

B
bellard 已提交
3783 3784 3785 3786
void helper_bswapq_T0(void)
{
    T0 = bswap64(T0);
}
B
bellard 已提交
3787 3788
#endif

B
bellard 已提交
3789 3790 3791 3792 3793 3794 3795 3796 3797 3798
void helper_hlt(void)
{
    env->hflags &= ~HF_INHIBIT_IRQ_MASK; /* needed if sti is just before */
    env->hflags |= HF_HALTED_MASK;
    env->exception_index = EXCP_HLT;
    cpu_loop_exit();
}

void helper_monitor(void)
{
3799
    if ((uint32_t)ECX != 0)
B
bellard 已提交
3800 3801 3802 3803 3804 3805
        raise_exception(EXCP0D_GPF);
    /* XXX: store address ? */
}

void helper_mwait(void)
{
3806
    if ((uint32_t)ECX != 0)
B
bellard 已提交
3807 3808 3809 3810 3811 3812 3813 3814 3815 3816
        raise_exception(EXCP0D_GPF);
    /* XXX: not complete but not completely erroneous */
    if (env->cpu_index != 0 || env->next_cpu != NULL) {
        /* more than one CPU: do not sleep because another CPU may
           wake this one */
    } else {
        helper_hlt();
    }
}

B
bellard 已提交
3817 3818 3819 3820 3821 3822 3823 3824 3825 3826
float approx_rsqrt(float a)
{
    return 1.0 / sqrt(a);
}

float approx_rcp(float a)
{
    return 1.0 / a;
}

B
bellard 已提交
3827
void update_fp_status(void)
B
bellard 已提交
3828
{
B
bellard 已提交
3829
    int rnd_type;
B
bellard 已提交
3830

B
bellard 已提交
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 3859 3860 3861
    /* set rounding mode */
    switch(env->fpuc & RC_MASK) {
    default:
    case RC_NEAR:
        rnd_type = float_round_nearest_even;
        break;
    case RC_DOWN:
        rnd_type = float_round_down;
        break;
    case RC_UP:
        rnd_type = float_round_up;
        break;
    case RC_CHOP:
        rnd_type = float_round_to_zero;
        break;
    }
    set_float_rounding_mode(rnd_type, &env->fp_status);
#ifdef FLOATX80
    switch((env->fpuc >> 8) & 3) {
    case 0:
        rnd_type = 32;
        break;
    case 2:
        rnd_type = 64;
        break;
    case 3:
    default:
        rnd_type = 80;
        break;
    }
    set_floatx80_rounding_precision(rnd_type, &env->fp_status);
B
bellard 已提交
3862
#endif
B
bellard 已提交
3863
}
B
bellard 已提交
3864

3865
#if !defined(CONFIG_USER_ONLY)
B
bellard 已提交
3866 3867

#define MMUSUFFIX _mmu
3868 3869 3870 3871 3872
#ifdef __s390__
# define GETPC() ((void*)((unsigned long)__builtin_return_address(0) & 0x7fffffffUL))
#else
# define GETPC() (__builtin_return_address(0))
#endif
B
bellard 已提交
3873

B
bellard 已提交
3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885
#define SHIFT 0
#include "softmmu_template.h"

#define SHIFT 1
#include "softmmu_template.h"

#define SHIFT 2
#include "softmmu_template.h"

#define SHIFT 3
#include "softmmu_template.h"

B
bellard 已提交
3886 3887 3888 3889 3890 3891
#endif

/* try to fill the TLB and return an exception if error. If retaddr is
   NULL, it means that the function was called in C code (i.e. not
   from generated code or from helper.c) */
/* XXX: fix it to restore all registers */
3892
void tlb_fill(target_ulong addr, int is_write, int mmu_idx, void *retaddr)
B
bellard 已提交
3893 3894 3895 3896
{
    TranslationBlock *tb;
    int ret;
    unsigned long pc;
B
bellard 已提交
3897 3898 3899 3900 3901 3902 3903
    CPUX86State *saved_env;

    /* XXX: hack to restore env in all cases, even if not called from
       generated code */
    saved_env = env;
    env = cpu_single_env;

3904
    ret = cpu_x86_handle_mmu_fault(env, addr, is_write, mmu_idx, 1);
B
bellard 已提交
3905
    if (ret) {
B
bellard 已提交
3906 3907 3908 3909 3910 3911 3912
        if (retaddr) {
            /* now we have a real cpu fault */
            pc = (unsigned long)retaddr;
            tb = tb_find_pc(pc);
            if (tb) {
                /* the PC is inside the translated code. It means that we have
                   a virtual CPU fault */
B
bellard 已提交
3913
                cpu_restore_state(tb, env, pc, NULL);
B
bellard 已提交
3914
            }
B
bellard 已提交
3915
        }
B
bellard 已提交
3916
        if (retaddr)
B
bellard 已提交
3917
            raise_exception_err(env->exception_index, env->error_code);
B
bellard 已提交
3918
        else
B
bellard 已提交
3919
            raise_exception_err_norestore(env->exception_index, env->error_code);
B
bellard 已提交
3920
    }
B
bellard 已提交
3921
    env = saved_env;
B
bellard 已提交
3922
}
T
ths 已提交
3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 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 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 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 4125 4126


/* Secure Virtual Machine helpers */

void helper_stgi(void)
{
    env->hflags |= HF_GIF_MASK;
}

void helper_clgi(void)
{
    env->hflags &= ~HF_GIF_MASK;
}

#if defined(CONFIG_USER_ONLY)

void helper_vmrun(target_ulong addr) { }
void helper_vmmcall(void) { }
void helper_vmload(target_ulong addr) { }
void helper_vmsave(target_ulong addr) { }
void helper_skinit(void) { }
void helper_invlpga(void) { }
void vmexit(uint64_t exit_code, uint64_t exit_info_1) { }
int svm_check_intercept_param(uint32_t type, uint64_t param)
{
    return 0;
}

#else

static inline uint32_t
vmcb2cpu_attrib(uint16_t vmcb_attrib, uint32_t vmcb_base, uint32_t vmcb_limit)
{
    return    ((vmcb_attrib & 0x00ff) << 8)          /* Type, S, DPL, P */
	    | ((vmcb_attrib & 0x0f00) << 12)         /* AVL, L, DB, G */
	    | ((vmcb_base >> 16) & 0xff)             /* Base 23-16 */
	    | (vmcb_base & 0xff000000)               /* Base 31-24 */
	    | (vmcb_limit & 0xf0000);                /* Limit 19-16 */
}

static inline uint16_t cpu2vmcb_attrib(uint32_t cpu_attrib)
{
    return    ((cpu_attrib >> 8) & 0xff)             /* Type, S, DPL, P */
	    | ((cpu_attrib & 0xf00000) >> 12);       /* AVL, L, DB, G */
}

extern uint8_t *phys_ram_base;
void helper_vmrun(target_ulong addr)
{
    uint32_t event_inj;
    uint32_t int_ctl;

    if (loglevel & CPU_LOG_TB_IN_ASM)
        fprintf(logfile,"vmrun! " TARGET_FMT_lx "\n", addr);

    env->vm_vmcb = addr;
    regs_to_env();

    /* save the current CPU state in the hsave page */
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.base), env->gdt.base);
    stl_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.limit), env->gdt.limit);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.idtr.base), env->idt.base);
    stl_phys(env->vm_hsave + offsetof(struct vmcb, save.idtr.limit), env->idt.limit);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr0), env->cr[0]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr2), env->cr[2]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr3), env->cr[3]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr4), env->cr[4]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr8), env->cr[8]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr6), env->dr[6]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr7), env->dr[7]);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.efer), env->efer);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rflags), compute_eflags());

    SVM_SAVE_SEG(env->vm_hsave, segs[R_ES], es);
    SVM_SAVE_SEG(env->vm_hsave, segs[R_CS], cs);
    SVM_SAVE_SEG(env->vm_hsave, segs[R_SS], ss);
    SVM_SAVE_SEG(env->vm_hsave, segs[R_DS], ds);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rip), EIP);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rsp), ESP);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rax), EAX);

    /* load the interception bitmaps so we do not need to access the
       vmcb in svm mode */
    /* We shift all the intercept bits so we can OR them with the TB
       flags later on */
    env->intercept            = (ldq_phys(env->vm_vmcb + offsetof(struct vmcb, control.intercept)) << INTERCEPT_INTR) | INTERCEPT_SVM_MASK;
    env->intercept_cr_read    = lduw_phys(env->vm_vmcb + offsetof(struct vmcb, control.intercept_cr_read));
    env->intercept_cr_write   = lduw_phys(env->vm_vmcb + offsetof(struct vmcb, control.intercept_cr_write));
    env->intercept_dr_read    = lduw_phys(env->vm_vmcb + offsetof(struct vmcb, control.intercept_dr_read));
    env->intercept_dr_write   = lduw_phys(env->vm_vmcb + offsetof(struct vmcb, control.intercept_dr_write));
    env->intercept_exceptions = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.intercept_exceptions));

    env->gdt.base  = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.base));
    env->gdt.limit = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.limit));

    env->idt.base  = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.idtr.base));
    env->idt.limit = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, save.idtr.limit));

    /* clear exit_info_2 so we behave like the real hardware */
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_info_2), 0);

    cpu_x86_update_cr0(env, ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr0)));
    cpu_x86_update_cr4(env, ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr4)));
    cpu_x86_update_cr3(env, ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr3)));
    env->cr[2] = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr2));
    int_ctl = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl));
    if (int_ctl & V_INTR_MASKING_MASK) {
        env->cr[8] = int_ctl & V_TPR_MASK;
        if (env->eflags & IF_MASK)
            env->hflags |= HF_HIF_MASK;
    }

#ifdef TARGET_X86_64
    env->efer = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.efer));
    env->hflags &= ~HF_LMA_MASK;
    if (env->efer & MSR_EFER_LMA)
       env->hflags |= HF_LMA_MASK;
#endif
    env->eflags = 0;
    load_eflags(ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rflags)),
                ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
    CC_OP = CC_OP_EFLAGS;
    CC_DST = 0xffffffff;

    SVM_LOAD_SEG(env->vm_vmcb, ES, es);
    SVM_LOAD_SEG(env->vm_vmcb, CS, cs);
    SVM_LOAD_SEG(env->vm_vmcb, SS, ss);
    SVM_LOAD_SEG(env->vm_vmcb, DS, ds);

    EIP = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rip));
    env->eip = EIP;
    ESP = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rsp));
    EAX = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rax));
    env->dr[7] = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr7));
    env->dr[6] = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr6));
    cpu_x86_set_cpl(env, ldub_phys(env->vm_vmcb + offsetof(struct vmcb, save.cpl)));

    /* FIXME: guest state consistency checks */

    switch(ldub_phys(env->vm_vmcb + offsetof(struct vmcb, control.tlb_ctl))) {
        case TLB_CONTROL_DO_NOTHING:
            break;
        case TLB_CONTROL_FLUSH_ALL_ASID:
            /* FIXME: this is not 100% correct but should work for now */
            tlb_flush(env, 1);
        break;
    }

    helper_stgi();

    regs_to_env();

    /* maybe we need to inject an event */
    event_inj = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj));
    if (event_inj & SVM_EVTINJ_VALID) {
        uint8_t vector = event_inj & SVM_EVTINJ_VEC_MASK;
        uint16_t valid_err = event_inj & SVM_EVTINJ_VALID_ERR;
        uint32_t event_inj_err = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj_err));
        stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj), event_inj & ~SVM_EVTINJ_VALID);

        if (loglevel & CPU_LOG_TB_IN_ASM)
            fprintf(logfile, "Injecting(%#hx): ", valid_err);
        /* FIXME: need to implement valid_err */
        switch (event_inj & SVM_EVTINJ_TYPE_MASK) {
        case SVM_EVTINJ_TYPE_INTR:
                env->exception_index = vector;
                env->error_code = event_inj_err;
                env->exception_is_int = 1;
                env->exception_next_eip = -1;
                if (loglevel & CPU_LOG_TB_IN_ASM)
                    fprintf(logfile, "INTR");
                break;
        case SVM_EVTINJ_TYPE_NMI:
                env->exception_index = vector;
                env->error_code = event_inj_err;
                env->exception_is_int = 1;
                env->exception_next_eip = EIP;
                if (loglevel & CPU_LOG_TB_IN_ASM)
                    fprintf(logfile, "NMI");
                break;
        case SVM_EVTINJ_TYPE_EXEPT:
                env->exception_index = vector;
                env->error_code = event_inj_err;
                env->exception_is_int = 0;
                env->exception_next_eip = -1;
                if (loglevel & CPU_LOG_TB_IN_ASM)
                    fprintf(logfile, "EXEPT");
                break;
        case SVM_EVTINJ_TYPE_SOFT:
                env->exception_index = vector;
                env->error_code = event_inj_err;
                env->exception_is_int = 1;
                env->exception_next_eip = EIP;
                if (loglevel & CPU_LOG_TB_IN_ASM)
                    fprintf(logfile, "SOFT");
                break;
        }
        if (loglevel & CPU_LOG_TB_IN_ASM)
            fprintf(logfile, " %#x %#x\n", env->exception_index, env->error_code);
    }
T
ths 已提交
4127
    if ((int_ctl & V_IRQ_MASK) || (env->intercept & INTERCEPT_VINTR)) {
T
ths 已提交
4128
        env->interrupt_request |= CPU_INTERRUPT_VIRQ;
T
ths 已提交
4129
    }
T
ths 已提交
4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 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 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 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290

    cpu_loop_exit();
}

void helper_vmmcall(void)
{
    if (loglevel & CPU_LOG_TB_IN_ASM)
        fprintf(logfile,"vmmcall!\n");
}

void helper_vmload(target_ulong addr)
{
    if (loglevel & CPU_LOG_TB_IN_ASM)
        fprintf(logfile,"vmload! " TARGET_FMT_lx "\nFS: %016" PRIx64 " | " TARGET_FMT_lx "\n",
                addr, ldq_phys(addr + offsetof(struct vmcb, save.fs.base)),
                env->segs[R_FS].base);

    SVM_LOAD_SEG2(addr, segs[R_FS], fs);
    SVM_LOAD_SEG2(addr, segs[R_GS], gs);
    SVM_LOAD_SEG2(addr, tr, tr);
    SVM_LOAD_SEG2(addr, ldt, ldtr);

#ifdef TARGET_X86_64
    env->kernelgsbase = ldq_phys(addr + offsetof(struct vmcb, save.kernel_gs_base));
    env->lstar = ldq_phys(addr + offsetof(struct vmcb, save.lstar));
    env->cstar = ldq_phys(addr + offsetof(struct vmcb, save.cstar));
    env->fmask = ldq_phys(addr + offsetof(struct vmcb, save.sfmask));
#endif
    env->star = ldq_phys(addr + offsetof(struct vmcb, save.star));
    env->sysenter_cs = ldq_phys(addr + offsetof(struct vmcb, save.sysenter_cs));
    env->sysenter_esp = ldq_phys(addr + offsetof(struct vmcb, save.sysenter_esp));
    env->sysenter_eip = ldq_phys(addr + offsetof(struct vmcb, save.sysenter_eip));
}

void helper_vmsave(target_ulong addr)
{
    if (loglevel & CPU_LOG_TB_IN_ASM)
        fprintf(logfile,"vmsave! " TARGET_FMT_lx "\nFS: %016" PRIx64 " | " TARGET_FMT_lx "\n",
                addr, ldq_phys(addr + offsetof(struct vmcb, save.fs.base)),
                env->segs[R_FS].base);

    SVM_SAVE_SEG(addr, segs[R_FS], fs);
    SVM_SAVE_SEG(addr, segs[R_GS], gs);
    SVM_SAVE_SEG(addr, tr, tr);
    SVM_SAVE_SEG(addr, ldt, ldtr);

#ifdef TARGET_X86_64
    stq_phys(addr + offsetof(struct vmcb, save.kernel_gs_base), env->kernelgsbase);
    stq_phys(addr + offsetof(struct vmcb, save.lstar), env->lstar);
    stq_phys(addr + offsetof(struct vmcb, save.cstar), env->cstar);
    stq_phys(addr + offsetof(struct vmcb, save.sfmask), env->fmask);
#endif
    stq_phys(addr + offsetof(struct vmcb, save.star), env->star);
    stq_phys(addr + offsetof(struct vmcb, save.sysenter_cs), env->sysenter_cs);
    stq_phys(addr + offsetof(struct vmcb, save.sysenter_esp), env->sysenter_esp);
    stq_phys(addr + offsetof(struct vmcb, save.sysenter_eip), env->sysenter_eip);
}

void helper_skinit(void)
{
    if (loglevel & CPU_LOG_TB_IN_ASM)
        fprintf(logfile,"skinit!\n");
}

void helper_invlpga(void)
{
    tlb_flush(env, 0);
}

int svm_check_intercept_param(uint32_t type, uint64_t param)
{
    switch(type) {
    case SVM_EXIT_READ_CR0 ... SVM_EXIT_READ_CR0 + 8:
        if (INTERCEPTEDw(_cr_read, (1 << (type - SVM_EXIT_READ_CR0)))) {
            vmexit(type, param);
            return 1;
        }
        break;
    case SVM_EXIT_READ_DR0 ... SVM_EXIT_READ_DR0 + 8:
        if (INTERCEPTEDw(_dr_read, (1 << (type - SVM_EXIT_READ_DR0)))) {
            vmexit(type, param);
            return 1;
        }
        break;
    case SVM_EXIT_WRITE_CR0 ... SVM_EXIT_WRITE_CR0 + 8:
        if (INTERCEPTEDw(_cr_write, (1 << (type - SVM_EXIT_WRITE_CR0)))) {
            vmexit(type, param);
            return 1;
        }
        break;
    case SVM_EXIT_WRITE_DR0 ... SVM_EXIT_WRITE_DR0 + 8:
        if (INTERCEPTEDw(_dr_write, (1 << (type - SVM_EXIT_WRITE_DR0)))) {
            vmexit(type, param);
            return 1;
        }
        break;
    case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 16:
        if (INTERCEPTEDl(_exceptions, (1 << (type - SVM_EXIT_EXCP_BASE)))) {
            vmexit(type, param);
            return 1;
        }
        break;
    case SVM_EXIT_IOIO:
        if (INTERCEPTED(1ULL << INTERCEPT_IOIO_PROT)) {
            /* FIXME: this should be read in at vmrun (faster this way?) */
            uint64_t addr = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, control.iopm_base_pa));
            uint16_t port = (uint16_t) (param >> 16);

            if(ldub_phys(addr + port / 8) & (1 << (port % 8)))
                vmexit(type, param);
        }
        break;

    case SVM_EXIT_MSR:
        if (INTERCEPTED(1ULL << INTERCEPT_MSR_PROT)) {
            /* FIXME: this should be read in at vmrun (faster this way?) */
            uint64_t addr = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, control.msrpm_base_pa));
            switch((uint32_t)ECX) {
            case 0 ... 0x1fff:
                T0 = (ECX * 2) % 8;
                T1 = ECX / 8;
                break;
            case 0xc0000000 ... 0xc0001fff:
                T0 = (8192 + ECX - 0xc0000000) * 2;
                T1 = (T0 / 8);
                T0 %= 8;
                break;
            case 0xc0010000 ... 0xc0011fff:
                T0 = (16384 + ECX - 0xc0010000) * 2;
                T1 = (T0 / 8);
                T0 %= 8;
                break;
            default:
                vmexit(type, param);
                return 1;
            }
            if (ldub_phys(addr + T1) & ((1 << param) << T0))
                vmexit(type, param);
            return 1;
        }
        break;
    default:
        if (INTERCEPTED((1ULL << ((type - SVM_EXIT_INTR) + INTERCEPT_INTR)))) {
            vmexit(type, param);
            return 1;
        }
        break;
    }
    return 0;
}

void vmexit(uint64_t exit_code, uint64_t exit_info_1)
{
    uint32_t int_ctl;

    if (loglevel & CPU_LOG_TB_IN_ASM)
        fprintf(logfile,"vmexit(%016" PRIx64 ", %016" PRIx64 ", %016" PRIx64 ", " TARGET_FMT_lx ")!\n",
                exit_code, exit_info_1,
                ldq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_info_2)),
                EIP);

T
ths 已提交
4291 4292 4293 4294 4295 4296 4297
    if(env->hflags & HF_INHIBIT_IRQ_MASK) {
        stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_state), SVM_INTERRUPT_SHADOW_MASK);
        env->hflags &= ~HF_INHIBIT_IRQ_MASK;
    } else {
        stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_state), 0);
    }

T
ths 已提交
4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 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 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410
    /* Save the VM state in the vmcb */
    SVM_SAVE_SEG(env->vm_vmcb, segs[R_ES], es);
    SVM_SAVE_SEG(env->vm_vmcb, segs[R_CS], cs);
    SVM_SAVE_SEG(env->vm_vmcb, segs[R_SS], ss);
    SVM_SAVE_SEG(env->vm_vmcb, segs[R_DS], ds);

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.base), env->gdt.base);
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.limit), env->gdt.limit);

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.idtr.base), env->idt.base);
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, save.idtr.limit), env->idt.limit);

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.efer), env->efer);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr0), env->cr[0]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr2), env->cr[2]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr3), env->cr[3]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr4), env->cr[4]);

    if ((int_ctl = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl))) & V_INTR_MASKING_MASK) {
        int_ctl &= ~V_TPR_MASK;
        int_ctl |= env->cr[8] & V_TPR_MASK;
        stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl), int_ctl);
    }

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rflags), compute_eflags());
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rip), env->eip);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rsp), ESP);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rax), EAX);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr7), env->dr[7]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr6), env->dr[6]);
    stb_phys(env->vm_vmcb + offsetof(struct vmcb, save.cpl), env->hflags & HF_CPL_MASK);

    /* Reload the host state from vm_hsave */
    env->hflags &= ~HF_HIF_MASK;
    env->intercept = 0;
    env->intercept_exceptions = 0;
    env->interrupt_request &= ~CPU_INTERRUPT_VIRQ;

    env->gdt.base  = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.base));
    env->gdt.limit = ldl_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.limit));

    env->idt.base  = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.idtr.base));
    env->idt.limit = ldl_phys(env->vm_hsave + offsetof(struct vmcb, save.idtr.limit));

    cpu_x86_update_cr0(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr0)) | CR0_PE_MASK);
    cpu_x86_update_cr4(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr4)));
    cpu_x86_update_cr3(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr3)));
    if (int_ctl & V_INTR_MASKING_MASK)
        env->cr[8] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr8));
    /* we need to set the efer after the crs so the hidden flags get set properly */
#ifdef TARGET_X86_64
    env->efer  = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.efer));
    env->hflags &= ~HF_LMA_MASK;
    if (env->efer & MSR_EFER_LMA)
       env->hflags |= HF_LMA_MASK;
#endif

    env->eflags = 0;
    load_eflags(ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rflags)),
                ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
    CC_OP = CC_OP_EFLAGS;

    SVM_LOAD_SEG(env->vm_hsave, ES, es);
    SVM_LOAD_SEG(env->vm_hsave, CS, cs);
    SVM_LOAD_SEG(env->vm_hsave, SS, ss);
    SVM_LOAD_SEG(env->vm_hsave, DS, ds);

    EIP = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rip));
    ESP = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rsp));
    EAX = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rax));

    env->dr[6] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr6));
    env->dr[7] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr7));

    /* other setups */
    cpu_x86_set_cpl(env, 0);
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_code_hi), (uint32_t)(exit_code >> 32));
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_code), exit_code);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_info_1), exit_info_1);

    helper_clgi();
    /* FIXME: Resets the current ASID register to zero (host ASID). */

    /* Clears the V_IRQ and V_INTR_MASKING bits inside the processor. */

    /* Clears the TSC_OFFSET inside the processor. */

    /* If the host is in PAE mode, the processor reloads the host's PDPEs
       from the page table indicated the host's CR3. If the PDPEs contain
       illegal state, the processor causes a shutdown. */

    /* Forces CR0.PE = 1, RFLAGS.VM = 0. */
    env->cr[0] |= CR0_PE_MASK;
    env->eflags &= ~VM_MASK;

    /* Disables all breakpoints in the host DR7 register. */

    /* Checks the reloaded host state for consistency. */

    /* If the host's rIP reloaded by #VMEXIT is outside the limit of the
       host's code segment or non-canonical (in the case of long mode), a
       #GP fault is delivered inside the host.) */

    /* remove any pending exception */
    env->exception_index = -1;
    env->error_code = 0;
    env->old_exception = -1;

    regs_to_env();
    cpu_loop_exit();
}

#endif