glibc/sysdeps/unix/arm/brk.S

57 lines
1.4 KiB
ArmAsm
Raw Normal View History

1998-03-18 15:31:22 +01:00
/* Copyright (C) 1991, 92, 93, 95, 97, 98 Free Software Foundation, Inc.
This file is part of the GNU C Library.
1997-06-12 23:22:18 +02:00
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 06:56:23 +02:00
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
1997-06-12 23:22:18 +02:00
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2001-07-06 06:56:23 +02:00
Lesser General Public License for more details.
1997-06-12 23:22:18 +02:00
2001-07-06 06:56:23 +02:00
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
1997-06-12 23:22:18 +02:00
#include <sysdep.h>
#ifndef SYS_brk
#define SYS_brk 17
#endif
.data
.globl C_SYMBOL_NAME(__curbrk)
C_LABEL(__curbrk)
#ifdef HAVE_GNU_LD
.long C_SYMBOL_NAME(_end)
#else
.long C_SYMBOL_NAME(end)
#endif
.text
SYSCALL__ (brk, 1)
1998-03-18 15:31:22 +01:00
#ifdef PIC
ldr r1, 1f
2002-07-24 19:36:14 +02:00
ldr r2, _cb_addr
2: add r1, pc, r1
1998-03-18 15:31:22 +01:00
add r1, r1, r2
#else
1997-06-12 23:22:18 +02:00
ldr r1, _cb_addr
1998-03-18 15:31:22 +01:00
#endif
1997-06-12 23:22:18 +02:00
str r0, [r1]
mov r0, $0
RETINSTR(mov, pc, r14)
1998-03-18 15:31:22 +01:00
#ifdef PIC
2002-07-24 19:36:14 +02:00
1: .long _GLOBAL_OFFSET_TABLE_ - 2b - 8
1998-03-18 15:31:22 +01:00
_cb_addr:
.long C_SYMBOL_NAME(__curbrk)(GOTOFF)
#else
_cb_addr:
.long C_SYMBOL_NAME(__curbrk)
#endif
1997-06-12 23:22:18 +02:00
weak_alias (__brk, brk)