Searched refs:gdt (Results 1 – 13 of 13) sorted by relevance
/device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/ |
D | CpuGdt.c | 133 GDT_ENTRIES *gdt; in InitGlobalDescriptorTable() local 139 gdt = AllocateRuntimePool (sizeof (GdtTemplate) + 8); in InitGlobalDescriptorTable() 140 ASSERT (gdt != NULL); in InitGlobalDescriptorTable() 141 gdt = ALIGN_POINTER (gdt, 8); in InitGlobalDescriptorTable() 146 CopyMem (gdt, &GdtTemplate, sizeof (GdtTemplate)); in InitGlobalDescriptorTable() 151 gdtPtr.Base = (UINT32)(UINTN)(VOID*) gdt; in InitGlobalDescriptorTable()
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
D | start.S | 360 leal GDT_BASE(%ebx), %eax # EAX=PHYSICAL address of gdt 361 movl %eax, (gdtr + 2) # Put address of gdt into the gdtr
|
D | start16.S | 354 leal GDT_BASE(%ebx), %eax # EAX=PHYSICAL address of gdt 355 movl %eax, gdtr + 2 # Put address of gdt into the gdtr
|
D | start16.asm | 349 lea eax,[GDT_BASE + ebx] ; EAX=PHYSICAL address of gdt 350 mov dword ptr [gdtr + 2],eax ; Put address of gdt into the gdtr
|
D | start32.S | 369 leal GDT_BASE(%ebx), %eax # EAX=PHYSICAL address of gdt 370 movl %eax, gdtr + 2 # Put address of gdt into the gdtr
|
D | start.asm | 356 lea eax,[GDT_BASE + ebx] ; EAX=PHYSICAL address of gdt 357 mov dword ptr [gdtr + 2],eax ; Put address of gdt into the gdtr
|
D | start32.asm | 364 lea eax,[GDT_BASE + ebx] ; EAX=PHYSICAL address of gdt 365 mov dword ptr [gdtr + 2],eax ; Put address of gdt into the gdtr
|
D | st32_64.S | 381 leal GDT_BASE(%ebx), %eax # EAX=PHYSICAL address of gdt 382 movl %eax, (gdtr + 2) # Put address of gdt into the gdtr
|
D | start64.S | 373 leal GDT_BASE(%ebx), %eax # EAX=PHYSICAL address of gdt 374 movl %eax, (gdtr + 2) # Put address of gdt into the gdtr
|
D | st16_64.S | 366 leal GDT_BASE(%ebx), %eax # EAX=PHYSICAL address of gdt 367 movl %eax, (gdtr + 2) # Put address of gdt into the gdtr
|
D | st16_64.asm | 361 lea eax,[GDT_BASE + ebx] ; EAX=PHYSICAL address of gdt 362 mov dword ptr [gdtr + 2],eax ; Put address of gdt into the gdtr
|
D | st32_64.asm | 377 lea eax,[GDT_BASE + ebx] ; EAX=PHYSICAL address of gdt 378 mov dword ptr [gdtr + 2],eax ; Put address of gdt into the gdtr
|
D | start64.asm | 368 lea eax,[GDT_BASE + ebx] ; EAX=PHYSICAL address of gdt 369 mov dword ptr [gdtr + 2],eax ; Put address of gdt into the gdtr
|