2003-06-18 03:38:07 +00:00
|
|
|
/* Save current context.
|
2004-12-22 20:10:10 +00:00
|
|
|
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
2003-06-18 03:38:07 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
2004-12-22 20:10:10 +00:00
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
2003-06-18 03:38:07 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
Update.
2004-01-14 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME]
(_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed symbols.
(_default_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed
symbols.
* sysdeps/powerpc/Makefile: Add rtld-global-offsets.sym to
gen-as-const-headers.
* sysdeps/powerpc/elf/rtld-global-offsets.sym: New file.
* sysdeps/powerpc/sysdep.h: Define v# symbols for vector registers.
Define PPC_FEATURE_* masks for Aux Vector AT_HWCAP.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SWAPCONTEXT_SYSCALL): Define for PPC and 2.6.0 kernels.
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h [!__WORDSIZE == 32]:
Declare mcontext_t inline and include altivec state for 64-bit.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, and swapcontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
(__makecontext): Use parm save area instead of compiler_dw to hold
context pointer.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_swapcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h
(SIGCONTEXT_V_REGS_PTR, SIGCONTEXT_V_RESERVE): Defined.
2004-01-12 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
(__makecontext): Upgrade to align for Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_makecontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)]
(__novec_swapcontext): Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h:
(_UC_VSCR, _UC_VRSAVE): Define.
(_FRAME_BACKCHAIN, _FRAME_LR_SAVE,_FRAME_PARM_SAVE1,_FRAME_PARM_SAVE2,
_FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4): Defined.
2004-01-16 04:50:59 +00:00
|
|
|
#include <rtld-global-offsets.h>
|
2003-09-24 03:22:56 +00:00
|
|
|
#include <shlib-compat.h>
|
2003-06-18 03:38:07 +00:00
|
|
|
|
|
|
|
#define __ASSEMBLY__
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
#include "ucontext_i.h"
|
|
|
|
|
2004-12-22 20:10:10 +00:00
|
|
|
.machine "altivec"
|
|
|
|
ENTRY(__getcontext)
|
|
|
|
stwu r1,-16(r1)
|
|
|
|
/* Insure that the _UC_REGS start on a quadword boundary. */
|
|
|
|
stw r3,_FRAME_PARM_SAVE1(r1)
|
|
|
|
addi r3,r3,_UC_REG_SPACE+12
|
|
|
|
clrrwi r3,r3,4
|
2004-09-02 18:59:24 +00:00
|
|
|
|
2004-12-22 20:10:10 +00:00
|
|
|
/* Save the general purpose registers */
|
|
|
|
stw r0,_UC_GREGS+(PT_R0*4)(r3)
|
|
|
|
mflr r0
|
|
|
|
stw r2,_UC_GREGS+(PT_R2*4)(r3)
|
|
|
|
stw r4,_UC_GREGS+(PT_R4*4)(r3)
|
|
|
|
/* Set the callers LR_SAVE, and the ucontext LR and NIP to the callers
|
|
|
|
return address. */
|
|
|
|
stw r0,_UC_GREGS+(PT_LNK*4)(r3)
|
|
|
|
stw r0,_UC_GREGS+(PT_NIP*4)(r3)
|
|
|
|
stw r0,_FRAME_LR_SAVE+16(r1)
|
|
|
|
stw r5,_UC_GREGS+(PT_R5*4)(r3)
|
|
|
|
stw r6,_UC_GREGS+(PT_R6*4)(r3)
|
|
|
|
stw r7,_UC_GREGS+(PT_R7*4)(r3)
|
|
|
|
stw r8,_UC_GREGS+(PT_R8*4)(r3)
|
|
|
|
stw r9,_UC_GREGS+(PT_R9*4)(r3)
|
|
|
|
stw r10,_UC_GREGS+(PT_R10*4)(r3)
|
|
|
|
stw r11,_UC_GREGS+(PT_R11*4)(r3)
|
|
|
|
stw r12,_UC_GREGS+(PT_R12*4)(r3)
|
|
|
|
stw r13,_UC_GREGS+(PT_R13*4)(r3)
|
|
|
|
stw r14,_UC_GREGS+(PT_R14*4)(r3)
|
|
|
|
stw r15,_UC_GREGS+(PT_R15*4)(r3)
|
|
|
|
stw r16,_UC_GREGS+(PT_R16*4)(r3)
|
|
|
|
stw r17,_UC_GREGS+(PT_R17*4)(r3)
|
|
|
|
stw r18,_UC_GREGS+(PT_R18*4)(r3)
|
|
|
|
stw r19,_UC_GREGS+(PT_R19*4)(r3)
|
|
|
|
stw r20,_UC_GREGS+(PT_R20*4)(r3)
|
|
|
|
stw r21,_UC_GREGS+(PT_R21*4)(r3)
|
|
|
|
stw r22,_UC_GREGS+(PT_R22*4)(r3)
|
|
|
|
stw r23,_UC_GREGS+(PT_R23*4)(r3)
|
|
|
|
stw r24,_UC_GREGS+(PT_R24*4)(r3)
|
|
|
|
stw r25,_UC_GREGS+(PT_R25*4)(r3)
|
|
|
|
stw r26,_UC_GREGS+(PT_R26*4)(r3)
|
|
|
|
stw r27,_UC_GREGS+(PT_R27*4)(r3)
|
|
|
|
stw r28,_UC_GREGS+(PT_R28*4)(r3)
|
|
|
|
stw r29,_UC_GREGS+(PT_R29*4)(r3)
|
|
|
|
stw r30,_UC_GREGS+(PT_R30*4)(r3)
|
|
|
|
stw r31,_UC_GREGS+(PT_R31*4)(r3)
|
|
|
|
/* Save the value of R1. We had to push the stack before we
|
|
|
|
had the address of uc_reg_space. So compute the address of
|
|
|
|
the callers stack pointer and save it as R1. */
|
|
|
|
addi r8,r1,16
|
|
|
|
li r0,0
|
|
|
|
/* Save the count, exception and condition registers. */
|
|
|
|
mfctr r11
|
|
|
|
mfxer r10
|
|
|
|
mfcr r9
|
|
|
|
stw r8,_UC_GREGS+(PT_R1*4)(r3)
|
|
|
|
stw r11,_UC_GREGS+(PT_CTR*4)(r3)
|
|
|
|
stw r10,_UC_GREGS+(PT_XER*4)(r3)
|
|
|
|
stw r9,_UC_GREGS+(PT_CCR*4)(r3)
|
|
|
|
/* Set the return value of getcontext to "success". R3 is the only
|
|
|
|
register whose value is not preserved in the saved context. */
|
|
|
|
stw r0,_UC_GREGS+(PT_R3*4)(r3)
|
Update.
2004-01-14 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME]
(_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed symbols.
(_default_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed
symbols.
* sysdeps/powerpc/Makefile: Add rtld-global-offsets.sym to
gen-as-const-headers.
* sysdeps/powerpc/elf/rtld-global-offsets.sym: New file.
* sysdeps/powerpc/sysdep.h: Define v# symbols for vector registers.
Define PPC_FEATURE_* masks for Aux Vector AT_HWCAP.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SWAPCONTEXT_SYSCALL): Define for PPC and 2.6.0 kernels.
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h [!__WORDSIZE == 32]:
Declare mcontext_t inline and include altivec state for 64-bit.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, and swapcontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
(__makecontext): Use parm save area instead of compiler_dw to hold
context pointer.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_swapcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h
(SIGCONTEXT_V_REGS_PTR, SIGCONTEXT_V_RESERVE): Defined.
2004-01-12 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
(__makecontext): Upgrade to align for Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_makecontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)]
(__novec_swapcontext): Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h:
(_UC_VSCR, _UC_VRSAVE): Define.
(_FRAME_BACKCHAIN, _FRAME_LR_SAVE,_FRAME_PARM_SAVE1,_FRAME_PARM_SAVE2,
_FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4): Defined.
2004-01-16 04:50:59 +00:00
|
|
|
|
2004-12-22 20:10:10 +00:00
|
|
|
/* Zero fill fields that can't be set in user state. */
|
|
|
|
stw r0,_UC_GREGS+(PT_MSR*4)(r3)
|
|
|
|
stw r0,_UC_GREGS+(PT_MQ*4)(r3)
|
|
|
|
|
|
|
|
/* Save the floating-point registers */
|
|
|
|
stfd fp0,_UC_FREGS+(0*8)(r3)
|
|
|
|
stfd fp1,_UC_FREGS+(1*8)(r3)
|
|
|
|
stfd fp2,_UC_FREGS+(2*8)(r3)
|
|
|
|
stfd fp3,_UC_FREGS+(3*8)(r3)
|
|
|
|
stfd fp4,_UC_FREGS+(4*8)(r3)
|
|
|
|
stfd fp5,_UC_FREGS+(5*8)(r3)
|
|
|
|
stfd fp6,_UC_FREGS+(6*8)(r3)
|
|
|
|
stfd fp7,_UC_FREGS+(7*8)(r3)
|
|
|
|
stfd fp8,_UC_FREGS+(8*8)(r3)
|
|
|
|
stfd fp9,_UC_FREGS+(9*8)(r3)
|
|
|
|
stfd fp10,_UC_FREGS+(10*8)(r3)
|
|
|
|
stfd fp11,_UC_FREGS+(11*8)(r3)
|
|
|
|
stfd fp12,_UC_FREGS+(12*8)(r3)
|
|
|
|
stfd fp13,_UC_FREGS+(13*8)(r3)
|
|
|
|
stfd fp14,_UC_FREGS+(14*8)(r3)
|
|
|
|
stfd fp15,_UC_FREGS+(15*8)(r3)
|
|
|
|
stfd fp16,_UC_FREGS+(16*8)(r3)
|
|
|
|
stfd fp17,_UC_FREGS+(17*8)(r3)
|
|
|
|
stfd fp18,_UC_FREGS+(18*8)(r3)
|
|
|
|
stfd fp19,_UC_FREGS+(19*8)(r3)
|
|
|
|
stfd fp20,_UC_FREGS+(20*8)(r3)
|
|
|
|
stfd fp21,_UC_FREGS+(21*8)(r3)
|
|
|
|
stfd fp22,_UC_FREGS+(22*8)(r3)
|
|
|
|
stfd fp23,_UC_FREGS+(23*8)(r3)
|
|
|
|
stfd fp24,_UC_FREGS+(24*8)(r3)
|
|
|
|
stfd fp25,_UC_FREGS+(25*8)(r3)
|
|
|
|
stfd fp26,_UC_FREGS+(26*8)(r3)
|
|
|
|
stfd fp27,_UC_FREGS+(27*8)(r3)
|
|
|
|
stfd fp28,_UC_FREGS+(28*8)(r3)
|
|
|
|
stfd fp29,_UC_FREGS+(29*8)(r3)
|
|
|
|
mffs fp0
|
|
|
|
stfd fp30,_UC_FREGS+(30*8)(r3)
|
|
|
|
stfd fp31,_UC_FREGS+(31*8)(r3)
|
|
|
|
stfd fp0,_UC_FREGS+(32*8)(r3)
|
|
|
|
|
|
|
|
#ifdef PIC
|
|
|
|
mflr r8
|
2005-06-17 23:11:35 +00:00
|
|
|
# ifdef HAVE_ASM_PPC_REL16
|
|
|
|
bcl 20,31,1f
|
|
|
|
1: mflr r7
|
|
|
|
addis r7,r7,_GLOBAL_OFFSET_TABLE_-1b@ha
|
|
|
|
addi r7,r7,_GLOBAL_OFFSET_TABLE_-1b@l
|
|
|
|
# else
|
2004-12-22 20:10:10 +00:00
|
|
|
bl _GLOBAL_OFFSET_TABLE_@local-4
|
|
|
|
mflr r7
|
2005-06-17 23:11:35 +00:00
|
|
|
# endif
|
2004-12-22 20:10:10 +00:00
|
|
|
# ifdef SHARED
|
|
|
|
lwz r7,_rtld_global_ro@got(r7)
|
|
|
|
mtlr r8
|
|
|
|
lwz r7,RTLD_GLOBAL_RO_DL_HWCAP_OFFSET(r7)
|
|
|
|
# else
|
|
|
|
lwz r7,_dl_hwcap@got(r7)
|
|
|
|
mtlr r8
|
|
|
|
lwz r7,0(r7)
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
lis r7,_dl_hwcap@ha
|
|
|
|
lwz r7,_dl_hwcap@l(r7)
|
|
|
|
#endif
|
|
|
|
andis. r7,r7,(PPC_FEATURE_HAS_ALTIVEC >> 16)
|
|
|
|
|
|
|
|
la r10,(_UC_VREGS)(r3)
|
|
|
|
la r9,(_UC_VREGS+16)(r3)
|
|
|
|
|
|
|
|
beq L(no_vec)
|
|
|
|
/* address of the combined VSCR/VSAVE quadword. */
|
|
|
|
la r8,(_UC_VREGS+512)(r3)
|
|
|
|
|
|
|
|
/* Save the vector registers */
|
|
|
|
stvx v0,0,r10
|
|
|
|
stvx v1,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
/* We need to get the Vector Status and Control Register early to avoid
|
|
|
|
store order problems later with the VSAVE register that shares the
|
|
|
|
same quadword. */
|
|
|
|
mfvscr v0
|
|
|
|
|
|
|
|
stvx v2,0,r10
|
|
|
|
stvx v3,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v0,0,r8
|
|
|
|
|
|
|
|
stvx v4,0,r10
|
|
|
|
stvx v5,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v6,0,r10
|
|
|
|
stvx v7,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v8,0,r10
|
|
|
|
stvx v9,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v10,0,r10
|
|
|
|
stvx v11,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v12,0,r10
|
|
|
|
stvx v13,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v14,0,r10
|
|
|
|
stvx v15,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v16,0,r10
|
|
|
|
stvx v17,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v18,0,r10
|
|
|
|
stvx v19,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v20,0,r10
|
|
|
|
stvx v21,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v22,0,r10
|
|
|
|
stvx v23,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v24,0,r10
|
|
|
|
stvx v25,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v26,0,r10
|
|
|
|
stvx v27,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
stvx v28,0,r10
|
|
|
|
stvx v29,0,r9
|
|
|
|
addi r10,r10,32
|
|
|
|
addi r9,r9,32
|
|
|
|
|
|
|
|
mfspr r0,VRSAVE
|
|
|
|
stvx v30,0,r10
|
|
|
|
stvx v31,0,r9
|
|
|
|
|
|
|
|
stw r0,0(r8)
|
|
|
|
|
|
|
|
L(no_vec):
|
|
|
|
/* We need to set up parms and call sigprocmask which will clobber
|
|
|
|
volatile registers. So before the call we need to retrieve the
|
|
|
|
original ucontext ptr (parm1) from stack and store the UC_REGS_PTR
|
|
|
|
(current R3). */
|
|
|
|
lwz r12,_FRAME_PARM_SAVE1(r1)
|
Update.
2004-01-14 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME]
(_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed symbols.
(_default_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed
symbols.
* sysdeps/powerpc/Makefile: Add rtld-global-offsets.sym to
gen-as-const-headers.
* sysdeps/powerpc/elf/rtld-global-offsets.sym: New file.
* sysdeps/powerpc/sysdep.h: Define v# symbols for vector registers.
Define PPC_FEATURE_* masks for Aux Vector AT_HWCAP.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SWAPCONTEXT_SYSCALL): Define for PPC and 2.6.0 kernels.
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h [!__WORDSIZE == 32]:
Declare mcontext_t inline and include altivec state for 64-bit.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, and swapcontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
(__makecontext): Use parm save area instead of compiler_dw to hold
context pointer.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_swapcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h
(SIGCONTEXT_V_REGS_PTR, SIGCONTEXT_V_RESERVE): Defined.
2004-01-12 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
(__makecontext): Upgrade to align for Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_makecontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)]
(__novec_swapcontext): Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h:
(_UC_VSCR, _UC_VRSAVE): Define.
(_FRAME_BACKCHAIN, _FRAME_LR_SAVE,_FRAME_PARM_SAVE1,_FRAME_PARM_SAVE2,
_FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4): Defined.
2004-01-16 04:50:59 +00:00
|
|
|
li r4,0
|
2004-12-22 20:10:10 +00:00
|
|
|
stw r3,_UC_REGS_PTR(r12)
|
|
|
|
addi r5,r12,_UC_SIGMASK
|
|
|
|
li r3,SIG_BLOCK
|
2005-05-21 19:29:13 +00:00
|
|
|
bl __sigprocmask@local
|
2004-12-22 20:10:10 +00:00
|
|
|
|
|
|
|
lwz r0,_FRAME_LR_SAVE+16(r1)
|
|
|
|
addi r1,r1,16
|
|
|
|
mtlr r0
|
Update.
2004-01-14 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME]
(_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed symbols.
(_default_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed
symbols.
* sysdeps/powerpc/Makefile: Add rtld-global-offsets.sym to
gen-as-const-headers.
* sysdeps/powerpc/elf/rtld-global-offsets.sym: New file.
* sysdeps/powerpc/sysdep.h: Define v# symbols for vector registers.
Define PPC_FEATURE_* masks for Aux Vector AT_HWCAP.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SWAPCONTEXT_SYSCALL): Define for PPC and 2.6.0 kernels.
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h [!__WORDSIZE == 32]:
Declare mcontext_t inline and include altivec state for 64-bit.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, and swapcontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
(__makecontext): Use parm save area instead of compiler_dw to hold
context pointer.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_swapcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h
(SIGCONTEXT_V_REGS_PTR, SIGCONTEXT_V_RESERVE): Defined.
2004-01-12 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
(__makecontext): Upgrade to align for Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_makecontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)]
(__novec_swapcontext): Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h:
(_UC_VSCR, _UC_VRSAVE): Define.
(_FRAME_BACKCHAIN, _FRAME_LR_SAVE,_FRAME_PARM_SAVE1,_FRAME_PARM_SAVE2,
_FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4): Defined.
2004-01-16 04:50:59 +00:00
|
|
|
blr
|
2004-03-10 19:28:58 +00:00
|
|
|
END(__getcontext)
|
Update.
2004-01-14 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME]
(_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed symbols.
(_default_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed
symbols.
* sysdeps/powerpc/Makefile: Add rtld-global-offsets.sym to
gen-as-const-headers.
* sysdeps/powerpc/elf/rtld-global-offsets.sym: New file.
* sysdeps/powerpc/sysdep.h: Define v# symbols for vector registers.
Define PPC_FEATURE_* masks for Aux Vector AT_HWCAP.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SWAPCONTEXT_SYSCALL): Define for PPC and 2.6.0 kernels.
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h [!__WORDSIZE == 32]:
Declare mcontext_t inline and include altivec state for 64-bit.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, and swapcontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
(__makecontext): Use parm save area instead of compiler_dw to hold
context pointer.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_swapcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h
(SIGCONTEXT_V_REGS_PTR, SIGCONTEXT_V_RESERVE): Defined.
2004-01-12 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
(__makecontext): Upgrade to align for Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_makecontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)]
(__novec_swapcontext): Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h:
(_UC_VSCR, _UC_VRSAVE): Define.
(_FRAME_BACKCHAIN, _FRAME_LR_SAVE,_FRAME_PARM_SAVE1,_FRAME_PARM_SAVE2,
_FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4): Defined.
2004-01-16 04:50:59 +00:00
|
|
|
|
|
|
|
versioned_symbol (libc, __getcontext, getcontext, GLIBC_2_3_4)
|
|
|
|
|
|
|
|
#if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
|
2004-12-22 20:10:10 +00:00
|
|
|
|
2004-03-10 19:28:58 +00:00
|
|
|
compat_text_section
|
2004-12-22 20:10:10 +00:00
|
|
|
ENTRY(__novec_getcontext)
|
|
|
|
/*
|
|
|
|
* Since we are not attempting to save the altivec registers,
|
|
|
|
* there is no need to get the register storage space
|
|
|
|
* aligned on a 16-byte boundary.
|
|
|
|
*/
|
|
|
|
addi r3,r3,_UC_REG_SPACE
|
|
|
|
stw r3,_UC_REGS_PTR - _UC_REG_SPACE(r3)
|
|
|
|
stw r0,_UC_GREGS+(PT_R0*4)(r3)
|
|
|
|
stw r1,_UC_GREGS+(PT_R1*4)(r3)
|
|
|
|
mflr r0
|
|
|
|
stwu r1,-16(r1)
|
|
|
|
stw r0,20(r1)
|
|
|
|
stw r0,_UC_GREGS+(PT_LNK*4)(r3)
|
|
|
|
stw r0,_UC_GREGS+(PT_NIP*4)(r3)
|
|
|
|
stw r2,_UC_GREGS+(PT_R2*4)(r3)
|
|
|
|
stw r4,_UC_GREGS+(PT_R4*4)(r3)
|
|
|
|
stw r5,_UC_GREGS+(PT_R5*4)(r3)
|
|
|
|
stw r6,_UC_GREGS+(PT_R6*4)(r3)
|
|
|
|
stw r7,_UC_GREGS+(PT_R7*4)(r3)
|
|
|
|
stw r8,_UC_GREGS+(PT_R8*4)(r3)
|
|
|
|
stw r9,_UC_GREGS+(PT_R9*4)(r3)
|
|
|
|
stw r10,_UC_GREGS+(PT_R10*4)(r3)
|
|
|
|
stw r11,_UC_GREGS+(PT_R11*4)(r3)
|
|
|
|
stw r12,_UC_GREGS+(PT_R12*4)(r3)
|
|
|
|
stw r13,_UC_GREGS+(PT_R13*4)(r3)
|
|
|
|
stw r14,_UC_GREGS+(PT_R14*4)(r3)
|
|
|
|
stw r15,_UC_GREGS+(PT_R15*4)(r3)
|
|
|
|
stw r16,_UC_GREGS+(PT_R16*4)(r3)
|
|
|
|
stw r17,_UC_GREGS+(PT_R17*4)(r3)
|
|
|
|
stw r18,_UC_GREGS+(PT_R18*4)(r3)
|
|
|
|
stw r19,_UC_GREGS+(PT_R19*4)(r3)
|
|
|
|
stw r20,_UC_GREGS+(PT_R20*4)(r3)
|
|
|
|
stw r21,_UC_GREGS+(PT_R21*4)(r3)
|
|
|
|
stw r22,_UC_GREGS+(PT_R22*4)(r3)
|
|
|
|
stw r23,_UC_GREGS+(PT_R23*4)(r3)
|
|
|
|
stw r24,_UC_GREGS+(PT_R24*4)(r3)
|
|
|
|
stw r25,_UC_GREGS+(PT_R25*4)(r3)
|
|
|
|
stw r26,_UC_GREGS+(PT_R26*4)(r3)
|
|
|
|
stw r27,_UC_GREGS+(PT_R27*4)(r3)
|
|
|
|
stw r28,_UC_GREGS+(PT_R28*4)(r3)
|
|
|
|
stw r29,_UC_GREGS+(PT_R29*4)(r3)
|
|
|
|
stw r30,_UC_GREGS+(PT_R30*4)(r3)
|
|
|
|
stw r31,_UC_GREGS+(PT_R31*4)(r3)
|
|
|
|
mfctr r0
|
|
|
|
stw r0,_UC_GREGS+(PT_CTR*4)(r3)
|
|
|
|
mfxer r0
|
|
|
|
stw r0,_UC_GREGS+(PT_XER*4)(r3)
|
|
|
|
mfcr r0
|
|
|
|
stw r0,_UC_GREGS+(PT_CCR*4)(r3)
|
|
|
|
|
|
|
|
/* Set the return value of getcontext to "success". R3 is the only
|
|
|
|
register whose value is not preserved in the saved context. */
|
|
|
|
li r0,0
|
|
|
|
stw r0,_UC_GREGS+(PT_R3*4)(r3)
|
2004-03-05 10:29:47 +00:00
|
|
|
|
2004-12-22 20:10:10 +00:00
|
|
|
/* Zero fill fields that can't be set in user state. */
|
|
|
|
stw r0,_UC_GREGS+(PT_MSR*4)(r3)
|
|
|
|
stw r0,_UC_GREGS+(PT_MQ*4)(r3)
|
2003-06-18 03:38:07 +00:00
|
|
|
|
2004-12-22 20:10:10 +00:00
|
|
|
/* Save the floating-point registers */
|
|
|
|
stfd fp0,_UC_FREGS+(0*8)(r3)
|
|
|
|
stfd fp1,_UC_FREGS+(1*8)(r3)
|
|
|
|
stfd fp2,_UC_FREGS+(2*8)(r3)
|
|
|
|
stfd fp3,_UC_FREGS+(3*8)(r3)
|
|
|
|
stfd fp4,_UC_FREGS+(4*8)(r3)
|
|
|
|
stfd fp5,_UC_FREGS+(5*8)(r3)
|
|
|
|
stfd fp6,_UC_FREGS+(6*8)(r3)
|
|
|
|
stfd fp7,_UC_FREGS+(7*8)(r3)
|
|
|
|
stfd fp8,_UC_FREGS+(8*8)(r3)
|
|
|
|
stfd fp9,_UC_FREGS+(9*8)(r3)
|
|
|
|
stfd fp10,_UC_FREGS+(10*8)(r3)
|
|
|
|
stfd fp11,_UC_FREGS+(11*8)(r3)
|
|
|
|
stfd fp12,_UC_FREGS+(12*8)(r3)
|
|
|
|
stfd fp13,_UC_FREGS+(13*8)(r3)
|
|
|
|
stfd fp14,_UC_FREGS+(14*8)(r3)
|
|
|
|
stfd fp15,_UC_FREGS+(15*8)(r3)
|
|
|
|
stfd fp16,_UC_FREGS+(16*8)(r3)
|
|
|
|
stfd fp17,_UC_FREGS+(17*8)(r3)
|
|
|
|
stfd fp18,_UC_FREGS+(18*8)(r3)
|
|
|
|
stfd fp19,_UC_FREGS+(19*8)(r3)
|
|
|
|
stfd fp20,_UC_FREGS+(20*8)(r3)
|
|
|
|
stfd fp21,_UC_FREGS+(21*8)(r3)
|
|
|
|
stfd fp22,_UC_FREGS+(22*8)(r3)
|
|
|
|
stfd fp23,_UC_FREGS+(23*8)(r3)
|
|
|
|
stfd fp24,_UC_FREGS+(24*8)(r3)
|
|
|
|
stfd fp25,_UC_FREGS+(25*8)(r3)
|
|
|
|
stfd fp26,_UC_FREGS+(26*8)(r3)
|
|
|
|
stfd fp27,_UC_FREGS+(27*8)(r3)
|
|
|
|
stfd fp28,_UC_FREGS+(28*8)(r3)
|
|
|
|
stfd fp29,_UC_FREGS+(29*8)(r3)
|
|
|
|
mffs fp0
|
|
|
|
stfd fp30,_UC_FREGS+(30*8)(r3)
|
|
|
|
stfd fp31,_UC_FREGS+(31*8)(r3)
|
|
|
|
stfd fp0,_UC_FREGS+(32*8)(r3)
|
|
|
|
|
|
|
|
addi r5,r3,_UC_SIGMASK - _UC_REG_SPACE
|
|
|
|
li r4,0
|
|
|
|
li r3,SIG_BLOCK
|
2005-05-21 19:29:13 +00:00
|
|
|
bl __sigprocmask@local
|
2004-12-22 20:10:10 +00:00
|
|
|
|
|
|
|
lwz r0,20(r1)
|
|
|
|
addi r1,r1,16
|
|
|
|
mtlr r0
|
|
|
|
blr
|
|
|
|
END(__novec_getcontext)
|
2004-03-10 19:28:58 +00:00
|
|
|
.previous
|
Update.
2004-01-14 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME]
(_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed symbols.
(_default_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed
symbols.
* sysdeps/powerpc/Makefile: Add rtld-global-offsets.sym to
gen-as-const-headers.
* sysdeps/powerpc/elf/rtld-global-offsets.sym: New file.
* sysdeps/powerpc/sysdep.h: Define v# symbols for vector registers.
Define PPC_FEATURE_* masks for Aux Vector AT_HWCAP.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SWAPCONTEXT_SYSCALL): Define for PPC and 2.6.0 kernels.
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h [!__WORDSIZE == 32]:
Declare mcontext_t inline and include altivec state for 64-bit.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, and swapcontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
(__makecontext): Use parm save area instead of compiler_dw to hold
context pointer.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_swapcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h
(SIGCONTEXT_V_REGS_PTR, SIGCONTEXT_V_RESERVE): Defined.
2004-01-12 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
(__makecontext): Upgrade to align for Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_makecontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)]
(__novec_swapcontext): Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h:
(_UC_VSCR, _UC_VRSAVE): Define.
(_FRAME_BACKCHAIN, _FRAME_LR_SAVE,_FRAME_PARM_SAVE1,_FRAME_PARM_SAVE2,
_FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4): Defined.
2004-01-16 04:50:59 +00:00
|
|
|
|
|
|
|
compat_symbol (libc, __novec_getcontext, getcontext, GLIBC_2_3_3)
|
2003-06-18 03:38:07 +00:00
|
|
|
|
Update.
2004-01-14 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME]
(_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed symbols.
(_default_symbol_version): Use C_SYMBOL_DOT_NAME to create '.'ed
symbols.
* sysdeps/powerpc/Makefile: Add rtld-global-offsets.sym to
gen-as-const-headers.
* sysdeps/powerpc/elf/rtld-global-offsets.sym: New file.
* sysdeps/powerpc/sysdep.h: Define v# symbols for vector registers.
Define PPC_FEATURE_* masks for Aux Vector AT_HWCAP.
* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_SWAPCONTEXT_SYSCALL): Define for PPC and 2.6.0 kernels.
* sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h [!__WORDSIZE == 32]:
Declare mcontext_t inline and include altivec state for 64-bit.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, and swapcontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
(__makecontext): Use parm save area instead of compiler_dw to hold
context pointer.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)](__novec_swapcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.h
(SIGCONTEXT_V_REGS_PTR, SIGCONTEXT_V_RESERVE): Defined.
2004-01-12 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: Add GLIBC_2.3.4
versions for setcontext, getcontext, swapcontext, and makecontext.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
(__getcontext): Upgrade to save Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_getcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
(__makecontext): Upgrade to align for Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_makecontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
(__setcontext): Upgrade to restore Altivec regs and version
GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)](__novec_setcontext):
Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
(__swapcontext): Upgrade to swap Altivec regs and version GLIBC_2_3_4.
[SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)]
(__novec_swapcontext): Compatible with GLIBC_2.3.3 release.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/ucontext_i.h:
(_UC_VSCR, _UC_VRSAVE): Define.
(_FRAME_BACKCHAIN, _FRAME_LR_SAVE,_FRAME_PARM_SAVE1,_FRAME_PARM_SAVE2,
_FRAME_PARM_SAVE3, _FRAME_PARM_SAVE4): Defined.
2004-01-16 04:50:59 +00:00
|
|
|
#endif
|
2003-09-24 03:22:56 +00:00
|
|
|
|
|
|
|
#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_3_3)
|
|
|
|
|
2004-12-22 20:10:10 +00:00
|
|
|
#define _ERRNO_H 1
|
|
|
|
#include <bits/errno.h>
|
2003-09-24 03:22:56 +00:00
|
|
|
|
2004-03-10 19:28:58 +00:00
|
|
|
compat_text_section
|
2003-09-24 03:22:56 +00:00
|
|
|
ENTRY (__getcontext_stub)
|
|
|
|
li r3,ENOSYS
|
2005-05-21 19:29:13 +00:00
|
|
|
b __syscall_error@local
|
2004-03-10 19:28:58 +00:00
|
|
|
END (__getcontext_stub)
|
|
|
|
.previous
|
2003-09-24 03:22:56 +00:00
|
|
|
|
|
|
|
compat_symbol (libc, __getcontext_stub, getcontext, GLIBC_2_1)
|
|
|
|
|
|
|
|
#endif
|