《操作系统》的实验代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.2 KiB

12 years ago
12 years ago
12 years ago
  1. .text
  2. .globl switch_to
  3. switch_to: # switch_to(from, to)
  4. # save from's registers
  5. movl 4(%esp), %eax # eax points to from
  6. popl 0(%eax) # save eip !popl
  7. movl %esp, 4(%eax) # save esp::context of from
  8. movl %ebx, 8(%eax) # save ebx::context of from
  9. movl %ecx, 12(%eax) # save ecx::context of from
  10. movl %edx, 16(%eax) # save edx::context of from
  11. movl %esi, 20(%eax) # save esi::context of from
  12. movl %edi, 24(%eax) # save edi::context of from
  13. movl %ebp, 28(%eax) # save ebp::context of from
  14. # restore to's registers
  15. movl 4(%esp), %eax # not 8(%esp): popped return address already
  16. # eax now points to to
  17. movl 28(%eax), %ebp # restore ebp::context of to
  18. movl 24(%eax), %edi # restore edi::context of to
  19. movl 20(%eax), %esi # restore esi::context of to
  20. movl 16(%eax), %edx # restore edx::context of to
  21. movl 12(%eax), %ecx # restore ecx::context of to
  22. movl 8(%eax), %ebx # restore ebx::context of to
  23. movl 4(%eax), %esp # restore esp::context of to
  24. pushl 0(%eax) # push eip
  25. ret