setjmp.S 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // SPDX-License-Identifier: GPL-2.0+ OR BSD-2-Clause
  2. /*
  3. * Copyright Heinrich Schuchardt <[email protected]>
  4. */
  5. .text
  6. .p2align 3
  7. #define GREG_LIST \
  8. REG_ONE(s0, 0); \
  9. REG_ONE(s1, 8); \
  10. REG_ONE(s2, 16); \
  11. REG_ONE(s3, 24); \
  12. REG_ONE(s4, 32); \
  13. REG_ONE(s5, 40); \
  14. REG_ONE(s6, 48); \
  15. REG_ONE(s7, 56); \
  16. REG_ONE(s8, 64); \
  17. REG_ONE(s9, 72); \
  18. REG_ONE(s10, 80); \
  19. REG_ONE(s11, 88); \
  20. REG_ONE(sp, 96); \
  21. REG_ONE(ra, 104);
  22. #define FREG_LIST \
  23. FREG_ONE(fs0, 112); \
  24. FREG_ONE(fs1, 120); \
  25. FREG_ONE(fs2, 128); \
  26. FREG_ONE(fs3, 136); \
  27. FREG_ONE(fs4, 144); \
  28. FREG_ONE(fs5, 152); \
  29. FREG_ONE(fs6, 160); \
  30. FREG_ONE(fs7, 168); \
  31. FREG_ONE(fs8, 176); \
  32. FREG_ONE(fs9, 184); \
  33. FREG_ONE(fs10, 192); \
  34. FREG_ONE(fs11, 200);
  35. #define REG_ONE(R, P) sd R, P(a0)
  36. #define FREG_ONE(R, P) fsd R, P(a0)
  37. .globl setjmp
  38. .type setjmp, @function
  39. setjmp:
  40. GREG_LIST
  41. #ifndef __riscv_float_abi_soft
  42. FREG_LIST
  43. #endif
  44. li a0, 0
  45. ret
  46. #undef REG_ONE
  47. #undef FREG_ONE
  48. #define REG_ONE(R, P) ld R, P(a0)
  49. #define FREG_ONE(R, P) fld R, P(a0)
  50. .globl longjmp
  51. .type longjmp, @function
  52. longjmp:
  53. GREG_LIST
  54. #ifndef __riscv_float_abi_soft
  55. FREG_LIST
  56. #endif
  57. seqz a0, a1
  58. add a0, a0, a1
  59. ret
  60. #if defined(__ELF__) && defined(__linux__)
  61. .section .note.GNU-stack,"",%progbits
  62. #endif