Searched refs:Tss (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/VMM/VMMRC/
H A DSELMRC.cpp407 && ( pGuestTss->esp0 != pVM->selm.s.Tss.esp1
408 || pGuestTss->ss0 != (pVM->selm.s.Tss.ss1 & ~1)) /* undo raw-r0 */
412 (RTSEL)(pVM->selm.s.Tss.ss1 & ~1), (RTGCPTR)pVM->selm.s.Tss.esp1, (RTSEL)pGuestTss->ss0, (RTGCPTR)pGuestTss->esp0));
413 pVM->selm.s.Tss.esp1 = pGuestTss->esp0;
414 pVM->selm.s.Tss.ss1 = pGuestTss->ss0 | 1;
421 && ( pGuestTss->esp1 != pVM->selm.s.Tss.esp2
422 || pGuestTss->ss1 != ((pVM->selm.s.Tss.ss2 & ~2) | 1)) /* undo raw-r1 */
426 (RTSEL)((pVM->selm.s.Tss.ss2 & ~2) | 1), (RTGCPTR)pVM->selm.s.Tss
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DSELM.cpp135 AssertCompile((RT_OFFSETOF(VM, selm.s.Tss) & PAGE_OFFSET_MASK) <= PAGE_SIZE - sizeof(pVM->selm.s.Tss));
138 AssertRelease((RT_OFFSETOF(VM, selm.s.Tss) & PAGE_OFFSET_MASK) <= PAGE_SIZE - sizeof(pVM->selm.s.Tss));
140 AssertRelease(sizeof(pVM->selm.s.Tss.IntRedirBitmap) == 0x20);
186 pVM->selm.s.Tss.offIoBitmap = sizeof(VBOXTSS);
188 memset(pVM->selm.s.Tss.IntRedirBitmap, 0xff, sizeof(pVM->selm.s.Tss.IntRedirBitmap));
387 RTRCPTR RCPtrTSS = VM_RC_ADDR(pVM, &pVM->selm.s.Tss);
464 pVM->selm.s.Tss
1599 VBOXTSS Tss; local
1972 VBOXTSS Tss; local
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DSELMAll.cpp835 pVM->selm.s.Tss.ss1 = ss;
836 pVM->selm.s.Tss.esp1 = (uint32_t)esp;
852 pVM->selm.s.Tss.ss2 = ss;
853 pVM->selm.s.Tss.esp2 = (uint32_t)esp;
923 uint32_t ssr0 = pVM->selm.s.Tss.ss1;
924 uint32_t espr0 = pVM->selm.s.Tss.esp1;
939 *pSS = pVM->selm.s.Tss.ss1;
940 *pEsp = (RTGCPTR32)pVM->selm.s.Tss.esp1;
1069 pVM->selm.s.Tss.cr3 = PGMGetHyperCR3(pVCpu);
/vbox/src/VBox/VMM/include/
H A DSELMInternal.h139 VBOXTSS Tss; member in struct:SELM
/vbox/src/VBox/VMM/testcase/
H A DtstVMStructSize.cpp256 CHECK_MEMBER_ALIGNMENT(VM, selm.s.Tss, 16);
257 PRINT_OFFSET(VM, selm.s.Tss);
259 if ((RT_OFFSETOF(VM, selm.s.Tss) & PAGE_OFFSET_MASK) > PAGE_SIZE - sizeof(pVM->selm.s.Tss))
261 printf("error! SELM:Tss is crossing a page!\n");
H A DtstVMStruct.h994 GEN_CHECK_OFF(SELM, Tss);

Completed in 422 milliseconds