1 #ifndef __MONO_MINI_X86_H__
2 #define __MONO_MINI_X86_H__
4 #include <mono/arch/x86/x86-codegen.h>
5 #include <mono/utils/mono-sigcontext.h>
6 #include <mono/utils/mono-context.h>
8 #ifdef __native_client_codegen__
9 #define kNaClAlignmentX86 32
10 #define kNaClAlignmentMaskX86 (kNaClAlignmentX86 - 1)
12 #define kNaClLengthOfCallImm kx86NaClLengthOfCallImm
17 /* use SIG* defines if possible */
22 typedef void (* MonoW32ExceptionHandler
) (int _dummy
, EXCEPTION_POINTERS
*info
, void *context
);
24 void win32_seh_init(void);
25 void win32_seh_cleanup(void);
26 void win32_seh_set_handler(int type
, MonoW32ExceptionHandler handler
);
40 LONG CALLBACK
seh_handler(EXCEPTION_POINTERS
* ep
);
42 #endif /* HOST_WIN32 */
48 #endif /* __HAIKU__ */
50 #if defined( __linux__) || defined(__sun) || defined(__APPLE__) || defined(__NetBSD__) || \
51 defined(__FreeBSD__) || defined(__OpenBSD__)
52 #define MONO_ARCH_USE_SIGACTION
55 #if defined(__native_client__)
56 #undef MONO_ARCH_USE_SIGACTION
61 #ifdef HAVE_WORKING_SIGALTSTACK
63 * solaris doesn't have pthread_getattr_np () needed by the sigaltstack setup
67 #define MONO_ARCH_SIGSEGV_ON_ALTSTACK
69 /* Haiku doesn't have SA_SIGINFO */
71 #define MONO_ARCH_USE_SIGACTION
72 #endif /* __HAIKU__ */
74 #endif /* HAVE_WORKING_SIGALTSTACK */
75 #endif /* !HOST_WIN32 */
77 #define MONO_ARCH_SUPPORT_TASKLETS 1
80 #define MONO_ARCH_SIMD_INTRINSICS 1
81 #define MONO_ARCH_NEED_SIMD_BANK 1
84 /* we should lower this size and make sure we don't call heavy stack users in the segv handler */
85 #if defined(__APPLE__)
86 #define MONO_ARCH_SIGNAL_STACK_SIZE MINSIGSTKSZ
88 #define MONO_ARCH_SIGNAL_STACK_SIZE (16 * 1024)
90 #define MONO_ARCH_HAVE_RESTORE_STACK_SUPPORT 1
92 #define MONO_ARCH_CPU_SPEC x86_desc
94 #define MONO_MAX_IREGS 8
95 #define MONO_MAX_FREGS 8
96 #define MONO_MAX_XREGS 8
98 /* Parameters used by the register allocator */
99 #define MONO_ARCH_CALLEE_REGS X86_CALLEE_REGS
100 #define MONO_ARCH_CALLEE_SAVED_REGS X86_CALLER_REGS
102 #define MONO_ARCH_CALLEE_FREGS (0xff & ~(regmask (MONO_ARCH_FPSTACK_SIZE)))
103 #define MONO_ARCH_CALLEE_SAVED_FREGS 0
105 /* All registers are clobered by a call */
106 #define MONO_ARCH_CALLEE_XREGS (0xff & ~(regmask (MONO_MAX_XREGS)))
107 #define MONO_ARCH_CALLEE_SAVED_XREGS 0
109 #define MONO_ARCH_USE_FPSTACK TRUE
110 #define MONO_ARCH_FPSTACK_SIZE 6
112 #define MONO_ARCH_INST_FIXED_REG(desc) (((desc == ' ') || (desc == 'i')) ? -1 : ((desc == 's') ? X86_ECX : ((desc == 'a') ? X86_EAX : ((desc == 'd') ? X86_EDX : ((desc == 'l') ? X86_EAX : -1)))))
114 #define MONO_ARCH_INST_FIXED_MASK(desc) ((desc == 'y') ? (X86_BYTE_REGS) : 0)
116 /* RDX is clobbered by the opcode implementation before accessing sreg2 */
118 * Originally this contained X86_EDX for div/rem opcodes, but that led to unsolvable
119 * situations since there are only 3 usable registers for local register allocation.
120 * Instead, we handle the sreg2==edx case in the opcodes.
122 #define MONO_ARCH_INST_SREG2_MASK(ins) 0
125 * L is a generic register pair, while l means eax:rdx
127 #define MONO_ARCH_INST_IS_REGPAIR(desc) (desc == 'l' || desc == 'L')
128 #define MONO_ARCH_INST_REGPAIR_REG2(desc,hreg1) (desc == 'l' ? X86_EDX : -1)
130 /* must be at a power of 2 and >= 8 */
131 #define MONO_ARCH_FRAME_ALIGNMENT 16
133 /* fixme: align to 16byte instead of 32byte (we align to 32byte to get
134 * reproduceable results for benchmarks */
135 #define MONO_ARCH_CODE_ALIGNMENT 32
137 #define MONO_ARCH_RETREG1 X86_EAX
138 #define MONO_ARCH_RETREG2 X86_EDX
140 /*This is the max size of the locals area of a given frame. I think 1MB is a safe default for now*/
141 #define MONO_ARCH_MAX_FRAME_SIZE 0x100000
143 /*This is how much a try block must be extended when is is preceeded by a Monitor.Enter() call.
144 It's 4 bytes as this is how many bytes + 1 that 'add 0x10, %esp' takes. It is used to pop the arguments from
145 the monitor.enter call and must be already protected.*/
146 #define MONO_ARCH_MONITOR_ENTER_ADJUSTMENT 4
150 * If the lowest bit is set to 1, then this is a trampoline LMF frame.
151 * If the second lowest bit is set to 1, then this is a MonoLMFExt structure, and
152 * the other fields are not valid.
154 guint32 previous_lmf
;
156 /* Only set in trampoline LMF frames */
158 /* Only set in trampoline LMF frames */
168 gboolean need_stack_frame_inited
;
169 gboolean need_stack_frame
;
170 int sp_fp_offset
, param_area_size
;
173 #define MONO_CONTEXT_SET_LLVM_EXC_REG(ctx, exc) do { (ctx)->eax = (gsize)exc; } while (0)
177 #define MONO_INIT_CONTEXT_FROM_FUNC(ctx, start_func) do { \
178 unsigned int stackptr; \
179 mono_arch_flush_register_windows (); \
181 __asm mov stackptr, ebp \
183 MONO_CONTEXT_SET_IP ((ctx), (start_func)); \
184 MONO_CONTEXT_SET_BP ((ctx), stackptr); \
185 MONO_CONTEXT_SET_SP ((ctx), stackptr); \
190 #define MONO_INIT_CONTEXT_FROM_FUNC(ctx,start_func) do { \
191 mono_arch_flush_register_windows (); \
192 MONO_CONTEXT_SET_IP ((ctx), (start_func)); \
193 MONO_CONTEXT_SET_BP ((ctx), __builtin_frame_address (0)); \
194 MONO_CONTEXT_SET_SP ((ctx), __builtin_frame_address (0)); \
199 #define MONO_ARCH_INIT_TOP_LMF_ENTRY(lmf) do { (lmf)->ebp = -1; } while (0)
201 /* Enables OP_LSHL, OP_LSHL_IMM, OP_LSHR, OP_LSHR_IMM, OP_LSHR_UN, OP_LSHR_UN_IMM */
202 #define MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS
204 #define MONO_ARCH_BIGMUL_INTRINS 1
205 #define MONO_ARCH_NEED_DIV_CHECK 1
206 #define MONO_ARCH_HAVE_IS_INT_OVERFLOW 1
207 #define MONO_ARCH_HAVE_INVALIDATE_METHOD 1
208 #define MONO_ARCH_NEED_GOT_VAR 1
209 #define MONO_ARCH_ENABLE_MONO_LMF_VAR 1
210 #define MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE 1
211 #define MONO_ARCH_HAVE_ATOMIC_ADD 1
212 #define MONO_ARCH_HAVE_ATOMIC_EXCHANGE 1
213 #define MONO_ARCH_HAVE_ATOMIC_CAS 1
214 #define MONO_ARCH_HAVE_IMT 1
215 #define MONO_ARCH_HAVE_TLS_GET (mono_x86_have_tls_get ())
216 #define MONO_ARCH_IMT_REG X86_EDX
217 #define MONO_ARCH_VTABLE_REG X86_EDX
218 #define MONO_ARCH_RGCTX_REG MONO_ARCH_IMT_REG
219 #define MONO_ARCH_HAVE_GENERALIZED_IMT_THUNK 1
220 #define MONO_ARCH_HAVE_LIVERANGE_OPS 1
221 #define MONO_ARCH_HAVE_XP_UNWIND 1
222 #define MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX 1
223 #if defined(__linux__) || defined (__APPLE__)
224 #define MONO_ARCH_MONITOR_OBJECT_REG X86_EAX
226 #if !defined(__native_client_codegen__)
227 #define MONO_ARCH_HAVE_FULL_AOT_TRAMPOLINES 1
229 #define MONO_ARCH_GOT_REG X86_EBX
230 #define MONO_ARCH_HAVE_GET_TRAMPOLINES 1
232 #define MONO_ARCH_HAVE_CMOV_OPS 1
234 #ifdef MONO_ARCH_SIMD_INTRINSICS
235 #define MONO_ARCH_HAVE_DECOMPOSE_OPTS 1
238 #define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS 1
241 #define MONO_ARCH_AOT_SUPPORTED 1
244 #define MONO_ARCH_ENABLE_MONITOR_IL_FASTPATH 1
246 #define MONO_ARCH_GSHARED_SUPPORTED 1
247 #define MONO_ARCH_HAVE_LLVM_IMT_TRAMPOLINE 1
248 #define MONO_ARCH_LLVM_SUPPORTED 1
249 #define MONO_ARCH_THIS_AS_FIRST_ARG 1
251 #if defined(MONO_ARCH_USE_SIGACTION) || defined(TARGET_WIN32)
252 #define MONO_ARCH_SOFT_DEBUG_SUPPORTED 1
255 #define MONO_ARCH_HAVE_EXCEPTIONS_INIT 1
256 #define MONO_ARCH_HAVE_HANDLER_BLOCK_GUARD 1
258 #define MONO_ARCH_HAVE_CARD_TABLE_WBARRIER 1
259 #define MONO_ARCH_HAVE_SETUP_RESUME_FROM_SIGNAL_HANDLER_CTX 1
260 #define MONO_ARCH_GC_MAPS_SUPPORTED 1
261 #define MONO_ARCH_HAVE_CONTEXT_SET_INT_REG 1
262 #define MONO_ARCH_HAVE_SETUP_ASYNC_CALLBACK 1
263 #define MONO_ARCH_GSHAREDVT_SUPPORTED 1
266 mono_x86_tail_call_supported (MonoMethodSignature
*caller_sig
, MonoMethodSignature
*callee_sig
) MONO_INTERNAL
;
268 #define MONO_ARCH_USE_OP_TAIL_CALL(caller_sig, callee_sig) mono_x86_tail_call_supported (caller_sig, callee_sig)
270 /* Used for optimization, not complete */
271 #define MONO_ARCH_IS_OP_MEMBASE(opcode) ((opcode) == OP_X86_PUSH_MEMBASE)
273 #define MONO_ARCH_EMIT_BOUNDS_CHECK(cfg, array_reg, offset, index_reg) do { \
275 MONO_INST_NEW ((cfg), inst, OP_X86_COMPARE_MEMBASE_REG); \
276 inst->inst_basereg = array_reg; \
277 inst->inst_offset = offset; \
278 inst->sreg2 = index_reg; \
279 MONO_ADD_INS ((cfg)->cbb, inst); \
280 MONO_EMIT_NEW_COND_EXC (cfg, LE_UN, "IndexOutOfRangeException"); \
286 } MonoBreakpointInfo
;
288 extern MonoBreakpointInfo mono_breakpoint_info
[MONO_BREAKPOINT_ARRAY_SIZE
];
290 /* Return value marshalling for calls between gsharedvt and normal code */
292 GSHAREDVT_RET_NONE
= 0,
293 GSHAREDVT_RET_IREGS
= 1,
294 GSHAREDVT_RET_DOUBLE_FPSTACK
= 2,
295 GSHAREDVT_RET_FLOAT_FPSTACK
= 3,
296 GSHAREDVT_RET_STACK_POP
= 4,
297 GSHAREDVT_RET_I1
= 5,
298 GSHAREDVT_RET_U1
= 6,
299 GSHAREDVT_RET_I2
= 7,
301 } GSharedVtRetMarshal
;
304 /* Method address to call */
306 /* The trampoline reads this, so keep the size explicit */
308 /* If ret_marshal != NONE, this is the stack slot of the vret arg, else -1 */
310 /* The stack slot where the return value will be stored */
312 int stack_usage
, map_count
;
313 /* If not -1, then make a virtual call using this vtable offset */
315 /* Whenever this is a in or an out call */
317 int map
[MONO_ZERO_LEN_ARRAY
];
321 mono_x86_emit_tls_get (guint8
* code
, int dreg
, int tls_offset
) MONO_INTERNAL
;
324 mono_x86_get_this_arg_offset (MonoGenericSharingContext
*gsctx
, MonoMethodSignature
*sig
) MONO_INTERNAL
;
327 mono_x86_have_tls_get (void) MONO_INTERNAL
;
330 mono_x86_throw_exception (mgreg_t
*regs
, MonoObject
*exc
,
331 mgreg_t eip
, gboolean rethrow
) MONO_INTERNAL
;
334 mono_x86_throw_corlib_exception (mgreg_t
*regs
, guint32 ex_token_index
,
335 mgreg_t eip
, gint32 pc_offset
) MONO_INTERNAL
;
338 mono_x86_patch (unsigned char* code
, gpointer target
) MONO_INTERNAL
;
341 mono_x86_start_gsharedvt_call (GSharedVtCallInfo
*info
, gpointer
*caller
, gpointer
*callee
) MONO_INTERNAL
;
343 #endif /* __MONO_MINI_X86_H__ */