ontop_arm64_aapcs_elf_gas.S 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. Copyright Edward Nevill + Oliver Kowalke 2015
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. /*******************************************************
  8. * *
  9. * ------------------------------------------------- *
  10. * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | *
  11. * ------------------------------------------------- *
  12. * | 0x0 | 0x4 | 0x8 | 0xc | 0x10| 0x14| 0x18| 0x1c| *
  13. * ------------------------------------------------- *
  14. * | d8 | d9 | d10 | d11 | *
  15. * ------------------------------------------------- *
  16. * ------------------------------------------------- *
  17. * | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | *
  18. * ------------------------------------------------- *
  19. * | 0x20| 0x24| 0x28| 0x2c| 0x30| 0x34| 0x38| 0x3c| *
  20. * ------------------------------------------------- *
  21. * | d12 | d13 | d14 | d15 | *
  22. * ------------------------------------------------- *
  23. * ------------------------------------------------- *
  24. * | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | *
  25. * ------------------------------------------------- *
  26. * | 0x40| 0x44| 0x48| 0x4c| 0x50| 0x54| 0x58| 0x5c| *
  27. * ------------------------------------------------- *
  28. * | x19 | x20 | x21 | x22 | *
  29. * ------------------------------------------------- *
  30. * ------------------------------------------------- *
  31. * | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | *
  32. * ------------------------------------------------- *
  33. * | 0x60| 0x64| 0x68| 0x6c| 0x70| 0x74| 0x78| 0x7c| *
  34. * ------------------------------------------------- *
  35. * | x23 | x24 | x25 | x26 | *
  36. * ------------------------------------------------- *
  37. * ------------------------------------------------- *
  38. * | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | *
  39. * ------------------------------------------------- *
  40. * | 0x80| 0x84| 0x88| 0x8c| 0x90| 0x94| 0x98| 0x9c| *
  41. * ------------------------------------------------- *
  42. * | x27 | x28 | FP | LR | *
  43. * ------------------------------------------------- *
  44. * ------------------------------------------------- *
  45. * | 40 | 41 | 42 | 43 | | | *
  46. * ------------------------------------------------- *
  47. * | 0xa0| 0xa4| 0xa8| 0xac| | | *
  48. * ------------------------------------------------- *
  49. * | PC | align | | | *
  50. * ------------------------------------------------- *
  51. * *
  52. *******************************************************/
  53. .text
  54. .align 2
  55. .global ontop_fcontext
  56. .type ontop_fcontext, %function
  57. ontop_fcontext:
  58. # prepare stack for GP + FPU
  59. sub sp, sp, #0xb0
  60. # save d8 - d15
  61. stp d8, d9, [sp, #0x00]
  62. stp d10, d11, [sp, #0x10]
  63. stp d12, d13, [sp, #0x20]
  64. stp d14, d15, [sp, #0x30]
  65. # save x19-x30
  66. stp x19, x20, [sp, #0x40]
  67. stp x21, x22, [sp, #0x50]
  68. stp x23, x24, [sp, #0x60]
  69. stp x25, x26, [sp, #0x70]
  70. stp x27, x28, [sp, #0x80]
  71. stp x29, x30, [sp, #0x90]
  72. # save LR as PC
  73. str x30, [sp, #0xa0]
  74. # store RSP (pointing to context-data) in X5
  75. mov x4, sp
  76. # restore RSP (pointing to context-data) from X1
  77. mov sp, x0
  78. # load d8 - d15
  79. ldp d8, d9, [sp, #0x00]
  80. ldp d10, d11, [sp, #0x10]
  81. ldp d12, d13, [sp, #0x20]
  82. ldp d14, d15, [sp, #0x30]
  83. # load x19-x30
  84. ldp x19, x20, [sp, #0x40]
  85. ldp x21, x22, [sp, #0x50]
  86. ldp x23, x24, [sp, #0x60]
  87. ldp x25, x26, [sp, #0x70]
  88. ldp x27, x28, [sp, #0x80]
  89. ldp x29, x30, [sp, #0x90]
  90. # return transfer_t from jump
  91. # pass transfer_t as first arg in context function
  92. # X0 == FCTX, X1 == DATA
  93. mov x0, x4
  94. # skip pc
  95. # restore stack from GP + FPU
  96. add sp, sp, #0xb0
  97. # jump to ontop-function
  98. ret x2
  99. .size ontop_fcontext,.-ontop_fcontext
  100. # Mark that we don't need executable stack.
  101. .section .note.GNU-stack,"",%progbits