crti.S 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* Special .init and .fini section support for AArch64.
  2. Copyright (C) 1995-2016 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. In addition to the permissions in the GNU Lesser General Public
  9. License, the Free Software Foundation gives you unlimited
  10. permission to link the compiled version of this file with other
  11. programs, and to distribute those programs without any restriction
  12. coming from the use of this file. (The GNU Lesser General Public
  13. License restrictions do apply in other respects; for example, they
  14. cover modification of the file, and distribution when not linked
  15. into another program.)
  16. Note that people who make modified versions of this file are not
  17. obligated to grant this special exception for their modified
  18. versions; it is their choice whether to do so. The GNU Lesser
  19. General Public License gives permission to release a modified
  20. version without this exception; this exception also makes it
  21. possible to release a modified version which carries forward this
  22. exception.
  23. The GNU C Library is distributed in the hope that it will be useful,
  24. but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  26. Lesser General Public License for more details.
  27. You should have received a copy of the GNU Lesser General Public
  28. License along with the GNU C Library; if not, see
  29. <http://www.gnu.org/licenses/>. */
  30. /* crti.S puts a function prologue at the beginning of the .init and
  31. .fini sections and defines global symbols for those addresses, so
  32. they can be called as functions. The symbols _init and _fini are
  33. magic and cause the linker to emit DT_INIT and DT_FINI. */
  34. #include <libc-symbols.h>
  35. .section .init,"ax",%progbits
  36. .align 2
  37. .global _init
  38. .type _init, %function
  39. _init:
  40. stp x29, x30, [sp, -16]!
  41. mov x29, sp
  42. .section .fini,"ax",%progbits
  43. .align 2
  44. .global _fini
  45. .type _fini, %function
  46. _fini:
  47. stp x29, x30, [sp, -16]!
  48. mov x29, sp