1 #ifndef __MONO_MINI_S390X_H__
2 #define __MONO_MINI_S390X_H__
4 #include <mono/arch/s390x/s390x-codegen.h>
5 #include <mono/utils/mono-context.h>
8 #define MONO_ARCH_CPU_SPEC s390x_cpu_desc
10 #define MONO_MAX_IREGS 16
11 #define MONO_MAX_FREGS 16
13 /*-------------------------------------------*/
14 /* Parameters used by the register allocator */
15 /*-------------------------------------------*/
17 #define S390_LONG(loc, opy, op, r, ix, br, off) \
19 if (s390_is_imm20(off)) { \
20 s390_##opy (loc, r, ix, br, off); \
22 s390_basr (code, s390_r13, 0); \
24 s390_llong(code, off); \
25 s390_lg (code, s390_r13, 0, s390_r13, 4); \
26 s390_##op (code, r, s390_r13, br, 0); \
29 if (s390_is_uimm12(off)) { \
30 s390_##op (loc, r, ix, br, off); \
32 s390_basr (code, s390_r13, 0); \
34 s390_llong(code, off); \
35 s390_lg (code, s390_r13, 0, s390_r13, 4); \
36 s390_##op (code, r, s390_r13, br, 0); \
41 gpointer previous_lmf
;
51 typedef struct MonoCompileArch
{
67 char n3
:1; // N3 instructions present
68 char zArch
:1; // z/Architecture mode installed
69 char zAct
:1; // z/Architecture mode active
70 char date
:1; // DATE enhancement facility
71 char idte1
:1; // IDTE present (PST)
72 char idte2
:1; // IDTE present (REG)
73 char asnlx
:1; // ASN and LX reuse facility
74 char stfle
:1; // STFLE installed
75 char zDATe
:1; // Enhanced DAT in z mode
76 char srstat
:1; // Sense running status facility
77 char cSSKE
:1; // Conditional SSKE facility
78 char topo
:1; // COnfiguration topology facility
79 char xTrans2
:1; // Extended translation facility 2
80 char msgSec
:1; // Message security facility
81 char longDsp
:1; // Long displacement facility
82 char hiPerfLD
:1; // High performance long displacement facility
83 char hfpMAS
:1; // HFP multiply-and-add/subtrace facility
84 char xImm
:1; // Extended immediate facility
85 char xTrans3
:1; // Extended translation facility 3
86 char hfpUnX
:1; // HFP unnormalized extension facility
87 char etf2
:1; // ETF2-enhancement facility
88 char stckf
:1; // Store-clock-fast facility
89 char parse
:1; // Parsing enhancement facility
90 char mvcos
:1; // MVCOS facility
91 char todSteer
:1; // TOD-clock steering facility
92 char etf3
:1; // ETF3-enhancement facility
93 char xCPUtm
:1; // Extract CPU time facility
94 char csst
:1; // Compare-swap-and-store facility
95 char csst2
:1; // Compare-swap-and-store facility 2
96 char giX
:1; // General instructions extension facility
97 char exX
:1; // Execute extensions facility
98 char ibm
:1; // IBM internal use
99 char fps
:1; // Floating point support enhancement
100 char dfp
:1; // Decimal floating point facility
101 char hiDFP
:1; // High Performance DFP facility
102 char pfpo
:1; // PFPO instruction facility
103 } __attribute__((aligned(8))) facilityList_t
;
105 // #define MONO_ARCH_SIGSEGV_ON_ALTSTACK 1
106 #define MONO_ARCH_EMULATE_LCONV_TO_R8_UN 1
107 #define MONO_ARCH_NO_EMULATE_LONG_MUL_OPTS 1
108 #define MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS 1
109 #define MONO_ARCH_HAVE_IS_INT_OVERFLOW 1
110 #define MONO_ARCH_NEED_DIV_CHECK 1
111 #define MONO_ARCH_HAVE_ATOMIC_ADD 1
112 #define MONO_ARCH_HAVE_ATOMIC_EXCHANGE 1
113 #define MONO_ARCH_SIGNAL_STACK_SIZE 256*1024
114 #define MONO_ARCH_HAVE_DECOMPOSE_OPTS 1
115 #define MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE 1
116 #define MONO_ARCH_HAVE_IMT 1
117 #define MONO_ARCH_HAVE_TLS_GET 1
118 #define MONO_ARCH_ENABLE_MONO_LMF_VAR 1
119 #define MONO_ARCH_IMT_REG s390_r9
120 #define MONO_ARCH_THIS_AS_FIRST_ARG 1
121 #define MONO_ARCH_HAVE_XP_UNWIND 1
122 #define MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX 1
123 #define MONO_ARCH_SOFT_DEBUG_SUPPORTED 1
124 #define MONO_ARCH_HAVE_CONTEXT_SET_INT_REG 1
125 #define MONO_ARCH_USE_SIGACTION 1
126 #define MONO_ARCH_GC_MAPS_SUPPORTED 1
128 #define S390_STACK_ALIGNMENT 8
129 #define S390_FIRST_ARG_REG s390_r2
130 #define S390_LAST_ARG_REG s390_r6
131 #define S390_FIRST_FPARG_REG s390_f0
132 #define S390_LAST_FPARG_REG s390_f6
133 #define S390_PASS_STRUCTS_BY_VALUE 1
134 #define S390_SMALL_RET_STRUCT_IN_REG 1
136 #define S390_NUM_REG_ARGS (S390_LAST_ARG_REG-S390_FIRST_ARG_REG+1)
137 #define S390_NUM_REG_FPARGS ((S390_LAST_FPARG_REG-S390_FIRST_FPARG_REG)/2)
139 /*===============================================*/
140 /* Definitions used by mini-codegen.c */
141 /*===============================================*/
143 /*------------------------------------------------------*/
144 /* use s390_r2-s390_r6 as parm registers */
145 /* s390_r0, s390_r1, s390_r12, s390_r13 used internally */
146 /* s390_r8..s390_r11 are used for global regalloc */
147 /* s390_r15 is the stack pointer */
148 /*------------------------------------------------------*/
150 #define MONO_ARCH_CALLEE_REGS (0xfc)
152 #define MONO_ARCH_CALLEE_SAVED_REGS 0xff80
154 /*----------------------------------------*/
155 /* use s390_f1/s390_f3-s390_f15 as temps */
156 /*----------------------------------------*/
158 #define MONO_ARCH_CALLEE_FREGS (0xfffe)
160 #define MONO_ARCH_CALLEE_SAVED_FREGS 0
162 #define MONO_ARCH_USE_FPSTACK FALSE
163 #define MONO_ARCH_FPSTACK_SIZE 0
165 #define MONO_ARCH_INST_FIXED_REG(desc) ((desc == 'o') ? s390_r2 : \
166 ((desc == 'g') ? s390_f0 : - 1))
168 #define MONO_ARCH_INST_IS_FLOAT(desc) ((desc == 'f') || (desc == 'g'))
170 #define MONO_ARCH_INST_SREG2_MASK(ins) (0)
172 #define MONO_ARCH_INST_IS_REGPAIR(desc) (0)
173 #define MONO_ARCH_INST_REGPAIR_REG2(desc,hr) -1
175 #define MONO_ARCH_IS_GLOBAL_IREG(reg) 0
177 #define MONO_ARCH_FRAME_ALIGNMENT 8
178 #define MONO_ARCH_CODE_ALIGNMENT 32
180 #define MONO_ARCH_RETREG1 s390_r2
182 /*-----------------------------------------------*/
183 /* Macros used to generate instructions */
184 /*-----------------------------------------------*/
185 #define S390_OFFSET(b, t) (guchar *) ((guint64) (b) - (guint64) (t))
186 #define S390_RELATIVE(b, t) (guchar *) ((((guint64) (b) - (guint64) (t))) / 2)
188 #define CODEPTR(c, o) (o) = (short *) ((guint64) c - 2)
189 #define PTRSLOT(c, o) *(o) = (short) ((guint64) c - (guint64) (o) + 2)/2
192 #define S390_ALIGN(v, a) (((a) > 0 ? (((v) + ((a) - 1)) & ~((a) - 1)) : (v)))
194 #define MONO_INIT_CONTEXT_FROM_FUNC(ctx,func) do { \
195 MonoS390StackFrame *sframe; \
196 __asm__ volatile("lgr %0,15" : "=r" (sframe)); \
197 MONO_CONTEXT_SET_BP ((ctx), sframe->prev); \
198 MONO_CONTEXT_SET_SP ((ctx), sframe->prev); \
199 MONO_CONTEXT_SET_IP ((ctx), func); \
202 #define MONO_ARCH_INIT_TOP_LMF_ENTRY(lmf) do { (lmf)->ebp = -1; } while (0)
204 /*------------------------------------------------------------------*/
206 /* Name - s390_patch_rel */
208 /* Function - Patch the code with a given offset. */
210 /*------------------------------------------------------------------*/
213 s390_patch_rel (guchar
*code
, guint64 target
)
215 guint32
*offset
= (guint32
*) code
;
218 *offset
= (guint32
) target
;
222 /*========================= End of Function ========================*/
224 /*------------------------------------------------------------------*/
226 /* Name - s390_patch_addr */
228 /* Function - Patch the code with a given address. */
230 /*------------------------------------------------------------------*/
233 s390_patch_addr (guchar
*code
, guint64 target
)
235 guint64
*offset
= (guint64
*) code
;
242 /*========================= End of Function ========================*/
244 /*------------------------------------------------------------------*/
246 /* Name - restoreLMF */
248 /* Function - Restore the LMF state prior to exiting a method. */
250 /*------------------------------------------------------------------*/
252 #define restoreLMF(code, frame_reg, stack_usage) do \
256 s390_lgr (code, s390_r13, frame_reg); \
258 lmfOffset = stack_usage - sizeof(MonoLMF); \
260 /*-------------------------------------------------*/ \
262 /*-------------------------------------------------*/ \
263 s390_aghi (code, s390_r13, lmfOffset); \
265 /*-------------------------------------------------*/ \
266 /* r6 = &jit_tls->lmf */ \
267 /*-------------------------------------------------*/ \
268 s390_lg (code, s390_r6, 0, s390_r13, \
269 G_STRUCT_OFFSET(MonoLMF, lmf_addr)); \
271 /*-------------------------------------------------*/ \
272 /* r0 = lmf.previous_lmf */ \
273 /*-------------------------------------------------*/ \
274 s390_lg (code, s390_r0, 0, s390_r13, \
275 G_STRUCT_OFFSET(MonoLMF, previous_lmf)); \
277 /*-------------------------------------------------*/ \
278 /* jit_tls->lmf = previous_lmf */ \
279 /*-------------------------------------------------*/ \
280 s390_lg (code, s390_r13, 0, s390_r6, 0); \
281 s390_stg (code, s390_r0, 0, s390_r6, 0); \
284 /*========================= End of Function ========================*/
286 #endif /* __MONO_MINI_S390X_H__ */