brk.S 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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, write to the Free
  16. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  17. 02111-1307 USA. */
  18. #include "sysdep.h"
  19. #include <asm/unistd.h>
  20. #include <asm/errno.h>
  21. .global __curbrk
  22. .hidden __curbrk
  23. .type __curbrk,@object
  24. .size __curbrk,8
  25. .data
  26. .align 8
  27. __curbrk:
  28. data8 0
  29. weak_alias (__curbrk, ___brk_addr)
  30. LEAF(brk)
  31. .regstk 1, 0, 0, 0
  32. DO_CALL(__NR_brk)
  33. cmp.ltu p6, p0 = ret0, in0
  34. addl r9 = @ltoff(__curbrk), gp
  35. ;;
  36. ld8 r9 = [r9]
  37. (p6) mov ret0 = ENOMEM
  38. (p6) br.cond.spnt.few __syscall_error
  39. ;;
  40. st8 [r9] = ret0
  41. mov ret0 = 0
  42. ret
  43. END(brk)
  44. libc_hidden_def(brk)