Changeset 6158 in vbox for trunk/src/recompiler
- Timestamp:
- Dec 19, 2007 9:38:18 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26903
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/target-i386/helper.c
r5853 r6158 720 720 raise_exception_err(EXCP0A_TSS, ss & 0xfffc); 721 721 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 722 725 raise_exception_err(EXCP0A_TSS, ss & 0xfffc); 726 #endif 723 727 new_stack = 1; 724 728 sp_mask = get_sp_mask(ss_e2); … … 2207 2211 raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc); 2208 2212 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 2209 2216 raise_exception_err(EXCP0D_GPF, gate_cs & 0xfffc); 2217 #endif 2210 2218 limit = get_seg_limit(e1, e2); 2211 2219 if (new_eip > limit) … … 2399 2407 raise_exception_err(EXCP0A_TSS, ss & 0xfffc); 2400 2408 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 2401 2412 raise_exception_err(EXCP0A_TSS, ss & 0xfffc); 2413 #endif 2402 2414 2403 2415 // push_size = ((param_count * 2) + 8) << shift;
Note:
See TracChangeset
for help on using the changeset viewer.