You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

132 lines
5.1 KiB

  1. ; Copyright Edward Nevill + Oliver Kowalke 2015
  2. ; Distributed under the Boost Software License, Version 1.0.
  3. ; (See accompanying file LICENSE_1_0.txt or copy at
  4. ; http://www.boost.org/LICENSE_1_0.txt)
  5. ;*******************************************************
  6. ;* *
  7. ;* ------------------------------------------------- *
  8. ;* | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | *
  9. ;* ------------------------------------------------- *
  10. ;* | 0x0 | 0x4 | 0x8 | 0xc | 0x10| 0x14| 0x18| 0x1c| *
  11. ;* ------------------------------------------------- *
  12. ;* | d8 | d9 | d10 | d11 | *
  13. ;* ------------------------------------------------- *
  14. ;* ------------------------------------------------- *
  15. ;* | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | *
  16. ;* ------------------------------------------------- *
  17. ;* | 0x20| 0x24| 0x28| 0x2c| 0x30| 0x34| 0x38| 0x3c| *
  18. ;* ------------------------------------------------- *
  19. ;* | d12 | d13 | d14 | d15 | *
  20. ;* ------------------------------------------------- *
  21. ;* ------------------------------------------------- *
  22. ;* | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | *
  23. ;* ------------------------------------------------- *
  24. ;* | 0x40| 0x44| 0x48| 0x4c| 0x50| 0x54| 0x58| 0x5c| *
  25. ;* ------------------------------------------------- *
  26. ;* | x19 | x20 | x21 | x22 | *
  27. ;* ------------------------------------------------- *
  28. ;* ------------------------------------------------- *
  29. ;* | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | *
  30. ;* ------------------------------------------------- *
  31. ;* | 0x60| 0x64| 0x68| 0x6c| 0x70| 0x74| 0x78| 0x7c| *
  32. ;* ------------------------------------------------- *
  33. ;* | x23 | x24 | x25 | x26 | *
  34. ;* ------------------------------------------------- *
  35. ;* ------------------------------------------------- *
  36. ;* | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | *
  37. ;* ------------------------------------------------- *
  38. ;* | 0x80| 0x84| 0x88| 0x8c| 0x90| 0x94| 0x98| 0x9c| *
  39. ;* ------------------------------------------------- *
  40. ;* | x27 | x28 | FP (x29) | LR (x30) | *
  41. ;* ------------------------------------------------- *
  42. ;* ------------------------------------------------- *
  43. ;* | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | *
  44. ;* ------------------------------------------------- *
  45. ;* | 0xa0| 0xa4| 0xa8| 0xac| 0xb0| 0xb4| 0xb8| 0xbc| *
  46. ;* ------------------------------------------------- *
  47. ;* | fiber data| base | limit | dealloc | *
  48. ;* ------------------------------------------------- *
  49. ;* ------------------------------------------------- *
  50. ;* | 48 | 49 | 50 | 51 | | | *
  51. ;* ------------------------------------------------- *
  52. ;* | 0xc0| 0xc4| 0xc8| 0xcc| | | *
  53. ;* ------------------------------------------------- *
  54. ;* | PC | align | | | *
  55. ;* ------------------------------------------------- *
  56. ;* *
  57. ;*******************************************************
  58. AREA |.text|, CODE, READONLY, ALIGN=4, CODEALIGN
  59. EXPORT jump_fcontext
  60. jump_fcontext proc
  61. ; prepare stack for GP + FPU
  62. sub sp, sp, #0xd0
  63. ; save d8 - d15
  64. stp d8, d9, [sp, #0x00]
  65. stp d10, d11, [sp, #0x10]
  66. stp d12, d13, [sp, #0x20]
  67. stp d14, d15, [sp, #0x30]
  68. ; save x19-x30
  69. stp x19, x20, [sp, #0x40]
  70. stp x21, x22, [sp, #0x50]
  71. stp x23, x24, [sp, #0x60]
  72. stp x25, x26, [sp, #0x70]
  73. stp x27, x28, [sp, #0x80]
  74. stp x29, x30, [sp, #0x90]
  75. ; save LR as PC
  76. str x30, [sp, #0xc0]
  77. ; save current stack base and limit
  78. ldp x5, x6, [x18, #0x08] ; TeStackBase and TeStackLimit at ksarm64.h
  79. stp x5, x6, [sp, #0xa0]
  80. ; save current fiber data and deallocation stack
  81. ldr x5, [x18, #0x1478] ; TeDeallocationStack at ksarm64.h
  82. ldr x6, [x18, #0x20] ; TeFiberData at ksarm64.h
  83. stp x5, x6, [sp, #0xb0]
  84. ; store RSP (pointing to context-data) in X0
  85. mov x4, sp
  86. str x4, [x0]
  87. ; restore RSP (pointing to context-data) from X1
  88. mov sp, x1
  89. ; restore stack base and limit
  90. ldp x5, x6, [sp, #0xa0]
  91. stp x5, x6, [x18, #0x08] ; TeStackBase and TeStackLimit at ksarm64.h
  92. ; restore fiber data and deallocation stack
  93. ldp x5, x6, [sp, #0xb0]
  94. str x5, [x18, #0x1478] ; TeDeallocationStack at ksarm64.h
  95. str x6, [x18, #0x20] ; TeFiberData at ksarm64.h
  96. ; load d8 - d15
  97. ldp d8, d9, [sp, #0x00]
  98. ldp d10, d11, [sp, #0x10]
  99. ldp d12, d13, [sp, #0x20]
  100. ldp d14, d15, [sp, #0x30]
  101. ; load x19-x30
  102. ldp x19, x20, [sp, #0x40]
  103. ldp x21, x22, [sp, #0x50]
  104. ldp x23, x24, [sp, #0x60]
  105. ldp x25, x26, [sp, #0x70]
  106. ldp x27, x28, [sp, #0x80]
  107. ldp x29, x30, [sp, #0x90]
  108. ; use third arg as return value after jump
  109. ; and as first arg in context function
  110. mov x0, x2
  111. ; load pc
  112. ldr x4, [sp, #0xc0]
  113. ; restore stack from GP + FPU
  114. add sp, sp, #0xd0
  115. ret x4
  116. ENDP
  117. END