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.

106 lines
3.7KB

  1. /*
  2. * this is the internal transfer function.
  3. *
  4. * HISTORY
  5. * 04-Sep-18 Alexey Borzenkov <snaury@gmail.com>
  6. * Workaround a gcc bug using manual save/restore of r30
  7. * 21-Mar-18 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
  8. * Added r30 to the list of saved registers in order to fully comply with
  9. * both ppc64 ELFv1 ABI and the ppc64le ELFv2 ABI, that classify this
  10. * register as a nonvolatile register used for local variables.
  11. * 21-Mar-18 Laszlo Boszormenyi <gcs@debian.org>
  12. * Save r2 (TOC pointer) manually.
  13. * 10-Dec-13 Ulrich Weigand <uweigand@de.ibm.com>
  14. * Support ELFv2 ABI. Save float/vector registers.
  15. * 09-Mar-12 Michael Ellerman <michael@ellerman.id.au>
  16. * 64-bit implementation, copied from 32-bit.
  17. * 07-Sep-05 (py-dev mailing list discussion)
  18. * removed 'r31' from the register-saved. !!!! WARNING !!!!
  19. * It means that this file can no longer be compiled statically!
  20. * It is now only suitable as part of a dynamic library!
  21. * 14-Jan-04 Bob Ippolito <bob@redivi.com>
  22. * added cr2-cr4 to the registers to be saved.
  23. * Open questions: Should we save FP registers?
  24. * What about vector registers?
  25. * Differences between darwin and unix?
  26. * 24-Nov-02 Christian Tismer <tismer@tismer.com>
  27. * needed to add another magic constant to insure
  28. * that f in slp_eval_frame(PyFrameObject *f)
  29. * STACK_REFPLUS will probably be 1 in most cases.
  30. * gets included into the saved stack area.
  31. * 04-Oct-02 Gustavo Niemeyer <niemeyer@conectiva.com>
  32. * Ported from MacOS version.
  33. * 17-Sep-02 Christian Tismer <tismer@tismer.com>
  34. * after virtualizing stack save/restore, the
  35. * stack size shrunk a bit. Needed to introduce
  36. * an adjustment STACK_MAGIC per platform.
  37. * 15-Sep-02 Gerd Woetzel <gerd.woetzel@GMD.DE>
  38. * slightly changed framework for sparc
  39. * 29-Jun-02 Christian Tismer <tismer@tismer.com>
  40. * Added register 13-29, 31 saves. The same way as
  41. * Armin Rigo did for the x86_unix version.
  42. * This seems to be now fully functional!
  43. * 04-Mar-02 Hye-Shik Chang <perky@fallin.lv>
  44. * Ported from i386.
  45. * 31-Jul-12 Trevor Bowen <trevorbowen@gmail.com>
  46. * Changed memory constraints to register only.
  47. */
  48. #define STACK_REFPLUS 1
  49. #ifdef SLP_EVAL
  50. #if _CALL_ELF == 2
  51. #define STACK_MAGIC 4
  52. #else
  53. #define STACK_MAGIC 6
  54. #endif
  55. #if defined(__ALTIVEC__)
  56. #define ALTIVEC_REGS \
  57. "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", \
  58. "v28", "v29", "v30", "v31",
  59. #else
  60. #define ALTIVEC_REGS
  61. #endif
  62. #define REGS_TO_SAVE "r14", "r15", "r16", "r17", "r18", "r19", "r20", \
  63. "r21", "r22", "r23", "r24", "r25", "r26", "r27", "r28", "r29", \
  64. "r31", \
  65. "fr14", "fr15", "fr16", "fr17", "fr18", "fr19", "fr20", "fr21", \
  66. "fr22", "fr23", "fr24", "fr25", "fr26", "fr27", "fr28", "fr29", \
  67. "fr30", "fr31", \
  68. ALTIVEC_REGS \
  69. "cr2", "cr3", "cr4"
  70. static int
  71. slp_switch(void)
  72. {
  73. register int err;
  74. register long *stackref, stsizediff;
  75. void * toc;
  76. void * r30;
  77. __asm__ volatile ("" : : : REGS_TO_SAVE);
  78. __asm__ volatile ("std 2, %0" : "=m" (toc));
  79. __asm__ volatile ("std 30, %0" : "=m" (r30));
  80. __asm__ ("mr %0, 1" : "=r" (stackref) : );
  81. {
  82. SLP_SAVE_STATE(stackref, stsizediff);
  83. __asm__ volatile (
  84. "mr 11, %0\n"
  85. "add 1, 1, 11\n"
  86. : /* no outputs */
  87. : "r" (stsizediff)
  88. : "11"
  89. );
  90. SLP_RESTORE_STATE();
  91. }
  92. __asm__ volatile ("ld 30, %0" : : "m" (r30));
  93. __asm__ volatile ("ld 2, %0" : : "m" (toc));
  94. __asm__ volatile ("" : : : REGS_TO_SAVE);
  95. __asm__ volatile ("li %0, 0" : "=r" (err));
  96. return err;
  97. }
  98. #endif