mirror of git://sourceware.org/git/glibc.git
x86/fpu: Reformat svml_{s|d}_wrapper_impl.h
Just reformat with the style convention used in other x86 assembler files. This doesn't change libm.so or libmvec.so.
This commit is contained in:
parent
95177b78ff
commit
d371be4b11
|
|
@ -19,7 +19,7 @@
|
|||
/* SSE2 ISA version as wrapper to scalar. */
|
||||
.macro WRAPPER_IMPL_SSE2 callee
|
||||
subq $40, %rsp
|
||||
cfi_adjust_cfa_offset(40)
|
||||
cfi_adjust_cfa_offset (40)
|
||||
movaps %xmm0, (%rsp)
|
||||
call JUMPTARGET(\callee)
|
||||
movsd %xmm0, 16(%rsp)
|
||||
|
|
@ -30,14 +30,14 @@
|
|||
unpcklpd %xmm0, %xmm1
|
||||
movaps %xmm1, %xmm0
|
||||
addq $40, %rsp
|
||||
cfi_adjust_cfa_offset(-40)
|
||||
cfi_adjust_cfa_offset (-40)
|
||||
ret
|
||||
.endm
|
||||
|
||||
/* 2 argument SSE2 ISA version as wrapper to scalar. */
|
||||
.macro WRAPPER_IMPL_SSE2_ff callee
|
||||
subq $56, %rsp
|
||||
cfi_adjust_cfa_offset(56)
|
||||
cfi_adjust_cfa_offset (56)
|
||||
movaps %xmm0, (%rsp)
|
||||
movaps %xmm1, 16(%rsp)
|
||||
call JUMPTARGET(\callee)
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
unpcklpd %xmm0, %xmm1
|
||||
movaps %xmm1, %xmm0
|
||||
addq $56, %rsp
|
||||
cfi_adjust_cfa_offset(-56)
|
||||
cfi_adjust_cfa_offset (-56)
|
||||
ret
|
||||
.endm
|
||||
|
||||
|
|
@ -65,7 +65,7 @@
|
|||
movq %rdi, %rbp
|
||||
movq %rsi, %rbx
|
||||
subq $40, %rsp
|
||||
cfi_adjust_cfa_offset(40)
|
||||
cfi_adjust_cfa_offset (40)
|
||||
leaq 16(%rsp), %rsi
|
||||
leaq 24(%rsp), %rdi
|
||||
movaps %xmm0, (%rsp)
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
movsd 16(%rsp), %xmm0
|
||||
movsd %xmm0, 8(%rbx)
|
||||
addq $40, %rsp
|
||||
cfi_adjust_cfa_offset(-40)
|
||||
cfi_adjust_cfa_offset (-40)
|
||||
popq %rbx
|
||||
cfi_adjust_cfa_offset (-8)
|
||||
cfi_restore (%rbx)
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
/* SSE2 ISA version as wrapper to scalar. */
|
||||
.macro WRAPPER_IMPL_SSE2 callee
|
||||
subq $40, %rsp
|
||||
cfi_adjust_cfa_offset(40)
|
||||
cfi_adjust_cfa_offset (40)
|
||||
movaps %xmm0, (%rsp)
|
||||
call JUMPTARGET(\callee)
|
||||
movss %xmm0, 16(%rsp)
|
||||
|
|
@ -40,14 +40,14 @@
|
|||
unpcklps %xmm2, %xmm3
|
||||
movaps %xmm3, %xmm0
|
||||
addq $40, %rsp
|
||||
cfi_adjust_cfa_offset(-40)
|
||||
cfi_adjust_cfa_offset (-40)
|
||||
ret
|
||||
.endm
|
||||
|
||||
/* 2 argument SSE2 ISA version as wrapper to scalar. */
|
||||
.macro WRAPPER_IMPL_SSE2_ff callee
|
||||
subq $56, %rsp
|
||||
cfi_adjust_cfa_offset(56)
|
||||
cfi_adjust_cfa_offset (56)
|
||||
movaps %xmm0, (%rsp)
|
||||
movaps %xmm1, 16(%rsp)
|
||||
call JUMPTARGET(\callee)
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
unpcklps %xmm2, %xmm3
|
||||
movaps %xmm3, %xmm0
|
||||
addq $56, %rsp
|
||||
cfi_adjust_cfa_offset(-56)
|
||||
cfi_adjust_cfa_offset (-56)
|
||||
ret
|
||||
.endm
|
||||
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
movq %rdi, %rbp
|
||||
movq %rsi, %rbx
|
||||
subq $40, %rsp
|
||||
cfi_adjust_cfa_offset(40)
|
||||
cfi_adjust_cfa_offset (40)
|
||||
leaq 24(%rsp), %rsi
|
||||
leaq 28(%rsp), %rdi
|
||||
movaps %xmm0, (%rsp)
|
||||
|
|
@ -127,7 +127,7 @@
|
|||
movss 24(%rsp), %xmm0
|
||||
movss %xmm0, 12(%rbx)
|
||||
addq $40, %rsp
|
||||
cfi_adjust_cfa_offset(-40)
|
||||
cfi_adjust_cfa_offset (-40)
|
||||
popq %rbx
|
||||
cfi_adjust_cfa_offset (-8)
|
||||
cfi_restore (%rbx)
|
||||
|
|
|
|||
Loading…
Reference in New Issue