Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / powerpc / powerpc32 / brk.S
blob74ac9f6b45a672343765988e97db62986ec599e2
1 /* brk system call for Linux/ppc.
2    Copyright (C) 1995-2014 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>
23         .comm   __curbrk,4,4
24         .section ".text"
25 ENTRY (__brk)
26         mflr    r0
27         stwu    r1,-16(r1)
28         cfi_adjust_cfa_offset (16)
29         stw     r3,8(r1)
30         stw     r0,20(r1)
31         cfi_offset (lr, 4)
32         DO_CALL(SYS_ify(brk))
33         lwz     r6,8(r1)
34 #ifdef PIC
35         SETUP_GOT_ACCESS(r5,got_label)
36         addis   r5,r5,__curbrk-got_label@ha
37         stw     r3,__curbrk-got_label@l(r5)
38 #else
39         lis     r4,__curbrk@ha
40         stw     r3,__curbrk@l(r4)
41 #endif
42         lwz     r0,20(r1)
43         cmplw   r6,r3
44         addi    r1,r1,16
45         mtlr    r0
46         li      r3,0
47         blelr+
48         li      r3,ENOMEM
49         b       __syscall_error@local
50 END (__brk)
52 weak_alias (__brk, brk)