brk.S 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* brk system call for Linux/ia64
  2. Copyright (C) 1999,2000,2001,2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Written by Stephane Eranian <eranian@hpl.hp.com> and
  5. Jes Sorensen, <Jes.Sorensen@cern.ch>, April 1999.
  6. The GNU C Library is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU Lesser General Public
  8. License as published by the Free Software Foundation; either
  9. 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.
  14. You should have received a copy of the GNU Lesser General Public
  15. License along with the GNU C Library; if not, see
  16. <http://www.gnu.org/licenses/>. */
  17. #include "sysdep.h"
  18. #include <asm/unistd.h>
  19. #include <asm/errno.h>
  20. .global __curbrk
  21. .hidden __curbrk
  22. .type __curbrk,@object
  23. .size __curbrk,8
  24. .data
  25. .align 8
  26. __curbrk:
  27. data8 0
  28. weak_alias (__curbrk, ___brk_addr)
  29. LEAF(brk)
  30. .regstk 1, 0, 0, 0
  31. DO_CALL(__NR_brk)
  32. cmp.ltu p6, p0 = ret0, in0
  33. addl r9 = @ltoff(__curbrk), gp
  34. ;;
  35. ld8 r9 = [r9]
  36. (p6) mov ret0 = ENOMEM
  37. (p6) br.cond.spnt.few __syscall_error
  38. ;;
  39. st8 [r9] = ret0
  40. mov ret0 = 0
  41. ret
  42. END(brk)
  43. libc_hidden_def(brk)