- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* step1:复制两个变量到寄存器: [prev] a (prev) [next] d (next) 即: eax == prev_A 或 eax ==%p(%ebp_A) edx == next_A 或 edx ==%n(%ebp_A) 0 4 8 12 -4 Address 0x124 0x120 0x11c 0x118 0x114 0x110 0x10c 0x108 0x104 0x100 %eax %edx %ecx %ebx %esi %edi %esp %ebp 进程A的内核栈空间 prev_A 内存空间 寄存器组 next_ip %ebp %esp %ebp A_ebp next_A prev_A next_A next_A prev_A %flags A_flag step2:保存进程A的ebp和eflags pushfl pushl %ebp %ebp 0 4 8 12 -4 进程A的内核栈空间 0x124 0x120 0x11c 0x118 0x114 0x110 0x10c 0x108 0x104 0x100 %eax %edx %ecx %ebx %esi %edi %esp %ebp prev_A next_A A_ebp %esp 内存空间 寄存器组 next_ip %ebp A_ebp A_flag A_ebp %flags A_flag %flags A_flag A_flag step3:保存当前esp到A进程内核描述符中: movl %%esp,%[prev_sp]\n\t /* save ESP */ 它可以表示成: prev_A-thread.sp == esp_A 在调用switch_to时,prev是指向A进程自己的进程描述符的。 ebp %ebp 0 4 8 12 eflags -4 进程A的内核栈空间 0x124 0x120 0x11c 0x118 0x114 0x110 0x10c 0x108 0x104 0x100 %eax %edx %ecx %ebx %esi %edi %esp %ebp prev_A next_A A_ebp %esp Esp_A 内存空间 寄存器组 next_ip %flags A_flag %eax %edx %ecx %ebx %esi %edi %esp %ebp prev_A next_A A_ebp Esp_A 内存空间 寄存器组 next_ip ebp %ebp 0 4 8 12 eflags -4 …… 进程A的内核栈空间 0x208 0x204 0x200 0x114 0x110 0x10c 0x108 0x104 0x100 %esp 0x20c 进程B的内核栈空间 step4:从next(进程B)的描述符中取出之前从B切换出去时保存的esp_B。 movl %[next_sp],%%esp\n\t /* restore ESP */ 它可以表示成:esp_B == next_A-thread.sp %flags A_flag step5:把标号为1的指令地址保存到A进程描述符的ip域: movl $1f,%[prev_ip]\n\t /* save EIP */ 它可以表示成:prev_A-thread.ip == %1f ebp %ebp 0 4 8 12 eflags -4 …… 进程A的内核栈空间 0x208 0x204 0x200 0x114 0x110 0x10c 0x108 0x104 0x100 %esp 0x20c 进程B的内核栈空间 %eax %edx %ecx %ebx %esi %edi %esp %ebp prev_A next_A A_ebp Esp_A 内存空间 寄存器组 Prev_A_ip next_ip $1f %flags A_flag step6:将返回地址保存到堆栈,然后调用__switch_to()函数,__switch_to()函数完成硬件上下文切换。 pushl %[next_ip]\n\t /* restore EIP */ 根据esp的位置,压到了B的堆栈里面 jmp __switch_to\n /* regparm call */ ebp %ebp 0 4 8 12 eflags -4 …… 进程A的内核栈空间 0
文档评论(0)