make.S 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. * | x19 | x20 | x21 | x22 | *
  15. * ------------------------------------------------- *
  16. * ------------------------------------------------- *
  17. * | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | *
  18. * ------------------------------------------------- *
  19. * | 0x20| 0x24| 0x28| 0x2c| 0x30| 0x34| 0x38| 0x3c| *
  20. * ------------------------------------------------- *
  21. * | x23 | x24 | x25 | x26 | *
  22. * ------------------------------------------------- *
  23. * ------------------------------------------------- *
  24. * | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | *
  25. * ------------------------------------------------- *
  26. * | 0x40| 0x44| 0x48| 0x4c| 0x50| 0x54| 0x58| 0x5c| *
  27. * ------------------------------------------------- *
  28. * | x27 | x28 | FP | LR | *
  29. * ------------------------------------------------- *
  30. * ------------------------------------------------- *
  31. * | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | *
  32. * ------------------------------------------------- *
  33. * | 0x60| 0x64| 0x68| 0x6c| 0x70| 0x74| 0x78| 0x7c| *
  34. * ------------------------------------------------- *
  35. * | PC | align | | | *
  36. * ------------------------------------------------- *
  37. * *
  38. *******************************************************/
  39. # .cpu generic+fp+simd
  40. .text
  41. .align 2
  42. .global make_fcontext
  43. .type make_fcontext, %function
  44. make_fcontext:
  45. # shift address in x0 (allocated stack) to lower 16 byte boundary
  46. and x0, x0, ~0xF
  47. # reserve space for context-data on context-stack
  48. sub x0, x0, #0x70
  49. # third arg of make_fcontext() == address of context-function
  50. # store address as a PC to jump in
  51. str x2, [x0, #0x60]
  52. # save address of finish as return-address for context-function
  53. # will be entered after context-function returns (LR register)
  54. adr x1, finish
  55. str x1, [x0, #0x58]
  56. ret x30 // return pointer to context-data (x0)
  57. finish:
  58. # exit code is zero
  59. mov x0, #0
  60. # exit application
  61. bl _exit
  62. .size make_fcontext,.-make_fcontext
  63. # Mark that we don't need executable stack.
  64. .section .note.GNU-stack,"",%progbits