Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / unix / sysv / linux / powerpc / powerpc32 / brk.S
blob9f0390e6f813ada5263e18a2c43f5e9bc7d89af7
1 /* brk system call for Linux/ppc.
2    Copyright (C) 1995-97, 1999, 2000, 2006, 2011 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, see
17    <http://www.gnu.org/licenses/>.  */
19 #include <sysdep.h>
20 #define _ERRNO_H        1
21 #include <bits/errno.h>
22 #include <bp-sym.h>
23 #include <bp-asm.h>
25         .comm   __curbrk,4,4
26         .section ".text"
27 ENTRY (BP_SYM (__brk))
28         DISCARD_BOUNDS (r3)     /* the bounds are meaningless, so toss 'em */
29         mflr    r0
30         stwu    r1,-16(r1)
31         cfi_adjust_cfa_offset (16)
32         stw     r3,8(r1)
33         stw     r0,20(r1)
34         cfi_offset (lr, 4)
35         DO_CALL(SYS_ify(brk))
36         lwz     r6,8(r1)
37 #ifdef PIC
38         SETUP_GOT_ACCESS(r5,got_label)
39         addis   r5,r5,__curbrk-got_label@ha
40         stw     r3,__curbrk-got_label@l(r5)
41 #else
42         lis     r4,__curbrk@ha
43         stw     r3,__curbrk@l(r4)
44 #endif
45         lwz     r0,20(r1)
46         cmplw   r6,r3
47         addi    r1,r1,16
48         mtlr    r0
49         li      r3,0
50         blelr+
51         li      r3,ENOMEM
52         b       __syscall_error@local
53 END (BP_SYM (__brk))
55 weak_alias (BP_SYM (__brk), BP_SYM (brk))