(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / powerpc / powerpc32 / brk.S
blob8ecbb548a29f0825a78773801dff8694d2728897
1 /* brk system call for Linux/ppc.
2    Copyright (C) 1995, 1996, 1997, 1999, 2000 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., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 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 */
31         stwu    r1,-16(r1)
32         stw     r3,8(r1)
33         DO_CALL(SYS_ify(brk))
34         lwz     r6,8(r1)
35 #ifdef PIC
36         mflr    r4
37         bl      _GLOBAL_OFFSET_TABLE_@local-4
38         mflr    r5
39         lwz     r5,__curbrk@got(r5)
40         mtlr    r4
41         stw     r3,0(r5)
42 #else
43         lis     r4,__curbrk@ha
44         stw     r3,__curbrk@l(r4)
45 #endif
46         cmplw   r6,r3
47         addi    r1,r1,16
48         li      r3,0
49         blelr+
50         li      r3,ENOMEM
51         b       JUMPTARGET(__syscall_error)
52 END (BP_SYM (__brk))
54 weak_alias (BP_SYM (__brk), BP_SYM (brk))