]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/powerpc/powerpc64/setjmp.S
Fix elf/get-dynamic-info.h for AT
[thirdparty/glibc.git] / sysdeps / powerpc / powerpc64 / setjmp.S
CommitLineData
5c76ff27 1/* AltiVec (new) version of setjmp for PowerPC.
568035b7 2 Copyright (C) 1995-2013 Free Software Foundation, Inc.
cfc91acd
RM
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
cfc91acd 18
5c76ff27
UD
19#include <libc-symbols.h>
20#include <rtld-global-offsets.h>
21#include <shlib-compat.h>
22
23#if defined NOT_IN_libc
4041cfe8 24/* Build a non-versioned object for rtld-*. */
5c76ff27
UD
25# include "setjmp-common.S"
26
27#else /* !NOT_IN_libc */
28/* Build a versioned object for libc. */
9b874b2f
AM
29versioned_symbol (libc, __vmxsetjmp, setjmp, GLIBC_2_3_4)
30versioned_symbol (libc, __vmx_setjmp, _setjmp, GLIBC_2_3_4)
31versioned_symbol (libc, __vmx__sigsetjmp, __sigsetjmp, GLIBC_2_3_4)
bebff237
AM
32# define setjmp __vmxsetjmp
33# define _setjmp __vmx_setjmp
5c76ff27
UD
34# define __sigsetjmp __vmx__sigsetjmp
35# define __sigjmp_save __vmx__sigjmp_save
36# include "setjmp-common.S"
bebff237
AM
37strong_alias (__vmxsetjmp, __vmx__setjmp)
38strong_alias (__vmx__sigsetjmp, __setjmp)
5c76ff27
UD
39
40# if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_3, GLIBC_2_3_4)
bebff237
AM
41# undef setjmp
42# undef _setjmp
5c76ff27
UD
43# undef __sigsetjmp
44# undef __sigjmp_save
4041cfe8 45# undef JB_SIZE
5c76ff27 46# define __NO_VMX__
9b874b2f
AM
47compat_symbol (libc, __novmxsetjmp, setjmp, GLIBC_2_3)
48compat_symbol (libc, __novmx_setjmp,_setjmp, GLIBC_2_3);
49compat_symbol (libc, __novmx__sigsetjmp,__sigsetjmp, GLIBC_2_3)
bebff237
AM
50# define setjmp __novmxsetjmp
51# define _setjmp __novmx_setjmp
5c76ff27
UD
52# define __sigsetjmp __novmx__sigsetjmp
53# define __sigjmp_save __novmx__sigjmp_save
54# include "setjmp-common.S"
bebff237 55strong_alias (__novmxsetjmp, __novmx__setjmp)
5c76ff27
UD
56# endif
57#endif /* !NOT_IN_libc */