From 57d20ee7f27850f2c14e7eeb1e64807e6431d469 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 7 Dec 2003 01:33:01 +0000 Subject: Update. 2003-12-06 Ulrich Drepper * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: Use .init_array instead of .init. Patch by David Mosberger. --- nptl/ChangeLog | 5 ++++ nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c | 32 +++++++++++++++++++++---- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 551878fd1e..4c3bc0c5c7 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2003-12-06 Ulrich Drepper + + * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: Use .init_array + instead of .init. Patch by David Mosberger. + 2003-11-30 Thorsten Kukuk * sysdeps/pthread/configure.in: Remove broken declaration in C diff --git a/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c b/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c index 6155183be3..a048839fb7 100644 --- a/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c +++ b/nptl/sysdeps/unix/sysv/linux/ia64/pt-initfini.c @@ -36,6 +36,22 @@ * crtn.s puts the corresponding function epilogues in the .init and .fini sections. */ +#include + +#ifdef HAVE_INITFINI_ARRAY + +__asm__ ("\n\ +#include \"defs.h\"\n\ +\n\ +/*@HEADER_ENDS*/\n\ +\n\ +/*@_init_PROLOG_BEGINS*/\n\ + .xdata8 \".init_array\",@fptr(__pthread_initialize_minimal_internal)\n\ +/*@_init_PROLOG_ENDS*/\n\ +"); + +#else + __asm__ ("\n\ \n\ #include \"defs.h\"\n\ @@ -48,13 +64,16 @@ __asm__ ("\n\ .global _init#\n\ .proc _init#\n\ _init:\n\ + .prologue\n\ + .save ar.pfs, r34\n\ alloc r34 = ar.pfs, 0, 3, 0, 0\n\ + .vframe r32\n\ mov r32 = r12\n\ + .save rp, r33\n\ mov r33 = b0\n\ + .body\n\ adds r12 = -16, r12\n\ ;;\n\ -/* we could use r35 to save gp, but we use the stack since that's what\n\ - * all the other init routines will do --davidm 00/04/05 */\n\ st8 [r12] = gp, -16\n\ br.call.sptk.many b0 = __pthread_initialize_minimal_internal# ;;\n\ ;;\n\ @@ -62,7 +81,6 @@ _init:\n\ ;;\n\ ld8 gp = [r12]\n\ ;;\n\ - .align 16\n\ .endp _init#\n\ \n\ /*@_init_PROLOG_ENDS*/\n\ @@ -83,12 +101,16 @@ _init:\n\ .global _fini#\n\ .proc _fini#\n\ _fini:\n\ + .prologue\n\ + .save ar.pfs, r34\n\ alloc r34 = ar.pfs, 0, 3, 0, 0\n\ + .vframe r32\n\ mov r32 = r12\n\ + .save rp, r33\n\ mov r33 = b0\n\ + .body\n\ adds r12 = -16, r12\n\ ;;\n\ - .align 16\n\ .endp _fini#\n\ \n\ /*@_fini_PROLOG_ENDS*/\n\ @@ -106,3 +128,5 @@ _fini:\n\ /*@TRAILER_BEGINS*/\n\ .weak __gmon_start__#\n\ "); + +#endif -- cgit 1.4.1