2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / powerpc / powerpc32 / brk.S
blobe945834945b5d606c2e8a788ef71750752694ac3
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 # ifdef HAVE_ASM_PPC_REL16
40         bcl     20,31,1f
41 1:      mflr    r5
42         addis   r5,r5,__curbrk-1b@ha
43         stw     r3,__curbrk-1b@l(r5)
44 # else
45         bl      _GLOBAL_OFFSET_TABLE_@local-4
46         mflr    r5
47         lwz     r5,__curbrk@got(r5)
48         stw     r3,0(r5)
49 # endif
50 #else
51         lis     r4,__curbrk@ha
52         stw     r3,__curbrk@l(r4)
53 #endif
54         lwz     r0,20(r1)
55         cmplw   r6,r3
56         addi    r1,r1,16
57         mtlr    r0
58         li      r3,0
59         blelr+
60         li      r3,ENOMEM
61         b       __syscall_error@local
62 END (BP_SYM (__brk))
64 weak_alias (BP_SYM (__brk), BP_SYM (brk))