Subversion Repositories HelenOS

Rev

Rev 2071 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2071 Rev 2777
Line 38... Line 38...
38
# Save CPU context to context_t variable
38
# Save CPU context to context_t variable
39
# pointed by the 1st argument. Returns 1 in EAX.
39
# pointed by the 1st argument. Returns 1 in EAX.
40
#
40
#
41
context_save_arch:
41
context_save_arch:
42
	movq (%rsp), %rdx     # the caller's return %eip
42
	movq (%rsp), %rdx     # the caller's return %eip
-
 
43
 
43
	# In %edi is passed 1st argument
44
	# In %edi is passed 1st argument
44
	movq %rdx, OFFSET_PC(%rdi)
-
 
45
	movq %rsp, OFFSET_SP(%rdi)
-
 
46
	
-
 
47
	movq %rbx, OFFSET_RBX(%rdi)
-
 
48
	movq %rbp, OFFSET_RBP(%rdi)
-
 
49
	movq %r12, OFFSET_R12(%rdi)
-
 
50
	movq %r13, OFFSET_R13(%rdi)
-
 
51
	movq %r14, OFFSET_R14(%rdi)
45
	CONTEXT_SAVE_ARCH_CORE %rdi %rdx 
52
	movq %r15, OFFSET_R15(%rdi)
-
 
53
	
46
	
54
	xorq %rax,%rax		# context_save returns 1
47
	xorq %rax,%rax		# context_save returns 1
55
	incq %rax
48
	incq %rax
56
	ret
49
	ret
57
 
50
 
Line 60... Line 53...
60
#
53
#
61
# Restore CPU context from context_t variable
54
# Restore CPU context from context_t variable
62
# pointed by the 1st argument. Returns 0 in EAX.
55
# pointed by the 1st argument. Returns 0 in EAX.
63
#
56
#
64
context_restore_arch:	
57
context_restore_arch:	
65
	movq OFFSET_R15(%rdi), %r15
-
 
66
	movq OFFSET_R14(%rdi), %r14
-
 
67
	movq OFFSET_R13(%rdi), %r13
-
 
68
	movq OFFSET_R12(%rdi), %r12
-
 
69
	movq OFFSET_RBP(%rdi), %rbp
-
 
70
	movq OFFSET_RBX(%rdi), %rbx	
-
 
71
	
58
 
72
	movq OFFSET_SP(%rdi), %rsp   # ctx->sp -> %rsp
59
	CONTEXT_RESTORE_ARCH_CORE %rdi %rdx
73
	
60
 
74
	movq OFFSET_PC(%rdi), %rdx
-
 
75
	movq %rdx,(%rsp)
61
	movq %rdx,(%rsp)
76
 
62
 
77
	xorq %rax,%rax		# context_restore returns 0
63
	xorq %rax,%rax		# context_restore returns 0
78
	ret
64
	ret