/arch/x86/include/asm/ |
D | kaiser.h | 26 movq %cr3, \reg 30 movq \reg, %cr3 40 movq %cr3, \reg 46 movq \reg, %cr3
|
D | suspend_32.h | 15 unsigned long cr0, cr2, cr3, cr4; member
|
D | suspend_64.h | 24 unsigned long cr0, cr2, cr3, cr4, cr8; member
|
/arch/x86/power/ |
D | hibernate_asm_64.S | 47 movq %cr3, %rax 75 movq %rax, %cr3 80 movq %cr3, %rcx; # flush TLB 81 movq %rcx, %cr3; 106 movq %r9, %cr3 113 movq %cr3, %rcx; # flush TLB 114 movq %rcx, %cr3
|
D | hibernate_asm_32.S | 33 movl %eax, %cr3 38 movl %cr3, %eax; # flush TLB 39 movl %eax, %cr3 63 movl %eax, %cr3
|
D | hibernate_64.c | 183 unsigned long cr3; member 202 rdr->cr3 = restore_cr3; in arch_hibernation_header_save() 218 restore_cr3 = rdr->cr3; in arch_hibernation_header_restore()
|
D | cpu.c | 132 ctxt->cr3 = read_cr3(); in __save_processor_state() 210 write_cr3(ctxt->cr3); in __restore_processor_state()
|
/arch/x86/include/asm/xen/ |
D | interface_32.h | 100 #define xen_cr3_to_pfn(cr3) (((unsigned)(cr3) >> 12) | ((unsigned)(cr3) << 20)) argument
|
D | interface_64.h | 133 #define xen_cr3_to_pfn(cr3) ((unsigned long)(cr3) >> 12) argument
|
/arch/x86/kernel/ |
D | relocate_kernel_64.S | 65 movq %cr3, %rax 92 movq %r9, %cr3 133 movq %r9, %cr3 144 movq %cr3, %rax 145 movq %rax, %cr3 186 movq %rax, %cr3 199 movq %rax, %cr3
|
D | relocate_kernel_32.S | 55 movl %cr3, %eax 88 movl %eax, %cr3 134 movl %eax, %cr3 148 movl %eax, %cr3 187 movl %eax, %cr3 201 movl %eax, %cr3
|
D | process_32.c | 60 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L; in __show_regs() local 92 cr3 = read_cr3(); in __show_regs() 95 cr0, cr2, cr3, cr4); in __show_regs()
|
D | asm-offsets_64.c | 48 ENTRY(cr3); in main()
|
D | process_64.c | 59 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L, fs, gs, shadowgs; in __show_regs() local 94 cr3 = read_cr3(); in __show_regs() 101 printk(KERN_DEFAULT "CR2: %016lx CR3: %016lx CR4: %016lx\n", cr2, cr3, in __show_regs()
|
/arch/x86/platform/olpc/ |
D | xo1-wakeup.S | 24 # Set up %cr3 26 movl %eax, %cr3 50 movl %cr3, %eax 51 movl %eax, %cr3
|
/arch/x86/boot/compressed/ |
D | efi_thunk_64.S | 121 movl %cr3, %eax 122 movl %eax, %cr3 154 movl %cr3, %eax 155 movl %eax, %cr3
|
/arch/x86/kernel/acpi/ |
D | wakeup_32.S | 27 movl %cr3, %eax 28 movl %eax, %cr3
|
/arch/m32r/include/asm/ |
D | assembler.h | 88 mvfc r13, cr3 ; spu 177 mvtc r14, cr3 ; spu 219 mvfc r0, cr3 ; spu 221 mvtc r0, cr3 ; spu
|
/arch/powerpc/boot/ |
D | ppc_asm.h | 20 #define cr3 3 macro
|
/arch/powerpc/kernel/ |
D | idle_book3s.S | 207 cmpwi cr3,r3,PNV_THREAD_SLEEP 208 bge cr3,2f 242 bgt cr3,enter_winkle 425 bgt cr3,. 560 ble cr3,clear_lock
|
D | cpu_setup_6xx.S | 338 cmplwi cr3,r3,0x8001 /* 7455 */ 346 cror 4*cr0+eq,4*cr0+eq,4*cr3+eq 409 cmplwi cr3,r3,0x8001 /* 7455 */ 417 cror 4*cr0+eq,4*cr0+eq,4*cr3+eq
|
/arch/x86/kvm/ |
D | tss.h | 12 u32 cr3; member
|
/arch/x86/lguest/ |
D | boot.c | 552 static void lguest_write_cr3(unsigned long cr3) in lguest_write_cr3() argument 554 lazy_hcall1(LHCALL_NEW_PGTABLE, cr3); in lguest_write_cr3() 555 current_cr3 = cr3; in lguest_write_cr3() 558 if (cr3 != __pa_symbol(swapper_pg_dir) && in lguest_write_cr3() 559 cr3 != __pa_symbol(initial_page_table)) in lguest_write_cr3()
|
/arch/x86/realmode/rm/ |
D | reboot.S | 100 movl %ecx, %cr3
|
/arch/x86/xen/ |
D | mmu.c | 1422 static void __xen_write_cr3(bool kernel, unsigned long cr3) in __xen_write_cr3() argument 1427 trace_xen_mmu_write_cr3(kernel, cr3); in __xen_write_cr3() 1429 if (cr3) in __xen_write_cr3() 1430 mfn = pfn_to_mfn(PFN_DOWN(cr3)); in __xen_write_cr3() 1442 this_cpu_write(xen_cr3, cr3); in __xen_write_cr3() 1446 xen_mc_callback(set_current_cr3, (void *)cr3); in __xen_write_cr3() 1449 static void xen_write_cr3(unsigned long cr3) in xen_write_cr3() argument 1457 this_cpu_write(xen_cr3, cr3); in xen_write_cr3() 1459 __xen_write_cr3(true, cr3); in xen_write_cr3() 1463 pgd_t *user_pgd = xen_get_user_pgd(__va(cr3)); in xen_write_cr3() [all …]
|