Cleanup old obsolete PPC_REL16 checks
[glibc.git] / sysdeps / unix / sysv / linux / powerpc / powerpc32 / brk.S
blob4c8c6b433b1538cdbc52c87a06e7d5cdb2d952aa
1 /* brk system call for Linux/ppc.
2    Copyright (C) 1995-97, 1999, 2000, 2006 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
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.
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.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA
18    02110-1301 USA.  */
20 #include <sysdep.h>
21 #define _ERRNO_H        1
22 #include <bits/errno.h>
23 #include <bp-sym.h>
24 #include <bp-asm.h>
26         .comm   __curbrk,4,4
27         .section ".text"
28 ENTRY (BP_SYM (__brk))
29         DISCARD_BOUNDS (r3)     /* the bounds are meaningless, so toss 'em */
30         mflr    r0
31         stwu    r1,-16(r1)
32         cfi_adjust_cfa_offset (16)
33         stw     r3,8(r1)
34         stw     r0,20(r1)
35         cfi_offset (lr, 4)
36         DO_CALL(SYS_ify(brk))
37         lwz     r6,8(r1)
38 #ifdef PIC
39         bcl     20,31,1f
40 1:      mflr    r5
41         addis   r5,r5,__curbrk-1b@ha
42         stw     r3,__curbrk-1b@l(r5)
43 #else
44         lis     r4,__curbrk@ha
45         stw     r3,__curbrk@l(r4)
46 #endif
47         lwz     r0,20(r1)
48         cmplw   r6,r3
49         addi    r1,r1,16
50         mtlr    r0
51         li      r3,0
52         blelr+
53         li      r3,ENOMEM
54         b       __syscall_error@local
55 END (BP_SYM (__brk))
57 weak_alias (BP_SYM (__brk), BP_SYM (brk))