brk.S 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* brk system call for Linux/ia64
  2. Copyright (C) 1999-2019 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. .type __curbrk,@object
  22. .size __curbrk,8
  23. .data
  24. .align 8
  25. __curbrk:
  26. data8 0
  27. weak_alias (__curbrk, ___brk_addr)
  28. LEAF(__brk)
  29. .regstk 1, 0, 0, 0
  30. DO_CALL(__NR_brk)
  31. cmp.ltu p6, p0 = ret0, in0
  32. addl r9 = @ltoff(__curbrk), gp
  33. ;;
  34. ld8 r9 = [r9]
  35. (p6) mov ret0 = ENOMEM
  36. (p6) br.cond.spnt.few __syscall_error
  37. ;;
  38. st8 [r9] = ret0
  39. mov ret0 = 0
  40. ret
  41. END(__brk)
  42. weak_alias (__brk, brk)