VirtualBox

Changeset 6158 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Dec 19, 2007 9:38:18 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
26903
Message:

Fixed reporting of segment not present exceptions when using call gates to match Intel manuals. Either #NP or #SS must be raised, not #TS or #GP.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/target-i386/helper.c

    r5853 r6158  
    720720            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
    721721        if (!(ss_e2 & DESC_P_MASK))
     722#ifdef VBOX /* See page 3-477 of 253666.pdf */
     723            raise_exception_err(EXCP0C_STACK, ss & 0xfffc);
     724#else
    722725            raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
     726#endif
    723727        new_stack = 1;
    724728        sp_mask = get_sp_mask(ss_e2);
     
    22072211                raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc);
    22082212            if (!(e2 & DESC_P_MASK))
     2213#ifdef VBOX /* See page 3-514 of 253666.pdf */
     2214                raise_exception_err(EXCP0B_NOSEG, gate_cs & 0xfffc);
     2215#else
    22092216                raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc);
     2217#endif
    22102218            limit = get_seg_limit(e1, e2);
    22112219            if (new_eip > limit)
     
    23992407                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
    24002408            if (!(ss_e2 & DESC_P_MASK))
     2409#ifdef VBOX /* See page 3-99 of 253666.pdf */
     2410                raise_exception_err(EXCP0C_STACK, ss & 0xfffc);
     2411#else
    24012412                raise_exception_err(EXCP0A_TSS, ss & 0xfffc);
     2413#endif
    24022414           
    24032415            //            push_size = ((param_count * 2) + 8) << shift;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette