mirror of git://sourceware.org/git/glibc.git
Update.
2003-12-06 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/ia64/pt-initfini.c: Use .init_array instead of .init. Patch by David Mosberger.
This commit is contained in:
parent
c2630c3abf
commit
57d20ee7f2
|
@ -1,3 +1,8 @@
|
||||||
|
2003-12-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/pt-initfini.c: Use .init_array
|
||||||
|
instead of .init. Patch by David Mosberger.
|
||||||
|
|
||||||
2003-11-30 Thorsten Kukuk <kukuk@suse.de>
|
2003-11-30 Thorsten Kukuk <kukuk@suse.de>
|
||||||
|
|
||||||
* sysdeps/pthread/configure.in: Remove broken declaration in C
|
* sysdeps/pthread/configure.in: Remove broken declaration in C
|
||||||
|
|
|
@ -36,6 +36,22 @@
|
||||||
* crtn.s puts the corresponding function epilogues
|
* crtn.s puts the corresponding function epilogues
|
||||||
in the .init and .fini sections. */
|
in the .init and .fini sections. */
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
|
#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\
|
__asm__ ("\n\
|
||||||
\n\
|
\n\
|
||||||
#include \"defs.h\"\n\
|
#include \"defs.h\"\n\
|
||||||
|
@ -48,13 +64,16 @@ __asm__ ("\n\
|
||||||
.global _init#\n\
|
.global _init#\n\
|
||||||
.proc _init#\n\
|
.proc _init#\n\
|
||||||
_init:\n\
|
_init:\n\
|
||||||
|
.prologue\n\
|
||||||
|
.save ar.pfs, r34\n\
|
||||||
alloc r34 = ar.pfs, 0, 3, 0, 0\n\
|
alloc r34 = ar.pfs, 0, 3, 0, 0\n\
|
||||||
|
.vframe r32\n\
|
||||||
mov r32 = r12\n\
|
mov r32 = r12\n\
|
||||||
|
.save rp, r33\n\
|
||||||
mov r33 = b0\n\
|
mov r33 = b0\n\
|
||||||
|
.body\n\
|
||||||
adds r12 = -16, r12\n\
|
adds r12 = -16, r12\n\
|
||||||
;;\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\
|
st8 [r12] = gp, -16\n\
|
||||||
br.call.sptk.many b0 = __pthread_initialize_minimal_internal# ;;\n\
|
br.call.sptk.many b0 = __pthread_initialize_minimal_internal# ;;\n\
|
||||||
;;\n\
|
;;\n\
|
||||||
|
@ -62,7 +81,6 @@ _init:\n\
|
||||||
;;\n\
|
;;\n\
|
||||||
ld8 gp = [r12]\n\
|
ld8 gp = [r12]\n\
|
||||||
;;\n\
|
;;\n\
|
||||||
.align 16\n\
|
|
||||||
.endp _init#\n\
|
.endp _init#\n\
|
||||||
\n\
|
\n\
|
||||||
/*@_init_PROLOG_ENDS*/\n\
|
/*@_init_PROLOG_ENDS*/\n\
|
||||||
|
@ -83,12 +101,16 @@ _init:\n\
|
||||||
.global _fini#\n\
|
.global _fini#\n\
|
||||||
.proc _fini#\n\
|
.proc _fini#\n\
|
||||||
_fini:\n\
|
_fini:\n\
|
||||||
|
.prologue\n\
|
||||||
|
.save ar.pfs, r34\n\
|
||||||
alloc r34 = ar.pfs, 0, 3, 0, 0\n\
|
alloc r34 = ar.pfs, 0, 3, 0, 0\n\
|
||||||
|
.vframe r32\n\
|
||||||
mov r32 = r12\n\
|
mov r32 = r12\n\
|
||||||
|
.save rp, r33\n\
|
||||||
mov r33 = b0\n\
|
mov r33 = b0\n\
|
||||||
|
.body\n\
|
||||||
adds r12 = -16, r12\n\
|
adds r12 = -16, r12\n\
|
||||||
;;\n\
|
;;\n\
|
||||||
.align 16\n\
|
|
||||||
.endp _fini#\n\
|
.endp _fini#\n\
|
||||||
\n\
|
\n\
|
||||||
/*@_fini_PROLOG_ENDS*/\n\
|
/*@_fini_PROLOG_ENDS*/\n\
|
||||||
|
@ -106,3 +128,5 @@ _fini:\n\
|
||||||
/*@TRAILER_BEGINS*/\n\
|
/*@TRAILER_BEGINS*/\n\
|
||||||
.weak __gmon_start__#\n\
|
.weak __gmon_start__#\n\
|
||||||
");
|
");
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue