Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
switch_ppc64_linux.h
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
49#define STACK_REFPLUS 1
50
51#ifdef SLP_EVAL
52
53#if _CALL_ELF == 2
54#define STACK_MAGIC 4
55#else
56#define STACK_MAGIC 6
57#endif
58
59#if defined(__ALTIVEC__)
60#define ALTIVEC_REGS \
61 "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", \
62 "v28", "v29", "v30", "v31",
63#else
64#define ALTIVEC_REGS
65#endif
66
67#define REGS_TO_SAVE "r14", "r15", "r16", "r17", "r18", "r19", "r20", \
68 "r21", "r22", "r23", "r24", "r25", "r26", "r27", "r28", "r29", \
69 "r31", \
70 "fr14", "fr15", "fr16", "fr17", "fr18", "fr19", "fr20", "fr21", \
71 "fr22", "fr23", "fr24", "fr25", "fr26", "fr27", "fr28", "fr29", \
72 "fr30", "fr31", \
73 ALTIVEC_REGS \
74 "cr2", "cr3", "cr4"
75
76static int
77slp_switch(void)
78{
79 int err;
80 long *stackref, stsizediff;
81 void * toc;
82 void * r30;
83 __asm__ volatile ("" : : : REGS_TO_SAVE);
84 __asm__ volatile ("std 2, %0" : "=m" (toc));
85 __asm__ volatile ("std 30, %0" : "=m" (r30));
86 __asm__ ("mr %0, 1" : "=r" (stackref) : );
87 {
88 SLP_SAVE_STATE(stackref, stsizediff);
89 __asm__ volatile (
90 "mr 11, %0\n"
91 "add 1, 1, 11\n"
92 : /* no outputs */
93 : "r" (stsizediff)
94 : "11"
95 );
96 SLP_RESTORE_STATE();
97 }
98 __asm__ volatile ("ld 30, %0" : : "m" (r30));
99 __asm__ volatile ("ld 2, %0" : : "m" (toc));
100 __asm__ volatile ("" : : : REGS_TO_SAVE);
101 __asm__ volatile ("li %0, 0" : "=r" (err));
102 return err;
103}
104
105#endif