hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/arch/x86/math-emu/wm_shrx.S
....@@ -33,7 +33,7 @@
3333 | Results returned in the 64 bit arg and eax. |
3434 +---------------------------------------------------------------------------*/
3535
36
-ENTRY(FPU_shrx)
36
+SYM_FUNC_START(FPU_shrx)
3737 push %ebp
3838 movl %esp,%ebp
3939 pushl %esi
....@@ -55,7 +55,7 @@
5555 popl %ebx
5656 popl %esi
5757 leave
58
- ret
58
+ RET
5959
6060 L_more_than_31:
6161 cmpl $64,%ecx
....@@ -70,7 +70,7 @@
7070 movl $0,4(%esi)
7171 popl %esi
7272 leave
73
- ret
73
+ RET
7474
7575 L_more_than_63:
7676 cmpl $96,%ecx
....@@ -84,7 +84,7 @@
8484 movl %edx,4(%esi)
8585 popl %esi
8686 leave
87
- ret
87
+ RET
8888
8989 L_more_than_95:
9090 xorl %eax,%eax
....@@ -92,8 +92,8 @@
9292 movl %eax,4(%esi)
9393 popl %esi
9494 leave
95
- ret
96
-ENDPROC(FPU_shrx)
95
+ RET
96
+SYM_FUNC_END(FPU_shrx)
9797
9898
9999 /*---------------------------------------------------------------------------+
....@@ -112,7 +112,7 @@
112112 | part which has been shifted out of the arg. |
113113 | Results returned in the 64 bit arg and eax. |
114114 +---------------------------------------------------------------------------*/
115
-ENTRY(FPU_shrxs)
115
+SYM_FUNC_START(FPU_shrxs)
116116 push %ebp
117117 movl %esp,%ebp
118118 pushl %esi
....@@ -146,7 +146,7 @@
146146 popl %ebx
147147 popl %esi
148148 leave
149
- ret
149
+ RET
150150
151151 /* Shift by [0..31] bits */
152152 Ls_less_than_32:
....@@ -163,7 +163,7 @@
163163 popl %ebx
164164 popl %esi
165165 leave
166
- ret
166
+ RET
167167
168168 /* Shift by [64..95] bits */
169169 Ls_more_than_63:
....@@ -189,7 +189,7 @@
189189 popl %ebx
190190 popl %esi
191191 leave
192
- ret
192
+ RET
193193
194194 Ls_more_than_95:
195195 /* Shift by [96..inf) bits */
....@@ -203,5 +203,5 @@
203203 popl %ebx
204204 popl %esi
205205 leave
206
- ret
207
-ENDPROC(FPU_shrxs)
206
+ RET
207
+SYM_FUNC_END(FPU_shrxs)