xv6-cs450/swtch.S

27 lines
446 B
ArmAsm
Raw Normal View History

2008-10-15 07:14:10 +02:00
# void swtch(struct context **old, struct context **new);
2007-08-28 14:48:33 +02:00
#
# Save current register context in old
# and then load register context from new.
.globl swtch
swtch:
movl 4(%esp), %eax
2008-10-15 07:14:10 +02:00
movl 8(%esp), %edx
2007-08-28 14:48:33 +02:00
2008-10-15 07:14:10 +02:00
# Save old callee-save registers
pushl %ebp
pushl %ebx
pushl %esi
pushl %edi
2007-08-28 14:48:33 +02:00
2008-10-15 07:14:10 +02:00
# Switch stacks
movl %esp, (%eax)
movl (%edx), %esp
2007-08-28 14:48:33 +02:00
2008-10-15 07:14:10 +02:00
# Load new callee-save registers
popl %edi
popl %esi
popl %ebx
popl %ebp
2007-08-28 14:48:33 +02:00
ret