Symbol: gdtr
src/libs/compat/freebsd_network/compat/machine/x86/cpufunc.h
459
uint64_t gdtr;
src/libs/compat/freebsd_network/compat/machine/x86/cpufunc.h
460
__asm __volatile("sgdt %0" : "=m" (gdtr));
src/libs/compat/freebsd_network/compat/machine/x86/cpufunc.h
461
return (gdtr);
src/system/boot/platform/efi/arch/x86/arch_smp_32.cpp
51
struct gdtr gdtr;
src/system/boot/platform/efi/arch/x86/arch_smp_32.cpp
73
args->gdt = (uint32) &args->gdtr;
src/system/boot/platform/efi/arch/x86/arch_smp_32.cpp
74
args->gdtr.limit = 23;
src/system/boot/platform/efi/arch/x86/arch_smp_32.cpp
75
args->gdtr.base = (uint32)(uint64)args->gdtr.null;
src/system/boot/platform/efi/arch/x86/arch_smp_32.cpp
78
COPY_ARRAY(args->gdtr.null, 0, 0, 0, 0, 0, 0, 0, 0);
src/system/boot/platform/efi/arch/x86/arch_smp_32.cpp
79
COPY_ARRAY(args->gdtr.code, 0xff, 0xff, 0, 0, 0, 0x9a, 0xcf, 0);
src/system/boot/platform/efi/arch/x86/arch_smp_32.cpp
80
COPY_ARRAY(args->gdtr.data, 0xff, 0xff, 0, 0, 0, 0x92, 0xcf, 0);
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
55
struct gdtr gdtr;
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
77
args->gdt32 = (uint64) &args->gdtr;
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
78
args->gdtr.limit = 8 * 4 - 1;
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
79
args->gdtr.base = (uint32)(uint64)args->gdtr.null;
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
82
COPY_ARRAY(args->gdtr.null, 0, 0, 0, 0, 0, 0, 0, 0);
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
83
COPY_ARRAY(args->gdtr.code, 0xff, 0xff, 0, 0, 0, 0x9a, 0xcf, 0);
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
84
COPY_ARRAY(args->gdtr.data, 0xff, 0xff, 0, 0, 0, 0x92, 0xcf, 0);
src/system/boot/platform/efi/arch/x86_64/arch_smp_64.cpp
85
COPY_ARRAY(args->gdtr.code64, 0xff, 0xff, 0, 0, 0, 0x9a, 0xaf, 0);