Home
last modified time | relevance | path

Searched refs:rax (Results 1 – 9 of 9) sorted by relevance

/DragonOS-0.1.8/kernel/src/exception/
Dentry.S48 popq %rax // 不允许直接pop到ds
49 movq %rax, %ds
51 popq %rax
52 movq %rax, %es
54 popq %rax
79 pushq %rax
80 movq %es, %rax
81 pushq %rax
82 movq %ds, %rax
83 pushq %rax
[all …]
Dtrap.c223 kerror("regs->rax = %#018lx\n", regs->rax); in do_page_fault()
/DragonOS-0.1.8/kernel/src/
Dhead.S217 movq switch_to_start64(%rip), %rax
219 pushq %rax
257 bt $8, %rax
305 movq $__PML4E, %rax //设置页目录基地址
307 movq %rax, %cr3
315 movq $__APU_START_CR3, %rax
316 movq 0(%rax), %rax
317 movq %rax, %cr3
322 movq switch_seg(%rip), %rax
326 pushq %rax
[all …]
/DragonOS-0.1.8/kernel/src/process/
Dproc.S25 popq %rax
26 movq %rax, %ds
27 popq %rax
28 movq %rax, %es
29 popq %rax
35 movq %rax, %rdi
Dptrace.h23 unsigned long rax; member
Dfork.c273 child_regs->rax = 0; in process_copy_thread()
/DragonOS-0.1.8/kernel/src/arch/x86_64/
Dsyscall.rs32 $regs.rax = ret as u64;
39 let syscall_num = regs.rax as usize; in syscall_handler()
255 regs.rax = 1; in tmp_rs_execve()
/DragonOS-0.1.8/docs/community/ChangeLog/V0.1.x/
DV0.1.3.md319 bugfix:修复切换进程的宏的汇编代码的损坏部分,未声明rax寄存器,从而导致的编译器未定义行为问题。
/DragonOS-0.1.8/kernel/src/ipc/
Dsignal.rs895 return regs.rax; in sys_rt_sigreturn()