Blame view

arch/x86/include/asm/calling.h 5.07 KB
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
1
  /*
063f8913a   Ingo Molnar   x86: document 64-...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  
   x86 function call convention, 64-bit:
   -------------------------------------
    arguments           |  callee-saved      | extra caller-saved | return
   [callee-clobbered]   |                    | [callee-clobbered] |
   ---------------------------------------------------------------------------
   rdi rsi rdx rcx r8-9 | rbx rbp [*] r12-15 | r10-11             | rax, rdx [**]
  
   ( rsp is obviously invariant across normal function calls. (gcc can 'merge'
     functions when it sees tail-call optimization possibilities) rflags is
     clobbered. Leftover arguments are passed over the stack frame.)
  
   [*]  In the frame-pointers case rbp is fixed to the stack frame.
  
   [**] for struct return values wider than 64 bits the return convention is a
        bit more complex: up to 128 bits width we return small structures
        straight in rax, rdx. For structures larger than that (3 words or
        larger) the caller puts a pointer to an on-stack return struct
        [allocated in the caller's stack frame] into the first argument - i.e.
        into rdi. All other arguments shift up by one in this case.
        Fortunately this case is rare in the kernel.
  
  For 32-bit we have the following conventions - kernel is built with
  -mregparm=3 and -freg-struct-return:
  
   x86 function calling convention, 32-bit:
   ----------------------------------------
    arguments         | callee-saved        | extra caller-saved | return
   [callee-clobbered] |                     | [callee-clobbered] |
   -------------------------------------------------------------------------
   eax edx ecx        | ebx edi esi ebp [*] | <none>             | eax, edx [**]
  
   ( here too esp is obviously invariant across normal function calls. eflags
     is clobbered. Leftover arguments are passed over the stack frame. )
  
   [*]  In the frame-pointers case ebp is fixed to the stack frame.
  
   [**] We build with -freg-struct-return, which on 32-bit means similar
        semantics as on 64-bit: edx can be used for a second return value
        (i.e. covering integer and structure sizes up to 64 bits) - after that
        it gets more complex and more expensive: 3-word or larger struct returns
        get done in the caller's frame and the pointer to the return struct goes
        into regparm0, i.e. eax - the other arguments shift up and the
        function's register parameters degenerate to regparm=2 in essence.
  
  */
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
48
  #include "dwarf2.h"
063f8913a   Ingo Molnar   x86: document 64-...
49
50
  
  /*
3234282f3   Jan Beulich   x86, asm: Fix CFI...
51
52
53
54
   * 64-bit system call stack frame layout defines and helpers, for
   * assembly code (note that the seemingly unnecessary parentheses
   * are to prevent cpp from inserting spaces in expressions that get
   * passed to macros):
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
55
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
56

3234282f3   Jan Beulich   x86, asm: Fix CFI...
57
58
59
60
61
62
  #define R15		  (0)
  #define R14		  (8)
  #define R13		 (16)
  #define R12		 (24)
  #define RBP		 (32)
  #define RBX		 (40)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63

063f8913a   Ingo Molnar   x86: document 64-...
64
  /* arguments: interrupts/non tracing syscalls only save up to here: */
3234282f3   Jan Beulich   x86, asm: Fix CFI...
65
66
67
68
69
70
71
72
73
74
  #define R11		 (48)
  #define R10		 (56)
  #define R9		 (64)
  #define R8		 (72)
  #define RAX		 (80)
  #define RCX		 (88)
  #define RDX		 (96)
  #define RSI		(104)
  #define RDI		(112)
  #define ORIG_RAX	(120)       /* + error_code */
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
75
  /* end of arguments */
063f8913a   Ingo Molnar   x86: document 64-...
76
  /* cpu exception frame or undefined in case of fast syscall: */
3234282f3   Jan Beulich   x86, asm: Fix CFI...
77
78
79
80
81
  #define RIP		(128)
  #define CS		(136)
  #define EFLAGS		(144)
  #define RSP		(152)
  #define SS		(160)
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
82
83
84
  
  #define ARGOFFSET	R11
  #define SWFRAME		ORIG_RAX
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85

cac0e0a78   Borislav Petkov   x86, asm: Flip SA...
86
  	.macro SAVE_ARGS addskip=0, save_rcx=1, save_r891011=1
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
87
  	subq  $9*8+\addskip, %rsp
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
  	CFI_ADJUST_CFA_OFFSET	9*8+\addskip
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
89
90
91
  	movq_cfi rdi, 8*8
  	movq_cfi rsi, 7*8
  	movq_cfi rdx, 6*8
cac0e0a78   Borislav Petkov   x86, asm: Flip SA...
92
  	.if \save_rcx
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
93
  	movq_cfi rcx, 5*8
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
  	.endif
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
95
96
  
  	movq_cfi rax, 4*8
