mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
[BZ #9893]
* sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix alignement of La_x86_64_regs. Store xmm parameters. Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
2009-03-14 Ulrich Drepper <drepper@redhat.com>
|
2009-03-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #9893]
|
||||||
|
* sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix
|
||||||
|
alignement of La_x86_64_regs. Store xmm parameters.
|
||||||
|
Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
|
||||||
|
|
||||||
[BZ #9913]
|
[BZ #9913]
|
||||||
* string/strverscmp.c (__strverscmp): Fix case of different digits
|
* string/strverscmp.c (__strverscmp): Fix case of different digits
|
||||||
in fractional part of string.
|
in fractional part of string.
|
||||||
|
62
string/tst-svc2.c
Normal file
62
string/tst-svc2.c
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
|
static struct
|
||||||
|
{
|
||||||
|
const char *str1;
|
||||||
|
const char *str2;
|
||||||
|
} tests[] =
|
||||||
|
{
|
||||||
|
{ "B0075022800016.gbp.corp.com", "B007502280067.gbp.corp.com" },
|
||||||
|
{ "B0075022800016.gbp.corp.com", "B007502357019.GBP.CORP.COM" },
|
||||||
|
{ "B007502280067.gbp.corp.com", "B007502357019.GBP.CORP.COM" }
|
||||||
|
};
|
||||||
|
#define ntests (sizeof (tests) / sizeof (tests[0]))
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
compare (const char *str1, const char *str2, int exp)
|
||||||
|
{
|
||||||
|
int c = strverscmp (str1, str2);
|
||||||
|
if (c != 0)
|
||||||
|
c /= abs (c);
|
||||||
|
return c != exp;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_test (void)
|
||||||
|
{
|
||||||
|
int res = 0;
|
||||||
|
for (int i = 0; i < ntests; ++i)
|
||||||
|
{
|
||||||
|
if (compare (tests[i].str1, tests[i].str2, -1))
|
||||||
|
{
|
||||||
|
printf ("FAIL: \"%s\" > \"%s\"\n", tests[i].str1, tests[i].str2);
|
||||||
|
res = 1;
|
||||||
|
}
|
||||||
|
if (compare (tests[i].str2, tests[i].str1, +1))
|
||||||
|
{
|
||||||
|
printf ("FAIL: \"%s\" > \"%s\"\n", tests[i].str2, tests[i].str1);
|
||||||
|
res = 1;
|
||||||
|
}
|
||||||
|
char *copy1 = strdupa (tests[i].str1);
|
||||||
|
if (compare (tests[i].str1, copy1, 0))
|
||||||
|
{
|
||||||
|
printf ("FAIL: \"%s\" != \"%s\"\n", tests[i].str1, copy1);
|
||||||
|
res = 1;
|
||||||
|
}
|
||||||
|
char *copy2 = strdupa (tests[i].str2);
|
||||||
|
if (compare (tests[i].str2, copy2, 0))
|
||||||
|
{
|
||||||
|
printf ("FAIL: \"%s\" != \"%s\"\n", tests[i].str2, copy2);
|
||||||
|
res = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define TEST_FUNCTION do_test ()
|
||||||
|
#include "../test-skeleton.c"
|
@@ -1,5 +1,5 @@
|
|||||||
/* PLT trampolines. x86-64 version.
|
/* PLT trampolines. x86-64 version.
|
||||||
Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
|
Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@@ -61,132 +61,173 @@ _dl_runtime_resolve:
|
|||||||
.type _dl_runtime_profile, @function
|
.type _dl_runtime_profile, @function
|
||||||
.align 16
|
.align 16
|
||||||
cfi_startproc
|
cfi_startproc
|
||||||
|
|
||||||
_dl_runtime_profile:
|
_dl_runtime_profile:
|
||||||
subq $88, %rsp
|
/* The La_x86_64_regs data structure pointed to by the
|
||||||
cfi_adjust_cfa_offset(104) # Incorporate PLT
|
fourth paramater must be 16-byte aligned. This must
|
||||||
movq %rax, (%rsp) # Preserve registers otherwise clobbered.
|
be explicitly enforced. We have the set up a dynamically
|
||||||
movq %rdx, 8(%rsp)
|
sized stack frame. %rbx points to the top half which
|
||||||
movq %r8, 16(%rsp)
|
has a fixed size and preserves the original stack pointer. */
|
||||||
movq %r9, 24(%rsp)
|
|
||||||
movq %rcx, 32(%rsp)
|
subq $32, %rsp # Allocate the local storage.
|
||||||
movq %rsi, 40(%rsp)
|
cfi_adjust_cfa_offset(48) # Incorporate PLT
|
||||||
movq %rdi, 48(%rsp)
|
movq %rbx, (%rsp)
|
||||||
movq %rbp, 56(%rsp) # Information for auditors.
|
cfi_rel_offset(%rbx, 0)
|
||||||
leaq 104(%rsp), %rax
|
|
||||||
movq %rax, 64(%rsp)
|
/* On the stack:
|
||||||
leaq 8(%rsp), %rcx
|
56(%rbx) parameter #1
|
||||||
movq 104(%rsp), %rdx # Load return address if needed
|
48(%rbx) return address
|
||||||
movq 96(%rsp), %rsi # Copy args pushed by PLT in register.
|
|
||||||
movq %rsi,%r11 # Multiply by 24
|
40(%rbx) reloc index
|
||||||
|
32(%rbx) link_map
|
||||||
|
|
||||||
|
24(%rbx) La_x86_64_regs pointer
|
||||||
|
16(%rbx) framesize
|
||||||
|
8(%rbx) rax
|
||||||
|
(%rbx) rbx
|
||||||
|
*/
|
||||||
|
|
||||||
|
movq %rax, 8(%rsp)
|
||||||
|
movq %rsp, %rbx
|
||||||
|
cfi_def_cfa_register(%rbx)
|
||||||
|
|
||||||
|
/* Actively align the La_x86_64_regs structure. */
|
||||||
|
andq $0xfffffffffffffff0, %rsp
|
||||||
|
subq $192, %rsp # sizeof(La_x86_64_regs)
|
||||||
|
movq %rsp, 24(%rbx)
|
||||||
|
|
||||||
|
movq %rdx, (%rsp) # Fill the La_x86_64_regs structure.
|
||||||
|
movq %r8, 8(%rsp)
|
||||||
|
movq %r9, 16(%rsp)
|
||||||
|
movq %rcx, 24(%rsp)
|
||||||
|
movq %rsi, 32(%rsp)
|
||||||
|
movq %rdi, 40(%rsp)
|
||||||
|
movq %rbp, 48(%rsp)
|
||||||
|
leaq 48(%rbx), %rax
|
||||||
|
movq %rax, 56(%rsp)
|
||||||
|
movaps %xmm0, 64(%rsp)
|
||||||
|
movaps %xmm1, 80(%rsp)
|
||||||
|
movaps %xmm2, 96(%rsp)
|
||||||
|
movaps %xmm3, 112(%rsp)
|
||||||
|
movaps %xmm4, 128(%rsp)
|
||||||
|
movaps %xmm5, 144(%rsp)
|
||||||
|
movaps %xmm7, 160(%rsp)
|
||||||
|
|
||||||
|
movq %rsp, %rcx # La_x86_64_regs pointer to %rcx.
|
||||||
|
movq 48(%rbx), %rdx # Load return address if needed.
|
||||||
|
movq 40(%rbx), %rsi # Copy args pushed by PLT in register.
|
||||||
|
movq %rsi,%r11 # Multiply by 24.
|
||||||
addq %r11,%rsi
|
addq %r11,%rsi
|
||||||
addq %r11,%rsi
|
addq %r11,%rsi
|
||||||
shlq $3, %rsi
|
shlq $3, %rsi
|
||||||
movq 88(%rsp), %rdi # %rdi: link_map, %rsi: reloc_offset
|
movq 32(%rbx), %rdi # %rdi: link_map, %rsi: reloc_offset
|
||||||
leaq 72(%rsp), %r8
|
leaq 16(%rbx), %r8
|
||||||
call _dl_profile_fixup # Call resolver.
|
call _dl_profile_fixup # Call resolver.
|
||||||
movq %rax, %r11 # Save return value
|
|
||||||
movq 8(%rsp), %rdx # Get back register content.
|
movq %rax, %r11 # Save return value.
|
||||||
movq 16(%rsp), %r8
|
|
||||||
movq 24(%rsp), %r9
|
movq 8(%rbx), %rax # Get back register content.
|
||||||
movq (%rsp),%rax
|
movq (%rsp), %rdx
|
||||||
movq 72(%rsp), %r10
|
movq 8(%rsp), %r8
|
||||||
|
movq 16(%rsp), %r9
|
||||||
|
movaps 64(%rsp), %xmm0
|
||||||
|
movaps 80(%rsp), %xmm1
|
||||||
|
movaps 96(%rsp), %xmm2
|
||||||
|
movaps 112(%rsp), %xmm3
|
||||||
|
movaps 128(%rsp), %xmm4
|
||||||
|
movaps 144(%rsp), %xmm5
|
||||||
|
movaps 160(%rsp), %xmm7
|
||||||
|
|
||||||
|
movq 16(%rbx), %r10 # Anything in framesize?
|
||||||
testq %r10, %r10
|
testq %r10, %r10
|
||||||
jns 1f
|
jns 1f
|
||||||
movq 32(%rsp), %rcx
|
|
||||||
movq 40(%rsp), %rsi
|
/* There's nothing in the frame size, so there
|
||||||
movq 48(%rsp), %rdi
|
will be no call to the _dl_call_pltexit. */
|
||||||
addq $104,%rsp # Adjust stack
|
|
||||||
cfi_adjust_cfa_offset (-104)
|
movq 24(%rsp), %rcx # Get back registers content.
|
||||||
|
movq 32(%rsp), %rsi
|
||||||
|
movq 40(%rsp), %rdi
|
||||||
|
|
||||||
|
movq %rbx, %rsp
|
||||||
|
movq (%rsp), %rbx
|
||||||
|
cfi_restore(rbx)
|
||||||
|
cfi_def_cfa_register(%rsp)
|
||||||
|
|
||||||
|
addq $48, %rsp # Adjust the stack to the return value
|
||||||
|
# (eats the reloc index and link_map)
|
||||||
|
cfi_adjust_cfa_offset(-48)
|
||||||
jmp *%r11 # Jump to function address.
|
jmp *%r11 # Jump to function address.
|
||||||
|
|
||||||
/*
|
1:
|
||||||
+104 return address
|
cfi_adjust_cfa_offset(48)
|
||||||
+96 PLT2
|
cfi_rel_offset(%rbx, 0)
|
||||||
+88 PLT1
|
cfi_def_cfa_register(%rbx)
|
||||||
+80 free
|
|
||||||
+72 free
|
/* At this point we need to prepare new stack for the function
|
||||||
+64 %rsp
|
which has to be called. We copy the original stack to a
|
||||||
+56 %rbp
|
temporary buffer of the size specified by the 'framesize'
|
||||||
+48 %rdi
|
returned from _dl_profile_fixup */
|
||||||
+40 %rsi
|
|
||||||
+32 %rcx
|
leaq 56(%rbx), %rsi # stack
|
||||||
+24 %r9
|
|
||||||
+16 %r8
|
|
||||||
+8 %rdx
|
|
||||||
%rsp %rax
|
|
||||||
*/
|
|
||||||
cfi_adjust_cfa_offset (104)
|
|
||||||
1: movq %rbx, 72(%rsp)
|
|
||||||
cfi_rel_offset (rbx, 72)
|
|
||||||
leaq 112(%rsp), %rsi
|
|
||||||
movq %rsp, %rbx
|
|
||||||
cfi_def_cfa_register (%rbx)
|
|
||||||
movq %r10, %rcx
|
|
||||||
addq $8, %r10
|
addq $8, %r10
|
||||||
andq $0xfffffffffffffff0, %r10
|
andq $0xfffffffffffffff0, %r10
|
||||||
|
movq %r10, %rcx
|
||||||
subq %r10, %rsp
|
subq %r10, %rsp
|
||||||
movq %rsp, %rdi
|
movq %rsp, %rdi
|
||||||
shrq $3, %rcx
|
shrq $3, %rcx
|
||||||
rep
|
rep
|
||||||
movsq
|
movsq
|
||||||
movq 32(%rbx), %rcx
|
|
||||||
movq 40(%rbx), %rsi
|
movq 24(%rdi), %rcx # Get back register content.
|
||||||
movq 48(%rbx), %rdi
|
movq 32(%rdi), %rsi
|
||||||
|
movq 40(%rdi), %rdi
|
||||||
|
|
||||||
call *%r11
|
call *%r11
|
||||||
movq %rbx, %rsp
|
|
||||||
cfi_def_cfa_register (%rsp)
|
mov 24(%rbx), %rsp # Drop the copied stack content
|
||||||
subq $72, %rsp
|
|
||||||
cfi_adjust_cfa_offset (72)
|
/* Now we have to prepare the La_x86_64_retval structure for the
|
||||||
movq %rsp, %rcx
|
_dl_call_pltexit. The La_x86_64_regs is being pointed by rsp now,
|
||||||
movq %rax, (%rcx)
|
so we just need to allocate the sizeof(La_x86_64_retval) space on
|
||||||
|
the stack, since the alignment has already been taken care of. */
|
||||||
|
|
||||||
|
subq $80, %rsp # sizeof(La_x86_64_retval)
|
||||||
|
movq %rsp, %rcx # La_x86_64_retval argument to %rcx.
|
||||||
|
|
||||||
|
movq %rax, (%rcx) # Fill in the La_x86_64_retval structure.
|
||||||
movq %rdx, 8(%rcx)
|
movq %rdx, 8(%rcx)
|
||||||
/* Even though the stack is correctly aligned to allow using movaps
|
movaps %xmm0, 16(%rcx)
|
||||||
we use movups. Some callers might provide an incorrectly aligned
|
movaps %xmm1, 32(%rcx)
|
||||||
stack and we do not want to have it blow up here. */
|
|
||||||
movups %xmm0, 16(%rcx)
|
|
||||||
movups %xmm1, 32(%rcx)
|
|
||||||
fstpt 48(%rcx)
|
fstpt 48(%rcx)
|
||||||
fstpt 64(%rcx)
|
fstpt 64(%rcx)
|
||||||
/*
|
|
||||||
+176 return address
|
movq 24(%rbx), %rdx # La_x86_64_regs argument to %rdx.
|
||||||
+168 PLT2
|
movq 40(%rbx), %rsi # Copy args pushed by PLT in register.
|
||||||
+160 PLT1
|
movq %rsi,%r11 # Multiply by 24.
|
||||||
+152 free
|
|
||||||
+144 free
|
|
||||||
+136 %rsp
|
|
||||||
+128 %rbp
|
|
||||||
+120 %rdi
|
|
||||||
+112 %rsi
|
|
||||||
+104 %rcx
|
|
||||||
+96 %r9
|
|
||||||
+88 %r8
|
|
||||||
+80 %rdx
|
|
||||||
+64 %st1 result
|
|
||||||
+48 %st result
|
|
||||||
+32 %xmm1 result
|
|
||||||
+16 %xmm0 result
|
|
||||||
+8 %rdx result
|
|
||||||
%rsp %rax result
|
|
||||||
*/
|
|
||||||
leaq 80(%rsp), %rdx
|
|
||||||
movq 144(%rsp), %rbx
|
|
||||||
cfi_restore (rbx)
|
|
||||||
movq 168(%rsp), %rsi # Copy args pushed by PLT in register.
|
|
||||||
movq %rsi,%r11 # Multiply by 24
|
|
||||||
addq %r11,%rsi
|
addq %r11,%rsi
|
||||||
addq %r11,%rsi
|
addq %r11,%rsi
|
||||||
shlq $3, %rsi
|
shlq $3, %rsi
|
||||||
movq 160(%rsp), %rdi # %rdi: link_map, %rsi: reloc_offset
|
movq 32(%rbx), %rdi # %rdi: link_map, %rsi: reloc_offset
|
||||||
call _dl_call_pltexit
|
call _dl_call_pltexit
|
||||||
movq (%rsp), %rax
|
|
||||||
|
movq (%rsp), %rax # Restore return registers.
|
||||||
movq 8(%rsp), %rdx
|
movq 8(%rsp), %rdx
|
||||||
movups 16(%rsp), %xmm0
|
movaps 16(%rsp), %xmm0
|
||||||
movups 32(%rsp), %xmm1
|
movaps 32(%rsp), %xmm1
|
||||||
fldt 64(%rsp)
|
fldt 64(%rsp)
|
||||||
fldt 48(%rsp)
|
fldt 48(%rsp)
|
||||||
addq $176, %rsp
|
|
||||||
cfi_adjust_cfa_offset (-176)
|
movq %rbx, %rsp
|
||||||
|
movq (%rsp), %rbx
|
||||||
|
cfi_restore(rbx)
|
||||||
|
cfi_def_cfa_register(%rsp)
|
||||||
|
|
||||||
|
addq $48, %rsp # Adjust the stack to the return value
|
||||||
|
# (eats the reloc index and link_map)
|
||||||
|
cfi_adjust_cfa_offset(-48)
|
||||||
retq
|
retq
|
||||||
|
|
||||||
cfi_endproc
|
cfi_endproc
|
||||||
.size _dl_runtime_profile, .-_dl_runtime_profile
|
.size _dl_runtime_profile, .-_dl_runtime_profile
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user