2002-09-25 Martin Baulig <martin@gnome.org>
[mono.git] / mono / jit / trampoline.c
1 /*
2  * trampoline.c: JIT trampoline code
3  *
4  * Authors:
5  *   Dietmar Maurer (dietmar@ximian.com)
6  *
7  * (C) 2001 Ximian, Inc.
8  */
9
10 #include <config.h>
11 #include <glib.h>
12
13 #include <mono/metadata/appdomain.h>
14 #include <mono/metadata/tabledefs.h>
15 #include <mono/arch/x86/x86-codegen.h>
16
17 #include "jit.h"
18 #include "codegen.h"
19 #include "debug.h"
20
21 /*
22  * Address of the x86 trampoline code.  This is used by the debugger to check
23  * whether a method is a trampoline.
24  */
25 guint8 *mono_generic_trampoline_code = NULL;
26
27 /*
28  * Address of a special breakpoint trampoline code for the debugger.
29  */
30 guint8 *mono_breakpoint_trampoline_code = NULL;
31
32 /*
33  * get_unbox_trampoline:
34  * @m: method pointer
35  * @addr: pointer to native code for @m
36  *
37  * when value type methods are called through the vtable we need to unbox the
38  * this argument. This method returns a pointer to a trampoline which does
39  * unboxing before calling the method
40  */
41 static gpointer
42 get_unbox_trampoline (MonoMethod *m, gpointer addr)
43 {
44         guint8 *code, *start;
45         int this_pos = 4;
46
47         if (!m->signature->ret->byref && m->signature->ret->type == MONO_TYPE_VALUETYPE)
48                 this_pos = 8;
49             
50         start = code = g_malloc (16);
51
52         x86_alu_membase_imm (code, X86_ADD, X86_ESP, this_pos, sizeof (MonoObject));
53         x86_jump_code (code, addr);
54         g_assert ((code - start) < 16);
55
56         return start;
57 }
58
59 /*
60  * get_breakpoint_trampoline:
61  * @m: method pointer
62  * @addr: pointer to native code for @m
63  *
64  * creates a special trampoline for the debugger which is used to get
65  * a breakpoint after compiling a method.
66  */
67 static gpointer
68 get_breakpoint_trampoline (MonoMethod *m, guint32 breakpoint_id, gpointer addr)
69 {
70         guint8 *code, *start, *buf;
71
72         if (!mono_breakpoint_trampoline_code) {
73                 mono_breakpoint_trampoline_code = buf = g_malloc (8);
74
75                 x86_breakpoint (buf);
76                 x86_alu_reg_imm (buf, X86_ADD, X86_ESP, 8);
77                 x86_ret (buf);
78
79                 g_assert ((buf - mono_breakpoint_trampoline_code) <= 8);
80         }
81
82         start = code = g_malloc (22);
83         x86_push_imm (code, addr);
84         x86_push_imm (code, breakpoint_id);
85         x86_push_imm (code, m);
86         x86_jump_code (code, mono_breakpoint_trampoline_code);
87         g_assert ((code - start) <= 22);
88
89         return start;
90 }
91
92 /**
93  * x86_magic_trampoline:
94  * @eax: saved x86 register 
95  * @ecx: saved x86 register 
96  * @edx: saved x86 register 
97  * @esi: saved x86 register 
98  * @edi: saved x86 register 
99  * @ebx: saved x86 register
100  * @code: pointer into caller code
101  * @method: the method to translate
102  *
103  * This method is called by the trampoline functions for virtual
104  * methods. It inspects the caller code to find the address of the
105  * vtable slot, then calls the JIT compiler and writes the address
106  * of the compiled method back to the vtable. All virtual methods 
107  * are called with: x86_call_membase (inst, basereg, disp). We always
108  * use 32 bit displacement to ensure that the length of the call 
109  * instruction is 6 bytes. We need to get the value of the basereg 
110  * and the constant displacement.
111  */
112 static gpointer
113 x86_magic_trampoline (int eax, int ecx, int edx, int esi, int edi, 
114                       int ebx, guint8 *code, MonoMethod *m)
115 {
116         guint8 reg;
117         gint32 disp;
118         char *o;
119         guint32 breakpoint_id;
120         gpointer addr, trampoline;
121
122         EnterCriticalSection (metadata_section);
123         addr = mono_compile_method (m);
124         LeaveCriticalSection (metadata_section);
125         g_assert (addr);
126
127         /* go to the start of the call instruction
128          *
129          * address_byte = (m << 6) | (o << 3) | reg
130          * call opcode: 0xff address_byte displacement
131          * 0xff m=1,o=2 imm8
132          * 0xff m=2,o=2 imm32
133          */
134         code -= 6;
135         if ((code [1] != 0xe8) && (code [3] == 0xff) && ((code [4] & 0x18) == 0x10) && ((code [4] >> 6) == 1)) {
136                 reg = code [4] & 0x07;
137                 disp = (signed char)code [5];
138         } else {
139                 if ((code [0] == 0xff) && ((code [1] & 0x18) == 0x10) && ((code [1] >> 6) == 2)) {
140                         reg = code [1] & 0x07;
141                         disp = *((gint32*)(code + 2));
142                 } else if ((code [1] == 0xe8)) {
143                         *((guint32*)(code + 2)) = (guint)addr - ((guint)code + 1) - 5; 
144                         return addr;
145                 } else {
146                         printf ("Invalid trampoline sequence: %x %x %x %x %x %x %x\n", code [0], code [1], code [2], code [3],
147                                 code [4], code [5], code [6]);
148                         g_assert_not_reached ();
149                 }
150         }
151
152         switch (reg) {
153         case X86_EAX:
154                 o = (gpointer)eax;
155                 break;
156         case X86_EDX:
157                 o = (gpointer)edx;
158                 break;
159         case X86_ECX:
160                 o = (gpointer)ecx;
161                 break;
162         case X86_ESI:
163                 o = (gpointer)esi;
164                 break;
165         case X86_EDI:
166                 o = (gpointer)edi;
167                 break;
168         case X86_EBX:
169                 o = (gpointer)ebx;
170                 break;
171         default:
172                 g_assert_not_reached ();
173         }
174
175         o += disp;
176
177         breakpoint_id = mono_method_has_breakpoint (m, TRUE);
178         if (breakpoint_id) {
179                 trampoline = get_breakpoint_trampoline (m, breakpoint_id, addr);
180         } else {
181                 trampoline = addr;
182         }
183
184         if (m->klass->valuetype) {
185                 return *((gpointer *)o) = get_unbox_trampoline (m, trampoline);
186         } else {
187                 return *((gpointer *)o) = trampoline;
188         }
189 }
190
191 /**
192  * arch_create_jit_trampoline:
193  * @method: pointer to the method info
194  *
195  * Creates a trampoline function for virtual methods. If the created
196  * code is called it first starts JIT compilation of method,
197  * and then calls the newly created method. I also replaces the
198  * corresponding vtable entry (see x86_magic_trampoline).
199  * 
200  * Returns: a pointer to the newly created code 
201  */
202 gpointer
203 arch_create_jit_trampoline (MonoMethod *method)
204 {
205         MonoDomain *domain = mono_domain_get ();
206         guint8 *code, *buf;
207         GHashTable *jit_code_hash;
208
209         /* previously created trampoline code */
210         if (method->info)
211                 return method->info;
212
213         /* we immediately compile runtime provided functions */
214         if (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) {
215                 method->info = mono_compile_method (method);
216                 return method->info;
217         }
218
219         /* icalls use method->addr */
220         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
221             (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
222                 MonoMethod *nm;
223                 
224                 nm = mono_marshal_get_native_wrapper (method);
225                 method->info = mono_compile_method (nm);
226                 return method->info;
227         }
228
229         /* check if we already have JITed code */
230         if (mono_jit_share_code)
231                 jit_code_hash = mono_root_domain->jit_code_hash;
232         else
233                 jit_code_hash = domain->jit_code_hash;
234
235         if ((code = g_hash_table_lookup (jit_code_hash, method))) {
236                 mono_jit_stats.methods_lookups++;
237                 return code;
238         }
239
240         if (!mono_generic_trampoline_code) {
241                 mono_generic_trampoline_code = buf = g_malloc (256);
242                 /* save caller save regs because we need to do a call */ 
243                 x86_push_reg (buf, X86_EDX);
244                 x86_push_reg (buf, X86_EAX);
245                 x86_push_reg (buf, X86_ECX);
246
247                 /* save LMF begin */
248
249                 /* save the IP (caller ip) */
250                 x86_push_membase (buf, X86_ESP, 16);
251
252                 x86_push_reg (buf, X86_EBX);
253                 x86_push_reg (buf, X86_EDI);
254                 x86_push_reg (buf, X86_ESI);
255                 x86_push_reg (buf, X86_EBP);
256
257                 /* save method info */
258                 x86_push_membase (buf, X86_ESP, 32);
259                 /* get the address of lmf for the current thread */
260                 x86_call_code (buf, mono_get_lmf_addr);
261                 /* push lmf */
262                 x86_push_reg (buf, X86_EAX); 
263                 /* push *lfm (previous_lmf) */
264                 x86_push_membase (buf, X86_EAX, 0);
265                 /* *(lmf) = ESP */
266                 x86_mov_membase_reg (buf, X86_EAX, 0, X86_ESP, 4);
267                 /* save LFM end */
268
269                 /* push the method info */
270                 x86_push_membase (buf, X86_ESP, 44);
271                 /* push the return address onto the stack */
272                 x86_push_membase (buf, X86_ESP, 52);
273
274                 /* save all register values */
275                 x86_push_reg (buf, X86_EBX);
276                 x86_push_reg (buf, X86_EDI);
277                 x86_push_reg (buf, X86_ESI);
278                 x86_push_membase (buf, X86_ESP, 64); /* EDX */
279                 x86_push_membase (buf, X86_ESP, 64); /* ECX */
280                 x86_push_membase (buf, X86_ESP, 64); /* EAX */
281
282                 x86_call_code (buf, x86_magic_trampoline);
283                 x86_alu_reg_imm (buf, X86_ADD, X86_ESP, 8*4);
284
285                 /* restore LMF start */
286                 /* ebx = previous_lmf */
287                 x86_pop_reg (buf, X86_EBX);
288                 /* edi = lmf */
289                 x86_pop_reg (buf, X86_EDI);
290                 /* *(lmf) = previous_lmf */
291                 x86_mov_membase_reg (buf, X86_EDI, 0, X86_EBX, 4);
292                 /* discard method info */
293                 x86_pop_reg (buf, X86_ESI);
294                 /* restore caller saved regs */
295                 x86_pop_reg (buf, X86_EBP);
296                 x86_pop_reg (buf, X86_ESI);
297                 x86_pop_reg (buf, X86_EDI);
298                 x86_pop_reg (buf, X86_EBX);
299                 /* discard save IP */
300                 x86_alu_reg_imm (buf, X86_ADD, X86_ESP, 4);             
301                 /* restore LMF end */
302
303                 x86_alu_reg_imm (buf, X86_ADD, X86_ESP, 16);
304
305                 /* call the compiled method */
306                 x86_jump_reg (buf, X86_EAX);
307
308                 g_assert ((buf - mono_generic_trampoline_code) <= 256);
309         }
310
311         code = buf = g_malloc (16);
312         x86_push_imm (buf, method);
313         x86_jump_code (buf, mono_generic_trampoline_code);
314         g_assert ((buf - code) <= 16);
315
316         /* store trampoline address */
317         method->info = code;
318
319         mono_jit_stats.method_trampolines++;
320
321         return code;
322 }