Changeset 94841 in vbox for trunk/src/VBox/VMM/VMMR3/VMM.cpp
- Timestamp:
- May 5, 2022 10:38:39 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r93744 r94841 2295 2295 * Locate the resume point on the stack. 2296 2296 */ 2297 #ifdef RT_ARCH_AMD64 2298 /* This code must match the vmmR0CallRing3LongJmp stack frame setup in VMMR0JmpA-amd64.asm exactly. */ 2297 2299 uintptr_t off = 0; 2298 2299 #ifdef RT_ARCH_AMD642300 /*2301 * This code must match the vmmR0CallRing3LongJmp stack frame setup in VMMR0JmpA-amd64.asm exactly.2302 */2303 2300 # ifdef RT_OS_WINDOWS 2304 2301 off += 0xa0; /* XMM6 thru XMM15 */ … … 2328 2325 2329 2326 #elif defined(RT_ARCH_X86) 2330 /* 2331 * This code must match the vmmR0CallRing3LongJmp stack frame setup in VMMR0JmpA-x86.asm exactly. 2332 */ 2327 /* This code must match the vmmR0CallRing3LongJmp stack frame setup in VMMR0JmpA-x86.asm exactly. */ 2328 uintptr_t off = 0; 2333 2329 pState->u.x86.uRFlags = *(uint32_t const *)&pVCpu->vmm.s.abAssertStack[off]; 2334 2330 off += 4;
Note:
See TracChangeset
for help on using the changeset viewer.