cac0e0a78   Borislav Petkov   x86, asm: Flip SA...
97
  	.if \save_r891011
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
98
99
100
101
  	movq_cfi r8,  3*8
  	movq_cfi r9,  2*8
  	movq_cfi r10, 1*8
  	movq_cfi r11, 0*8
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
  	.endif
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
103

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
  	.endm
3234282f3   Jan Beulich   x86, asm: Fix CFI...
105
  #define ARG_SKIP	(9*8)
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
106

838feb475   Borislav Petkov   x86, asm: Flip RE...
107
108
109
  	.macro RESTORE_ARGS rstor_rax=1, addskip=0, rstor_rcx=1, rstor_r11=1, \
  			    rstor_r8910=1, rstor_rdx=1
  	.if \rstor_r11
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
110
  	movq_cfi_restore 0*8, r11
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
111
  	.endif
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
112

838feb475   Borislav Petkov   x86, asm: Flip RE...
113
  	.if \rstor_r8910
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
114
115
116
  	movq_cfi_restore 1*8, r10
  	movq_cfi_restore 2*8, r9
  	movq_cfi_restore 3*8, r8
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
117
  	.endif
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
118

838feb475   Borislav Petkov   x86, asm: Flip RE...
119
  	.if \rstor_rax
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
120
  	movq_cfi_restore 4*8, rax
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
121
  	.endif
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
122

838feb475   Borislav Petkov   x86, asm: Flip RE...
123
  	.if \rstor_rcx
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
124
  	movq_cfi_restore 5*8, rcx
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
125
  	.endif
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
126

838feb475   Borislav Petkov   x86, asm: Flip RE...
127
  	.if \rstor_rdx
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
128
  	movq_cfi_restore 6*8, rdx
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
129
  	.endif
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
130
131
132
  
  	movq_cfi_restore 7*8, rsi
  	movq_cfi_restore 8*8, rdi
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
  	.if ARG_SKIP+\addskip > 0
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
134
  	addq $ARG_SKIP+\addskip, %rsp
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
135
136
  	CFI_ADJUST_CFA_OFFSET	-(ARG_SKIP+\addskip)
  	.endif
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
137
  	.endm
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
138

d4d671501   Roland McGrath   x86 ptrace: unify...
139
  	.macro LOAD_ARGS offset, skiprax=0
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
140
141
142
143
144
145
146
147
  	movq \offset(%rsp),    %r11
  	movq \offset+8(%rsp),  %r10
  	movq \offset+16(%rsp), %r9
  	movq \offset+24(%rsp), %r8
  	movq \offset+40(%rsp), %rcx
  	movq \offset+48(%rsp), %rdx
  	movq \offset+56(%rsp), %rsi
  	movq \offset+64(%rsp), %rdi
d4d671501   Roland McGrath   x86 ptrace: unify...
148
149
  	.if \skiprax
  	.else
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
150
  	movq \offset+72(%rsp), %rax
d4d671501   Roland McGrath   x86 ptrace: unify...
151
  	.endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
152
  	.endm
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
153

3234282f3   Jan Beulich   x86, asm: Fix CFI...
154
  #define REST_SKIP	(6*8)
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
155

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
156
  	.macro SAVE_REST
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
157
  	subq $REST_SKIP, %rsp
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158
  	CFI_ADJUST_CFA_OFFSET	REST_SKIP
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
159
160
161
162
163
164
  	movq_cfi rbx, 5*8
  	movq_cfi rbp, 4*8
  	movq_cfi r12, 3*8
  	movq_cfi r13, 2*8
  	movq_cfi r14, 1*8
  	movq_cfi r15, 0*8
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
165
  	.endm
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
166
167
  
  	.macro RESTORE_REST
a268fcfaa   Borislav Petkov   x86, asm: Thin do...
168
169
170
171
172
173
  	movq_cfi_restore 0*8, r15
  	movq_cfi_restore 1*8, r14
  	movq_cfi_restore 2*8, r13
  	movq_cfi_restore 3*8, r12
  	movq_cfi_restore 4*8, rbp
  	movq_cfi_restore 5*8, rbx
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
174
  	addq $REST_SKIP, %rsp
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
175
176
  	CFI_ADJUST_CFA_OFFSET	-(REST_SKIP)
  	.endm
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
177

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
178
179
180
181
  	.macro SAVE_ALL
  	SAVE_ARGS
  	SAVE_REST
  	.endm
0c2bd5a5e   Ingo Molnar   x86: clean up inc...
182

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
183
184
  	.macro RESTORE_ALL addskip=0
  	RESTORE_REST
838feb475   Borislav Petkov   x86, asm: Flip RE...
185
  	RESTORE_ARGS 1, \addskip
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
186
187
188
189
190
  	.endm
  
  	.macro icebp
  	.byte 0xf1
  	.endm