OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:new_cr3
(Results
1 - 3
of
3
) sorted by null
/external/qemu/target-i386/
helper.c
911
void cpu_x86_update_cr3(CPUX86State *env, target_ulong
new_cr3
)
913
env->cr[3] =
new_cr3
;
916
printf("CR3 update: CR3=" TARGET_FMT_lx "\n",
new_cr3
);
[
all
...]
cpu.h
830
void cpu_x86_update_cr3(CPUX86State *env, target_ulong
new_cr3
);
op_helper.c
283
uint32_t new_eflags, new_eip,
new_cr3
, new_ldt, new_trap;
local
329
new_cr3
= ldl_kernel(tss_base + 0x1c);
340
new_cr3
= 0;
435
cpu_x86_update_cr3(env,
new_cr3
);
[
all
...]
Completed in 830 milliseconds