Searched defs:pIdtr (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DCPUMDbg.cpp219 VBOXIDTR const *pIdtr = (VBOXIDTR const *)((uint8_t const *)&pVCpu->cpum + pDesc->offRegister); local
224 pValue->dtr.u32Limit = pIdtr->cbIdt;
225 pValue->dtr.u64Base = pIdtr->pIdt;
/vbox/include/iprt/
H A Dasm-amd64-x86.h160 * @param pIdtr Where to store the IDTR contents.
163 DECLASM(void) ASMGetIDTR(PRTIDTR pIdtr); variable
165 DECLINLINE(void) ASMGetIDTR(PRTIDTR pIdtr) argument
168 __asm__ __volatile__("sidt %0" : "=m" (*pIdtr));
173 mov rax, [pIdtr]
176 mov eax, [pIdtr]
210 * @param pIdtr Where to load the IDTR contents from
213 DECLASM(void) ASMSetIDTR(const RTIDTR *pIdtr); variable
215 DECLINLINE(void) ASMSetIDTR(const RTIDTR *pIdtr) argument
218 __asm__ __volatile__("lidt %0" : : "m" (*pIdtr));
[all...]

Completed in 288 milliseconds