diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-09-06 21:53:03 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-09-06 21:53:03 -0400 |
commit | ceaa0c5dc3f86d3d3126abdd592a3c4fdc457255 (patch) | |
tree | d45fed46e986e9ab480c266b4e68c39e818f1e1c /sysdeps/i386 | |
parent | a77d3c17dc6517636c1cf6ab9c6bb8c257772354 (diff) | |
download | glibc-ceaa0c5dc3f86d3d3126abdd592a3c4fdc457255.tar glibc-ceaa0c5dc3f86d3d3126abdd592a3c4fdc457255.tar.gz glibc-ceaa0c5dc3f86d3d3126abdd592a3c4fdc457255.tar.bz2 glibc-ceaa0c5dc3f86d3d3126abdd592a3c4fdc457255.zip |
Move Atom-optimized code out of the way and together
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S | 2 | ||||
-rw-r--r-- | sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S | 4 | ||||
-rw-r--r-- | sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S | 2 | ||||
-rw-r--r-- | sysdeps/i386/sysdep.h | 4 |
4 files changed, 7 insertions, 5 deletions
diff --git a/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S index 5a19ba26bc..4797bc3ba7 100644 --- a/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S @@ -40,7 +40,7 @@ # define STR1 PARMS # define STR2 STR1+4 - .text + atom_text_section ENTRY (__strchr_sse2_bsf) ENTRANCE diff --git a/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S index 0dc651f017..715fa6b6f0 100644 --- a/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S @@ -1,5 +1,5 @@ /* strlen with SSE2 and BSF - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010, 2011 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. @@ -39,7 +39,7 @@ #define RETURN POP (%edi); POP (%esi); ret; \ cfi_restore_state; cfi_remember_state - .text + atom_text_section ENTRY ( __strlen_sse2_bsf) ENTRANCE mov STR(%esp), %edi diff --git a/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S index f40dfdc026..8ec524d895 100644 --- a/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S @@ -37,7 +37,7 @@ # define STR1 PARMS # define STR2 STR1+4 - .text + atom_text_section ENTRY (__strrchr_sse2_bsf) mov STR1(%esp), %ecx diff --git a/sysdeps/i386/sysdep.h b/sysdeps/i386/sysdep.h index efdc82dde7..a8a9e571bf 100644 --- a/sysdeps/i386/sysdep.h +++ b/sysdeps/i386/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for i386. - Copyright (C) 1991-93,95,96,98,2002,2003,2005,2006 + Copyright (C) 1991-93,95,96,98,2002,2003,2005,2006,2011 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -167,4 +167,6 @@ __i686.get_pc_thunk.reg: \ #endif #endif +#define atom_text_section .section ".text.atom", "ax" + #endif /* __ASSEMBLER__ */ |