* mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
[mono.git] / mono / mini / tramp-ia64.c
blobf9975572474f39520aa991dfe316f060cecfe052
1 /*
2 * tramp-ia64.c: JIT trampoline code for ia64
4 * Authors:
5 * Zoltan Varga (vargaz@gmail.com)
7 * (C) 2001 Ximian, Inc.
8 */
10 #include <config.h>
11 #include <glib.h>
13 #include <mono/metadata/appdomain.h>
14 #include <mono/metadata/marshal.h>
15 #include <mono/metadata/tabledefs.h>
16 #include <mono/metadata/mono-debug-debugger.h>
17 #include <mono/arch/ia64/ia64-codegen.h>
19 #include "mini.h"
20 #include "mini-ia64.h"
22 #define NOT_IMPLEMENTED g_assert_not_reached ()
24 #define GP_SCRATCH_REG 31
25 #define GP_SCRATCH_REG2 30
28 * mono_arch_get_unbox_trampoline:
29 * @m: method pointer
30 * @addr: pointer to native code for @m
32 * when value type methods are called through the vtable we need to unbox the
33 * this argument. This method returns a pointer to a trampoline which does
34 * unboxing before calling the method
36 gpointer
37 mono_arch_get_unbox_trampoline (MonoMethod *m, gpointer addr)
39 guint8 *buf;
40 gpointer func_addr, func_gp;
41 Ia64CodegenState code;
42 int this_reg = 0;
43 gpointer *desc;
44 MonoDomain *domain = mono_domain_get ();
46 /* FIXME: Optimize this */
48 if (!mono_method_signature (m)->ret->byref && MONO_TYPE_ISSTRUCT (mono_method_signature (m)->ret))
49 this_reg = 1;
51 func_addr = ((gpointer*)addr) [0];
52 func_gp = ((gpointer*)addr) [1];
54 mono_domain_lock (domain);
55 buf = mono_code_manager_reserve (domain->code_mp, 256);
56 mono_domain_unlock (domain);
58 /* Since the this reg is a stacked register, its a bit hard to access it */
59 ia64_codegen_init (code, buf);
60 ia64_alloc (code, 40, 8, 1, 0, 0);
61 ia64_adds_imm (code, 32 + this_reg, sizeof (MonoObject), 32 + this_reg);
62 ia64_mov_to_ar_i (code, IA64_PFS, 40);
63 ia64_movl (code, GP_SCRATCH_REG, func_addr);
64 ia64_mov_to_br (code, IA64_B6, GP_SCRATCH_REG);
65 ia64_br_cond_reg (code, IA64_B6);
66 ia64_codegen_close (code);
68 g_assert (code.buf - buf < 256);
70 mono_arch_flush_icache (buf, code.buf - buf);
72 /* FIXME: */
73 desc = g_malloc0 (sizeof (gpointer) * 2);
74 desc [0] = buf;
75 desc [1] = func_gp;
77 return desc;
80 void
81 mono_arch_patch_callsite (guint8 *code, guint8 *addr)
83 guint8 *callsite_begin;
84 guint64 *callsite = (guint64*)(gpointer)(code - 16);
85 guint64 *next_bundle;
86 guint64 ins, instructions [3];
87 guint64 buf [16];
88 Ia64CodegenState gen;
89 gpointer func = ((gpointer*)(gpointer)addr)[0];
91 while ((ia64_bundle_template (callsite) != IA64_TEMPLATE_MLX) &&
92 (ia64_bundle_template (callsite) != IA64_TEMPLATE_MLXS))
93 callsite -= 2;
94 callsite_begin = (guint8*)callsite;
96 next_bundle = callsite + 2;
97 ins = ia64_bundle_ins1 (next_bundle);
98 if (ia64_ins_opcode (ins) == 5) {
99 /* ld8_inc_imm -> indirect call through a function pointer */
100 g_assert (ia64_ins_r1 (ins) == GP_SCRATCH_REG2);
101 g_assert (ia64_ins_r3 (ins) == GP_SCRATCH_REG);
102 return;
105 /* Patch the code generated by emit_call */
107 instructions [0] = ia64_bundle_ins1 (callsite);
108 instructions [1] = ia64_bundle_ins2 (callsite);
109 instructions [2] = ia64_bundle_ins3 (callsite);
111 ia64_codegen_init (gen, (guint8*)buf);
112 ia64_movl (gen, GP_SCRATCH_REG, func);
113 instructions [1] = gen.instructions [0];
114 instructions [2] = gen.instructions [1];
116 ia64_codegen_init (gen, (guint8*)buf);
117 ia64_emit_bundle_template (&gen, ia64_bundle_template (callsite), instructions [0], instructions [1], instructions [2]);
118 ia64_codegen_close (gen);
120 /* This might not be safe, but not all itanium processors support st16 */
121 callsite [0] = buf [0];
122 callsite [1] = buf [1];
124 mono_arch_flush_icache (callsite_begin, code - callsite_begin);
127 void
128 mono_arch_patch_plt_entry (guint8 *code, guint8 *addr)
130 g_assert_not_reached ();
133 void
134 mono_arch_nullify_class_init_trampoline (guint8 *code, gssize *regs)
136 guint8 *callsite_begin;
137 guint64 *callsite = (guint64*)(gpointer)(code - 16);
138 guint64 instructions [3];
139 guint64 buf [16];
140 Ia64CodegenState gen;
142 while ((ia64_bundle_template (callsite) != IA64_TEMPLATE_MLX) &&
143 (ia64_bundle_template (callsite) != IA64_TEMPLATE_MLXS))
144 callsite -= 2;
145 callsite_begin = (guint8*)callsite;
147 /* Replace the code generated by emit_call with a sets of nops */
149 /* The first bundle might have other instructions in it */
150 instructions [0] = ia64_bundle_ins1 (callsite);
151 instructions [1] = IA64_NOP_X;
152 instructions [2] = IA64_NOP_X;
154 ia64_codegen_init (gen, (guint8*)buf);
155 ia64_emit_bundle_template (&gen, ia64_bundle_template (callsite), instructions [0], instructions [1], instructions [2]);
156 ia64_codegen_close (gen);
158 /* This might not be safe, but not all itanium processors support st16 */
159 callsite [0] = buf [0];
160 callsite [1] = buf [1];
162 callsite += 2;
164 /* The other bundles can be full replaced with nops */
166 ia64_codegen_init (gen, (guint8*)buf);
167 ia64_emit_bundle_template (&gen, IA64_TEMPLATE_MII, IA64_NOP_M, IA64_NOP_I, IA64_NOP_I);
168 ia64_codegen_close (gen);
170 while ((guint8*)callsite < code) {
171 callsite [0] = buf [0];
172 callsite [1] = buf [1];
173 callsite += 2;
176 mono_arch_flush_icache (callsite_begin, code - callsite_begin);
179 void
180 mono_arch_nullify_plt_entry (guint8 *code)
182 g_assert_not_reached ();
185 void
186 mono_arch_patch_delegate_trampoline (guint8 *code, guint8 *tramp, gssize *regs, guint8 *addr)
189 * This is called by the code generated by OP_CALL_REG:
190 * ld8 r30=[r8],8
191 * nop.i 0x0;;
192 * mov.sptk b6=r30
193 * ld8 r1=[r8]
194 * br.call.sptk.few b0=b6
197 /* We patch the function descriptor instead of delegate->method_ptr */
198 //g_assert (((gpointer*)(regs [8] - 8))[0] == tramp);
199 ((gpointer*)(regs [8] - 8))[0] = mono_get_addr_from_ftnptr (addr);
200 ((gpointer*)(regs [8] - 8))[1] = NULL;
203 guchar*
204 mono_arch_create_trampoline_code (MonoTrampolineType tramp_type)
206 guint8 *buf, *tramp;
207 int i, offset, saved_regs_offset, saved_fpregs_offset, last_offset, framesize;
208 int in0, local0, out0, l0, l1, l2, l3, l4, l5, l6, l7, l8, o0, o1, o2, o3;
209 gboolean has_caller;
210 Ia64CodegenState code;
211 unw_dyn_info_t *di;
212 unw_dyn_region_info_t *r_pro;
215 * Since jump trampolines are not patched, this trampoline is executed every
216 * time a call is made to a jump trampoline. So we try to keep things faster
217 * in that case.
219 if (tramp_type == MONO_TRAMPOLINE_JUMP)
220 has_caller = FALSE;
221 else
222 has_caller = TRUE;
224 buf = mono_global_codeman_reserve (2048);
226 ia64_codegen_init (code, buf);
228 /* FIXME: Save/restore lmf */
230 /* Stacked Registers */
231 in0 = 32;
232 local0 = in0 + 8;
233 out0 = local0 + 16;
234 l0 = 40;
235 l1 = 41;
236 l2 = 42;
237 l3 = 43;
238 l4 = 44;
239 l5 = 45; /* saved ar.pfs */
240 l6 = 46; /* arg */
241 l7 = 47; /* code */
242 l8 = 48; /* saved sp */
243 o0 = out0 + 0; /* regs */
244 o1 = out0 + 1; /* code */
245 o2 = out0 + 2; /* arg */
246 o3 = out0 + 3; /* tramp */
248 framesize = (128 * 8) + 1024;
249 framesize = (framesize + (MONO_ARCH_FRAME_ALIGNMENT - 1)) & ~ (MONO_ARCH_FRAME_ALIGNMENT - 1);
252 * Allocate a new register+memory stack frame.
253 * 8 input registers (the max used by the ABI)
254 * 16 locals
255 * 4 output (number of parameters passed to trampoline)
257 ia64_unw_save_reg (code, UNW_IA64_AR_PFS, UNW_IA64_GR + l5);
258 ia64_alloc (code, l5, local0 - in0, out0 - local0, 4, 0);
259 ia64_unw_save_reg (code, UNW_IA64_SP, UNW_IA64_GR + l8);
260 ia64_mov (code, l8, IA64_SP);
261 ia64_adds_imm (code, IA64_SP, (-framesize), IA64_SP);
263 offset = 16; /* scratch area */
265 /* Save the argument received from the specific trampoline */
266 ia64_mov (code, l6, GP_SCRATCH_REG);
268 /* Save the calling address */
269 ia64_unw_save_reg (code, UNW_IA64_RP, UNW_IA64_GR + local0 + 7);
270 ia64_mov_from_br (code, l7, IA64_B0);
272 /* Create unwind info for the prolog */
273 ia64_begin_bundle (code);
274 r_pro = mono_ia64_create_unwind_region (&code);
276 /* Save registers */
277 /* Not needed for jump trampolines */
278 if (tramp_type != MONO_TRAMPOLINE_JUMP) {
279 saved_regs_offset = offset;
280 offset += 128 * 8;
282 * Only the registers which are needed for computing vtable slots need
283 * to be saved.
285 last_offset = -1;
286 for (i = 0; i < 64; ++i)
287 if ((1 << i) & MONO_ARCH_CALLEE_REGS) {
288 if (last_offset != i * 8)
289 ia64_adds_imm (code, l1, saved_regs_offset + (i * 8), IA64_SP);
290 ia64_st8_spill_inc_imm_hint (code, l1, i, 8, 0);
291 last_offset = (i + 1) * 8;
295 /* Save fp registers */
296 saved_fpregs_offset = offset;
297 offset += 8 * 8;
298 ia64_adds_imm (code, l1, saved_fpregs_offset, IA64_SP);
299 for (i = 0; i < 8; ++i)
300 ia64_stfd_inc_imm_hint (code, l1, i + 8, 8, 0);
302 g_assert (offset < framesize);
304 /* Arg1 is the pointer to the saved registers */
305 ia64_adds_imm (code, o0, saved_regs_offset, IA64_SP);
307 /* Arg2 is the address of the calling code */
308 if (has_caller)
309 ia64_mov (code, o1, l7);
310 else
311 ia64_mov (code, o1, 0);
313 /* Arg3 is the method/vtable ptr */
314 ia64_mov (code, o2, l6);
316 /* Arg4 is the trampoline address */
317 /* FIXME: */
318 ia64_mov (code, o3, 0);
320 if (tramp_type == MONO_TRAMPOLINE_CLASS_INIT)
321 tramp = (guint8*)mono_class_init_trampoline;
322 else if (tramp_type == MONO_TRAMPOLINE_AOT)
323 tramp = (guint8*)mono_aot_trampoline;
324 else if (tramp_type == MONO_TRAMPOLINE_DELEGATE)
325 tramp = (guint8*)mono_delegate_trampoline;
326 else
327 tramp = (guint8*)mono_magic_trampoline;
329 /* Call the trampoline using an indirect call */
330 ia64_movl (code, l0, tramp);
331 ia64_ld8_inc_imm (code, l1, l0, 8);
332 ia64_mov_to_br (code, IA64_B6, l1);
333 ia64_ld8 (code, IA64_GP, l0);
334 ia64_br_call_reg (code, 0, IA64_B6);
336 /* Restore fp regs */
337 ia64_adds_imm (code, l1, saved_fpregs_offset, IA64_SP);
338 for (i = 0; i < 8; ++i)
339 ia64_ldfd_inc_imm (code, i + 8, l1, 8);
341 /* FIXME: Handle NATs in fp regs / scratch regs */
343 if (tramp_type != MONO_TRAMPOLINE_CLASS_INIT) {
344 /* Load method address from function descriptor */
345 ia64_ld8 (code, l0, IA64_R8);
346 ia64_mov_to_br (code, IA64_B6, l0);
349 /* Clean up register/memory stack frame */
350 ia64_adds_imm (code, IA64_SP, framesize, IA64_SP);
351 ia64_mov_to_ar_i (code, IA64_PFS, l5);
353 if (tramp_type == MONO_TRAMPOLINE_CLASS_INIT) {
354 ia64_mov_ret_to_br (code, IA64_B0, l7);
355 ia64_br_ret_reg (code, IA64_B0);
357 else {
358 /* Call the compiled method */
359 ia64_mov_to_br (code, IA64_B0, l7);
360 ia64_br_cond_reg (code, IA64_B6);
363 ia64_codegen_close (code);
365 g_assert ((code.buf - buf) <= 2048);
367 /* FIXME: emit unwind info for epilog */
368 di = g_malloc0 (sizeof (unw_dyn_info_t));
369 di->start_ip = (unw_word_t) buf;
370 di->end_ip = (unw_word_t) code.buf;
371 di->gp = 0;
372 di->format = UNW_INFO_FORMAT_DYNAMIC;
373 di->u.pi.name_ptr = (unw_word_t)"ia64_generic_trampoline";
374 di->u.pi.regions = r_pro;
376 _U_dyn_register (di);
378 mono_arch_flush_icache (buf, code.buf - buf);
380 return buf;
383 #define TRAMPOLINE_SIZE 128
385 gpointer
386 mono_arch_create_specific_trampoline (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
388 guint8 *buf, *tramp;
389 gint64 disp;
390 Ia64CodegenState code;
392 tramp = mono_get_trampoline_code (tramp_type);
394 mono_domain_lock (domain);
395 buf = mono_code_manager_reserve (domain->code_mp, TRAMPOLINE_SIZE);
396 mono_domain_unlock (domain);
398 /* FIXME: Optimize this */
400 ia64_codegen_init (code, buf);
402 ia64_movl (code, GP_SCRATCH_REG, arg1);
404 ia64_begin_bundle (code);
405 disp = (tramp - code.buf) >> 4;
406 if (ia64_is_imm21 (disp)) {
407 ia64_br_cond (code, disp);
409 else {
410 ia64_movl (code, GP_SCRATCH_REG2, tramp);
411 ia64_mov_to_br (code, IA64_B6, GP_SCRATCH_REG2);
412 ia64_br_cond_reg (code, IA64_B6);
415 ia64_codegen_close (code);
417 g_assert (code.buf - buf <= TRAMPOLINE_SIZE);
419 mono_arch_flush_icache (buf, code.buf - buf);
421 if (code_len)
422 *code_len = code.buf - buf;
424 return buf;
427 void
428 mono_arch_invalidate_method (MonoJitInfo *ji, void *func, gpointer func_arg)
430 NOT_IMPLEMENTED;
433 guint8*
434 mono_debugger_create_notification_function (MonoCodeManager *codeman)
436 NOT_IMPLEMENTED;
438 return NULL;