nlrxtensa.c 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2014-2017 Damien P. George
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include "py/mpstate.h"
  27. #if MICROPY_NLR_XTENSA
  28. #undef nlr_push
  29. // Xtensa calling conventions:
  30. // a0 = return address
  31. // a1 = stack pointer
  32. // a2 = first arg, return value
  33. // a3-a7 = rest of args
  34. unsigned int nlr_push(nlr_buf_t *nlr) {
  35. __asm volatile (
  36. "s32i.n a0, a2, 8 \n" // save regs...
  37. "s32i.n a1, a2, 12 \n"
  38. "s32i.n a8, a2, 16 \n"
  39. "s32i.n a9, a2, 20 \n"
  40. "s32i.n a10, a2, 24 \n"
  41. "s32i.n a11, a2, 28 \n"
  42. "s32i.n a12, a2, 32 \n"
  43. "s32i.n a13, a2, 36 \n"
  44. "s32i.n a14, a2, 40 \n"
  45. "s32i.n a15, a2, 44 \n"
  46. "j nlr_push_tail \n" // do the rest in C
  47. );
  48. return 0; // needed to silence compiler warning
  49. }
  50. NORETURN void nlr_jump(void *val) {
  51. MP_NLR_JUMP_HEAD(val, top)
  52. __asm volatile (
  53. "mov.n a2, %0 \n" // a2 points to nlr_buf
  54. "l32i.n a0, a2, 8 \n" // restore regs...
  55. "l32i.n a1, a2, 12 \n"
  56. "l32i.n a8, a2, 16 \n"
  57. "l32i.n a9, a2, 20 \n"
  58. "l32i.n a10, a2, 24 \n"
  59. "l32i.n a11, a2, 28 \n"
  60. "l32i.n a12, a2, 32 \n"
  61. "l32i.n a13, a2, 36 \n"
  62. "l32i.n a14, a2, 40 \n"
  63. "l32i.n a15, a2, 44 \n"
  64. "movi.n a2, 1 \n" // return 1, non-local return
  65. "ret.n \n" // return
  66. : // output operands
  67. : "r" (top) // input operands
  68. : "memory" // clobbered registers
  69. );
  70. MP_UNREACHABLE
  71. }
  72. #endif // MICROPY_NLR_XTENSA