OSDN Git Service

Properly align init/fini_arrays for crtend.o
authorDmitriy Ivanov <dimitry@google.com>
Thu, 7 May 2015 01:49:23 +0000 (18:49 -0700)
committerDmitriy Ivanov <dimitry@google.com>
Thu, 7 May 2015 19:56:15 +0000 (12:56 -0700)
  Also remove them from crtend_so.o

Bug: http://b/20532404
Change-Id: I56a0f80c4b3a83cf11d28bbf17791ff4ce10c5d2
(cherry picked from commit e543c7612e97c4c0f11143b8fcd2fff46364f936)

libc/arch-common/bionic/asm_multiarch.h
libc/arch-common/bionic/crtend.S
libc/arch-common/bionic/crtend_so.S

index 85e1b57..91cb8af 100644 (file)
@@ -28,9 +28,9 @@
 
 #ifdef __LP64__
 # define ASM_PTR_SIZE(x) .quad x
-# define ASM_ALIGN(x)
+# define ASM_ALIGN_TO_PTR_SIZE .balign 8
 #else
 # define ASM_PTR_SIZE(x) .long x
-# define ASM_ALIGN(x)    .align x
+# define ASM_ALIGN_TO_PTR_SIZE .balign 4
 #endif
 
index a4cf8de..87d1120 100644 (file)
 #include "asm_multiarch.h"
 
        .section .preinit_array, "aw"
+       ASM_ALIGN_TO_PTR_SIZE
        ASM_PTR_SIZE(0)
 
        .section .init_array, "aw"
+       ASM_ALIGN_TO_PTR_SIZE
        ASM_PTR_SIZE(0)
 
        .section .fini_array, "aw"
+       ASM_ALIGN_TO_PTR_SIZE
        ASM_PTR_SIZE(0)
 
 #if defined(__linux__) && defined(__ELF__)
@@ -42,7 +45,9 @@
 #endif
 #if defined(__i386__) || defined(__x86_64__)
        .section        .eh_frame,"a",@progbits
-       ASM_ALIGN(4)
+#if defined(__i386__)
+       .balign 4
+#endif
        .type   __FRAME_END__, @object
        .size   __FRAME_END__, 4
 __FRAME_END__:
index f745109..e7b8cac 100644 (file)
  * SUCH DAMAGE.
  */
 
-#include "asm_multiarch.h"
-
-#ifndef __arm__
-       .section .init_array, "aw"
-       ASM_PTR_SIZE(0)
-
-       .section .fini_array, "aw"
-       ASM_PTR_SIZE(0)
-#endif
-
 #if defined(__linux__) && defined(__ELF__)
        .section .note.GNU-stack,"",%progbits
 #endif
 #if defined(__i386__) || defined(__x86_64__)
        .section        .eh_frame,"a",@progbits
-       ASM_ALIGN(4)
+#if defined(__i386__)
+       .balign 4
+#endif
        .type   __FRAME_END__, @object
        .size   __FRAME_END__, 4
 __FRAME_END__: