2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mono / mini / mini.c
1 /*
2  * mini.c: The new Mono code generator.
3  *
4  * Author:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * (C) 2002 Ximian, Inc.
9  */
10
11 #include <config.h>
12 #include <signal.h>
13 #include <unistd.h>
14 #include <math.h>
15
16 #ifdef HAVE_VALGRIND_MEMCHECK_H
17 #include <valgrind/memcheck.h>
18 #endif
19
20 #include <mono/metadata/assembly.h>
21 #include <mono/metadata/loader.h>
22 #include <mono/metadata/cil-coff.h>
23 #include <mono/metadata/tabledefs.h>
24 #include <mono/metadata/class.h>
25 #include <mono/metadata/object.h>
26 #include <mono/metadata/exception.h>
27 #include <mono/metadata/opcodes.h>
28 #include <mono/metadata/mono-endian.h>
29 #include <mono/metadata/tokentype.h>
30 #include <mono/metadata/tabledefs.h>
31 #include <mono/metadata/threads.h>
32 #include <mono/metadata/marshal.h>
33 #include <mono/metadata/socket-io.h>
34 #include <mono/metadata/appdomain.h>
35 #include <mono/metadata/debug-helpers.h>
36 #include <mono/io-layer/io-layer.h>
37 #include "mono/metadata/profiler.h"
38 #include <mono/metadata/profiler-private.h>
39 #include <mono/metadata/mono-config.h>
40 #include <mono/metadata/environment.h>
41 #include <mono/metadata/mono-debug.h>
42 #include <mono/metadata/mono-debug-debugger.h>
43 #include <mono/metadata/monitor.h>
44
45 #include "mini.h"
46 #include <string.h>
47 #include <ctype.h>
48 #include "inssel.h"
49 #include "trace.h"
50
51 #include "jit-icalls.c"
52
53 /* 
54  * this is used to determine when some branch optimizations are possible: we exclude FP compares
55  * because they have weird semantics with NaNs.
56  */
57 #define MONO_IS_COND_BRANCH_OP(ins) (((ins)->opcode >= CEE_BEQ && (ins)->opcode <= CEE_BLT_UN) || ((ins)->opcode >= OP_LBEQ && (ins)->opcode <= OP_LBLT_UN) || ((ins)->opcode >= OP_FBEQ && (ins)->opcode <= OP_FBLT_UN))
58 #define MONO_IS_COND_BRANCH_NOFP(ins) (MONO_IS_COND_BRANCH_OP(ins) && (ins)->inst_left->inst_left->type != STACK_R8)
59
60 #define MONO_CHECK_THIS(ins) (cfg->method->signature->hasthis && (ins)->ssa_op == MONO_SSA_LOAD && (ins)->inst_left->inst_c0 == 0)
61
62 gboolean  mono_arch_print_tree(MonoInst *tree, int arity);
63 static gpointer mono_jit_compile_method_with_opt (MonoMethod *method, guint32 opt);
64 static gpointer mono_jit_compile_method (MonoMethod *method);
65 static gpointer mono_jit_find_compiled_method (MonoDomain *domain, MonoMethod *method);
66
67 static void handle_stobj (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *dest, MonoInst *src, 
68                           const unsigned char *ip, MonoClass *klass, gboolean to_end, gboolean native);
69
70 static void dec_foreach (MonoInst *tree, MonoCompile *cfg);
71
72 static int mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_bblock, MonoBasicBlock *end_bblock, 
73                    int locals_offset, MonoInst *return_var, GList *dont_inline, MonoInst **inline_args, 
74                    guint inline_offset, gboolean is_virtual_call);
75
76 extern guint8 mono_burg_arity [];
77 /* helper methods signature */
78 static MonoMethodSignature *helper_sig_long_long_long = NULL;
79 static MonoMethodSignature *helper_sig_long_long_int = NULL;
80 static MonoMethodSignature *helper_sig_newarr = NULL;
81 static MonoMethodSignature *helper_sig_newarr_specific = NULL;
82 static MonoMethodSignature *helper_sig_ldstr = NULL;
83 static MonoMethodSignature *helper_sig_domain_get = NULL;
84 static MonoMethodSignature *helper_sig_object_new = NULL;
85 static MonoMethodSignature *helper_sig_object_new_specific = NULL;
86 static MonoMethodSignature *helper_sig_compile = NULL;
87 static MonoMethodSignature *helper_sig_compile_virt = NULL;
88 static MonoMethodSignature *helper_sig_obj_ptr = NULL;
89 static MonoMethodSignature *helper_sig_obj_ptr_ptr = NULL;
90 static MonoMethodSignature *helper_sig_obj_void = NULL;
91 static MonoMethodSignature *helper_sig_ptr_void = NULL;
92 static MonoMethodSignature *helper_sig_void_ptr = NULL;
93 static MonoMethodSignature *helper_sig_void_obj = NULL;
94 static MonoMethodSignature *helper_sig_void_obj_ptr_int = NULL;
95 static MonoMethodSignature *helper_sig_void_ptr_ptr = NULL;
96 static MonoMethodSignature *helper_sig_void_ptr_ptr_ptr = NULL;
97 static MonoMethodSignature *helper_sig_ptr_ptr_ptr = NULL;
98 static MonoMethodSignature *helper_sig_ptr_obj = NULL;
99 static MonoMethodSignature *helper_sig_ptr_obj_int = NULL;
100 static MonoMethodSignature *helper_sig_ptr_int = NULL;
101 static MonoMethodSignature *helper_sig_initobj = NULL;
102 static MonoMethodSignature *helper_sig_memcpy = NULL;
103 static MonoMethodSignature *helper_sig_memset = NULL;
104 static MonoMethodSignature *helper_sig_ulong_double = NULL;
105 static MonoMethodSignature *helper_sig_long_double = NULL;
106 static MonoMethodSignature *helper_sig_double_long = NULL;
107 static MonoMethodSignature *helper_sig_double_int = NULL;
108 static MonoMethodSignature *helper_sig_float_long = NULL;
109 static MonoMethodSignature *helper_sig_double_double_double = NULL;
110 static MonoMethodSignature *helper_sig_uint_double = NULL;
111 static MonoMethodSignature *helper_sig_int_double = NULL;
112 static MonoMethodSignature *helper_sig_stelem_ref = NULL;
113 static MonoMethodSignature *helper_sig_stelem_ref_check = NULL;
114 static MonoMethodSignature *helper_sig_class_init_trampoline = NULL;
115
116 static guint32 default_opt = MONO_OPT_PEEPHOLE;
117
118 guint32 mono_jit_tls_id = -1;
119 MonoTraceSpec *mono_jit_trace_calls = NULL;
120 gboolean mono_break_on_exc = FALSE;
121 gboolean mono_compile_aot = FALSE;
122
123 static int mini_verbose = 0;
124
125 static CRITICAL_SECTION trampoline_hash_mutex;
126
127 static GHashTable *class_init_hash_addr = NULL;
128
129 static GHashTable *jump_trampoline_hash = NULL;
130
131 gboolean
132 mono_running_on_valgrind (void)
133 {
134 #ifdef HAVE_VALGRIND_MEMCHECK_H
135                 if (RUNNING_ON_VALGRIND)
136                         return TRUE;
137                 else
138                         return FALSE;
139 #else
140                 return FALSE;
141 #endif
142 }
143
144 /* debug function */
145 G_GNUC_UNUSED static void
146 print_method_from_ip (void *ip)
147 {
148         MonoJitInfo *ji;
149         char *method;
150         char *source;
151         MonoDomain *domain = mono_domain_get ();
152         
153         ji = mono_jit_info_table_find (domain, ip);
154         if (!ji) {
155                 g_print ("No method at %p\n", ip);
156                 return;
157         }
158         method = mono_method_full_name (ji->method, TRUE);
159         source = mono_debug_source_location_from_address (ji->method, (int) ip, NULL, domain);
160
161         g_print ("IP %p at offset 0x%x of method %s (%p %p)\n", ip, (char*)ip - (char*)ji->code_start, method, ji->code_start, (char*)ji->code_start + ji->code_size);
162
163         if (source)
164                 g_print ("%s\n", source);
165
166         g_free (source);
167         g_free (method);
168
169 }
170
171 /* 
172  * mono_method_same_domain:
173  *
174  * Determine whenever two compiled methods are in the same domain, thus
175  * the address of the callee can be embedded in the caller.
176  */
177 gboolean mono_method_same_domain (MonoJitInfo *caller, MonoJitInfo *callee)
178 {
179         if (!caller || !callee)
180                 return FALSE;
181
182         /*
183          * If the call was made from domain-neutral to domain-specific 
184          * code, we can't patch the call site.
185          */
186         if (caller->domain_neutral && !callee->domain_neutral)
187                 return FALSE;
188
189         if ((caller->method->klass == mono_defaults.appdomain_class) &&
190                 (strstr (caller->method->name, "InvokeInDomain"))) {
191                  /* The InvokeInDomain methods change the current appdomain */
192                 return FALSE;
193         }
194
195         return TRUE;
196 }
197
198 MonoJumpInfoToken *
199 mono_jump_info_token_new (MonoMemPool *mp, MonoImage *image, guint32 token)
200 {
201         MonoJumpInfoToken *res = mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoToken));
202         res->image = image;
203         res->token = token;
204
205         return res;
206 }
207
208 #define MONO_INIT_VARINFO(vi,id) do { \
209         (vi)->range.first_use.pos.bid = 0xffff; \
210         (vi)->reg = -1; \
211         (vi)->idx = (id); \
212 } while (0)
213
214 /*
215  * Basic blocks have two numeric identifiers:
216  * dfn: Depth First Number
217  * block_num: unique ID assigned at bblock creation
218  */
219 #define NEW_BBLOCK(cfg) (mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoBasicBlock)))
220 #define ADD_BBLOCK(cfg,bbhash,b) do {   \
221                 g_hash_table_insert (bbhash, (b)->cil_code, (b));       \
222                 (b)->block_num = cfg->num_bblocks++;    \
223                 (b)->real_offset = real_offset; \
224         } while (0)
225
226 #define GET_BBLOCK(cfg,bbhash,tblock,ip) do {   \
227                 (tblock) = g_hash_table_lookup (bbhash, (ip));  \
228                 if (!(tblock)) {        \
229                         if ((ip) >= end || (ip) < header->code) goto unverified; \
230                         (tblock) = NEW_BBLOCK (cfg);    \
231                         (tblock)->cil_code = (ip);      \
232                         ADD_BBLOCK (cfg, (bbhash), (tblock));   \
233                 } \
234         } while (0)
235
236 #define CHECK_BBLOCK(target,ip,tblock) do {     \
237                 if ((target) < (ip) && !(tblock)->code) {       \
238                         bb_recheck = g_list_prepend (bb_recheck, (tblock));     \
239                         if (cfg->verbose_level > 2) g_print ("queued block %d for check at IL%04x from IL%04x\n", (tblock)->block_num, (target) - header->code, (ip) - header->code);   \
240                 }       \
241         } while (0)
242
243 #define NEW_ICONST(cfg,dest,val) do {   \
244                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
245                 (dest)->opcode = OP_ICONST;     \
246                 (dest)->inst_c0 = (val);        \
247                 (dest)->type = STACK_I4;        \
248         } while (0)
249
250 /* FIXME: have a different definition of NEW_PCONST for 64 bit systems */
251 #define NEW_PCONST(cfg,dest,val) do {   \
252                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
253                 (dest)->opcode = OP_ICONST;     \
254                 (dest)->inst_p0 = (val);        \
255                 (dest)->type = STACK_PTR;       \
256         } while (0)
257
258 #define NEW_CLASSCONST(cfg,dest,val) do {       \
259                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
260                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
261                 (dest)->inst_p0 = (val);        \
262                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_CLASS; \
263                 (dest)->type = STACK_PTR;       \
264         } while (0)
265
266 #define NEW_IMAGECONST(cfg,dest,val) do {       \
267                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
268                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
269                 (dest)->inst_p0 = (val);        \
270                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_IMAGE; \
271                 (dest)->type = STACK_PTR;       \
272         } while (0)
273
274 #define NEW_FIELDCONST(cfg,dest,field) do {     \
275                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
276                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
277                 (dest)->inst_p0 = (field);      \
278                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_FIELD; \
279                 (dest)->type = STACK_PTR;       \
280         } while (0)
281
282 #define NEW_METHODCONST(cfg,dest,val) do {      \
283                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
284                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
285                 (dest)->inst_p0 = (val);        \
286                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_METHODCONST; \
287                 (dest)->type = STACK_PTR;       \
288         } while (0)
289
290 #define NEW_VTABLECONST(cfg,dest,vtable) do {   \
291                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
292                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
293                 (dest)->inst_p0 = mono_compile_aot ? (gpointer)((vtable)->klass) : (vtable);    \
294                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_VTABLE; \
295                 (dest)->type = STACK_PTR;       \
296         } while (0)
297
298 #define NEW_SFLDACONST(cfg,dest,field) do {     \
299                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
300                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
301                 (dest)->inst_p0 = (field);      \
302                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_SFLDA; \
303                 (dest)->type = STACK_PTR;       \
304         } while (0)
305
306 #define NEW_LDSTRCONST(cfg,dest,image,token) do {       \
307                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
308                 (dest)->opcode = OP_AOTCONST;   \
309                 (dest)->inst_p0 = mono_jump_info_token_new ((cfg)->mempool, (image), (token));  \
310                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_LDSTR; \
311                 (dest)->type = STACK_OBJ;       \
312         } while (0)
313
314 #define NEW_TYPE_FROM_HANDLE_CONST(cfg,dest,image,token) do {   \
315                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
316                 (dest)->opcode = OP_AOTCONST;   \
317                 (dest)->inst_p0 = mono_jump_info_token_new ((cfg)->mempool, (image), (token));  \
318                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_TYPE_FROM_HANDLE; \
319                 (dest)->type = STACK_OBJ;       \
320         } while (0)
321
322 #define NEW_LDTOKENCONST(cfg,dest,image,token) do {     \
323                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
324                 (dest)->opcode = OP_AOTCONST;   \
325                 (dest)->inst_p0 = mono_jump_info_token_new ((cfg)->mempool, (image), (token));  \
326                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_LDTOKEN; \
327                 (dest)->type = STACK_PTR;       \
328         } while (0)
329
330 #define NEW_DOMAINCONST(cfg,dest) do { \
331                if (cfg->opt & MONO_OPT_SHARED) { \
332                        NEW_TEMPLOAD (cfg, dest, mono_get_domainvar (cfg)->inst_c0); \
333                } else { \
334                        NEW_PCONST (cfg, dest, (cfg)->domain); \
335                } \
336         } while (0)
337
338 #define GET_VARINFO_INST(cfg,num) ((cfg)->varinfo [(num)]->inst)
339
340 #define NEW_ARGLOAD(cfg,dest,num) do {  \
341                 if (arg_array [(num)]->opcode == OP_ICONST) (dest) = arg_array [(num)]; else { \
342                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
343                 (dest)->ssa_op = MONO_SSA_LOAD; \
344                 (dest)->inst_i0 = arg_array [(num)];    \
345                 (dest)->opcode = mono_type_to_ldind ((dest)->inst_i0->inst_vtype);      \
346                 type_to_eval_stack_type (param_types [(num)], (dest));  \
347                 (dest)->klass = (dest)->inst_i0->klass; \
348         }} while (0)
349
350 #define NEW_LOCLOAD(cfg,dest,num) do {  \
351                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
352                 (dest)->ssa_op = MONO_SSA_LOAD; \
353                 (dest)->inst_i0 = (cfg)->varinfo [locals_offset + (num)];       \
354                 (dest)->opcode = mono_type_to_ldind ((dest)->inst_i0->inst_vtype);      \
355                 type_to_eval_stack_type (header->locals [(num)], (dest));       \
356                 (dest)->klass = (dest)->inst_i0->klass; \
357         } while (0)
358
359 #define NEW_LOCLOADA(cfg,dest,num) do { \
360                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
361                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
362                 (dest)->inst_i0 = (cfg)->varinfo [locals_offset + (num)];       \
363                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
364                 (dest)->opcode = OP_LDADDR;     \
365                 (dest)->type = STACK_MP;        \
366                 (dest)->klass = (dest)->inst_i0->klass; \
367         if (!MONO_TYPE_ISSTRUCT (header->locals [(num)])) \
368            (cfg)->disable_ssa = TRUE; \
369         } while (0)
370
371 #define NEW_RETLOADA(cfg,dest) do {     \
372                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
373                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
374                 (dest)->inst_i0 = (cfg)->ret;   \
375                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
376                 (dest)->opcode = CEE_LDIND_I;   \
377                 (dest)->type = STACK_MP;        \
378                 (dest)->klass = (dest)->inst_i0->klass; \
379                 (cfg)->disable_ssa = TRUE; \
380         } while (0)
381
382 #define NEW_ARGLOADA(cfg,dest,num) do { \
383                 if (arg_array [(num)]->opcode == OP_ICONST) goto inline_failure; \
384                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
385                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
386                 (dest)->inst_i0 = arg_array [(num)];    \
387                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
388                 (dest)->opcode = OP_LDADDR;     \
389                 (dest)->type = STACK_MP;        \
390                 (dest)->klass = (dest)->inst_i0->klass; \
391                 (cfg)->disable_ssa = TRUE; \
392         } while (0)
393
394 #define NEW_TEMPLOAD(cfg,dest,num) do { \
395                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
396                 (dest)->ssa_op = MONO_SSA_LOAD; \
397                 (dest)->inst_i0 = (cfg)->varinfo [(num)];       \
398                 (dest)->opcode = mono_type_to_ldind ((dest)->inst_i0->inst_vtype);      \
399                 type_to_eval_stack_type ((dest)->inst_i0->inst_vtype, (dest));  \
400                 (dest)->klass = (dest)->inst_i0->klass; \
401         } while (0)
402
403 #define NEW_TEMPLOADA(cfg,dest,num) do {        \
404                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
405                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
406                 (dest)->inst_i0 = (cfg)->varinfo [(num)];       \
407                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
408                 (dest)->opcode = OP_LDADDR;     \
409                 (dest)->type = STACK_MP;        \
410                 (dest)->klass = (dest)->inst_i0->klass; \
411         if (!MONO_TYPE_ISSTRUCT (cfg->varinfo [(num)]->inst_vtype)) \
412            (cfg)->disable_ssa = TRUE; \
413         } while (0)
414
415
416 #define NEW_INDLOAD(cfg,dest,addr,vtype) do {   \
417                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
418                 (dest)->inst_left = addr;       \
419                 (dest)->opcode = mono_type_to_ldind (vtype);    \
420                 type_to_eval_stack_type (vtype, (dest));        \
421                 /* FIXME: (dest)->klass = (dest)->inst_i0->klass;*/     \
422         } while (0)
423
424 #define NEW_INDSTORE(cfg,dest,addr,value,vtype) do {    \
425                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
426                 (dest)->inst_i0 = addr; \
427                 (dest)->opcode = mono_type_to_stind (vtype);    \
428                 (dest)->inst_i1 = (value);      \
429                 /* FIXME: (dest)->klass = (dest)->inst_i0->klass;*/     \
430         } while (0)
431
432 #define NEW_TEMPSTORE(cfg,dest,num,inst) do {   \
433                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
434                 (dest)->ssa_op = MONO_SSA_STORE;        \
435                 (dest)->inst_i0 = (cfg)->varinfo [(num)];       \
436                 (dest)->opcode = mono_type_to_stind ((dest)->inst_i0->inst_vtype);      \
437                 (dest)->inst_i1 = (inst);       \
438                 (dest)->klass = (dest)->inst_i0->klass; \
439         } while (0)
440
441 #define NEW_LOCSTORE(cfg,dest,num,inst) do {    \
442                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
443                 (dest)->opcode = mono_type_to_stind (header->locals [(num)]);   \
444                 (dest)->ssa_op = MONO_SSA_STORE;        \
445                 (dest)->inst_i0 = (cfg)->varinfo [locals_offset + (num)];       \
446                 (dest)->inst_i1 = (inst);       \
447                 (dest)->klass = (dest)->inst_i0->klass; \
448         } while (0)
449
450 #define NEW_ARGSTORE(cfg,dest,num,inst) do {    \
451                 if (arg_array [(num)]->opcode == OP_ICONST) goto inline_failure; \
452                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
453                 (dest)->opcode = mono_type_to_stind (param_types [(num)]);      \
454                 (dest)->ssa_op = MONO_SSA_STORE;        \
455                 (dest)->inst_i0 = arg_array [(num)];    \
456                 (dest)->inst_i1 = (inst);       \
457                 (dest)->klass = (dest)->inst_i0->klass; \
458         } while (0)
459
460 #define ADD_BINOP(op) do {      \
461                 MONO_INST_NEW (cfg, ins, (op)); \
462                 ins->cil_code = ip;     \
463                 sp -= 2;        \
464                 ins->inst_i0 = sp [0];  \
465                 ins->inst_i1 = sp [1];  \
466                 *sp++ = ins;    \
467                 type_from_op (ins);     \
468                 CHECK_TYPE (ins);       \
469         } while (0)
470
471 #define ADD_UNOP(op) do {       \
472                 MONO_INST_NEW (cfg, ins, (op)); \
473                 ins->cil_code = ip;     \
474                 sp--;   \
475                 ins->inst_i0 = sp [0];  \
476                 *sp++ = ins;    \
477                 type_from_op (ins);     \
478                 CHECK_TYPE (ins);       \
479         } while (0)
480
481 #define ADD_BINCOND(next_block) do {    \
482                 MonoInst *cmp;  \
483                 MONO_INST_NEW(cfg, cmp, OP_COMPARE);    \
484                 sp -= 2;                \
485                 cmp->inst_i0 = sp [0];  \
486                 cmp->inst_i1 = sp [1];  \
487                 cmp->cil_code = ins->cil_code;  \
488                 type_from_op (cmp);     \
489                 CHECK_TYPE (cmp);       \
490                 ins->inst_i0 = cmp;     \
491                 MONO_ADD_INS (bblock, ins);     \
492                 ins->inst_many_bb = mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);      \
493                 GET_BBLOCK (cfg, bbhash, tblock, target);               \
494                 link_bblock (cfg, bblock, tblock);      \
495                 ins->inst_true_bb = tblock;     \
496                 CHECK_BBLOCK (target, ip, tblock);      \
497                 if ((next_block)) {     \
498                         link_bblock (cfg, bblock, (next_block));        \
499                         ins->inst_false_bb = (next_block);      \
500                         start_new_bblock = 1;   \
501                 } else {        \
502                         GET_BBLOCK (cfg, bbhash, tblock, ip);           \
503                         link_bblock (cfg, bblock, tblock);      \
504                         ins->inst_false_bb = tblock;    \
505                         start_new_bblock = 2;   \
506                 }       \
507         } while (0)
508
509 /* FIXME: handle float, long ... */
510 #define ADD_UNCOND(istrue) do { \
511                 MonoInst *cmp;  \
512                 MONO_INST_NEW(cfg, cmp, OP_COMPARE);    \
513                 sp--;           \
514                 cmp->inst_i0 = sp [0];  \
515                 switch (cmp->inst_i0->type) { \
516                 case STACK_I8: \
517                         cmp->inst_i1 = zero_int64; break; \
518                 case STACK_R8: \
519                         cmp->inst_i1 = zero_r8; break; \
520                 case STACK_PTR: \
521                 case STACK_MP: \
522                         cmp->inst_i1 = zero_ptr; break; \
523                 case STACK_OBJ: \
524                         cmp->inst_i1 = zero_obj; break; \
525                 default: \
526                         cmp->inst_i1 = zero_int32;  \
527                 }  \
528                 cmp->cil_code = ins->cil_code;  \
529                 type_from_op (cmp);     \
530                 CHECK_TYPE (cmp);       \
531                 ins->inst_i0 = cmp;     \
532                 ins->opcode = (istrue)? CEE_BNE_UN: CEE_BEQ;    \
533                 MONO_ADD_INS (bblock, ins);     \
534                 ins->inst_many_bb = mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);      \
535                 GET_BBLOCK (cfg, bbhash, tblock, target);               \
536                 link_bblock (cfg, bblock, tblock);      \
537                 ins->inst_true_bb = tblock;     \
538                 CHECK_BBLOCK (target, ip, tblock);      \
539                 GET_BBLOCK (cfg, bbhash, tblock, ip);           \
540                 link_bblock (cfg, bblock, tblock);      \
541                 ins->inst_false_bb = tblock;    \
542                 start_new_bblock = 2;   \
543         } while (0)
544
545 #define NEW_LDELEMA(cfg,dest,sp,k) do { \
546                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
547                 (dest)->opcode = CEE_LDELEMA;   \
548                 (dest)->inst_left = (sp) [0];   \
549                 (dest)->inst_right = (sp) [1];  \
550                 (dest)->type = STACK_MP;        \
551                 (dest)->klass = (k);    \
552                 (cfg)->flags |= MONO_CFG_HAS_LDELEMA; \
553         } while (0)
554
555 #define NEW_GROUP(cfg,dest,el1,el2) do {        \
556                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
557                 (dest)->opcode = OP_GROUP;      \
558                 (dest)->inst_left = (el1);      \
559                 (dest)->inst_right = (el2);     \
560         } while (0)
561
562 #if 0
563 static gint
564 compare_bblock (gconstpointer a, gconstpointer b)
565 {
566         const MonoBasicBlock *b1 = a;
567         const MonoBasicBlock *b2 = b;
568
569         return b2->cil_code - b1->cil_code;
570 }
571 #endif
572
573 /* *
574  * link_bblock: Links two basic blocks
575  *
576  * links two basic blocks in the control flow graph, the 'from'
577  * argument is the starting block and the 'to' argument is the block
578  * the control flow ends to after 'from'.
579  */
580 static void
581 link_bblock (MonoCompile *cfg, MonoBasicBlock *from, MonoBasicBlock* to)
582 {
583         MonoBasicBlock **newa;
584         int i, found;
585
586 #if 0
587         if (from->cil_code) {
588                 if (to->cil_code)
589                         g_print ("edge from IL%04x to IL_%04x\n", from->cil_code - cfg->cil_code, to->cil_code - cfg->cil_code);
590                 else
591                         g_print ("edge from IL%04x to exit\n", from->cil_code - cfg->cil_code);
592         } else {
593                 if (to->cil_code)
594                         g_print ("edge from entry to IL_%04x\n", to->cil_code - cfg->cil_code);
595                 else
596                         g_print ("edge from entry to exit\n");
597         }
598 #endif
599         found = FALSE;
600         for (i = 0; i < from->out_count; ++i) {
601                 if (to == from->out_bb [i]) {
602                         found = TRUE;
603                         break;
604                 }
605         }
606         if (!found) {
607                 newa = mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (from->out_count + 1));
608                 for (i = 0; i < from->out_count; ++i) {
609                         newa [i] = from->out_bb [i];
610                 }
611                 newa [i] = to;
612                 from->out_count++;
613                 from->out_bb = newa;
614         }
615
616         found = FALSE;
617         for (i = 0; i < to->in_count; ++i) {
618                 if (from == to->in_bb [i]) {
619                         found = TRUE;
620                         break;
621                 }
622         }
623         if (!found) {
624                 newa = mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (to->in_count + 1));
625                 for (i = 0; i < to->in_count; ++i) {
626                         newa [i] = to->in_bb [i];
627                 }
628                 newa [i] = from;
629                 to->in_count++;
630                 to->in_bb = newa;
631         }
632 }
633
634 /**
635  * mono_find_block_region:
636  *
637  *   We mark each basic block with a region ID. We use that to avoid BB
638  *   optimizations when blocks are in different regions.
639  *
640  * Returns:
641  *   A region token that encodes where this region is, and information
642  *   about the clause owner for this block.
643  *
644  *   The region encodes the try/catch/filter clause that owns this block
645  *   as well as the type.  -1 is a special value that represents a block
646  *   that is in none of try/catch/filter.
647  */
648 static int
649 mono_find_block_region (MonoCompile *cfg, int offset, int *filter_lengths)
650 {
651         MonoMethod *method = cfg->method;
652         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
653         MonoExceptionClause *clause;
654         int i;
655
656         /* first search for handlers and filters */
657         for (i = 0; i < header->num_clauses; ++i) {
658                 clause = &header->clauses [i];
659                 if ((clause->flags & MONO_EXCEPTION_CLAUSE_FILTER) && (offset >= clause->token_or_filter) &&
660                     (offset < (clause->token_or_filter + filter_lengths [i])))
661                         return ((i + 1) << 8) | MONO_REGION_FILTER | clause->flags;
662                            
663                 if (MONO_OFFSET_IN_HANDLER (clause, offset)) {
664                         if (clause->flags & MONO_EXCEPTION_CLAUSE_FINALLY)
665                                 return ((i + 1) << 8) | MONO_REGION_FINALLY | clause->flags;
666                         else
667                                 return ((i + 1) << 8) | MONO_REGION_CATCH | clause->flags;
668                 }
669         }
670
671         /* search the try blocks */
672         for (i = 0; i < header->num_clauses; ++i) {
673                 clause = &header->clauses [i];
674                 if (MONO_OFFSET_IN_CLAUSE (clause, offset))
675                         return ((i + 1) << 8) | clause->flags;
676         }
677
678         return -1;
679 }
680
681 static GList*
682 mono_find_final_block (MonoCompile *cfg, unsigned char *ip, unsigned char *target, int type)
683 {
684         MonoMethod *method = cfg->method;
685         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
686         MonoExceptionClause *clause;
687         MonoBasicBlock *handler;
688         int i;
689         GList *res = NULL;
690
691         for (i = 0; i < header->num_clauses; ++i) {
692                 clause = &header->clauses [i];
693                 if (MONO_OFFSET_IN_CLAUSE (clause, (ip - header->code)) && 
694                     (!MONO_OFFSET_IN_CLAUSE (clause, (target - header->code)))) {
695                         if (clause->flags == type) {
696                                 handler = g_hash_table_lookup (cfg->bb_hash, header->code + clause->handler_offset);
697                                 g_assert (handler);
698                                 res = g_list_append (res, handler);
699                         }
700                 }
701         }
702         return res;
703 }
704
705 MonoInst *
706 mono_find_spvar_for_region (MonoCompile *cfg, int region)
707 {
708         return g_hash_table_lookup (cfg->spvars, GINT_TO_POINTER (region));
709 }
710
711 static void
712 mono_create_spvar_for_region (MonoCompile *cfg, int region)
713 {
714         MonoInst *var;
715
716         var = g_hash_table_lookup (cfg->spvars, GINT_TO_POINTER (region));
717         if (var)
718                 return;
719
720         var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
721         /* prevent it from being register allocated */
722         var->flags |= MONO_INST_INDIRECT;
723
724         g_hash_table_insert (cfg->spvars, GINT_TO_POINTER (region), var);
725 }
726
727 static void
728 df_visit (MonoBasicBlock *start, int *dfn, MonoBasicBlock **array)
729 {
730         int i;
731
732         array [*dfn] = start;
733         /*g_print ("visit %d at %p\n", *dfn, start->cil_code);*/
734         for (i = 0; i < start->out_count; ++i) {
735                 if (start->out_bb [i]->dfn)
736                         continue;
737                 (*dfn)++;
738                 start->out_bb [i]->dfn = *dfn;
739                 start->out_bb [i]->df_parent = start;
740                 array [*dfn] = start->out_bb [i];
741                 df_visit (start->out_bb [i], dfn, array);
742         }
743 }
744
745 typedef struct {
746         const guchar *code;
747         MonoBasicBlock *best;
748 } PrevStruct;
749
750 static void
751 previous_foreach (gconstpointer key, gpointer val, gpointer data)
752 {
753         PrevStruct *p = data;
754         MonoBasicBlock *bb = val;
755         //printf ("FIDPREV %d %p  %p %p %p %p %d %d %d\n", bb->block_num, p->code, bb, p->best, bb->cil_code, p->best->cil_code,
756         //bb->method == p->best->method, bb->cil_code < p->code, bb->cil_code > p->best->cil_code);
757
758         if (bb->cil_code && bb->cil_code < p->code && bb->cil_code > p->best->cil_code)
759                 p->best = bb;
760 }
761
762 static MonoBasicBlock*
763 find_previous (GHashTable *bb_hash, MonoBasicBlock *start, const guchar *code) {
764         PrevStruct p;
765
766         p.code = code;
767         p.best = start;
768
769         g_hash_table_foreach (bb_hash, (GHFunc)previous_foreach, &p);
770         return p.best;
771 }
772
773 static void
774 split_bblock (MonoCompile *cfg, MonoBasicBlock *first, MonoBasicBlock *second) {
775         int i, j;
776         MonoInst *inst;
777         MonoBasicBlock *bb;
778
779         if (second->code)
780                 return;
781         
782         /* 
783          * FIXME: take into account all the details:
784          * second may have been the target of more than one bblock
785          */
786         second->out_count = first->out_count;
787         second->out_bb = first->out_bb;
788
789         for (i = 0; i < first->out_count; ++i) {
790                 bb = first->out_bb [i];
791                 for (j = 0; j < bb->in_count; ++j) {
792                         if (bb->in_bb [j] == first)
793                                 bb->in_bb [j] = second;
794                 }
795         }
796
797         first->out_count = 0;
798         first->out_bb = NULL;
799         link_bblock (cfg, first, second);
800
801         second->last_ins = first->last_ins;
802
803         /*g_print ("start search at %p for %p\n", first->cil_code, second->cil_code);*/
804         for (inst = first->code; inst && inst->next; inst = inst->next) {
805                 /*char *code = mono_disasm_code_one (NULL, cfg->method, inst->next->cil_code, NULL);
806                 g_print ("found %p: %s", inst->next->cil_code, code);
807                 g_free (code);*/
808                 if (inst->cil_code < second->cil_code && inst->next->cil_code >= second->cil_code) {
809                         second->code = inst->next;
810                         inst->next = NULL;
811                         first->last_ins = inst;
812                         second->next_bb = first->next_bb;
813                         first->next_bb = second;
814                         return;
815                 }
816         }
817         if (!second->code) {
818                 g_warning ("bblock split failed in %s::%s\n", cfg->method->klass->name, cfg->method->name);
819                 //G_BREAKPOINT ();
820         }
821 }
822
823 guint
824 mono_type_to_ldind (MonoType *type)
825 {
826         int t = type->type;
827
828         if (type->byref)
829                 return CEE_LDIND_I;
830
831 handle_enum:
832         switch (t) {
833         case MONO_TYPE_I1:
834                 return CEE_LDIND_I1;
835         case MONO_TYPE_U1:
836         case MONO_TYPE_BOOLEAN:
837                 return CEE_LDIND_U1;
838         case MONO_TYPE_I2:
839                 return CEE_LDIND_I2;
840         case MONO_TYPE_U2:
841         case MONO_TYPE_CHAR:
842                 return CEE_LDIND_U2;
843         case MONO_TYPE_I4:
844                 return CEE_LDIND_I4;
845         case MONO_TYPE_U4:
846                 return CEE_LDIND_U4;
847         case MONO_TYPE_I:
848         case MONO_TYPE_U:
849         case MONO_TYPE_PTR:
850         case MONO_TYPE_FNPTR:
851                 return CEE_LDIND_I;
852         case MONO_TYPE_CLASS:
853         case MONO_TYPE_STRING:
854         case MONO_TYPE_OBJECT:
855         case MONO_TYPE_SZARRAY:
856         case MONO_TYPE_ARRAY:    
857                 return CEE_LDIND_REF;
858         case MONO_TYPE_I8:
859         case MONO_TYPE_U8:
860                 return CEE_LDIND_I8;
861         case MONO_TYPE_R4:
862                 return CEE_LDIND_R4;
863         case MONO_TYPE_R8:
864                 return CEE_LDIND_R8;
865         case MONO_TYPE_VALUETYPE:
866                 if (type->data.klass->enumtype) {
867                         t = type->data.klass->enum_basetype->type;
868                         goto handle_enum;
869                 }
870                 return CEE_LDOBJ;
871         case MONO_TYPE_TYPEDBYREF:
872                 return CEE_LDOBJ;
873         case MONO_TYPE_GENERICINST:
874                 if (type->data.generic_inst->generic_type->type == MONO_TYPE_VALUETYPE)
875                         return CEE_LDOBJ;
876                 return CEE_LDIND_REF;
877         default:
878                 g_error ("unknown type 0x%02x in type_to_ldind", type->type);
879         }
880         return -1;
881 }
882
883 guint
884 mono_type_to_stind (MonoType *type)
885 {
886         int t = type->type;
887
888         if (type->byref)
889                 return CEE_STIND_I;
890
891 handle_enum:
892         switch (t) {
893         case MONO_TYPE_I1:
894         case MONO_TYPE_U1:
895         case MONO_TYPE_BOOLEAN:
896                 return CEE_STIND_I1;
897         case MONO_TYPE_I2:
898         case MONO_TYPE_U2:
899         case MONO_TYPE_CHAR:
900                 return CEE_STIND_I2;
901         case MONO_TYPE_I4:
902         case MONO_TYPE_U4:
903                 return CEE_STIND_I4;
904         case MONO_TYPE_I:
905         case MONO_TYPE_U:
906         case MONO_TYPE_PTR:
907         case MONO_TYPE_FNPTR:
908                 return CEE_STIND_I;
909         case MONO_TYPE_CLASS:
910         case MONO_TYPE_STRING:
911         case MONO_TYPE_OBJECT:
912         case MONO_TYPE_SZARRAY:
913         case MONO_TYPE_ARRAY:    
914                 return CEE_STIND_REF;
915         case MONO_TYPE_I8:
916         case MONO_TYPE_U8:
917                 return CEE_STIND_I8;
918         case MONO_TYPE_R4:
919                 return CEE_STIND_R4;
920         case MONO_TYPE_R8:
921                 return CEE_STIND_R8;
922         case MONO_TYPE_VALUETYPE:
923                 if (type->data.klass->enumtype) {
924                         t = type->data.klass->enum_basetype->type;
925                         goto handle_enum;
926                 }
927                 return CEE_STOBJ;
928         case MONO_TYPE_TYPEDBYREF:
929                 return CEE_STOBJ;
930         case MONO_TYPE_GENERICINST:
931                 if (type->data.generic_inst->generic_type->type == MONO_TYPE_VALUETYPE)
932                         return CEE_STOBJ;
933                 return CEE_STIND_REF;
934         default:
935                 g_error ("unknown type 0x%02x in type_to_stind", type->type);
936         }
937         return -1;
938 }
939
940 /*
941  * Returns the type used in the eval stack when @type is loaded.
942  * FIXME: return a MonoType/MonoClass for the byref and VALUETYPE cases.
943  */
944 static void
945 type_to_eval_stack_type (MonoType *type, MonoInst *inst) {
946         int t = type->type;
947
948         if (type->byref) {
949                 inst->type = STACK_MP;
950                 return;
951         }
952
953 handle_enum:
954         switch (t) {
955         case MONO_TYPE_I1:
956         case MONO_TYPE_U1:
957         case MONO_TYPE_BOOLEAN:
958         case MONO_TYPE_I2:
959         case MONO_TYPE_U2:
960         case MONO_TYPE_CHAR:
961         case MONO_TYPE_I4:
962         case MONO_TYPE_U4:
963                 inst->type = STACK_I4;
964                 return;
965         case MONO_TYPE_I:
966         case MONO_TYPE_U:
967         case MONO_TYPE_PTR:
968         case MONO_TYPE_FNPTR:
969                 inst->type = STACK_PTR;
970                 return;
971         case MONO_TYPE_CLASS:
972         case MONO_TYPE_STRING:
973         case MONO_TYPE_OBJECT:
974         case MONO_TYPE_SZARRAY:
975         case MONO_TYPE_ARRAY:    
976                 inst->type = STACK_OBJ;
977                 return;
978         case MONO_TYPE_I8:
979         case MONO_TYPE_U8:
980                 inst->type = STACK_I8;
981                 return;
982         case MONO_TYPE_R4:
983         case MONO_TYPE_R8:
984                 inst->type = STACK_R8;
985                 return;
986         case MONO_TYPE_VALUETYPE:
987                 if (type->data.klass->enumtype) {
988                         t = type->data.klass->enum_basetype->type;
989                         goto handle_enum;
990                 } else {
991                         inst->klass = type->data.klass;
992                         inst->type = STACK_VTYPE;
993                         return;
994                 }
995         case MONO_TYPE_TYPEDBYREF:
996                 inst->klass = mono_defaults.typed_reference_class;
997                 inst->type = STACK_VTYPE;
998                 return;
999         case MONO_TYPE_GENERICINST:
1000                 if (type->data.generic_inst->generic_type->type == MONO_TYPE_VALUETYPE) {
1001                         inst->klass = mono_class_from_mono_type (type);
1002                         inst->type = STACK_VTYPE;
1003                 } else {
1004                         inst->type = STACK_OBJ;
1005                 }
1006                 return;
1007         default:
1008                 g_error ("unknown type 0x%02x in eval stack type", type->type);
1009         }
1010 }
1011
1012 /*
1013  * The following tables are used to quickly validate the IL code in type_from_op ().
1014  */
1015 static const char
1016 bin_num_table [STACK_MAX] [STACK_MAX] = {
1017         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1018         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
1019         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1020         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
1021         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_R8,  STACK_INV, STACK_INV, STACK_INV},
1022         {STACK_INV, STACK_MP,  STACK_INV, STACK_MP,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV},
1023         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1024         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
1025 };
1026
1027 static const char 
1028 neg_table [] = {
1029         STACK_INV, STACK_I4, STACK_I8, STACK_PTR, STACK_R8, STACK_INV, STACK_INV, STACK_INV
1030 };
1031
1032 /* reduce the size of this table */
1033 static const char
1034 bin_int_table [STACK_MAX] [STACK_MAX] = {
1035         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1036         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1037         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1038         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1039         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1040         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1041         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1042         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
1043 };
1044
1045 static const char
1046 bin_comp_table [STACK_MAX] [STACK_MAX] = {
1047         {0},
1048         {0, 1, 0, 1, 0, 0, 4, 0},
1049         {0, 0, 1, 0, 0, 0, 0, 0},
1050         {0, 1, 0, 1, 0, 2, 4, 0},
1051         {0, 0, 0, 0, 1, 0, 0, 0},
1052         {0, 0, 0, 2, 0, 1, 0, 0},
1053         {0, 4, 0, 4, 0, 0, 3, 0},
1054         {0, 0, 0, 0, 0, 0, 0, 0},
1055 };
1056
1057 /* reduce the size of this table */
1058 static const char
1059 shift_table [STACK_MAX] [STACK_MAX] = {
1060         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1061         {STACK_INV, STACK_I4,  STACK_INV, STACK_I4,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1062         {STACK_INV, STACK_I8,  STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1063         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1064         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1065         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1066         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
1067         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
1068 };
1069
1070 /*
1071  * Tables to map from the non-specific opcode to the matching
1072  * type-specific opcode.
1073  */
1074 /* handles from CEE_ADD to CEE_SHR_UN (CEE_REM_UN for floats) */
1075 static const guint16
1076 binops_op_map [STACK_MAX] = {
1077         0, 0, OP_LADD-CEE_ADD, OP_PADD-CEE_ADD, OP_FADD-CEE_ADD, 0
1078 };
1079
1080 /* handles from CEE_NEG to CEE_CONV_U8 */
1081 static const guint16
1082 unops_op_map [STACK_MAX] = {
1083         0, 0, OP_LNEG-CEE_NEG, OP_PNEG-CEE_NEG, OP_FNEG-CEE_NEG, 0
1084 };
1085
1086 /* handles from CEE_CONV_U2 to CEE_SUB_OVF_UN */
1087 static const guint16
1088 ovfops_op_map [STACK_MAX] = {
1089         0, 0, OP_LCONV_TO_U2-CEE_CONV_U2, OP_PCONV_TO_U2-CEE_CONV_U2, OP_FCONV_TO_U2-CEE_CONV_U2, 0
1090 };
1091
1092 /* handles from CEE_CONV_OVF_I1_UN to CEE_CONV_OVF_U_UN */
1093 static const guint16
1094 ovf2ops_op_map [STACK_MAX] = {
1095         0, 0, OP_LCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, OP_PCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, OP_FCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, 0
1096 };
1097
1098 /* handles from CEE_CONV_OVF_I1 to CEE_CONV_OVF_U8 */
1099 static const guint16
1100 ovf3ops_op_map [STACK_MAX] = {
1101         0, 0, OP_LCONV_TO_OVF_I1-CEE_CONV_OVF_I1, OP_PCONV_TO_OVF_I1-CEE_CONV_OVF_I1, OP_FCONV_TO_OVF_I1-CEE_CONV_OVF_I1, 0
1102 };
1103
1104 /* handles from CEE_CEQ to CEE_CLT_UN */
1105 static const guint16
1106 ceqops_op_map [STACK_MAX] = {
1107         0, 0, OP_LCEQ-CEE_CEQ, OP_PCEQ-CEE_CEQ, OP_FCEQ-CEE_CEQ, 0
1108 };
1109
1110 /*
1111  * Sets ins->type (the type on the eval stack) according to the
1112  * type of the opcode and the arguments to it.
1113  * Invalid IL code is marked by setting ins->type to the invalid value STACK_INV.
1114  *
1115  * FIXME: this function sets ins->type unconditionally in some cases, but
1116  * it should set it to invalid for some types (a conv.x on an object)
1117  */
1118 static void
1119 type_from_op (MonoInst *ins) {
1120         switch (ins->opcode) {
1121         /* binops */
1122         case CEE_ADD:
1123         case CEE_SUB:
1124         case CEE_MUL:
1125         case CEE_DIV:
1126         case CEE_REM:
1127                 /* FIXME: check unverifiable args for STACK_MP */
1128                 ins->type = bin_num_table [ins->inst_i0->type] [ins->inst_i1->type];
1129                 ins->opcode += binops_op_map [ins->type];
1130                 return;
1131         case CEE_DIV_UN:
1132         case CEE_REM_UN:
1133         case CEE_AND:
1134         case CEE_OR:
1135         case CEE_XOR:
1136                 ins->type = bin_int_table [ins->inst_i0->type] [ins->inst_i1->type];
1137                 ins->opcode += binops_op_map [ins->type];
1138                 return;
1139         case CEE_SHL:
1140         case CEE_SHR:
1141         case CEE_SHR_UN:
1142                 ins->type = shift_table [ins->inst_i0->type] [ins->inst_i1->type];
1143                 ins->opcode += binops_op_map [ins->type];
1144                 return;
1145         case OP_COMPARE:
1146                 /* FIXME: handle some specifics with ins->next->type */
1147                 ins->type = bin_comp_table [ins->inst_i0->type] [ins->inst_i1->type] ? STACK_I4: STACK_INV;
1148                 return;
1149         case OP_CEQ:
1150         case OP_CGT:
1151         case OP_CGT_UN:
1152         case OP_CLT:
1153         case OP_CLT_UN:
1154                 ins->type = bin_comp_table [ins->inst_i0->type] [ins->inst_i1->type] ? STACK_I4: STACK_INV;
1155                 ins->opcode += ceqops_op_map [ins->inst_i0->type];
1156                 return;
1157         /* unops */
1158         case CEE_NEG:
1159                 ins->type = neg_table [ins->inst_i0->type];
1160                 ins->opcode += unops_op_map [ins->type];
1161                 return;
1162         case CEE_NOT:
1163                 if (ins->inst_i0->type >= STACK_I4 && ins->inst_i0->type <= STACK_PTR)
1164                         ins->type = ins->inst_i0->type;
1165                 else
1166                         ins->type = STACK_INV;
1167                 ins->opcode += unops_op_map [ins->type];
1168                 return;
1169         case CEE_CONV_I1:
1170         case CEE_CONV_I2:
1171         case CEE_CONV_I4:
1172         case CEE_CONV_U4:
1173                 ins->type = STACK_I4;
1174                 ins->opcode += unops_op_map [ins->inst_i0->type];
1175                 return;
1176         case CEE_CONV_R_UN:
1177                 ins->type = STACK_R8;
1178                 switch (ins->inst_i0->type) {
1179                 case STACK_I4:
1180                 case STACK_PTR:
1181                         break;
1182                 case STACK_I8:
1183                         ins->opcode = OP_LCONV_TO_R_UN; 
1184                         break;
1185                 }
1186                 return;
1187         case CEE_CONV_OVF_I1:
1188         case CEE_CONV_OVF_U1:
1189         case CEE_CONV_OVF_I2:
1190         case CEE_CONV_OVF_U2:
1191         case CEE_CONV_OVF_I4:
1192         case CEE_CONV_OVF_U4:
1193                 ins->type = STACK_I4;
1194                 ins->opcode += ovf3ops_op_map [ins->inst_i0->type];
1195                 return;
1196         case CEE_CONV_OVF_I_UN:
1197         case CEE_CONV_OVF_U_UN:
1198                 ins->type = STACK_PTR;
1199                 ins->opcode += ovf2ops_op_map [ins->inst_i0->type];
1200                 return;
1201         case CEE_CONV_OVF_I1_UN:
1202         case CEE_CONV_OVF_I2_UN:
1203         case CEE_CONV_OVF_I4_UN:
1204         case CEE_CONV_OVF_U1_UN:
1205         case CEE_CONV_OVF_U2_UN:
1206         case CEE_CONV_OVF_U4_UN:
1207                 ins->type = STACK_I4;
1208                 ins->opcode += ovf2ops_op_map [ins->inst_i0->type];
1209                 return;
1210         case CEE_CONV_U:
1211                 ins->type = STACK_PTR;
1212                 switch (ins->inst_i0->type) {
1213                 case STACK_I4:
1214                 case STACK_PTR:
1215                 case STACK_MP:
1216                         break;
1217                 case STACK_I8:
1218                         ins->opcode = OP_LCONV_TO_U;
1219                         break;
1220                 case STACK_R8:
1221                         ins->opcode = OP_FCONV_TO_U;
1222                         break;
1223                 }
1224                 return;
1225         case CEE_CONV_I8:
1226         case CEE_CONV_U8:
1227                 ins->type = STACK_I8;
1228                 ins->opcode += unops_op_map [ins->inst_i0->type];
1229                 return;
1230         case CEE_CONV_OVF_I8:
1231         case CEE_CONV_OVF_U8:
1232                 ins->type = STACK_I8;
1233                 ins->opcode += ovf3ops_op_map [ins->inst_i0->type];
1234                 return;
1235         case CEE_CONV_OVF_U8_UN:
1236         case CEE_CONV_OVF_I8_UN:
1237                 ins->type = STACK_I8;
1238                 ins->opcode += ovf2ops_op_map [ins->inst_i0->type];
1239                 return;
1240         case CEE_CONV_R4:
1241         case CEE_CONV_R8:
1242                 ins->type = STACK_R8;
1243                 ins->opcode += unops_op_map [ins->inst_i0->type];
1244                 return;
1245         case CEE_CKFINITE:
1246                 ins->type = STACK_R8;           
1247                 return;
1248         case CEE_CONV_U2:
1249         case CEE_CONV_U1:
1250                 ins->type = STACK_I4;
1251                 ins->opcode += ovfops_op_map [ins->inst_i0->type];
1252                 break;
1253         case CEE_CONV_I:
1254         case CEE_CONV_OVF_I:
1255         case CEE_CONV_OVF_U:
1256                 ins->type = STACK_PTR;
1257                 ins->opcode += ovfops_op_map [ins->inst_i0->type];
1258                 return;
1259         case CEE_ADD_OVF:
1260         case CEE_ADD_OVF_UN:
1261         case CEE_MUL_OVF:
1262         case CEE_MUL_OVF_UN:
1263         case CEE_SUB_OVF:
1264         case CEE_SUB_OVF_UN:
1265                 ins->type = bin_num_table [ins->inst_i0->type] [ins->inst_i1->type];
1266                 ins->opcode += ovfops_op_map [ins->inst_i0->type];
1267                 return;
1268         default:
1269                 g_error ("opcode 0x%04x not handled in type from op", ins->opcode);
1270                 break;
1271         }
1272 }
1273
1274 static const char 
1275 ldind_type [] = {
1276         STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I8, STACK_MP, STACK_R8, STACK_R8, STACK_OBJ
1277 };
1278
1279 /* map ldelem.x to the matching ldind.x opcode */
1280 static const guchar
1281 ldelem_to_ldind [] = {
1282         CEE_LDIND_I1,
1283         CEE_LDIND_U1,
1284         CEE_LDIND_I2,
1285         CEE_LDIND_U2,
1286         CEE_LDIND_I4,
1287         CEE_LDIND_U4,
1288         CEE_LDIND_I8,
1289         CEE_LDIND_I,
1290         CEE_LDIND_R4,
1291         CEE_LDIND_R8,
1292         CEE_LDIND_REF
1293 };
1294
1295 /* map stelem.x to the matching stind.x opcode */
1296 static const guchar
1297 stelem_to_stind [] = {
1298         CEE_STIND_I,
1299         CEE_STIND_I1,
1300         CEE_STIND_I2,
1301         CEE_STIND_I4,
1302         CEE_STIND_I8,
1303         CEE_STIND_R4,
1304         CEE_STIND_R8,
1305         CEE_STIND_REF
1306 };
1307
1308 #if 0
1309
1310 static const char
1311 param_table [STACK_MAX] [STACK_MAX] = {
1312         {0},
1313 };
1314
1315 static int
1316 check_values_to_signature (MonoInst *args, MonoType *this, MonoMethodSignature *sig) {
1317         int i;
1318
1319         if (sig->hasthis) {
1320                 switch (args->type) {
1321                 case STACK_I4:
1322                 case STACK_I8:
1323                 case STACK_R8:
1324                 case STACK_VTYPE:
1325                 case STACK_INV:
1326                         return 0;
1327                 }
1328                 args++;
1329         }
1330         for (i = 0; i < sig->param_count; ++i) {
1331                 switch (args [i].type) {
1332                 case STACK_INV:
1333                         return 0;
1334                 case STACK_MP:
1335                         if (!sig->params [i]->byref)
1336                                 return 0;
1337                         continue;
1338                 case STACK_OBJ:
1339                         if (sig->params [i]->byref)
1340                                 return 0;
1341                         switch (sig->params [i]->type) {
1342                         case MONO_TYPE_CLASS:
1343                         case MONO_TYPE_STRING:
1344                         case MONO_TYPE_OBJECT:
1345                         case MONO_TYPE_SZARRAY:
1346                         case MONO_TYPE_ARRAY:
1347                                 break;
1348                         default:
1349                                 return 0;
1350                         }
1351                         continue;
1352                 case STACK_R8:
1353                         if (sig->params [i]->byref)
1354                                 return 0;
1355                         if (sig->params [i]->type != MONO_TYPE_R4 && sig->params [i]->type != MONO_TYPE_R8)
1356                                 return 0;
1357                         continue;
1358                 case STACK_PTR:
1359                 case STACK_I4:
1360                 case STACK_I8:
1361                 case STACK_VTYPE:
1362                         break;
1363                 }
1364                 /*if (!param_table [args [i].type] [sig->params [i]->type])
1365                         return 0;*/
1366         }
1367         return 1;
1368 }
1369 #endif
1370
1371 /*
1372  * When we need a pointer to the current domain many times in a method, we
1373  * call mono_domain_get() once and we store the result in a local variable.
1374  * This function returns the variable that represents the MonoDomain*.
1375  */
1376 inline static MonoInst *
1377 mono_get_domainvar (MonoCompile *cfg)
1378 {
1379         if (!cfg->domainvar)
1380                 cfg->domainvar = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1381         return cfg->domainvar;
1382 }
1383
1384 MonoInst*
1385 mono_compile_create_var (MonoCompile *cfg, MonoType *type, int opcode)
1386 {
1387         MonoInst *inst;
1388         int num = cfg->num_varinfo;
1389
1390         if ((num + 1) >= cfg->varinfo_count) {
1391                 cfg->varinfo_count = (cfg->varinfo_count + 2) * 2;
1392                 cfg->varinfo = (MonoInst **)g_realloc (cfg->varinfo, sizeof (MonoInst*) * cfg->varinfo_count);
1393                 cfg->vars = (MonoMethodVar **)g_realloc (cfg->vars, sizeof (MonoMethodVar*) * cfg->varinfo_count);      
1394         }
1395
1396         /*g_print ("created temp %d of type 0x%x\n", num, type->type);*/
1397         mono_jit_stats.allocate_var++;
1398
1399         MONO_INST_NEW (cfg, inst, opcode);
1400         inst->inst_c0 = num;
1401         inst->inst_vtype = type;
1402         inst->klass = mono_class_from_mono_type (type);
1403         /* if set to 1 the variable is native */
1404         inst->unused = 0;
1405
1406         cfg->varinfo [num] = inst;
1407
1408         cfg->vars [num] = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoMethodVar));
1409         MONO_INIT_VARINFO (cfg->vars [num], num);
1410
1411         cfg->num_varinfo++;
1412         //g_print ("created temp %d of type %s\n", num, mono_type_get_name (type));
1413         return inst;
1414 }
1415
1416 static MonoType*
1417 type_from_stack_type (MonoInst *ins) {
1418         switch (ins->type) {
1419         case STACK_I4: return &mono_defaults.int32_class->byval_arg;
1420         case STACK_I8: return &mono_defaults.int64_class->byval_arg;
1421         case STACK_PTR: return &mono_defaults.int_class->byval_arg;
1422         case STACK_R8: return &mono_defaults.double_class->byval_arg;
1423         case STACK_MP: return &mono_defaults.int_class->byval_arg;
1424         case STACK_OBJ: return &mono_defaults.object_class->byval_arg;
1425         case STACK_VTYPE: return &ins->klass->byval_arg;
1426         default:
1427                 g_error ("stack type %d to montype not handled\n", ins->type);
1428         }
1429         return NULL;
1430 }
1431
1432 static MonoClass*
1433 array_access_to_klass (int opcode)
1434 {
1435         switch (opcode) {
1436         case CEE_LDELEM_U1:
1437                 return mono_defaults.byte_class;
1438         case CEE_LDELEM_U2:
1439                 return mono_defaults.uint16_class;
1440         case CEE_LDELEM_I:
1441         case CEE_STELEM_I:
1442                 return mono_defaults.int_class;
1443         case CEE_LDELEM_I1:
1444         case CEE_STELEM_I1:
1445                 return mono_defaults.sbyte_class;
1446         case CEE_LDELEM_I2:
1447         case CEE_STELEM_I2:
1448                 return mono_defaults.int16_class;
1449         case CEE_LDELEM_I4:
1450         case CEE_STELEM_I4:
1451                 return mono_defaults.int32_class;
1452         case CEE_LDELEM_U4:
1453                 return mono_defaults.uint32_class;
1454         case CEE_LDELEM_I8:
1455         case CEE_STELEM_I8:
1456                 return mono_defaults.int64_class;
1457         case CEE_LDELEM_R4:
1458         case CEE_STELEM_R4:
1459                 return mono_defaults.single_class;
1460         case CEE_LDELEM_R8:
1461         case CEE_STELEM_R8:
1462                 return mono_defaults.double_class;
1463         case CEE_LDELEM_REF:
1464         case CEE_STELEM_REF:
1465                 return mono_defaults.object_class;
1466         default:
1467                 g_assert_not_reached ();
1468         }
1469         return NULL;
1470 }
1471
1472 static void
1473 mono_add_ins_to_end (MonoBasicBlock *bb, MonoInst *inst)
1474 {
1475         MonoInst *prev;
1476         if (!bb->code) {
1477                 MONO_ADD_INS (bb, inst);
1478                 return;
1479         }
1480         switch (bb->last_ins->opcode) {
1481         case CEE_BEQ:
1482         case CEE_BGE:
1483         case CEE_BGT:
1484         case CEE_BLE:
1485         case CEE_BLT:
1486         case CEE_BNE_UN:
1487         case CEE_BGE_UN:
1488         case CEE_BGT_UN:
1489         case CEE_BLE_UN:
1490         case CEE_BLT_UN:
1491         case CEE_BR:
1492         case CEE_SWITCH:
1493                 prev = bb->code;
1494                 while (prev->next && prev->next != bb->last_ins)
1495                         prev = prev->next;
1496                 if (prev == bb->code) {
1497                         if (bb->last_ins == bb->code) {
1498                                 inst->next = bb->code;
1499                                 bb->code = inst;
1500                         } else {
1501                                 inst->next = prev->next;
1502                                 prev->next = inst;
1503                         }
1504                 } else {
1505                         inst->next = bb->last_ins;
1506                         prev->next = inst;
1507                 }
1508                 break;
1509         //      g_warning ("handle conditional jump in add_ins_to_end ()\n");
1510         default:
1511                 MONO_ADD_INS (bb, inst);
1512                 break;
1513         }
1514 }
1515
1516 void
1517 mono_add_varcopy_to_end (MonoCompile *cfg, MonoBasicBlock *bb, int src, int dest)
1518 {
1519         MonoInst *inst, *load;
1520
1521         NEW_TEMPLOAD (cfg, load, src);
1522
1523         NEW_TEMPSTORE (cfg, inst, dest, load);
1524         if (inst->opcode == CEE_STOBJ) {
1525                 NEW_TEMPLOADA (cfg, inst, dest);
1526                 handle_stobj (cfg, bb, inst, load, NULL, inst->klass, TRUE, FALSE);
1527         } else {
1528                 inst->cil_code = NULL;
1529                 mono_add_ins_to_end (bb, inst);
1530         }
1531 }
1532
1533 /*
1534  * We try to share variables when possible
1535  */
1536 static MonoInst *
1537 mono_compile_get_interface_var (MonoCompile *cfg, int slot, MonoInst *ins)
1538 {
1539         MonoInst *res;
1540         int pos, vnum;
1541
1542         /* inlining can result in deeper stacks */ 
1543         if (slot >= ((MonoMethodNormal *)cfg->method)->header->max_stack)
1544                 return mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1545
1546         pos = ins->type - 1 + slot * STACK_MAX;
1547
1548         switch (ins->type) {
1549         case STACK_I4:
1550         case STACK_I8:
1551         case STACK_R8:
1552         case STACK_PTR:
1553         case STACK_MP:
1554         case STACK_OBJ:
1555                 if ((vnum = cfg->intvars [pos]))
1556                         return cfg->varinfo [vnum];
1557                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1558                 cfg->intvars [pos] = res->inst_c0;
1559                 break;
1560         default:
1561                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1562         }
1563         return res;
1564 }
1565
1566 /*
1567  * This function is called to handle items that are left on the evaluation stack
1568  * at basic block boundaries. What happens is that we save the values to local variables
1569  * and we reload them later when first entering the target basic block (with the
1570  * handle_loaded_temps () function).
1571  * It is also used to handle items on the stack in store opcodes, since it is
1572  * possible that the variable to be stored into is already on the stack, in
1573  * which case its old value should be used.
1574  * A single joint point will use the same variables (stored in the array bb->out_stack or
1575  * bb->in_stack, if the basic block is before or after the joint point).
1576  */
1577 static int
1578 handle_stack_args (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **sp, int count) {
1579         int i;
1580         MonoBasicBlock *outb;
1581         MonoInst *inst, **locals;
1582
1583         if (!count)
1584                 return 0;
1585         if (cfg->verbose_level > 3)
1586                 g_print ("%d item(s) on exit from B%d\n", count, bb->block_num);
1587         if (!bb->out_scount) {
1588                 int found = 0;
1589                 bb->out_scount = count;
1590                 //g_print ("bblock %d has out:", bb->block_num);
1591                 for (i = 0; i < bb->out_count; ++i) {
1592                         outb = bb->out_bb [i];
1593                         //g_print (" %d", outb->block_num);
1594                         if (outb->in_stack) {
1595                                 found = 1;
1596                                 bb->out_stack = outb->in_stack;
1597                                 break;
1598                         }
1599                 }
1600                 //g_print ("\n");
1601                 if (!found) {
1602                         bb->out_stack = mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * count);
1603                         for (i = 0; i < count; ++i) {
1604 /* see bug#58863, but removing this code causes regressions in gtk-sharp build 
1605  * (SEGV running Method::Initialize() in gapi_codegen.exe) 
1606  */
1607 #if defined(__ppc__) || defined(__powerpc__)
1608                                 /* try to reuse temps already allocated for this purpouse, if they occupy the same 
1609                                  * stack slot and if they are of the same type. */
1610                                 bb->out_stack [i] = mono_compile_get_interface_var (cfg, i, sp [i]);
1611 #else
1612                                 bb->out_stack [i] = mono_compile_create_var (cfg, type_from_stack_type (sp [i]), OP_LOCAL);
1613 #endif
1614                         }
1615                 }
1616         }
1617         locals = bb->out_stack;
1618         for (i = 0; i < count; ++i) {
1619                 /* add store ops at the end of the bb, before the branch */
1620                 NEW_TEMPSTORE (cfg, inst, locals [i]->inst_c0, sp [i]);
1621                 if (inst->opcode == CEE_STOBJ) {
1622                         NEW_TEMPLOADA (cfg, inst, locals [i]->inst_c0);
1623                         handle_stobj (cfg, bb, inst, sp [i], sp [i]->cil_code, inst->klass, TRUE, FALSE);
1624                 } else {
1625                         inst->cil_code = sp [i]->cil_code;
1626                         mono_add_ins_to_end (bb, inst);
1627                 }
1628                 if (cfg->verbose_level > 3)
1629                         g_print ("storing %d to temp %d\n", i, locals [i]->inst_c0);
1630         }
1631         
1632         for (i = 0; i < bb->out_count; ++i) {
1633                 outb = bb->out_bb [i];
1634                 if (outb->in_scount)
1635                         continue; /* check they are the same locals */
1636                 outb->in_scount = count;
1637                 outb->in_stack = locals;
1638         }
1639         return 0;
1640 }
1641
1642 static int
1643 ret_type_to_call_opcode (MonoType *type, int calli, int virt)
1644 {
1645         int t = type->type;
1646
1647         if (type->byref)
1648                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1649
1650 handle_enum:
1651         switch (t) {
1652         case MONO_TYPE_VOID:
1653                 return calli? OP_VOIDCALL_REG: virt? OP_VOIDCALLVIRT: OP_VOIDCALL;
1654         case MONO_TYPE_I1:
1655         case MONO_TYPE_U1:
1656         case MONO_TYPE_BOOLEAN:
1657         case MONO_TYPE_I2:
1658         case MONO_TYPE_U2:
1659         case MONO_TYPE_CHAR:
1660         case MONO_TYPE_I4:
1661         case MONO_TYPE_U4:
1662                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1663         case MONO_TYPE_I:
1664         case MONO_TYPE_U:
1665         case MONO_TYPE_PTR:
1666                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1667         case MONO_TYPE_CLASS:
1668         case MONO_TYPE_STRING:
1669         case MONO_TYPE_OBJECT:
1670         case MONO_TYPE_SZARRAY:
1671         case MONO_TYPE_ARRAY:    
1672                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1673         case MONO_TYPE_I8:
1674         case MONO_TYPE_U8:
1675                 return calli? OP_LCALL_REG: virt? OP_LCALLVIRT: OP_LCALL;
1676         case MONO_TYPE_R4:
1677         case MONO_TYPE_R8:
1678                 return calli? OP_FCALL_REG: virt? OP_FCALLVIRT: OP_FCALL;
1679         case MONO_TYPE_VALUETYPE:
1680                 if (type->data.klass->enumtype) {
1681                         t = type->data.klass->enum_basetype->type;
1682                         goto handle_enum;
1683                 } else
1684                         return calli? OP_VCALL_REG: virt? OP_VCALLVIRT: OP_VCALL;
1685         case MONO_TYPE_TYPEDBYREF:
1686                 return calli? OP_VCALL_REG: virt? OP_VCALLVIRT: OP_VCALL;
1687         case MONO_TYPE_GENERICINST:
1688                 t = type->data.generic_inst->generic_type->type;
1689                 goto handle_enum;
1690         default:
1691                 g_error ("unknown type 0x%02x in ret_type_to_call_opcode", type->type);
1692         }
1693         return -1;
1694 }
1695
1696 void
1697 mono_create_jump_table (MonoCompile *cfg, MonoInst *label, MonoBasicBlock **bbs, int num_blocks)
1698 {
1699         MonoJumpInfo *ji = mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfo));
1700         
1701         ji->ip.label = label;
1702         ji->type = MONO_PATCH_INFO_SWITCH;
1703         ji->data.table = bbs;
1704         ji->next = cfg->patch_info;
1705         ji->table_size = num_blocks;
1706         cfg->patch_info = ji;
1707 }
1708
1709 /*
1710  * When we add a tree of instructions, we need to ensure the instructions currently
1711  * on the stack are executed before (like, if we load a value from a local).
1712  * We ensure this by saving the currently loaded values to temps and rewriting the
1713  * instructions to load the values.
1714  * This is not done for opcodes that terminate a basic block (because it's handled already
1715  * by handle_stack_args ()) and for opcodes that can't change values, like POP.
1716  */
1717 static void
1718 handle_loaded_temps (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst **stack, MonoInst **sp)
1719 {
1720         MonoInst *load, *store, *temp, *ins;
1721
1722         while (stack < sp) {
1723                 ins = *stack;
1724                 /* handle also other constants */
1725                 if (ins->opcode != OP_ICONST) {
1726                         temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1727                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
1728                         store->cil_code = ins->cil_code;
1729                         if (store->opcode == CEE_STOBJ) {
1730                                 NEW_TEMPLOADA (cfg, store, temp->inst_c0);
1731                                 handle_stobj (cfg, bblock, store, ins, ins->cil_code, temp->klass, FALSE, FALSE);
1732                         } else
1733                                 MONO_ADD_INS (bblock, store);
1734                         NEW_TEMPLOAD (cfg, load, temp->inst_c0);
1735                         load->cil_code = ins->cil_code;
1736                         *stack = load;
1737                 }
1738                 stack++;
1739         }
1740 }
1741
1742 /*
1743  * Prepare arguments for passing to a function call.
1744  * Return a non-zero value if the arguments can't be passed to the given
1745  * signature.
1746  * The type checks are not yet complete and some conversions may need
1747  * casts on 32 or 64 bit architectures.
1748  */
1749 static int
1750 check_call_signature (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **args)
1751 {
1752         int i, simple_type;
1753
1754         if (sig->hasthis) {
1755                 if (args [0]->type != STACK_OBJ && args [0]->type != STACK_MP && args [0]->type != STACK_PTR)
1756                         return 1;
1757                 args++;
1758         }
1759         for (i = 0; i < sig->param_count; ++i) {
1760                 if (sig->params [i]->byref) {
1761                         /* 
1762                          * check the result of ldelema is only passed as an argument if the byref
1763                          * type matches exactly the array element type.
1764                          * FIXME: if the argument as been saved on the stack as part of the
1765                          * interface variable code (the value was on the stack at a basic block boundary)
1766                          * we need to add the check in that case, too.
1767                          */
1768                         if (args [i]->opcode == CEE_LDELEMA) {
1769                                 MonoInst *check;
1770                                 MonoClass *exact_class = mono_class_from_mono_type (sig->params [i]);
1771                                 if (!exact_class->valuetype) {
1772                                         MONO_INST_NEW (cfg, check, OP_CHECK_ARRAY_TYPE);
1773                                         check->cil_code = args [i]->cil_code;
1774                                         check->klass = exact_class;
1775                                         check->inst_left = args [i]->inst_left;
1776                                         check->type = STACK_OBJ;
1777                                         args [i]->inst_left = check;
1778                                 }
1779                         }
1780                         if (args [i]->type != STACK_MP && args [i]->type != STACK_PTR)
1781                                 return 1;
1782                         continue;
1783                 }
1784                 simple_type = sig->params [i]->type;
1785 handle_enum:
1786                 switch (simple_type) {
1787                 case MONO_TYPE_VOID:
1788                         return 1;
1789                         continue;
1790                 case MONO_TYPE_I1:
1791                 case MONO_TYPE_U1:
1792                 case MONO_TYPE_BOOLEAN:
1793                 case MONO_TYPE_I2:
1794                 case MONO_TYPE_U2:
1795                 case MONO_TYPE_CHAR:
1796                 case MONO_TYPE_I4:
1797                 case MONO_TYPE_U4:
1798                         if (args [i]->type != STACK_I4 && args [i]->type != STACK_PTR)
1799                                 return 1;
1800                         continue;
1801                 case MONO_TYPE_I:
1802                 case MONO_TYPE_U:
1803                 case MONO_TYPE_PTR:
1804                         if (args [i]->type != STACK_I4 && args [i]->type != STACK_PTR && args [i]->type != STACK_MP && args [i]->type != STACK_OBJ)
1805                                 return 1;
1806                         continue;
1807                 case MONO_TYPE_CLASS:
1808                 case MONO_TYPE_STRING:
1809                 case MONO_TYPE_OBJECT:
1810                 case MONO_TYPE_SZARRAY:
1811                 case MONO_TYPE_ARRAY:    
1812                         if (args [i]->type != STACK_OBJ)
1813                                 return 1;
1814                         continue;
1815                 case MONO_TYPE_I8:
1816                 case MONO_TYPE_U8:
1817                         if (args [i]->type != STACK_I8)
1818                                 return 1;
1819                         continue;
1820                 case MONO_TYPE_R4:
1821                 case MONO_TYPE_R8:
1822                         if (args [i]->type != STACK_R8)
1823                                 return 1;
1824                         continue;
1825                 case MONO_TYPE_VALUETYPE:
1826                         if (sig->params [i]->data.klass->enumtype) {
1827                                 simple_type = sig->params [i]->data.klass->enum_basetype->type;
1828                                 goto handle_enum;
1829                         }
1830                         if (args [i]->type != STACK_VTYPE)
1831                                 return 1;
1832                         continue;
1833                 case MONO_TYPE_TYPEDBYREF:
1834                         if (args [i]->type != STACK_VTYPE)
1835                                 return 1;
1836                         continue;
1837                 case MONO_TYPE_GENERICINST:
1838                         simple_type = sig->params [i]->data.generic_inst->generic_type->type;
1839                         goto handle_enum;
1840
1841                 default:
1842                         g_error ("unknown type 0x%02x in check_call_signature", simple_type);
1843                 }
1844         }
1845         return 0;
1846 }
1847
1848 inline static int
1849 mono_spill_call (MonoCompile *cfg, MonoBasicBlock *bblock, MonoCallInst *call, MonoMethodSignature *sig, gboolean ret_object, 
1850                  const guint8 *ip, gboolean to_end)
1851 {
1852         MonoInst *temp, *store, *ins = (MonoInst*)call;
1853         MonoType *ret = sig->ret;
1854
1855         if (!MONO_TYPE_IS_VOID (ret) || ret_object) {
1856                 if (ret_object) {
1857                         call->inst.type = STACK_OBJ;
1858                         call->inst.opcode = CEE_CALL;
1859                         temp = mono_compile_create_var (cfg, &mono_defaults.string_class->byval_arg, OP_LOCAL);
1860                 } else {
1861                         type_to_eval_stack_type (ret, ins);
1862                         temp = mono_compile_create_var (cfg, ret, OP_LOCAL);
1863                 }
1864
1865                 if (MONO_TYPE_ISSTRUCT (ret)) {
1866                         MonoInst *loada;
1867
1868                         /* we use this to allocate native sized structs */
1869                         temp->unused = sig->pinvoke;
1870
1871                         NEW_TEMPLOADA (cfg, loada, temp->inst_c0);
1872                         if (call->inst.opcode == OP_VCALL)
1873                                 ins->inst_left = loada;
1874                         else
1875                                 ins->inst_right = loada; /* a virtual or indirect call */
1876
1877                         if (to_end)
1878                                 mono_add_ins_to_end (bblock, ins);
1879                         else
1880                                 MONO_ADD_INS (bblock, ins);
1881                 } else {
1882                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
1883                         store->cil_code = ip;
1884                         if (to_end)
1885                                 mono_add_ins_to_end (bblock, store);
1886                         else
1887                                 MONO_ADD_INS (bblock, store);
1888                 }
1889                 return temp->inst_c0;
1890         } else {
1891                 if (to_end)
1892                         mono_add_ins_to_end (bblock, ins);
1893                 else
1894                         MONO_ADD_INS (bblock, ins);
1895                 return -1;
1896         }
1897 }
1898
1899 inline static MonoCallInst *
1900 mono_emit_call_args (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethodSignature *sig, 
1901                      MonoInst **args, int calli, int virtual, const guint8 *ip, gboolean to_end)
1902 {
1903         MonoCallInst *call;
1904         MonoInst *arg;
1905
1906         MONO_INST_NEW_CALL (cfg, call, ret_type_to_call_opcode (sig->ret, calli, virtual));
1907         
1908         call->inst.cil_code = ip;
1909         call->args = args;
1910         call->signature = sig;
1911         call = mono_arch_call_opcode (cfg, bblock, call, virtual);
1912
1913         for (arg = call->out_args; arg;) {
1914                 MonoInst *narg = arg->next;
1915                 arg->next = NULL;
1916                 if (!arg->cil_code)
1917                         arg->cil_code = ip;
1918                 if (to_end)
1919                         mono_add_ins_to_end (bblock, arg);
1920                 else
1921                         MONO_ADD_INS (bblock, arg);
1922                 arg = narg;
1923         }
1924         return call;
1925 }
1926
1927 inline static int
1928 mono_emit_calli (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethodSignature *sig, 
1929                  MonoInst **args, MonoInst *addr, const guint8 *ip)
1930 {
1931         MonoCallInst *call = mono_emit_call_args (cfg, bblock, sig, args, TRUE, FALSE, ip, FALSE);
1932
1933         call->inst.inst_i0 = addr;
1934
1935         return mono_spill_call (cfg, bblock, call, sig, FALSE, ip, FALSE);
1936 }
1937
1938 static MonoCallInst*
1939 mono_emit_method_call (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethod *method, MonoMethodSignature *sig,
1940                        MonoInst **args, const guint8 *ip, MonoInst *this)
1941 {
1942         gboolean virtual = this != NULL;
1943         MonoCallInst *call;
1944
1945         call = mono_emit_call_args (cfg, bblock, sig, args, FALSE, virtual, ip, FALSE);
1946
1947         if (this && sig->hasthis && 
1948             (method->klass->marshalbyref || method->klass == mono_defaults.object_class) && 
1949             !(method->flags & METHOD_ATTRIBUTE_VIRTUAL) && !MONO_CHECK_THIS (this)) {
1950                 call->method = mono_marshal_get_remoting_invoke_with_check (method);
1951         } else {
1952                 call->method = method;
1953         }
1954         call->inst.flags |= MONO_INST_HAS_METHOD;
1955         call->inst.inst_left = this;
1956
1957         return call;
1958 }
1959
1960 inline static int
1961 mono_emit_method_call_spilled (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethod *method,  
1962                        MonoMethodSignature *signature, MonoInst **args, const guint8 *ip, MonoInst *this)
1963 {
1964         MonoCallInst *call = mono_emit_method_call (cfg, bblock, method, signature, args, ip, this);
1965
1966         return mono_spill_call (cfg, bblock, call, signature, method->string_ctor, ip, FALSE);
1967 }
1968
1969 inline static int
1970 mono_emit_native_call (MonoCompile *cfg, MonoBasicBlock *bblock, gconstpointer func, MonoMethodSignature *sig,
1971                        MonoInst **args, const guint8 *ip, gboolean to_end)
1972 {
1973         MonoCallInst *call;
1974
1975         g_assert (sig);
1976
1977         call = mono_emit_call_args (cfg, bblock, sig, args, FALSE, FALSE, ip, to_end);
1978         call->fptr = func;
1979         return mono_spill_call (cfg, bblock, call, sig, func == mono_array_new_va, ip, to_end);
1980 }
1981
1982 inline static int
1983 mono_emit_jit_icall (MonoCompile *cfg, MonoBasicBlock *bblock, gconstpointer func, MonoInst **args, const guint8 *ip)
1984 {
1985         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (func);
1986         
1987         if (!info) {
1988                 g_warning ("unregistered JIT ICall");
1989                 g_assert_not_reached ();
1990         }
1991
1992         return mono_emit_native_call (cfg, bblock, mono_icall_get_wrapper (info), info->sig, args, ip, FALSE);
1993 }
1994
1995 static void
1996 mono_emulate_opcode (MonoCompile *cfg, MonoInst *tree, MonoInst **iargs, MonoJitICallInfo *info)
1997 {
1998         MonoInst *ins, *temp = NULL, *store, *load, *begin;
1999         MonoInst *last_arg = NULL;
2000         int nargs;
2001         MonoCallInst *call;
2002
2003         //g_print ("emulating: ");
2004         //mono_print_tree_nl (tree);
2005         MONO_INST_NEW_CALL (cfg, call, ret_type_to_call_opcode (info->sig->ret, FALSE, FALSE));
2006         ins = (MonoInst*)call;
2007         
2008         call->inst.cil_code = tree->cil_code;
2009         call->args = iargs;
2010         call->signature = info->sig;
2011
2012         call = mono_arch_call_opcode (cfg, cfg->cbb, call, FALSE);
2013
2014         if (!MONO_TYPE_IS_VOID (info->sig->ret)) {
2015                 temp = mono_compile_create_var (cfg, info->sig->ret, OP_LOCAL);
2016                 NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
2017                 store->cil_code = tree->cil_code;
2018         } else {
2019                 store = ins;
2020         }
2021
2022         nargs = info->sig->param_count + info->sig->hasthis;
2023
2024         for (last_arg = call->out_args; last_arg && last_arg->next; last_arg = last_arg->next) ;
2025
2026         if (nargs)
2027                 last_arg->next = store;
2028
2029         if (nargs)
2030                 begin = call->out_args;
2031         else
2032                 begin = store;
2033
2034         if (cfg->prev_ins) {
2035                 /* 
2036                  * This assumes that that in a tree, emulate_opcode is called for a
2037                  * node before it is called for its children. dec_foreach needs to
2038                  * take this into account.
2039                  */
2040                 store->next = cfg->prev_ins->next;
2041                 cfg->prev_ins->next = begin;
2042         } else {
2043                 store->next = cfg->cbb->code;
2044                 cfg->cbb->code = begin;
2045         }
2046
2047         call->fptr = mono_icall_get_wrapper (info);
2048
2049         if (!MONO_TYPE_IS_VOID (info->sig->ret)) {
2050                 NEW_TEMPLOAD (cfg, load, temp->inst_c0);
2051                 *tree = *load;
2052         }
2053 }
2054
2055 static MonoMethodSignature *
2056 mono_get_element_address_signature (int arity)
2057 {
2058         static GHashTable *sighash = NULL;
2059         MonoMethodSignature *res;
2060         int i;
2061
2062         EnterCriticalSection (&trampoline_hash_mutex);
2063         if (!sighash) {
2064                 sighash = g_hash_table_new (NULL, NULL);
2065         }
2066         else if ((res = g_hash_table_lookup (sighash, (gpointer)arity))) {
2067                 LeaveCriticalSection (&trampoline_hash_mutex);
2068                 return res;
2069         }
2070
2071         res = mono_metadata_signature_alloc (mono_defaults.corlib, arity + 1);
2072
2073         res->pinvoke = 1;
2074         res->params [0] = &mono_defaults.array_class->byval_arg; 
2075         
2076         for (i = 1; i <= arity; i++)
2077                 res->params [i] = &mono_defaults.int_class->byval_arg;
2078
2079         res->ret = &mono_defaults.int_class->byval_arg;
2080
2081         g_hash_table_insert (sighash, (gpointer)arity, res);
2082         LeaveCriticalSection (&trampoline_hash_mutex);
2083
2084         return res;
2085 }
2086
2087 static void
2088 handle_stobj (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *dest, MonoInst *src, const unsigned char *ip, MonoClass *klass, gboolean to_end, gboolean native) {
2089         MonoInst *iargs [3];
2090         int n;
2091         guint32 align = 0;
2092
2093         g_assert (klass);
2094         /*
2095          * This check breaks with spilled vars... need to handle it during verification anyway.
2096          * g_assert (klass && klass == src->klass && klass == dest->klass);
2097          */
2098
2099         if (native)
2100                 n = mono_class_native_size (klass, &align);
2101         else
2102                 n = mono_class_value_size (klass, &align);
2103
2104         if ((cfg->opt & MONO_OPT_INTRINS) && !to_end && n <= sizeof (gpointer) * 5) {
2105                 MonoInst *inst;
2106                 MONO_INST_NEW (cfg, inst, OP_MEMCPY);
2107                 inst->inst_left = dest;
2108                 inst->inst_right = src;
2109                 inst->cil_code = ip;
2110                 inst->unused = n;
2111                 MONO_ADD_INS (bblock, inst);
2112                 return;
2113         }
2114         iargs [0] = dest;
2115         iargs [1] = src;
2116         NEW_ICONST (cfg, iargs [2], n);
2117
2118         mono_emit_native_call (cfg, bblock, helper_memcpy, helper_sig_memcpy, iargs, ip, to_end);
2119 }
2120
2121 static void
2122 handle_initobj (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *dest, const guchar *ip, MonoClass *klass, MonoInst **stack_start, MonoInst **sp)
2123 {
2124         MonoInst *iargs [2];
2125         MonoInst *ins, *zero_int32;
2126         int n;
2127
2128         NEW_ICONST (cfg, zero_int32, 0);
2129
2130         mono_class_init (klass);
2131         n = mono_class_value_size (klass, NULL);
2132         MONO_INST_NEW (cfg, ins, 0);
2133         ins->cil_code = ip;
2134         ins->inst_left = dest;
2135         ins->inst_right = zero_int32;
2136         switch (n) {
2137         case 1:
2138                 ins->opcode = CEE_STIND_I1;
2139                 MONO_ADD_INS (bblock, ins);
2140                 break;
2141         case 2:
2142                 ins->opcode = CEE_STIND_I2;
2143                 MONO_ADD_INS (bblock, ins);
2144                 break;
2145         case 4:
2146                 ins->opcode = CEE_STIND_I4;
2147                 MONO_ADD_INS (bblock, ins);
2148                 break;
2149         default:
2150                 if (n <= sizeof (gpointer) * 5) {
2151                         ins->opcode = OP_MEMSET;
2152                         ins->inst_imm = 0;
2153                         ins->unused = n;
2154                         MONO_ADD_INS (bblock, ins);
2155                         break;
2156                 }
2157                 handle_loaded_temps (cfg, bblock, stack_start, sp);
2158                 NEW_ICONST (cfg, ins, n);
2159                 iargs [0] = dest;
2160                 iargs [1] = ins;
2161                 mono_emit_jit_icall (cfg, bblock, helper_initobj, iargs, ip);
2162                 break;
2163         }
2164 }
2165
2166 static MonoInst *
2167 handle_box (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *val, const guchar *ip, MonoClass *klass)
2168 {
2169         MonoInst *iargs [2];
2170         MonoInst *dest, *vtoffset, *add, *vstore;
2171         int temp;
2172
2173         /* much like NEWOBJ */
2174         if (cfg->opt & MONO_OPT_SHARED) {
2175                 NEW_DOMAINCONST (cfg, iargs [0]);
2176                 NEW_CLASSCONST (cfg, iargs [1], klass);
2177
2178                 temp = mono_emit_jit_icall (cfg, bblock, mono_object_new, iargs, ip);
2179         } else {
2180                 MonoVTable *vtable = mono_class_vtable (cfg->domain, klass);
2181                 NEW_VTABLECONST (cfg, iargs [0], vtable);
2182                 if (klass->has_finalize || (cfg->prof_options & MONO_PROFILE_ALLOCATIONS))
2183                         temp = mono_emit_jit_icall (cfg, bblock, mono_object_new_specific, iargs, ip);
2184                 else
2185                         temp = mono_emit_jit_icall (cfg, bblock, mono_object_new_fast, iargs, ip);
2186         }
2187         NEW_TEMPLOAD (cfg, dest, temp);
2188         NEW_ICONST (cfg, vtoffset, sizeof (MonoObject));
2189         MONO_INST_NEW (cfg, add, CEE_ADD);
2190         add->inst_left = dest;
2191         add->inst_right = vtoffset;
2192         add->cil_code = ip;
2193         add->klass = klass;
2194         MONO_INST_NEW (cfg, vstore, CEE_STIND_I);
2195         vstore->opcode = mono_type_to_stind (&klass->byval_arg);
2196         vstore->cil_code = ip;
2197         vstore->inst_left = add;
2198         vstore->inst_right = val;
2199
2200         if (vstore->opcode == CEE_STOBJ) {
2201                 handle_stobj (cfg, bblock, add, val, ip, klass, FALSE, FALSE);
2202         } else
2203                 MONO_ADD_INS (bblock, vstore);
2204
2205         NEW_TEMPLOAD (cfg, dest, temp);
2206         return dest;
2207 }
2208
2209 #define CODE_IS_STLOC(ip) (((ip) [0] >= CEE_STLOC_0 && (ip) [0] <= CEE_STLOC_3) || ((ip) [0] == CEE_STLOC_S))
2210
2211 static gboolean
2212 mono_method_check_inlining (MonoCompile *cfg, MonoMethod *method)
2213 {
2214         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
2215         MonoMethodSignature *signature = method->signature;
2216         MonoVTable *vtable;
2217         int i;
2218
2219 #ifdef MONO_ARCH_HAVE_LMF_OPS
2220         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) &&
2221             !MONO_TYPE_ISSTRUCT (signature->ret) && (method->klass->parent != mono_defaults.array_class))
2222                 return TRUE;
2223 #endif
2224
2225         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
2226             (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
2227             (method->iflags & METHOD_IMPL_ATTRIBUTE_NOINLINING) ||
2228             (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) ||
2229             (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
2230             (method->klass->marshalbyref) ||
2231             !header || header->num_clauses ||
2232             /* fixme: why cant we inline valuetype returns? */
2233             MONO_TYPE_ISSTRUCT (signature->ret))
2234                 return FALSE;
2235
2236         /* its not worth to inline methods with valuetype arguments?? */
2237         for (i = 0; i < signature->param_count; i++) {
2238                 if (MONO_TYPE_ISSTRUCT (signature->params [i])) {
2239                         return FALSE;
2240                 }
2241         }
2242
2243         /*
2244          * if we can initialize the class of the method right away, we do,
2245          * otherwise we don't allow inlining if the class needs initialization,
2246          * since it would mean inserting a call to mono_runtime_class_init()
2247          * inside the inlined code
2248          */
2249         if (!(cfg->opt & MONO_OPT_SHARED)) {
2250                 vtable = mono_class_vtable (cfg->domain, method->klass);
2251                 if (method->klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT) {
2252                         if (cfg->run_cctors)
2253                                 mono_runtime_class_init (vtable);
2254                 }
2255                 else if (!vtable->initialized && mono_class_needs_cctor_run (method->klass, NULL))
2256                         return FALSE;
2257         } else {
2258                 /* 
2259                  * If we're compiling for shared code
2260                  * the cctor will need to be run at aot method load time, for example,
2261                  * or at the end of the compilation of the inlining method.
2262                  */
2263                 if (mono_class_needs_cctor_run (method->klass, NULL) && !((method->klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT)))
2264                         return FALSE;
2265         }
2266         //if (!MONO_TYPE_IS_VOID (signature->ret)) return FALSE;
2267
2268         /* also consider num_locals? */
2269         if (getenv ("MONO_INLINELIMIT"))
2270                 if (header->code_size < atoi (getenv ("MONO_INLINELIMIT"))) {
2271                         return TRUE;
2272                 }
2273
2274         if (header->code_size < 20)
2275                 return TRUE;
2276
2277         return FALSE;
2278 }
2279
2280 static MonoInst*
2281 mini_get_ldelema_ins (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethod *cmethod, MonoInst **sp, unsigned char *ip, gboolean is_set)
2282 {
2283         int temp, rank;
2284         MonoInst *addr;
2285         MonoMethodSignature *esig;
2286         char icall_name [256];
2287         MonoJitICallInfo *info;
2288
2289         rank = cmethod->signature->param_count - (is_set? 1: 0);
2290
2291         if (rank == 2 && (cfg->opt & MONO_OPT_INTRINS)) {
2292                 MonoInst *indexes;
2293                 NEW_GROUP (cfg, indexes, sp [1], sp [2]);
2294                 MONO_INST_NEW (cfg, addr, OP_LDELEMA2D);
2295                 addr->inst_left = sp [0];
2296                 addr->inst_right = indexes;
2297                 addr->cil_code = ip;
2298                 addr->type = STACK_MP;
2299                 addr->klass = cmethod->klass;
2300                 return addr;
2301         }
2302
2303         /* Need to register the icall so it gets an icall wrapper */
2304         sprintf (icall_name, "ves_array_element_address_%d", rank);
2305
2306         info = mono_find_jit_icall_by_name (icall_name);
2307         if (info == NULL) {
2308                 esig = mono_get_element_address_signature (rank);
2309                 info = mono_register_jit_icall (ves_array_element_address, g_strdup (icall_name), esig, FALSE);
2310         }
2311
2312         temp = mono_emit_native_call (cfg, bblock, mono_icall_get_wrapper (info), info->sig, sp, ip, FALSE);
2313
2314         NEW_TEMPLOAD (cfg, addr, temp);
2315         return addr;
2316 }
2317
2318 static MonoJitICallInfo **emul_opcode_map = NULL;
2319
2320 static inline MonoJitICallInfo *
2321 mono_find_jit_opcode_emulation (int opcode)
2322 {
2323         if  (emul_opcode_map)
2324                 return emul_opcode_map [opcode];
2325         else
2326                 return NULL;
2327 }
2328
2329 static MonoInst*
2330 mini_get_opcode_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
2331 {
2332         int pc, op;
2333         MonoInst *ins;
2334
2335         if (cmethod->klass == mono_defaults.string_class) {
2336                 if (cmethod->name [0] != 'g')
2337                         return NULL;
2338  
2339                 if (strcmp (cmethod->name, "get_Chars") == 0)
2340                         op = OP_GETCHR;
2341                 else if (strcmp (cmethod->name, "get_Length") == 0)
2342                         op = OP_STRLEN;
2343                 else return NULL;
2344         } else if (cmethod->klass == mono_defaults.object_class) {
2345                 if (strcmp (cmethod->name, "GetType") == 0)
2346                         op = OP_GETTYPE;
2347                 else
2348                         return NULL;
2349         } else if (cmethod->klass == mono_defaults.array_class) {
2350                 if (strcmp (cmethod->name, "get_Rank") == 0)
2351                         op = OP_ARRAY_RANK;
2352                 else if (strcmp (cmethod->name, "get_Length") == 0)
2353                         op = CEE_LDLEN;
2354                 else
2355                         return NULL;
2356         } else {
2357                 op = mono_arch_get_opcode_for_method (cfg, cmethod, fsig, args);
2358                 if (op < 0)
2359                         return NULL;
2360         }
2361         pc = fsig->param_count + fsig->hasthis;
2362         MONO_INST_NEW (cfg, ins, op);
2363
2364         if (pc > 0) {
2365                 ins->inst_i0 = args [0];
2366                 if (pc > 1)
2367                         ins->inst_i1 = args [1];
2368         }
2369
2370         return ins;
2371 }
2372
2373 static void
2374 mono_save_args (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethodSignature *sig, MonoInst **sp, MonoInst **args)
2375 {
2376         MonoInst *store, *temp;
2377         int i;
2378
2379         g_assert (!MONO_TYPE_ISSTRUCT (sig->ret));
2380
2381         if (!sig->hasthis && sig->param_count == 0) 
2382                 return;
2383
2384         if (sig->hasthis) {
2385                 if (sp [0]->opcode == OP_ICONST) {
2386                         *args++ = sp [0];
2387                 } else {
2388                         temp = mono_compile_create_var (cfg, type_from_stack_type (*sp), OP_LOCAL);
2389                         *args++ = temp;
2390                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, *sp);
2391                         store->cil_code = sp [0]->cil_code;
2392                         MONO_ADD_INS (bblock, store);
2393                 }
2394                 sp++;
2395         }
2396
2397         for (i = 0; i < sig->param_count; ++i) {
2398                 if (sp [0]->opcode == OP_ICONST) {
2399                         *args++ = sp [0];
2400                 } else {
2401                         temp = mono_compile_create_var (cfg, sig->params [i], OP_LOCAL);
2402                         *args++ = temp;
2403                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, *sp);
2404                         store->cil_code = sp [0]->cil_code;
2405                         if (store->opcode == CEE_STOBJ) {
2406                                 NEW_TEMPLOADA (cfg, store, temp->inst_c0);
2407                                 handle_stobj (cfg, bblock, store, *sp, sp [0]->cil_code, temp->klass, FALSE, FALSE);
2408                         } else {
2409                                 MONO_ADD_INS (bblock, store);
2410                         } 
2411                 }
2412                 sp++;
2413         }
2414 }
2415
2416 static int
2417 inline_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoBasicBlock *bblock, MonoInst **sp,
2418                 guchar *ip, guint real_offset, GList *dont_inline, MonoBasicBlock **last_b, gboolean inline_allways)
2419 {
2420         MonoInst *ins, *rvar = NULL;
2421         MonoMethodHeader *cheader;
2422         MonoBasicBlock *ebblock, *sbblock;
2423         int i, costs, new_locals_offset;
2424
2425         if (cfg->verbose_level > 2)
2426                 g_print ("INLINE START %p %s -> %s\n", cmethod,  mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
2427
2428         if (!cmethod->inline_info) {
2429                 mono_jit_stats.inlineable_methods++;
2430                 cmethod->inline_info = 1;
2431         }
2432         /* allocate space to store the return value */
2433         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
2434                 rvar =  mono_compile_create_var (cfg, fsig->ret, OP_LOCAL);
2435         }
2436
2437         /* allocate local variables */
2438         cheader = ((MonoMethodNormal *)cmethod)->header;
2439         new_locals_offset = cfg->num_varinfo;
2440         for (i = 0; i < cheader->num_locals; ++i)
2441                 mono_compile_create_var (cfg, cheader->locals [i], OP_LOCAL);
2442         
2443         /* allocate starte and end blocks */
2444         sbblock = NEW_BBLOCK (cfg);
2445         sbblock->block_num = cfg->num_bblocks++;
2446         sbblock->real_offset = real_offset;
2447
2448         ebblock = NEW_BBLOCK (cfg);
2449         ebblock->block_num = cfg->num_bblocks++;
2450         ebblock->real_offset = real_offset;
2451
2452         costs = mono_method_to_ir (cfg, cmethod, sbblock, ebblock, new_locals_offset, rvar, dont_inline, sp, real_offset, *ip == CEE_CALLVIRT);
2453
2454         if ((costs >= 0 && costs < 60) || inline_allways) {
2455                 if (cfg->verbose_level > 2)
2456                         g_print ("INLINE END %s -> %s\n", mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
2457                 
2458                 mono_jit_stats.inlined_methods++;
2459
2460                 /* always add some code to avoid block split failures */
2461                 MONO_INST_NEW (cfg, ins, CEE_NOP);
2462                 MONO_ADD_INS (bblock, ins);
2463                 ins->cil_code = ip;
2464
2465                 bblock->next_bb = sbblock;
2466                 link_bblock (cfg, bblock, sbblock);
2467
2468                 if (rvar) {
2469                         NEW_TEMPLOAD (cfg, ins, rvar->inst_c0);
2470                         *sp++ = ins;
2471                 }
2472                 *last_b = ebblock;
2473                 return costs + 1;
2474         } else {
2475                 if (cfg->verbose_level > 2)
2476                         g_print ("INLINE ABORTED %s\n", mono_method_full_name (cmethod, TRUE));
2477         }
2478         return 0;
2479 }
2480
2481 /*
2482  * Some of these comments may well be out-of-date.
2483  * Design decisions: we do a single pass over the IL code (and we do bblock 
2484  * splitting/merging in the few cases when it's required: a back jump to an IL
2485  * address that was not already seen as bblock starting point).
2486  * Code is validated as we go (full verification is still better left to metadata/verify.c).
2487  * Complex operations are decomposed in simpler ones right away. We need to let the 
2488  * arch-specific code peek and poke inside this process somehow (except when the 
2489  * optimizations can take advantage of the full semantic info of coarse opcodes).
2490  * All the opcodes of the form opcode.s are 'normalized' to opcode.
2491  * MonoInst->opcode initially is the IL opcode or some simplification of that 
2492  * (OP_LOAD, OP_STORE). The arch-specific code may rearrange it to an arch-specific 
2493  * opcode with value bigger than OP_LAST.
2494  * At this point the IR can be handed over to an interpreter, a dumb code generator
2495  * or to the optimizing code generator that will translate it to SSA form.
2496  *
2497  * Profiling directed optimizations.
2498  * We may compile by default with few or no optimizations and instrument the code
2499  * or the user may indicate what methods to optimize the most either in a config file
2500  * or through repeated runs where the compiler applies offline the optimizations to 
2501  * each method and then decides if it was worth it.
2502  *
2503  * TODO:
2504  * * consider using an array instead of an hash table (bb_hash)
2505  */
2506
2507 #define CHECK_TYPE(ins) if (!(ins)->type) goto unverified
2508 #define CHECK_STACK(num) if ((sp - stack_start) < (num)) goto unverified
2509 #define CHECK_STACK_OVF(num) if (((sp - stack_start) + (num)) > header->max_stack) goto unverified
2510 #define CHECK_ARG(num) if ((unsigned)(num) >= (unsigned)num_args) goto unverified
2511 #define CHECK_LOCAL(num) if ((unsigned)(num) >= (unsigned)header->num_locals) goto unverified
2512 #define CHECK_OPSIZE(size) if (ip + size > end) goto unverified
2513
2514
2515 /* offset from br.s -> br like opcodes */
2516 #define BIG_BRANCH_OFFSET 13
2517
2518 static int
2519 get_basic_blocks (MonoCompile *cfg, GHashTable *bbhash, MonoMethodHeader* header, guint real_offset, unsigned char *start, unsigned char *end, unsigned char **pos)
2520 {
2521         unsigned char *ip = start;
2522         unsigned char *target;
2523         int i;
2524         guint cli_addr;
2525         MonoBasicBlock *bblock;
2526         const MonoOpcode *opcode;
2527
2528         while (ip < end) {
2529                 cli_addr = ip - start;
2530                 i = mono_opcode_value ((const guint8 **)&ip);
2531                 opcode = &mono_opcodes [i];
2532                 switch (opcode->argument) {
2533                 case MonoInlineNone:
2534                         ip++; 
2535                         break;
2536                 case MonoInlineString:
2537                 case MonoInlineType:
2538                 case MonoInlineField:
2539                 case MonoInlineMethod:
2540                 case MonoInlineTok:
2541                 case MonoInlineSig:
2542                 case MonoShortInlineR:
2543                 case MonoInlineI:
2544                         ip += 5;
2545                         break;
2546                 case MonoInlineVar:
2547                         ip += 3;
2548                         break;
2549                 case MonoShortInlineVar:
2550                 case MonoShortInlineI:
2551                         ip += 2;
2552                         break;
2553                 case MonoShortInlineBrTarget:
2554                         target = start + cli_addr + 2 + (signed char)ip [1];
2555                         GET_BBLOCK (cfg, bbhash, bblock, target);
2556                         ip += 2;
2557                         break;
2558                 case MonoInlineBrTarget:
2559                         target = start + cli_addr + 5 + (gint32)read32 (ip + 1);
2560                         GET_BBLOCK (cfg, bbhash, bblock, target);
2561                         ip += 5;
2562                         break;
2563                 case MonoInlineSwitch: {
2564                         guint32 n = read32 (ip + 1);
2565                         guint32 j;
2566                         ip += 5;
2567                         cli_addr += 5 + 4 * n;
2568                         target = start + cli_addr;
2569                         GET_BBLOCK (cfg, bbhash, bblock, target);
2570                         
2571                         for (j = 0; j < n; ++j) {
2572                                 target = start + cli_addr + (gint32)read32 (ip);
2573                                 GET_BBLOCK (cfg, bbhash, bblock, target);
2574                                 ip += 4;
2575                         }
2576                         break;
2577                 }
2578                 case MonoInlineR:
2579                 case MonoInlineI8:
2580                         ip += 9;
2581                         break;
2582                 default:
2583                         g_assert_not_reached ();
2584                 }
2585         }
2586         return 0;
2587 unverified:
2588         *pos = ip;
2589         return 1;
2590 }
2591
2592 static MonoInst*
2593 emit_tree (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *ins)
2594 {
2595         MonoInst *store, *temp, *load;
2596         temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
2597         NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
2598         store->cil_code = ins->cil_code;
2599         MONO_ADD_INS (bblock, store);
2600         NEW_TEMPLOAD (cfg, load, temp->inst_c0);
2601         load->cil_code = ins->cil_code;
2602         return load;
2603 }
2604
2605 /*
2606  * mono_method_to_ir: translates IL into basic blocks containing trees
2607  */
2608 static int
2609 mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_bblock, MonoBasicBlock *end_bblock, 
2610                    int locals_offset, MonoInst *return_var, GList *dont_inline, MonoInst **inline_args, 
2611                    guint inline_offset, gboolean is_virtual_call)
2612 {
2613         MonoInst *zero_int32, *zero_int64, *zero_ptr, *zero_obj, *zero_r8;
2614         MonoInst *ins, **sp, **stack_start;
2615         MonoBasicBlock *bblock, *tblock = NULL, *init_localsbb = NULL;
2616         GHashTable *bbhash;
2617         MonoMethod *cmethod;
2618         MonoInst **arg_array;
2619         MonoMethodHeader *header;
2620         MonoImage *image;
2621         guint32 token, ins_flag;
2622         MonoClass *klass;
2623         MonoClass *constrained_call = NULL;
2624         unsigned char *ip, *end, *target, *err_pos;
2625         static double r8_0 = 0.0;
2626         MonoMethodSignature *sig;
2627         MonoGenericContext *generic_context = NULL;
2628         MonoType **param_types;
2629         GList *bb_recheck = NULL, *tmp;
2630         int i, n, start_new_bblock, align;
2631         int num_calls = 0, inline_costs = 0;
2632         int *filter_lengths = NULL;
2633         int breakpoint_id = 0;
2634         guint real_offset, num_args;
2635
2636         image = method->klass->image;
2637         header = ((MonoMethodNormal *)method)->header;
2638         sig = method->signature;
2639         num_args = sig->hasthis + sig->param_count;
2640         ip = (unsigned char*)header->code;
2641         end = ip + header->code_size;
2642         mono_jit_stats.cil_code_size += header->code_size;
2643
2644         if (method->signature->is_inflated)
2645                 generic_context = ((MonoMethodInflated *) method)->context;
2646
2647         if (cfg->method == method) {
2648                 real_offset = 0;
2649                 bbhash = cfg->bb_hash;
2650         } else {
2651                 real_offset = inline_offset;
2652                 bbhash = g_hash_table_new (g_direct_hash, NULL);
2653         }
2654
2655         if (cfg->verbose_level > 2)
2656                 g_print ("method to IR %s\n", mono_method_full_name (method, TRUE));
2657
2658         dont_inline = g_list_prepend (dont_inline, method);
2659         if (cfg->method == method) {
2660
2661                 if (cfg->prof_options & MONO_PROFILE_INS_COVERAGE)
2662                         cfg->coverage_info = mono_profiler_coverage_alloc (cfg->method, header->code_size);
2663
2664                 /* ENTRY BLOCK */
2665                 cfg->bb_entry = start_bblock = NEW_BBLOCK (cfg);
2666                 start_bblock->cil_code = NULL;
2667                 start_bblock->cil_length = 0;
2668                 start_bblock->block_num = cfg->num_bblocks++;
2669
2670                 /* EXIT BLOCK */
2671                 cfg->bb_exit = end_bblock = NEW_BBLOCK (cfg);
2672                 end_bblock->cil_code = NULL;
2673                 end_bblock->cil_length = 0;
2674                 end_bblock->block_num = cfg->num_bblocks++;
2675                 g_assert (cfg->num_bblocks == 2);
2676
2677                 arg_array = alloca (sizeof (MonoInst *) * num_args);
2678                 for (i = num_args - 1; i >= 0; i--)
2679                         arg_array [i] = cfg->varinfo [i];
2680
2681                 if (header->num_clauses) {
2682                         int size = sizeof (int) * header->num_clauses;
2683                         filter_lengths = alloca (size);
2684                         memset (filter_lengths, 0, size);
2685
2686                         cfg->spvars = g_hash_table_new (NULL, NULL);
2687                 }
2688                 /* handle exception clauses */
2689                 for (i = 0; i < header->num_clauses; ++i) {
2690                         //unsigned char *p = ip;
2691                         MonoExceptionClause *clause = &header->clauses [i];
2692                         GET_BBLOCK (cfg, bbhash, tblock, ip + clause->try_offset);
2693                         tblock->real_offset = clause->try_offset;
2694                         GET_BBLOCK (cfg, bbhash, tblock, ip + clause->handler_offset);
2695                         tblock->real_offset = clause->handler_offset;
2696
2697                         if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY ||
2698                             clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2699                                 MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
2700                                 MONO_ADD_INS (tblock, ins);
2701                         }
2702
2703                         /*g_print ("clause try IL_%04x to IL_%04x handler %d at IL_%04x to IL_%04x\n", clause->try_offset, clause->try_offset + clause->try_len, clause->flags, clause->handler_offset, clause->handler_offset + clause->handler_len);
2704                           while (p < end) {
2705                           g_print ("%s", mono_disasm_code_one (NULL, method, p, &p));
2706                           }*/
2707                         /* catch and filter blocks get the exception object on the stack */
2708                         if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE ||
2709                             clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2710                                 /* mostly like handle_stack_args (), but just sets the input args */
2711                                 /* g_print ("handling clause at IL_%04x\n", clause->handler_offset); */
2712                                 if (!cfg->exvar) {
2713                                         cfg->exvar = mono_compile_create_var (cfg, &mono_defaults.object_class->byval_arg, OP_LOCAL);
2714                                         /* prevent it from being register allocated */
2715                                         cfg->exvar->flags |= MONO_INST_INDIRECT;
2716                                 }
2717                                 tblock->in_scount = 1;
2718                                 tblock->in_stack = mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
2719                                 tblock->in_stack [0] = cfg->exvar;
2720                                 
2721                                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2722                                         GET_BBLOCK (cfg, bbhash, tblock, ip + clause->token_or_filter);
2723                                         tblock->real_offset = clause->token_or_filter;
2724                                         tblock->in_scount = 1;
2725                                         tblock->in_stack = mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
2726                                         tblock->in_stack [0] = cfg->exvar;
2727                                         MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
2728                                         MONO_ADD_INS (tblock, ins);
2729                                 }
2730                         }
2731                 }
2732
2733         } else {
2734                 arg_array = alloca (sizeof (MonoInst *) * num_args);
2735                 mono_save_args (cfg, start_bblock, sig, inline_args, arg_array);
2736         }
2737
2738         /* FIRST CODE BLOCK */
2739         bblock = NEW_BBLOCK (cfg);
2740         bblock->cil_code = ip;
2741
2742         ADD_BBLOCK (cfg, bbhash, bblock);
2743
2744         if (cfg->method == method) {
2745                 breakpoint_id = mono_debugger_method_has_breakpoint (method);
2746                 if (breakpoint_id && (mono_debug_format != MONO_DEBUG_FORMAT_DEBUGGER)) {
2747                         MONO_INST_NEW (cfg, ins, CEE_BREAK);
2748                         MONO_ADD_INS (bblock, ins);
2749                 }
2750         }
2751         
2752         if ((header->init_locals || (cfg->method == method && (cfg->opt & MONO_OPT_SHARED))) || mono_compile_aot) {
2753                 /* we use a separate basic block for the initialization code */
2754                 cfg->bb_init = init_localsbb = NEW_BBLOCK (cfg);
2755                 init_localsbb->real_offset = real_offset;
2756                 start_bblock->next_bb = init_localsbb;
2757                 init_localsbb->next_bb = bblock;
2758                 link_bblock (cfg, start_bblock, init_localsbb);
2759                 link_bblock (cfg, init_localsbb, bblock);
2760                 init_localsbb->block_num = cfg->num_bblocks++;
2761         } else {
2762                 start_bblock->next_bb = bblock;
2763                 link_bblock (cfg, start_bblock, bblock);
2764         }
2765
2766         if (get_basic_blocks (cfg, bbhash, header, real_offset, ip, end, &err_pos)) {
2767                 ip = err_pos;
2768                 goto unverified;
2769         }
2770
2771         mono_debug_init_method (cfg, bblock, breakpoint_id);
2772
2773         param_types = mono_mempool_alloc (cfg->mempool, sizeof (MonoType*) * num_args);
2774         if (sig->hasthis)
2775                 param_types [0] = method->klass->valuetype?&method->klass->this_arg:&method->klass->byval_arg;
2776         for (n = 0; n < sig->param_count; ++n)
2777                 param_types [n + sig->hasthis] = sig->params [n];
2778
2779         /* do this somewhere outside - not here */
2780         NEW_ICONST (cfg, zero_int32, 0);
2781         NEW_ICONST (cfg, zero_int64, 0);
2782         zero_int64->type = STACK_I8;
2783         NEW_PCONST (cfg, zero_ptr, 0);
2784         NEW_PCONST (cfg, zero_obj, 0);
2785         zero_obj->type = STACK_OBJ;
2786
2787         MONO_INST_NEW (cfg, zero_r8, OP_R8CONST);
2788         zero_r8->type = STACK_R8;
2789         zero_r8->inst_p0 = &r8_0;
2790
2791         /* add a check for this != NULL to inlined methods */
2792         if (is_virtual_call) {
2793                 MONO_INST_NEW (cfg, ins, OP_CHECK_THIS);
2794                 NEW_ARGLOAD (cfg, ins->inst_left, 0);
2795                 ins->cil_code = ip;
2796                 MONO_ADD_INS (bblock, ins);
2797         }
2798
2799         /* we use a spare stack slot in SWITCH and NEWOBJ and others */
2800         stack_start = sp = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst*) * (header->max_stack + 1));
2801
2802         ins_flag = 0;
2803         start_new_bblock = 0;
2804         while (ip < end) {
2805
2806                 if (cfg->method == method)
2807                         real_offset = ip - header->code;
2808                 else
2809                         real_offset = inline_offset;
2810
2811                 if (start_new_bblock) {
2812                         bblock->cil_length = ip - bblock->cil_code;
2813                         if (start_new_bblock == 2) {
2814                                 g_assert (ip == tblock->cil_code);
2815                         } else {
2816                                 GET_BBLOCK (cfg, bbhash, tblock, ip);
2817                         }
2818                         bblock->next_bb = tblock;
2819                         bblock = tblock;
2820                         start_new_bblock = 0;
2821                         for (i = 0; i < bblock->in_scount; ++i) {
2822                                 if (cfg->verbose_level > 3)
2823                                         g_print ("loading %d from temp %d\n", i, bblock->in_stack [i]->inst_c0);                                                
2824                                 NEW_TEMPLOAD (cfg, ins, bblock->in_stack [i]->inst_c0);
2825                                 *sp++ = ins;
2826                         }
2827                 } else {
2828                         if ((tblock = g_hash_table_lookup (bbhash, ip)) && (tblock != bblock)) {
2829                                 link_bblock (cfg, bblock, tblock);
2830                                 if (sp != stack_start) {
2831                                         handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
2832                                         sp = stack_start;
2833                                 }
2834                                 bblock->next_bb = tblock;
2835                                 bblock = tblock;
2836                                 for (i = 0; i < bblock->in_scount; ++i) {
2837                                         if (cfg->verbose_level > 3)
2838                                                 g_print ("loading %d from temp %d\n", i, bblock->in_stack [i]->inst_c0);                                                
2839                                         NEW_TEMPLOAD (cfg, ins, bblock->in_stack [i]->inst_c0);
2840                                         *sp++ = ins;
2841                                 }
2842                         }
2843                 }
2844
2845                 bblock->real_offset = real_offset;
2846
2847                 if ((cfg->method == method) && cfg->coverage_info) {
2848                         MonoInst *store, *one;
2849                         guint32 cil_offset = ip - header->code;
2850                         cfg->coverage_info->data [cil_offset].cil_code = ip;
2851
2852                         /* TODO: Use an increment here */
2853                         NEW_ICONST (cfg, one, 1);
2854                         one->cil_code = ip;
2855
2856                         NEW_PCONST (cfg, ins, &(cfg->coverage_info->data [cil_offset].count));
2857                         ins->cil_code = ip;
2858
2859                         MONO_INST_NEW (cfg, store, CEE_STIND_I);
2860                         store->cil_code = ip;
2861                         store->inst_left = ins;
2862                         store->inst_right = one;
2863
2864                         MONO_ADD_INS (bblock, store);
2865                 }
2866
2867                 if (cfg->verbose_level > 3)
2868                         g_print ("converting (in B%d: stack: %d) %s", bblock->block_num, sp-stack_start, mono_disasm_code_one (NULL, method, ip, NULL));
2869
2870                 switch (*ip) {
2871                 case CEE_NOP:
2872                         ++ip;
2873                         break;
2874                 case CEE_BREAK:
2875                         MONO_INST_NEW (cfg, ins, CEE_BREAK);
2876                         ins->cil_code = ip++;
2877                         MONO_ADD_INS (bblock, ins);
2878                         break;
2879                 case CEE_LDARG_0:
2880                 case CEE_LDARG_1:
2881                 case CEE_LDARG_2:
2882                 case CEE_LDARG_3:
2883                         CHECK_STACK_OVF (1);
2884                         n = (*ip)-CEE_LDARG_0;
2885                         CHECK_ARG (n);
2886                         NEW_ARGLOAD (cfg, ins, n);
2887                         ins->cil_code = ip++;
2888                         *sp++ = ins;
2889                         break;
2890                 case CEE_LDLOC_0:
2891                 case CEE_LDLOC_1:
2892                 case CEE_LDLOC_2:
2893                 case CEE_LDLOC_3:
2894                         CHECK_STACK_OVF (1);
2895                         n = (*ip)-CEE_LDLOC_0;
2896                         CHECK_LOCAL (n);
2897                         NEW_LOCLOAD (cfg, ins, n);
2898                         ins->cil_code = ip++;
2899                         *sp++ = ins;
2900                         break;
2901                 case CEE_STLOC_0:
2902                 case CEE_STLOC_1:
2903                 case CEE_STLOC_2:
2904                 case CEE_STLOC_3:
2905                         CHECK_STACK (1);
2906                         n = (*ip)-CEE_STLOC_0;
2907                         CHECK_LOCAL (n);
2908                         --sp;
2909                         handle_loaded_temps (cfg, bblock, stack_start, sp);
2910                         NEW_LOCSTORE (cfg, ins, n, *sp);
2911                         ins->cil_code = ip;
2912                         if (ins->opcode == CEE_STOBJ) {
2913                                 NEW_LOCLOADA (cfg, ins, n);
2914                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
2915                         } else
2916                                 MONO_ADD_INS (bblock, ins);
2917                         ++ip;
2918                         inline_costs += 1;
2919                         break;
2920                 case CEE_LDARG_S:
2921                         CHECK_OPSIZE (2);
2922                         CHECK_STACK_OVF (1);
2923                         CHECK_ARG (ip [1]);
2924                         NEW_ARGLOAD (cfg, ins, ip [1]);
2925                         ins->cil_code = ip;
2926                         *sp++ = ins;
2927                         ip += 2;
2928                         break;
2929                 case CEE_LDARGA_S:
2930                         CHECK_OPSIZE (2);
2931                         CHECK_STACK_OVF (1);
2932                         CHECK_ARG (ip [1]);
2933                         NEW_ARGLOADA (cfg, ins, ip [1]);
2934                         ins->cil_code = ip;
2935                         *sp++ = ins;
2936                         ip += 2;
2937                         break;
2938                 case CEE_STARG_S:
2939                         CHECK_OPSIZE (2);
2940                         CHECK_STACK (1);
2941                         --sp;
2942                         CHECK_ARG (ip [1]);
2943                         NEW_ARGSTORE (cfg, ins, ip [1], *sp);
2944                         handle_loaded_temps (cfg, bblock, stack_start, sp);
2945                         ins->cil_code = ip;
2946                         if (ins->opcode == CEE_STOBJ) {
2947                                 NEW_ARGLOADA (cfg, ins, ip [1]);
2948                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
2949                         } else
2950                                 MONO_ADD_INS (bblock, ins);
2951                         ip += 2;
2952                         break;
2953                 case CEE_LDLOC_S:
2954                         CHECK_OPSIZE (2);
2955                         CHECK_STACK_OVF (1);
2956                         CHECK_LOCAL (ip [1]);
2957                         NEW_LOCLOAD (cfg, ins, ip [1]);
2958                         ins->cil_code = ip;
2959                         *sp++ = ins;
2960                         ip += 2;
2961                         break;
2962                 case CEE_LDLOCA_S:
2963                         CHECK_OPSIZE (2);
2964                         CHECK_STACK_OVF (1);
2965                         CHECK_LOCAL (ip [1]);
2966                         NEW_LOCLOADA (cfg, ins, ip [1]);
2967                         ins->cil_code = ip;
2968                         *sp++ = ins;
2969                         ip += 2;
2970                         break;
2971                 case CEE_STLOC_S:
2972                         CHECK_OPSIZE (2);
2973                         CHECK_STACK (1);
2974                         --sp;
2975                         handle_loaded_temps (cfg, bblock, stack_start, sp);
2976                         CHECK_LOCAL (ip [1]);
2977                         NEW_LOCSTORE (cfg, ins, ip [1], *sp);
2978                         ins->cil_code = ip;
2979                         if (ins->opcode == CEE_STOBJ) {
2980                                 NEW_LOCLOADA (cfg, ins, ip [1]);
2981                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
2982                         } else
2983                                 MONO_ADD_INS (bblock, ins);
2984                         ip += 2;
2985                         inline_costs += 1;
2986                         break;
2987                 case CEE_LDNULL:
2988                         CHECK_STACK_OVF (1);
2989                         NEW_PCONST (cfg, ins, NULL);
2990                         ins->cil_code = ip;
2991                         ins->type = STACK_OBJ;
2992                         ++ip;
2993                         *sp++ = ins;
2994                         break;
2995                 case CEE_LDC_I4_M1:
2996                         CHECK_STACK_OVF (1);
2997                         NEW_ICONST (cfg, ins, -1);
2998                         ins->cil_code = ip;
2999                         ++ip;
3000                         *sp++ = ins;
3001                         break;
3002                 case CEE_LDC_I4_0:
3003                 case CEE_LDC_I4_1:
3004                 case CEE_LDC_I4_2:
3005                 case CEE_LDC_I4_3:
3006                 case CEE_LDC_I4_4:
3007                 case CEE_LDC_I4_5:
3008                 case CEE_LDC_I4_6:
3009                 case CEE_LDC_I4_7:
3010                 case CEE_LDC_I4_8:
3011                         CHECK_STACK_OVF (1);
3012                         NEW_ICONST (cfg, ins, (*ip) - CEE_LDC_I4_0);
3013                         ins->cil_code = ip;
3014                         ++ip;
3015                         *sp++ = ins;
3016                         break;
3017                 case CEE_LDC_I4_S:
3018                         CHECK_OPSIZE (2);
3019                         CHECK_STACK_OVF (1);
3020                         ++ip;
3021                         NEW_ICONST (cfg, ins, *((signed char*)ip));
3022                         ins->cil_code = ip;
3023                         ++ip;
3024                         *sp++ = ins;
3025                         break;
3026                 case CEE_LDC_I4:
3027                         CHECK_OPSIZE (5);
3028                         CHECK_STACK_OVF (1);
3029                         NEW_ICONST (cfg, ins, (gint32)read32 (ip + 1));
3030                         ins->cil_code = ip;
3031                         ip += 5;
3032                         *sp++ = ins;
3033                         break;
3034                 case CEE_LDC_I8:
3035                         CHECK_OPSIZE (9);
3036                         CHECK_STACK_OVF (1);
3037                         MONO_INST_NEW (cfg, ins, OP_I8CONST);
3038                         ins->cil_code = ip;
3039                         ins->type = STACK_I8;
3040                         ++ip;
3041                         ins->inst_l = (gint64)read64 (ip);
3042                         ip += 8;
3043                         *sp++ = ins;
3044                         break;
3045                 case CEE_LDC_R4: {
3046                         float *f = g_malloc (sizeof (float));
3047                         CHECK_OPSIZE (5);
3048                         CHECK_STACK_OVF (1);
3049                         MONO_INST_NEW (cfg, ins, OP_R4CONST);
3050                         ins->type = STACK_R8;
3051                         ++ip;
3052                         readr4 (ip, f);
3053                         ins->inst_p0 = f;
3054                         ip += 4;
3055                         *sp++ = ins;                    
3056                         break;
3057                 }
3058                 case CEE_LDC_R8: {
3059                         double *d = g_malloc (sizeof (double));
3060                         CHECK_OPSIZE (9);
3061                         CHECK_STACK_OVF (1);
3062                         MONO_INST_NEW (cfg, ins, OP_R8CONST);
3063                         ins->type = STACK_R8;
3064                         ++ip;
3065                         readr8 (ip, d);
3066                         ins->inst_p0 = d;
3067                         ip += 8;
3068                         *sp++ = ins;                    
3069                         break;
3070                 }
3071                 case CEE_DUP: {
3072                         MonoInst *temp, *store;
3073                         CHECK_STACK (1);
3074                         CHECK_STACK_OVF (1);
3075                         sp--;
3076                         ins = *sp;
3077                 
3078                         /* 
3079                          * small optimization: if the loaded value was from a local already,
3080                          * just load it twice.
3081                          */
3082                         if (ins->ssa_op == MONO_SSA_LOAD && 
3083                             (ins->inst_i0->opcode == OP_LOCAL || ins->inst_i0->opcode == OP_ARG)) {
3084                                 sp++;
3085                                 MONO_INST_NEW (cfg, temp, 0);
3086                                 *temp = *ins;
3087                                 temp->cil_code = ip;
3088                                 *sp++ = temp;
3089                         } else {
3090                                 temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
3091                                 temp->cil_code = ip;
3092                                 NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
3093                                 store->cil_code = ip;
3094                                 MONO_ADD_INS (bblock, store);
3095                                 NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
3096                                 *sp++ = ins;
3097                                 ins->cil_code = ip;
3098                                 NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
3099                                 *sp++ = ins;
3100                                 ins->cil_code = ip;
3101                         }
3102                         ++ip;
3103                         inline_costs += 2;
3104                         break;
3105                 }
3106                 case CEE_POP:
3107                         CHECK_STACK (1);
3108                         MONO_INST_NEW (cfg, ins, CEE_POP);
3109                         MONO_ADD_INS (bblock, ins);
3110                         ins->cil_code = ip++;
3111                         --sp;
3112                         ins->inst_i0 = *sp;
3113                         break;
3114                 case CEE_JMP:
3115                         CHECK_OPSIZE (5);
3116                         if (stack_start != sp)
3117                                 goto unverified;
3118                         MONO_INST_NEW (cfg, ins, CEE_JMP);
3119                         token = read32 (ip + 1);
3120                         /* FIXME: check the signature matches */
3121                         cmethod = mono_get_method_full (image, token, NULL, generic_context);
3122                         ins->inst_p0 = cmethod;
3123                         MONO_ADD_INS (bblock, ins);
3124                         ip += 5;
3125                         start_new_bblock = 1;
3126                         break;
3127                 case CEE_CALLI:
3128                 case CEE_CALL:
3129                 case CEE_CALLVIRT: {
3130                         MonoInst *addr = NULL;
3131                         MonoMethodSignature *fsig = NULL;
3132                         int temp, array_rank = 0;
3133                         int virtual = *ip == CEE_CALLVIRT;
3134
3135                         CHECK_OPSIZE (5);
3136                         token = read32 (ip + 1);
3137
3138                         if (*ip == CEE_CALLI) {
3139                                 cmethod = NULL;
3140                                 CHECK_STACK (1);
3141                                 --sp;
3142                                 addr = *sp;
3143                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
3144                                         fsig = (MonoMethodSignature *)mono_method_get_wrapper_data (method, token);
3145                                 else
3146                                         fsig = mono_metadata_parse_signature (image, token);
3147
3148                                 n = fsig->param_count + fsig->hasthis;
3149                         } else {
3150                                 if (method->wrapper_type != MONO_WRAPPER_NONE) {
3151                                         cmethod =  (MonoMethod *)mono_method_get_wrapper_data (method, token);
3152                                 } else if (constrained_call) {
3153                                         cmethod = mono_get_method_constrained (image, token, constrained_call, generic_context);
3154                                 } else {
3155                                         cmethod = mono_get_method_full (image, token, NULL, generic_context);
3156                                 }
3157
3158                                 g_assert (cmethod);
3159
3160                                 if (!cmethod->klass->inited)
3161                                         mono_class_init (cmethod->klass);
3162
3163                                 if (cmethod->signature->pinvoke) {
3164                                                 MonoMethod *wrapper = mono_marshal_get_native_wrapper (cmethod);
3165                                                 fsig = wrapper->signature;
3166                                 } else {
3167                                         fsig = mono_method_get_signature (cmethod, image, token);
3168                                 }
3169
3170                                 n = fsig->param_count + fsig->hasthis;
3171
3172                                 if (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL &&
3173                                     cmethod->klass->parent == mono_defaults.array_class) {
3174                                         array_rank = cmethod->klass->rank;
3175                                 }
3176
3177                                 if (cmethod->string_ctor)
3178                                         g_assert_not_reached ();
3179
3180                         }
3181
3182                         CHECK_STACK (n);
3183
3184                         //g_assert (!virtual || fsig->hasthis);
3185
3186                         sp -= n;
3187
3188                         if (constrained_call) {
3189                                 /*
3190                                  * We have the `constrained.' prefix opcode.
3191                                  */
3192                                 if (constrained_call->valuetype && !cmethod->klass->valuetype) {
3193                                         /*
3194                                          * The type parameter is instantiated as a valuetype,
3195                                          * but that type doesn't override the method we're
3196                                          * calling, so we need to box `this'.
3197                                          */
3198                                         sp [0] = handle_box (cfg, bblock, sp [0], ip, constrained_call);
3199                                 } else if (!constrained_call->valuetype) {
3200                                         MonoInst *ins;
3201
3202                                         /*
3203                                          * The type parameter is instantiated as a reference
3204                                          * type.  We have a managed pointer on the stack, so
3205                                          * we need to dereference it here.
3206                                          */
3207
3208                                         MONO_INST_NEW (cfg, ins, CEE_LDIND_REF);
3209                                         ins->cil_code = ip;
3210                                         ins->inst_i0 = sp [0];
3211                                         ins->type = STACK_OBJ;
3212                                         sp [0] = ins;
3213                                 } else if (cmethod->klass->valuetype)
3214                                         virtual = 0;
3215                                 constrained_call = NULL;
3216                         }
3217
3218                         if (*ip != CEE_CALLI && check_call_signature (cfg, fsig, sp))
3219                                 goto unverified;
3220
3221                         if ((ins_flag & MONO_INST_TAILCALL) && cmethod && (*ip == CEE_CALL) && (mono_metadata_signature_equal (method->signature, cmethod->signature))) {
3222                                 int i;
3223                                 /* FIXME: This assumes the two methods has the same number and type of arguments */
3224                                 for (i = 0; i < n; ++i) {
3225                                         /* Check if argument is the same */
3226                                         NEW_ARGLOAD (cfg, ins, i);
3227                                         if ((ins->opcode == sp [i]->opcode) && (ins->inst_i0 == sp [i]->inst_i0))
3228                                                 continue;
3229
3230                                         /* Prevent argument from being register allocated */
3231                                         arg_array [i]->flags |= MONO_INST_VOLATILE;
3232                                         NEW_ARGSTORE (cfg, ins, i, sp [i]);
3233                                         ins->cil_code = ip;
3234                                         if (ins->opcode == CEE_STOBJ) {
3235                                                 NEW_ARGLOADA (cfg, ins, i);
3236                                                 handle_stobj (cfg, bblock, ins, sp [i], sp [i]->cil_code, ins->klass, FALSE, FALSE);
3237                                         }
3238                                         else
3239                                                 MONO_ADD_INS (bblock, ins);
3240                                 }
3241                                 MONO_INST_NEW (cfg, ins, CEE_JMP);
3242                                 ins->cil_code = ip;
3243                                 ins->inst_p0 = cmethod;
3244                                 ins->inst_p1 = arg_array [0];
3245                                 MONO_ADD_INS (bblock, ins);
3246                                 start_new_bblock = 1;
3247                                 /* skip CEE_RET as well */
3248                                 ip += 6;
3249                                 ins_flag = 0;
3250                                 break;
3251                         }
3252                         if (cmethod && (cfg->opt & MONO_OPT_INTRINS) && (ins = mini_get_opcode_for_method (cfg, cmethod, fsig, sp))) {
3253                                 ins->cil_code = ip;
3254
3255                                 if (MONO_TYPE_IS_VOID (fsig->ret)) {
3256                                         MONO_ADD_INS (bblock, ins);
3257                                 } else {
3258                                         type_to_eval_stack_type (fsig->ret, ins);
3259                                         *sp = ins;
3260                                         sp++;
3261                                 }
3262
3263                                 ip += 5;
3264                                 break;
3265                         }
3266
3267                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3268
3269                         if ((cfg->opt & MONO_OPT_INLINE) && cmethod &&
3270                             (!virtual || !(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) || (cmethod->flags & METHOD_ATTRIBUTE_FINAL)) && 
3271                             mono_method_check_inlining (cfg, cmethod) &&
3272                                  !g_list_find (dont_inline, cmethod)) {
3273                                 int costs;
3274                                 MonoBasicBlock *ebblock;
3275
3276                                 if (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
3277                                         cmethod = mono_marshal_get_native_wrapper (cmethod);
3278
3279                                 if ((costs = inline_method (cfg, cmethod, fsig, bblock, sp, ip, real_offset, dont_inline, &ebblock, FALSE))) {
3280                                         ip += 5;
3281                                         real_offset += 5;
3282
3283                                         GET_BBLOCK (cfg, bbhash, bblock, ip);
3284                                         ebblock->next_bb = bblock;
3285                                         link_bblock (cfg, ebblock, bblock);
3286
3287                                         if (!MONO_TYPE_IS_VOID (fsig->ret))
3288                                                 sp++;
3289
3290                                         /* indicates start of a new block, and triggers a load of all 
3291                                            stack arguments at bb boundarie */
3292                                         bblock = ebblock;
3293
3294                                         inline_costs += costs;
3295                                         break;
3296                                 }
3297                         }
3298                         
3299                         inline_costs += 10 * num_calls++;
3300
3301                         /* tail recursion elimination */
3302                         if ((cfg->opt & MONO_OPT_TAILC) && *ip == CEE_CALL && cmethod == method && ip [5] == CEE_RET) {
3303                                 gboolean has_vtargs = FALSE;
3304                                 int i;
3305                                 
3306                                 /* keep it simple */
3307                                 for (i =  fsig->param_count - 1; i >= 0; i--) {
3308                                         if (MONO_TYPE_ISSTRUCT (cmethod->signature->params [i])) 
3309                                                 has_vtargs = TRUE;
3310                                 }
3311
3312                                 if (!has_vtargs) {
3313                                         for (i = 0; i < n; ++i) {
3314                                                 NEW_ARGSTORE (cfg, ins, i, sp [i]);
3315                                                 ins->cil_code = ip;
3316                                                 MONO_ADD_INS (bblock, ins);
3317                                         }
3318                                         MONO_INST_NEW (cfg, ins, CEE_BR);
3319                                         ins->cil_code = ip;
3320                                         MONO_ADD_INS (bblock, ins);
3321                                         tblock = start_bblock->out_bb [0];
3322                                         link_bblock (cfg, bblock, tblock);
3323                                         ins->inst_target_bb = tblock;
3324                                         start_new_bblock = 1;
3325                                         ip += 5;
3326                                         
3327                                         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
3328                                                 /* just create a dummy - the value is never used */
3329                                                 ins = mono_compile_create_var (cfg, fsig->ret, OP_LOCAL);
3330                                                 NEW_TEMPLOAD (cfg, *sp, ins->inst_c0);
3331                                                 sp++;
3332                                         }
3333
3334                                         break;
3335                                 }
3336                         }
3337
3338                         if (*ip == CEE_CALLI) {
3339
3340                                 if ((temp = mono_emit_calli (cfg, bblock, fsig, sp, addr, ip)) != -1) {
3341                                         NEW_TEMPLOAD (cfg, *sp, temp);
3342                                         sp++;
3343                                 }
3344                                         
3345                         } else if (array_rank) {
3346                                 MonoInst *addr;
3347
3348                                 if (strcmp (cmethod->name, "Set") == 0) { /* array Set */ 
3349                                         if (sp [fsig->param_count]->type == STACK_OBJ) {
3350                                                 MonoInst *iargs [2];
3351                                                 MonoInst *array, *to_store, *store;
3352
3353                                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
3354                                                 
3355                                                 array = mono_compile_create_var (cfg, type_from_stack_type (sp [0]), OP_LOCAL);
3356                                                 NEW_TEMPSTORE (cfg, store, array->inst_c0, sp [0]);
3357                                                 store->cil_code = ip;
3358                                                 MONO_ADD_INS (bblock, store);
3359                                                 NEW_TEMPLOAD (cfg, iargs [0], array->inst_c0);
3360
3361                                                 to_store = mono_compile_create_var (cfg, type_from_stack_type (sp [fsig->param_count]), OP_LOCAL);
3362                                                 NEW_TEMPSTORE (cfg, store, to_store->inst_c0, sp [fsig->param_count]);
3363                                                 store->cil_code = ip;
3364                                                 MONO_ADD_INS (bblock, store);
3365                                                 NEW_TEMPLOAD (cfg, iargs [1], to_store->inst_c0);
3366
3367                                                 /*
3368                                                  * We first save the args for the call so that the args are copied to the stack
3369                                                  * and a new instruction tree for them is created. If we don't do this,
3370                                                  * the same MonoInst is added to two different trees and this is not 
3371                                                  * allowed by burg.
3372                                                  */
3373                                                 mono_emit_jit_icall (cfg, bblock, helper_stelem_ref_check, iargs, ip);
3374
3375                                                 NEW_TEMPLOAD (cfg, sp [0], array->inst_c0);
3376                                                 NEW_TEMPLOAD (cfg, sp [fsig->param_count], to_store->inst_c0);
3377                                         }
3378
3379                                         addr = mini_get_ldelema_ins (cfg, bblock, cmethod, sp, ip, TRUE);
3380                                         NEW_INDSTORE (cfg, ins, addr, sp [fsig->param_count], fsig->params [fsig->param_count - 1]);
3381                                         ins->cil_code = ip;
3382                                         if (ins->opcode == CEE_STOBJ) {
3383                                                 handle_stobj (cfg, bblock, addr, sp [fsig->param_count], ip, mono_class_from_mono_type (fsig->params [fsig->param_count-1]), FALSE, FALSE);
3384                                         } else {
3385                                                 MONO_ADD_INS (bblock, ins);
3386                                         }
3387
3388                                 } else if (strcmp (cmethod->name, "Get") == 0) { /* array Get */
3389                                         addr = mini_get_ldelema_ins (cfg, bblock, cmethod, sp, ip, FALSE);
3390                                         NEW_INDLOAD (cfg, ins, addr, fsig->ret);
3391                                         ins->cil_code = ip;
3392
3393                                         *sp++ = ins;
3394                                 } else if (strcmp (cmethod->name, "Address") == 0) { /* array Address */
3395                                         addr = mini_get_ldelema_ins (cfg, bblock, cmethod, sp, ip, FALSE);
3396                                         *sp++ = addr;
3397                                 } else {
3398                                         g_assert_not_reached ();
3399                                 }
3400
3401                         } else {
3402                                 if (0 && CODE_IS_STLOC (ip + 5) && (!MONO_TYPE_ISSTRUCT (fsig->ret)) && (!MONO_TYPE_IS_VOID (fsig->ret) || cmethod->string_ctor)) {
3403                                         /* no need to spill */
3404                                         ins = (MonoInst*)mono_emit_method_call (cfg, bblock, cmethod, fsig, sp, ip, virtual ? sp [0] : NULL);
3405                                         *sp++ = ins;
3406                                 } else {
3407                                         if ((temp = mono_emit_method_call_spilled (cfg, bblock, cmethod, fsig, sp, ip, virtual ? sp [0] : NULL)) != -1) {
3408                                                 NEW_TEMPLOAD (cfg, *sp, temp);
3409                                                 sp++;
3410                                         }
3411                                 }
3412                         }
3413
3414                         ip += 5;
3415                         break;
3416                 }
3417                 case CEE_RET:
3418                         if (cfg->method != method) {
3419                                 /* return from inlined methode */
3420                                 if (return_var) {
3421                                         MonoInst *store;
3422                                         CHECK_STACK (1);
3423                                         --sp;
3424                                         //g_assert (returnvar != -1);
3425                                         NEW_TEMPSTORE (cfg, store, return_var->inst_c0, *sp);
3426                                         store->cil_code = sp [0]->cil_code;
3427                                         if (store->opcode == CEE_STOBJ) {
3428                                                 g_assert_not_reached ();
3429                                                 NEW_TEMPLOADA (cfg, store, return_var->inst_c0);
3430                                                 handle_stobj (cfg, bblock, store, *sp, sp [0]->cil_code, return_var->klass, FALSE, FALSE);
3431                                         } else
3432                                                 MONO_ADD_INS (bblock, store);
3433                                 } 
3434                         } else {
3435                                 if (cfg->ret) {
3436                                         g_assert (!return_var);
3437                                         CHECK_STACK (1);
3438                                         --sp;
3439                                         MONO_INST_NEW (cfg, ins, CEE_NOP);
3440                                         ins->opcode = mono_type_to_stind (method->signature->ret);
3441                                         if (ins->opcode == CEE_STOBJ) {
3442                                                 NEW_RETLOADA (cfg, ins);
3443                                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
3444                                         } else {
3445                                                 ins->opcode = OP_SETRET;
3446                                                 ins->cil_code = ip;
3447                                                 ins->inst_i0 = *sp;;
3448                                                 ins->inst_i1 = NULL;
3449                                                 MONO_ADD_INS (bblock, ins);
3450                                         }
3451                                 }
3452                         }
3453                         if (sp != stack_start)
3454                                 goto unverified;
3455                         MONO_INST_NEW (cfg, ins, CEE_BR);
3456                         ins->cil_code = ip++;
3457                         ins->inst_target_bb = end_bblock;
3458                         MONO_ADD_INS (bblock, ins);
3459                         link_bblock (cfg, bblock, end_bblock);
3460                         start_new_bblock = 1;
3461                         break;
3462                 case CEE_BR_S:
3463                         CHECK_OPSIZE (2);
3464                         MONO_INST_NEW (cfg, ins, CEE_BR);
3465                         ins->cil_code = ip++;
3466                         MONO_ADD_INS (bblock, ins);
3467                         target = ip + 1 + (signed char)(*ip);
3468                         ++ip;
3469                         GET_BBLOCK (cfg, bbhash, tblock, target);
3470                         link_bblock (cfg, bblock, tblock);
3471                         CHECK_BBLOCK (target, ip, tblock);
3472                         ins->inst_target_bb = tblock;
3473                         if (sp != stack_start) {
3474                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3475                                 sp = stack_start;
3476                         }
3477                         start_new_bblock = 1;
3478                         inline_costs += 10;
3479                         break;
3480                 case CEE_BRFALSE_S:
3481                 case CEE_BRTRUE_S:
3482                         CHECK_OPSIZE (2);
3483                         CHECK_STACK (1);
3484                         MONO_INST_NEW (cfg, ins, *ip + BIG_BRANCH_OFFSET);
3485                         ins->cil_code = ip++;
3486                         target = ip + 1 + *(signed char*)ip;
3487                         ip++;
3488                         ADD_UNCOND (ins->opcode == CEE_BRTRUE);
3489                         if (sp != stack_start) {
3490                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3491                                 sp = stack_start;
3492                         }
3493                         inline_costs += 10;
3494                         break;
3495                 case CEE_BEQ_S:
3496                 case CEE_BGE_S:
3497                 case CEE_BGT_S:
3498                 case CEE_BLE_S:
3499                 case CEE_BLT_S:
3500                 case CEE_BNE_UN_S:
3501                 case CEE_BGE_UN_S:
3502                 case CEE_BGT_UN_S:
3503                 case CEE_BLE_UN_S:
3504                 case CEE_BLT_UN_S:
3505                         CHECK_OPSIZE (2);
3506                         CHECK_STACK (2);
3507                         MONO_INST_NEW (cfg, ins, *ip + BIG_BRANCH_OFFSET);
3508                         ins->cil_code = ip++;
3509                         target = ip + 1 + *(signed char*)ip;
3510                         ip++;
3511                         ADD_BINCOND (NULL);
3512                         if (sp != stack_start) {
3513                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3514                                 sp = stack_start;
3515                         }
3516                         inline_costs += 10;
3517                         break;
3518                 case CEE_BR:
3519                         CHECK_OPSIZE (5);
3520                         MONO_INST_NEW (cfg, ins, CEE_BR);
3521                         ins->cil_code = ip++;
3522                         MONO_ADD_INS (bblock, ins);
3523                         target = ip + 4 + (gint32)read32(ip);
3524                         ip += 4;
3525                         GET_BBLOCK (cfg, bbhash, tblock, target);
3526                         link_bblock (cfg, bblock, tblock);
3527                         CHECK_BBLOCK (target, ip, tblock);
3528                         ins->inst_target_bb = tblock;
3529                         if (sp != stack_start) {
3530                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3531                                 sp = stack_start;
3532                         }
3533                         start_new_bblock = 1;
3534                         inline_costs += 10;
3535                         break;
3536                 case CEE_BRFALSE:
3537                 case CEE_BRTRUE:
3538                         CHECK_OPSIZE (5);
3539                         CHECK_STACK (1);
3540                         MONO_INST_NEW (cfg, ins, *ip);
3541                         ins->cil_code = ip++;
3542                         target = ip + 4 + (gint32)read32(ip);
3543                         ip += 4;
3544                         ADD_UNCOND(ins->opcode == CEE_BRTRUE);
3545                         if (sp != stack_start) {
3546                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3547                                 sp = stack_start;
3548                         }
3549                         inline_costs += 10;
3550                         break;
3551                 case CEE_BEQ:
3552                 case CEE_BGE:
3553                 case CEE_BGT:
3554                 case CEE_BLE:
3555                 case CEE_BLT:
3556                 case CEE_BNE_UN:
3557                 case CEE_BGE_UN:
3558                 case CEE_BGT_UN:
3559                 case CEE_BLE_UN:
3560                 case CEE_BLT_UN:
3561                         CHECK_OPSIZE (5);
3562                         CHECK_STACK (2);
3563                         MONO_INST_NEW (cfg, ins, *ip);
3564                         ins->cil_code = ip++;
3565                         target = ip + 4 + (gint32)read32(ip);
3566                         ip += 4;
3567                         ADD_BINCOND(NULL);
3568                         if (sp != stack_start) {
3569                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3570                                 sp = stack_start;
3571                         }
3572                         inline_costs += 10;
3573                         break;
3574                 case CEE_SWITCH:
3575                         CHECK_OPSIZE (5);
3576                         CHECK_STACK (1);
3577                         n = read32 (ip + 1);
3578                         MONO_INST_NEW (cfg, ins, *ip);
3579                         --sp;
3580                         ins->inst_left = *sp;
3581                         if (ins->inst_left->type != STACK_I4) goto unverified;
3582                         ins->cil_code = ip;
3583                         ip += 5;
3584                         CHECK_OPSIZE (n * sizeof (guint32));
3585                         target = ip + n * sizeof (guint32);
3586                         MONO_ADD_INS (bblock, ins);
3587                         GET_BBLOCK (cfg, bbhash, tblock, target);
3588                         link_bblock (cfg, bblock, tblock);
3589                         ins->klass = GUINT_TO_POINTER (n);
3590                         ins->inst_many_bb = mono_mempool_alloc (cfg->mempool, sizeof (MonoBasicBlock*) * (n + 1));
3591                         ins->inst_many_bb [n] = tblock;
3592
3593                         for (i = 0; i < n; ++i) {
3594                                 GET_BBLOCK (cfg, bbhash, tblock, target + (gint32)read32(ip));
3595                                 link_bblock (cfg, bblock, tblock);
3596                                 ins->inst_many_bb [i] = tblock;
3597                                 ip += 4;
3598                         }
3599                         if (sp != stack_start) {
3600                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3601                                 sp = stack_start;
3602                         }
3603                         inline_costs += 20;
3604                         break;
3605                 case CEE_LDIND_I1:
3606                 case CEE_LDIND_U1:
3607                 case CEE_LDIND_I2:
3608                 case CEE_LDIND_U2:
3609                 case CEE_LDIND_I4:
3610                 case CEE_LDIND_U4:
3611                 case CEE_LDIND_I8:
3612                 case CEE_LDIND_I:
3613                 case CEE_LDIND_R4:
3614                 case CEE_LDIND_R8:
3615                 case CEE_LDIND_REF:
3616                         CHECK_STACK (1);
3617                         MONO_INST_NEW (cfg, ins, *ip);
3618                         ins->cil_code = ip;
3619                         --sp;
3620                         ins->inst_i0 = *sp;
3621                         *sp++ = ins;
3622                         ins->type = ldind_type [*ip - CEE_LDIND_I1];
3623                         ins->flags |= ins_flag;
3624                         ins_flag = 0;
3625                         ++ip;
3626                         break;
3627                 case CEE_STIND_REF:
3628                 case CEE_STIND_I1:
3629                 case CEE_STIND_I2:
3630                 case CEE_STIND_I4:
3631                 case CEE_STIND_I8:
3632                 case CEE_STIND_R4:
3633                 case CEE_STIND_R8:
3634                         CHECK_STACK (2);
3635                         MONO_INST_NEW (cfg, ins, *ip);
3636                         ins->cil_code = ip++;
3637                         sp -= 2;
3638                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3639                         MONO_ADD_INS (bblock, ins);
3640                         ins->inst_i0 = sp [0];
3641                         ins->inst_i1 = sp [1];
3642                         ins->flags |= ins_flag;
3643                         ins_flag = 0;
3644                         inline_costs += 1;
3645                         break;
3646                 case CEE_ADD:
3647                 case CEE_SUB:
3648                 case CEE_MUL:
3649                 case CEE_DIV:
3650                 case CEE_DIV_UN:
3651                 case CEE_REM:
3652                 case CEE_REM_UN:
3653                 case CEE_AND:
3654                 case CEE_OR:
3655                 case CEE_XOR:
3656                 case CEE_SHL:
3657                 case CEE_SHR:
3658                 case CEE_SHR_UN:
3659                         CHECK_STACK (2);
3660                         ADD_BINOP (*ip);
3661                         /* special case that gives a nice speedup and happens to workaorund a ppc jit but (for the release)
3662                          * later apply the speedup to the left shift as well
3663                          * See BUG# 57957.
3664                          */
3665                         if ((ins->opcode == OP_LSHR_UN) && (ins->type == STACK_I8) 
3666                                         && (ins->inst_right->opcode == OP_ICONST) && (ins->inst_right->inst_c0 == 32)) {
3667                                 ins->opcode = OP_LONG_SHRUN_32;
3668                                 /*g_print ("applied long shr speedup to %s\n", cfg->method->name);*/
3669                                 ip++;
3670                                 break;
3671                         }
3672                         if (mono_find_jit_opcode_emulation (ins->opcode)) {
3673                                 --sp;
3674                                 *sp++ = emit_tree (cfg, bblock, ins);
3675                         }
3676                         ip++;
3677                         break;
3678                 case CEE_NEG:
3679                 case CEE_NOT:
3680                 case CEE_CONV_I1:
3681                 case CEE_CONV_I2:
3682                 case CEE_CONV_I4:
3683                 case CEE_CONV_R4:
3684                 case CEE_CONV_R8:
3685                 case CEE_CONV_U4:
3686                 case CEE_CONV_I8:
3687                 case CEE_CONV_U8:
3688                 case CEE_CONV_OVF_I8:
3689                 case CEE_CONV_OVF_U8:
3690                 case CEE_CONV_R_UN:
3691                         CHECK_STACK (1);
3692                         ADD_UNOP (*ip);
3693                         if (mono_find_jit_opcode_emulation (ins->opcode)) {
3694                                 --sp;
3695                                 *sp++ = emit_tree (cfg, bblock, ins);
3696                         }
3697                         ip++;                   
3698                         break;
3699                 case CEE_CONV_OVF_I4:
3700                 case CEE_CONV_OVF_I1:
3701                 case CEE_CONV_OVF_I2:
3702                 case CEE_CONV_OVF_I:
3703                 case CEE_CONV_OVF_U:
3704                         CHECK_STACK (1);
3705
3706                         if (sp [-1]->type == STACK_R8) {
3707                                 ADD_UNOP (CEE_CONV_OVF_I8);
3708                                 ADD_UNOP (*ip);
3709                         } else {
3710                                 ADD_UNOP (*ip);
3711                         }
3712
3713                         ip++;
3714                         break;
3715                 case CEE_CONV_OVF_U1:
3716                 case CEE_CONV_OVF_U2:
3717                 case CEE_CONV_OVF_U4:
3718                         CHECK_STACK (1);
3719
3720                         if (sp [-1]->type == STACK_R8) {
3721                                 ADD_UNOP (CEE_CONV_OVF_U8);
3722                                 ADD_UNOP (*ip);
3723                         } else {
3724                                 ADD_UNOP (*ip);
3725                         }
3726
3727                         ip++;
3728                         break;
3729                 case CEE_CONV_OVF_I1_UN:
3730                 case CEE_CONV_OVF_I2_UN:
3731                 case CEE_CONV_OVF_I4_UN:
3732                 case CEE_CONV_OVF_I8_UN:
3733                 case CEE_CONV_OVF_U1_UN:
3734                 case CEE_CONV_OVF_U2_UN:
3735                 case CEE_CONV_OVF_U4_UN:
3736                 case CEE_CONV_OVF_U8_UN:
3737                 case CEE_CONV_OVF_I_UN:
3738                 case CEE_CONV_OVF_U_UN:
3739                         CHECK_STACK (1);
3740                         ADD_UNOP (*ip);
3741                         ip++;
3742                         break;
3743                 case CEE_CPOBJ:
3744                         CHECK_OPSIZE (5);
3745                         CHECK_STACK (2);
3746                         token = read32 (ip + 1);
3747                         if (method->wrapper_type != MONO_WRAPPER_NONE)
3748                                 klass = mono_method_get_wrapper_data (method, token);
3749                         else
3750                                 klass = mono_class_get_full (image, token, generic_context);
3751
3752                         mono_class_init (klass);
3753                         sp -= 2;
3754                         if (MONO_TYPE_IS_REFERENCE (&klass->byval_arg)) {
3755                                 MonoInst *store, *load;
3756                                 MONO_INST_NEW (cfg, load, CEE_LDIND_REF);
3757                                 load->cil_code = ip;
3758                                 load->inst_i0 = sp [1];
3759                                 load->type = ldind_type [CEE_LDIND_REF];
3760                                 load->flags |= ins_flag;
3761                                 MONO_INST_NEW (cfg, store, CEE_STIND_REF);
3762                                 store->cil_code = ip;
3763                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
3764                                 MONO_ADD_INS (bblock, store);
3765                                 store->inst_i0 = sp [0];
3766                                 store->inst_i1 = load;
3767                                 store->flags |= ins_flag;
3768                         } else {
3769                                 n = mono_class_value_size (klass, NULL);
3770                                 if ((cfg->opt & MONO_OPT_INTRINS) && n <= sizeof (gpointer) * 5) {
3771                                         MonoInst *copy;
3772                                         MONO_INST_NEW (cfg, copy, OP_MEMCPY);
3773                                         copy->inst_left = sp [0];
3774                                         copy->inst_right = sp [1];
3775                                         copy->cil_code = ip;
3776                                         copy->unused = n;
3777                                         MONO_ADD_INS (bblock, copy);
3778                                 } else {
3779                                         MonoInst *iargs [3];
3780                                         iargs [0] = sp [0];
3781                                         iargs [1] = sp [1];
3782                                         NEW_ICONST (cfg, iargs [2], n);
3783                                         iargs [2]->cil_code = ip;
3784
3785                                         mono_emit_jit_icall (cfg, bblock, helper_memcpy, iargs, ip);
3786                                 }
3787                         }
3788                         ins_flag = 0;
3789                         ip += 5;
3790                         break;
3791                 case CEE_LDOBJ: {
3792                         MonoInst *iargs [3];
3793                         CHECK_OPSIZE (5);
3794                         CHECK_STACK (1);
3795                         --sp;
3796                         token = read32 (ip + 1);
3797                         if (method->wrapper_type != MONO_WRAPPER_NONE)
3798                                 klass = mono_method_get_wrapper_data (method, token);
3799                         else
3800                                 klass = mono_class_get_full (image, token, generic_context);
3801
3802                         mono_class_init (klass);
3803                         if (MONO_TYPE_IS_REFERENCE (&klass->byval_arg)) {
3804                                 MONO_INST_NEW (cfg, ins, CEE_LDIND_REF);
3805                                 ins->cil_code = ip;
3806                                 ins->inst_i0 = sp [0];
3807                                 ins->type = ldind_type [CEE_LDIND_REF];
3808                                 ins->flags |= ins_flag;
3809                                 ins_flag = 0;
3810                                 *sp++ = ins;
3811                                 ip += 5;
3812                                 break;
3813                         }
3814                         n = mono_class_value_size (klass, NULL);
3815                         ins = mono_compile_create_var (cfg, &klass->byval_arg, OP_LOCAL);
3816                         NEW_TEMPLOADA (cfg, iargs [0], ins->inst_c0);
3817                         if ((cfg->opt & MONO_OPT_INTRINS) && n <= sizeof (gpointer) * 5) {
3818                                 MonoInst *copy;
3819                                 MONO_INST_NEW (cfg, copy, OP_MEMCPY);
3820                                 copy->inst_left = iargs [0];
3821                                 copy->inst_right = *sp;
3822                                 copy->cil_code = ip;
3823                                 copy->unused = n;
3824                                 MONO_ADD_INS (bblock, copy);
3825                         } else {
3826                                 iargs [1] = *sp;
3827                                 NEW_ICONST (cfg, iargs [2], n);
3828                                 iargs [2]->cil_code = ip;
3829
3830                                 mono_emit_jit_icall (cfg, bblock, helper_memcpy, iargs, ip);
3831                         }
3832                         NEW_TEMPLOAD (cfg, *sp, ins->inst_c0);
3833                         ++sp;
3834                         ip += 5;
3835                         ins_flag = 0;
3836                         inline_costs += 1;
3837                         break;
3838                 }
3839                 case CEE_LDSTR:
3840                         CHECK_STACK_OVF (1);
3841                         CHECK_OPSIZE (5);
3842                         n = read32 (ip + 1);
3843
3844                         if (method->wrapper_type != MONO_WRAPPER_NONE) {
3845                                 int temp;
3846                                 MonoInst *iargs [1];
3847
3848                                 NEW_PCONST (cfg, iargs [0], mono_method_get_wrapper_data (method, n));                          
3849                                 temp = mono_emit_jit_icall (cfg, bblock, mono_string_new_wrapper, iargs, ip);
3850                                 NEW_TEMPLOAD (cfg, *sp, temp);
3851
3852                         } else {
3853
3854                                 if (cfg->opt & MONO_OPT_SHARED) {
3855                                         int temp;
3856                                         MonoInst *iargs [3];
3857
3858                                         if (mono_compile_aot) {
3859                                                 cfg->ldstr_list = g_list_prepend (cfg->ldstr_list, (gpointer)n);
3860                                         }
3861
3862                                         NEW_TEMPLOAD (cfg, iargs [0], mono_get_domainvar (cfg)->inst_c0);
3863                                         NEW_IMAGECONST (cfg, iargs [1], image);
3864                                         NEW_ICONST (cfg, iargs [2], mono_metadata_token_index (n));
3865                                         temp = mono_emit_jit_icall (cfg, bblock, mono_ldstr, iargs, ip);
3866                                         NEW_TEMPLOAD (cfg, *sp, temp);
3867                                         mono_ldstr (cfg->domain, image, mono_metadata_token_index (n));
3868                                 } else {
3869                                         if (mono_compile_aot)
3870                                                 NEW_LDSTRCONST (cfg, ins, image, n);
3871                                         else {
3872                                                 NEW_PCONST (cfg, ins, NULL);
3873                                                 ins->cil_code = ip;
3874                                                 ins->type = STACK_OBJ;
3875                                                 ins->inst_p0 = mono_ldstr (cfg->domain, image, mono_metadata_token_index (n));
3876                                         }
3877                                         *sp = ins;
3878                                 }
3879                         }
3880
3881                         sp++;
3882                         ip += 5;
3883                         break;
3884                 case CEE_NEWOBJ: {
3885                         MonoInst *iargs [2];
3886                         MonoMethodSignature *fsig;
3887                         int temp;
3888
3889                         CHECK_OPSIZE (5);
3890                         token = read32 (ip + 1);
3891                         if (method->wrapper_type != MONO_WRAPPER_NONE) {
3892                                 cmethod = mono_method_get_wrapper_data (method, token);
3893                         } else
3894                                 cmethod = mono_get_method_full (image, token, NULL, generic_context);
3895                         fsig = mono_method_get_signature (cmethod, image, token);
3896
3897                         mono_class_init (cmethod->klass);
3898
3899                         n = fsig->param_count;
3900                         CHECK_STACK (n);
3901
3902                         /* move the args to allow room for 'this' in the first position */
3903                         while (n--) {
3904                                 --sp;
3905                                 sp [1] = sp [0];
3906                         }
3907
3908                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3909                         
3910
3911                         if (cmethod->klass->parent == mono_defaults.array_class) {
3912                                 NEW_METHODCONST (cfg, *sp, cmethod);
3913                                 temp = mono_emit_native_call (cfg, bblock, mono_array_new_va, fsig, sp, ip, FALSE);
3914
3915                         } else if (cmethod->string_ctor) {
3916                                 /* we simply pass a null pointer */
3917                                 NEW_PCONST (cfg, *sp, NULL); 
3918                                 /* now call the string ctor */
3919                                 temp = mono_emit_method_call_spilled (cfg, bblock, cmethod, fsig, sp, ip, NULL);
3920                         } else {
3921                                 if (cmethod->klass->valuetype) {
3922                                         iargs [0] = mono_compile_create_var (cfg, &cmethod->klass->byval_arg, OP_LOCAL);
3923                                         temp = iargs [0]->inst_c0;
3924                                         NEW_TEMPLOADA (cfg, *sp, temp);
3925                                 } else {
3926                                         if (cfg->opt & MONO_OPT_SHARED) {
3927                                                 NEW_DOMAINCONST (cfg, iargs [0]);
3928                                                 NEW_CLASSCONST (cfg, iargs [1], cmethod->klass);
3929
3930                                                 temp = mono_emit_jit_icall (cfg, bblock, mono_object_new, iargs, ip);
3931                                         } else {
3932                                                 MonoVTable *vtable = mono_class_vtable (cfg->domain, cmethod->klass);
3933                                                 NEW_VTABLECONST (cfg, iargs [0], vtable);
3934                                                 if (cmethod->klass->has_finalize || cmethod->klass->marshalbyref || (cfg->prof_options & MONO_PROFILE_ALLOCATIONS))
3935                                                         temp = mono_emit_jit_icall (cfg, bblock, mono_object_new_specific, iargs, ip);
3936                                                 else
3937                                                         temp = mono_emit_jit_icall (cfg, bblock, mono_object_new_fast, iargs, ip);
3938                                         }
3939                                         NEW_TEMPLOAD (cfg, *sp, temp);
3940                                 }
3941
3942                                 if ((cfg->opt & MONO_OPT_INLINE) && cmethod &&
3943                                     mono_method_check_inlining (cfg, cmethod) &&
3944                                     !mono_class_is_subclass_of (cmethod->klass, mono_defaults.exception_class, FALSE) &&
3945                                     !g_list_find (dont_inline, cmethod)) {
3946                                         int costs;
3947                                         MonoBasicBlock *ebblock;
3948                                         if ((costs = inline_method (cfg, cmethod, fsig, bblock, sp, ip, real_offset, dont_inline, &ebblock, FALSE))) {
3949
3950                                                 ip += 5;
3951                                                 real_offset += 5;
3952                                                 
3953                                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
3954                                                 ebblock->next_bb = bblock;
3955                                                 link_bblock (cfg, ebblock, bblock);
3956
3957                                                 NEW_TEMPLOAD (cfg, *sp, temp);
3958                                                 sp++;
3959
3960                                                 /* indicates start of a new block, and triggers a load 
3961                                                    of all stack arguments at bb boundarie */
3962                                                 bblock = ebblock;
3963
3964                                                 inline_costs += costs;
3965                                                 break;
3966                                                 
3967                                         } else {
3968                                                 mono_emit_method_call_spilled (cfg, bblock, cmethod, fsig, sp, ip, sp[0]);
3969                                         }
3970                                 } else {
3971                                         /* now call the actual ctor */
3972                                         mono_emit_method_call_spilled (cfg, bblock, cmethod, fsig, sp, ip, sp[0]);
3973                                 }
3974                         }
3975
3976                         NEW_TEMPLOAD (cfg, *sp, temp);
3977                         sp++;
3978                         
3979                         ip += 5;
3980                         inline_costs += 5;
3981                         break;
3982                 }
3983                 case CEE_ISINST:
3984                         CHECK_STACK (1);
3985                         --sp;
3986                         CHECK_OPSIZE (5);
3987                         klass = mono_class_get_full (image, read32 (ip + 1), generic_context);
3988                         mono_class_init (klass);
3989                 
3990                         if (klass->marshalbyref || klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
3991                         
3992                                 MonoMethod *mono_isinst;
3993                                 MonoInst *iargs [1];
3994                                 MonoBasicBlock *ebblock;
3995                                 int costs;
3996                                 int temp;
3997                                 
3998                                 mono_isinst = mono_marshal_get_isinst (klass); 
3999                                 iargs [0] = sp [0];
4000                                 
4001                                 costs = inline_method (cfg, mono_isinst, mono_isinst->signature, bblock, 
4002                                                            iargs, ip, real_offset, dont_inline, &ebblock, TRUE);
4003                         
4004                                 g_assert (costs > 0);
4005                                 
4006                                 ip += 5;
4007                                 real_offset += 5;
4008                         
4009                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
4010                                 ebblock->next_bb = bblock;
4011                                 link_bblock (cfg, ebblock, bblock);
4012
4013                                 temp = iargs [0]->inst_i0->inst_c0;
4014                                 NEW_TEMPLOAD (cfg, *sp, temp);
4015                                 
4016                                 sp++;
4017                                 bblock = ebblock;
4018                                 inline_costs += costs;
4019
4020                         }
4021                         else {
4022                                 MONO_INST_NEW (cfg, ins, *ip);
4023                                 ins->type = STACK_OBJ;
4024                                 ins->inst_left = *sp;
4025                                 ins->inst_newa_class = klass;
4026                                 ins->cil_code = ip;
4027                                 *sp++ = emit_tree (cfg, bblock, ins);
4028                                 ip += 5;
4029                         }
4030                         break;
4031                 case CEE_UNBOX_ANY: {
4032                         MonoInst *add, *vtoffset;
4033                         MonoInst *iargs [3];
4034
4035                         CHECK_STACK (1);
4036                         --sp;
4037                         CHECK_OPSIZE (5);
4038                         token = read32 (ip + 1);
4039                         if (method->wrapper_type != MONO_WRAPPER_NONE)
4040                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
4041                         else 
4042                                 klass = mono_class_get_full (image, token, generic_context);
4043                         mono_class_init (klass);
4044
4045                         if (MONO_TYPE_IS_REFERENCE (&klass->byval_arg)) {
4046                                 /* CASTCLASS */
4047                                 if (klass->marshalbyref || klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
4048                                         MonoMethod *mono_castclass;
4049                                         MonoInst *iargs [1];
4050                                         MonoBasicBlock *ebblock;
4051                                         int costs;
4052                                         int temp;
4053                                         
4054                                         mono_castclass = mono_marshal_get_castclass (klass); 
4055                                         iargs [0] = sp [0];
4056                                         
4057                                         costs = inline_method (cfg, mono_castclass, mono_castclass->signature, bblock, 
4058                                                                    iargs, ip, real_offset, dont_inline, &ebblock, TRUE);
4059                                 
4060                                         g_assert (costs > 0);
4061                                         
4062                                         ip += 5;
4063                                         real_offset += 5;
4064                                 
4065                                         GET_BBLOCK (cfg, bbhash, bblock, ip);
4066                                         ebblock->next_bb = bblock;
4067                                         link_bblock (cfg, ebblock, bblock);
4068         
4069                                         temp = iargs [0]->inst_i0->inst_c0;
4070                                         NEW_TEMPLOAD (cfg, *sp, temp);
4071                                         
4072                                         sp++;
4073                                         bblock = ebblock;
4074                                         inline_costs += costs;                          
4075                                 }
4076                                 else {
4077                                         MONO_INST_NEW (cfg, ins, CEE_CASTCLASS);
4078                                         ins->type = STACK_OBJ;
4079                                         ins->inst_left = *sp;
4080                                         ins->klass = klass;
4081                                         ins->inst_newa_class = klass;
4082                                         ins->cil_code = ip;
4083                                         *sp++ = ins;
4084                                 }
4085                                 ip += 5;
4086                                 break;
4087                         }
4088
4089                         MONO_INST_NEW (cfg, ins, OP_UNBOXCAST);
4090                         ins->type = STACK_OBJ;
4091                         ins->inst_left = *sp;
4092                         ins->klass = klass;
4093                         ins->inst_newa_class = klass;
4094                         ins->cil_code = ip;
4095
4096                         MONO_INST_NEW (cfg, add, CEE_ADD);
4097                         NEW_ICONST (cfg, vtoffset, sizeof (MonoObject));
4098                         add->inst_left = ins;
4099                         add->inst_right = vtoffset;
4100                         add->type = STACK_MP;
4101                         *sp = add;
4102                         ip += 5;
4103                         /* LDOBJ impl */
4104                         n = mono_class_value_size (klass, NULL);
4105                         ins = mono_compile_create_var (cfg, &klass->byval_arg, OP_LOCAL);
4106                         NEW_TEMPLOADA (cfg, iargs [0], ins->inst_c0);
4107                         if ((cfg->opt & MONO_OPT_INTRINS) && n <= sizeof (gpointer) * 5) {
4108                                 MonoInst *copy;
4109                                 MONO_INST_NEW (cfg, copy, OP_MEMCPY);
4110                                 copy->inst_left = iargs [0];
4111                                 copy->inst_right = *sp;
4112                                 copy->cil_code = ip;
4113                                 copy->unused = n;
4114                                 MONO_ADD_INS (bblock, copy);
4115                         } else {
4116                                 iargs [1] = *sp;
4117                                 NEW_ICONST (cfg, iargs [2], n);
4118                                 iargs [2]->cil_code = ip;
4119
4120                                 mono_emit_jit_icall (cfg, bblock, helper_memcpy, iargs, ip);
4121                         }
4122                         NEW_TEMPLOAD (cfg, *sp, ins->inst_c0);
4123                         ++sp;
4124                         inline_costs += 2;
4125                         break;
4126                 }
4127                 case CEE_UNBOX: {
4128                         MonoInst *add, *vtoffset;
4129
4130                         CHECK_STACK (1);
4131                         --sp;
4132                         CHECK_OPSIZE (5);
4133                         token = read32 (ip + 1);
4134                         if (method->wrapper_type != MONO_WRAPPER_NONE)
4135                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
4136                         else 
4137                                 klass = mono_class_get_full (image, token, generic_context);
4138                         mono_class_init (klass);
4139
4140                         MONO_INST_NEW (cfg, ins, OP_UNBOXCAST);
4141                         ins->type = STACK_OBJ;
4142                         ins->inst_left = *sp;
4143                         ins->klass = klass;
4144                         ins->inst_newa_class = klass;
4145                         ins->cil_code = ip;
4146
4147                         MONO_INST_NEW (cfg, add, CEE_ADD);
4148                         NEW_ICONST (cfg, vtoffset, sizeof (MonoObject));
4149                         add->inst_left = ins;
4150                         add->inst_right = vtoffset;
4151                         add->type = STACK_MP;
4152                         *sp++ = add;
4153                         ip += 5;
4154                         inline_costs += 2;
4155                         break;
4156                 }
4157                 case CEE_CASTCLASS:
4158                         CHECK_STACK (1);
4159                         --sp;
4160                         CHECK_OPSIZE (5);
4161                         klass = mono_class_get_full (image, read32 (ip + 1), generic_context);
4162                         mono_class_init (klass);
4163                 
4164                         if (klass->marshalbyref || klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
4165                                 
4166                                 MonoMethod *mono_castclass;
4167                                 MonoInst *iargs [1];
4168                                 MonoBasicBlock *ebblock;
4169                                 int costs;
4170                                 int temp;
4171                                 
4172                                 mono_castclass = mono_marshal_get_castclass (klass); 
4173                                 iargs [0] = sp [0];
4174                                 
4175                                 costs = inline_method (cfg, mono_castclass, mono_castclass->signature, bblock, 
4176                                                            iargs, ip, real_offset, dont_inline, &ebblock, TRUE);
4177                         
4178                                 g_assert (costs > 0);
4179                                 
4180                                 ip += 5;
4181                                 real_offset += 5;
4182                         
4183                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
4184                                 ebblock->next_bb = bblock;
4185                                 link_bblock (cfg, ebblock, bblock);
4186
4187                                 temp = iargs [0]->inst_i0->inst_c0;
4188                                 NEW_TEMPLOAD (cfg, *sp, temp);
4189                                 
4190                                 sp++;
4191                                 bblock = ebblock;
4192                                 inline_costs += costs;
4193                         }
4194                         else {
4195                                 MONO_INST_NEW (cfg, ins, *ip);
4196                                 ins->type = STACK_OBJ;
4197                                 ins->inst_left = *sp;
4198                                 ins->klass = klass;
4199                                 ins->inst_newa_class = klass;
4200                                 ins->cil_code = ip;
4201                                 *sp++ = emit_tree (cfg, bblock, ins);
4202                                 ip += 5;
4203                         }
4204                         break;
4205                 case CEE_THROW:
4206                         CHECK_STACK (1);
4207                         MONO_INST_NEW (cfg, ins, *ip);
4208                         --sp;
4209                         ins->inst_left = *sp;
4210                         ins->cil_code = ip++;
4211                         MONO_ADD_INS (bblock, ins);
4212                         sp = stack_start;
4213                         start_new_bblock = 1;
4214                         break;
4215                 case CEE_LDFLD:
4216                 case CEE_LDFLDA:
4217                 case CEE_STFLD: {
4218                         MonoInst *offset_ins;
4219                         MonoClassField *field;
4220                         MonoBasicBlock *ebblock;
4221                         int costs;
4222                         guint foffset;
4223
4224                         if (*ip == CEE_STFLD) {
4225                                 CHECK_STACK (2);
4226                                 sp -= 2;
4227                         } else {
4228                                 CHECK_STACK (1);
4229                                 --sp;
4230                         }
4231                         // FIXME: enable this test later.
4232                         //if (sp [0]->type != STACK_OBJ && sp [0]->type != STACK_MP)
4233                         //      goto unverified;
4234                         CHECK_OPSIZE (5);
4235                         token = read32 (ip + 1);
4236                         field = mono_field_from_token (image, token, &klass, generic_context);
4237                         mono_class_init (klass);
4238
4239                         foffset = klass->valuetype? field->offset - sizeof (MonoObject): field->offset;
4240                         /* FIXME: mark instructions for use in SSA */
4241                         if (*ip == CEE_STFLD) {
4242                                 if ((klass->marshalbyref && !MONO_CHECK_THIS (sp [0])) || klass->contextbound) {
4243                                         MonoMethod *stfld_wrapper = mono_marshal_get_stfld_wrapper (field->type); 
4244                                         MonoInst *iargs [5];
4245
4246                                         iargs [0] = sp [0];
4247                                         NEW_CLASSCONST (cfg, iargs [1], klass);
4248                                         NEW_FIELDCONST (cfg, iargs [2], field);
4249                                         NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : 
4250                                                     field->offset);
4251                                         iargs [4] = sp [1];
4252
4253                                         if (cfg->opt & MONO_OPT_INLINE) {
4254                                                 costs = inline_method (cfg, stfld_wrapper, stfld_wrapper->signature, bblock, 
4255                                                                        iargs, ip, real_offset, dont_inline, &ebblock, TRUE);
4256                                                 g_assert (costs > 0);
4257                                                       
4258                                                 ip += 5;
4259                                                 real_offset += 5;
4260
4261                                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
4262                                                 ebblock->next_bb = bblock;
4263                                                 link_bblock (cfg, ebblock, bblock);
4264
4265                                                 /* indicates start of a new block, and triggers a load 
4266                                                    of all stack arguments at bb boundarie */
4267                                                 bblock = ebblock;
4268
4269                                                 inline_costs += costs;
4270                                                 break;
4271                                         } else {
4272                                                 mono_emit_method_call_spilled (cfg, bblock, stfld_wrapper, stfld_wrapper->signature, iargs, ip, NULL);
4273                                         }
4274                                 } else {
4275                                         MonoInst *store;
4276                                         NEW_ICONST (cfg, offset_ins, foffset);
4277                                         MONO_INST_NEW (cfg, ins, CEE_ADD);
4278                                         ins->cil_code = ip;
4279                                         ins->inst_left = *sp;
4280                                         ins->inst_right = offset_ins;
4281                                         ins->type = STACK_MP;
4282
4283                                         MONO_INST_NEW (cfg, store, mono_type_to_stind (field->type));
4284                                         store->cil_code = ip;
4285                                         store->inst_left = ins;
4286                                         store->inst_right = sp [1];
4287                                         handle_loaded_temps (cfg, bblock, stack_start, sp);
4288                                         store->flags |= ins_flag;
4289                                         ins_flag = 0;
4290                                         if (store->opcode == CEE_STOBJ) {
4291                                                 handle_stobj (cfg, bblock, ins, sp [1], ip, 
4292                                                               mono_class_from_mono_type (field->type), FALSE, FALSE);
4293                                         } else
4294                                                 MONO_ADD_INS (bblock, store);
4295                                 }
4296                         } else {
4297                                 if ((klass->marshalbyref && !MONO_CHECK_THIS (sp [0])) || klass->contextbound) {
4298                                         /* fixme: we need to inline that call somehow */
4299                                         MonoMethod *ldfld_wrapper = mono_marshal_get_ldfld_wrapper (field->type); 
4300                                         MonoInst *iargs [4];
4301                                         int temp;
4302                                         
4303                                         iargs [0] = sp [0];
4304                                         NEW_CLASSCONST (cfg, iargs [1], klass);
4305                                         NEW_FIELDCONST (cfg, iargs [2], field);
4306                                         NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : field->offset);
4307                                         if (cfg->opt & MONO_OPT_INLINE) {
4308                                                 costs = inline_method (cfg, ldfld_wrapper, ldfld_wrapper->signature, bblock, 
4309                                                                        iargs, ip, real_offset, dont_inline, &ebblock, TRUE);
4310                                                 g_assert (costs > 0);
4311                                                       
4312                                                 ip += 5;
4313                                                 real_offset += 5;
4314
4315                                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
4316                                                 ebblock->next_bb = bblock;
4317                                                 link_bblock (cfg, ebblock, bblock);
4318
4319                                                 temp = iargs [0]->inst_i0->inst_c0;
4320
4321                                                 if (*ip == CEE_LDFLDA) {
4322                                                         /* not sure howto handle this */
4323                                                         NEW_TEMPLOADA (cfg, *sp, temp);
4324                                                 } else {
4325                                                         NEW_TEMPLOAD (cfg, *sp, temp);
4326                                                 }
4327                                                 sp++;
4328
4329                                                 /* indicates start of a new block, and triggers a load of
4330                                                    all stack arguments at bb boundarie */
4331                                                 bblock = ebblock;
4332                                                 
4333                                                 inline_costs += costs;
4334                                                 break;
4335                                         } else {
4336                                                 temp = mono_emit_method_call_spilled (cfg, bblock, ldfld_wrapper, ldfld_wrapper->signature, iargs, ip, NULL);
4337                                                 if (*ip == CEE_LDFLDA) {
4338                                                         /* not sure howto handle this */
4339                                                         NEW_TEMPLOADA (cfg, *sp, temp);
4340                                                 } else {
4341                                                         NEW_TEMPLOAD (cfg, *sp, temp);
4342                                                 }
4343                                                 sp++;
4344                                         }
4345                                 } else {
4346                                         NEW_ICONST (cfg, offset_ins, foffset);
4347                                         MONO_INST_NEW (cfg, ins, CEE_ADD);
4348                                         ins->cil_code = ip;
4349                                         ins->inst_left = *sp;
4350                                         ins->inst_right = offset_ins;
4351                                         ins->type = STACK_MP;
4352
4353                                         if (*ip == CEE_LDFLDA) {
4354                                                 *sp++ = ins;
4355                                         } else {
4356                                                 MonoInst *load;
4357                                                 MONO_INST_NEW (cfg, load, mono_type_to_ldind (field->type));
4358                                                 type_to_eval_stack_type (field->type, load);
4359                                                 load->cil_code = ip;
4360                                                 load->inst_left = ins;
4361                                                 load->flags |= ins_flag;
4362                                                 ins_flag = 0;
4363                                                 *sp++ = load;
4364                                         }
4365                                 }
4366                         }
4367                         ip += 5;
4368                         break;
4369                 }
4370                 case CEE_LDSFLD:
4371                 case CEE_LDSFLDA:
4372                 case CEE_STSFLD: {
4373                         MonoClassField *field;
4374                         gpointer addr = NULL;
4375
4376                         CHECK_OPSIZE (5);
4377                         token = read32 (ip + 1);
4378
4379                         field = mono_field_from_token (image, token, &klass, generic_context);
4380                         mono_class_init (klass);
4381
4382                         if ((*ip) == CEE_STSFLD)
4383                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
4384
4385                         if (cfg->domain->special_static_fields)
4386                                 addr = g_hash_table_lookup (cfg->domain->special_static_fields, field);
4387
4388                         if ((cfg->opt & MONO_OPT_SHARED) || (mono_compile_aot && addr)) {
4389                                 int temp;
4390                                 MonoInst *iargs [2];
4391                                 g_assert (field->parent);
4392                                 NEW_TEMPLOAD (cfg, iargs [0], mono_get_domainvar (cfg)->inst_c0);
4393                                 NEW_FIELDCONST (cfg, iargs [1], field);
4394                                 temp = mono_emit_jit_icall (cfg, bblock, mono_class_static_field_address, iargs, ip);
4395                                 NEW_TEMPLOAD (cfg, ins, temp);
4396                         } else {
4397                                 MonoVTable *vtable;
4398                                 vtable = mono_class_vtable (cfg->domain, klass);
4399                                 if (!addr) {
4400                                         if ((!vtable->initialized || mono_compile_aot) && !(klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT) && mono_class_needs_cctor_run (klass, method)) {
4401                                                 guint8 *tramp = mono_create_class_init_trampoline (vtable);
4402                                                 mono_emit_native_call (cfg, bblock, tramp, 
4403                                                                                            helper_sig_class_init_trampoline,
4404                                                                                            NULL, ip, FALSE);
4405                                                 if (cfg->verbose_level > 2)
4406                                                         g_print ("class %s.%s needs init call for %s\n", klass->name_space, klass->name, field->name);
4407                                         } else {
4408                                                 if (cfg->run_cctors)
4409                                                         mono_runtime_class_init (vtable);
4410                                         }
4411                                         addr = (char*)vtable->data + field->offset;
4412
4413                                         if (mono_compile_aot)
4414                                                 NEW_SFLDACONST (cfg, ins, field);
4415                                         else
4416                                                 NEW_PCONST (cfg, ins, addr);
4417                                         ins->cil_code = ip;
4418                                 } else {
4419                                         /* 
4420                                          * insert call to mono_threads_get_static_data (GPOINTER_TO_UINT (addr)) 
4421                                          * This could be later optimized to do just a couple of
4422                                          * memory dereferences with constant offsets.
4423                                          */
4424                                         int temp;
4425                                         MonoInst *iargs [1];
4426                                         NEW_ICONST (cfg, iargs [0], GPOINTER_TO_UINT (addr));
4427                                         temp = mono_emit_jit_icall (cfg, bblock, mono_get_special_static_data, iargs, ip);
4428                                         NEW_TEMPLOAD (cfg, ins, temp);
4429                                 }
4430                         }
4431
4432                         /* FIXME: mark instructions for use in SSA */
4433                         if (*ip == CEE_LDSFLDA) {
4434                                 *sp++ = ins;
4435                         } else if (*ip == CEE_STSFLD) {
4436                                 MonoInst *store;
4437                                 CHECK_STACK (1);
4438                                 sp--;
4439                                 MONO_INST_NEW (cfg, store, mono_type_to_stind (field->type));
4440                                 store->cil_code = ip;
4441                                 store->inst_left = ins;
4442                                 store->inst_right = sp [0];
4443                                 store->flags |= ins_flag;
4444                                 ins_flag = 0;
4445
4446                                 if (store->opcode == CEE_STOBJ) {
4447                                         handle_stobj (cfg, bblock, ins, sp [0], ip, mono_class_from_mono_type (field->type), FALSE, FALSE);
4448                                 } else
4449                                         MONO_ADD_INS (bblock, store);
4450                         } else {
4451                                 gboolean is_const = FALSE;
4452                                 MonoVTable *vtable = mono_class_vtable (cfg->domain, klass);
4453                                 if (!((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot) && 
4454                                     vtable->initialized && (field->type->attrs & FIELD_ATTRIBUTE_INIT_ONLY)) {
4455                                         gpointer addr = (char*)vtable->data + field->offset;
4456                                         /* g_print ("RO-FIELD %s.%s:%s\n", klass->name_space, klass->name, field->name);*/
4457                                         is_const = TRUE;
4458                                         switch (field->type->type) {
4459                                         case MONO_TYPE_BOOLEAN:
4460                                         case MONO_TYPE_U1:
4461                                                 NEW_ICONST (cfg, *sp, *((guint8 *)addr));
4462                                                 sp++;
4463                                                 break;
4464                                         case MONO_TYPE_I1:
4465                                                 NEW_ICONST (cfg, *sp, *((gint8 *)addr));
4466                                                 sp++;
4467                                                 break;                                          
4468                                         case MONO_TYPE_CHAR:
4469                                         case MONO_TYPE_U2:
4470                                                 NEW_ICONST (cfg, *sp, *((guint16 *)addr));
4471                                                 sp++;
4472                                                 break;
4473                                         case MONO_TYPE_I2:
4474                                                 NEW_ICONST (cfg, *sp, *((gint16 *)addr));
4475                                                 sp++;
4476                                                 break;
4477                                                 break;
4478                                         case MONO_TYPE_I4:
4479                                                 NEW_ICONST (cfg, *sp, *((gint32 *)addr));
4480                                                 sp++;
4481                                                 break;                                          
4482                                         case MONO_TYPE_U4:
4483                                                 NEW_ICONST (cfg, *sp, *((guint32 *)addr));
4484                                                 sp++;
4485                                                 break;
4486                                         case MONO_TYPE_I:
4487                                         case MONO_TYPE_U:
4488                                         case MONO_TYPE_STRING:
4489                                         case MONO_TYPE_OBJECT:
4490                                         case MONO_TYPE_CLASS:
4491                                         case MONO_TYPE_SZARRAY:
4492                                         case MONO_TYPE_PTR:
4493                                         case MONO_TYPE_FNPTR:
4494                                         case MONO_TYPE_ARRAY:
4495                                                 NEW_PCONST (cfg, *sp, *((gpointer *)addr));
4496                                                 type_to_eval_stack_type (field->type, *sp);
4497                                                 sp++;
4498                                                 break;
4499                                         case MONO_TYPE_I8:
4500                                         case MONO_TYPE_U8:
4501                                                 MONO_INST_NEW (cfg, *sp, OP_I8CONST);
4502                                                 sp [0]->type = STACK_I8;
4503                                                 sp [0]->inst_l = *((gint64 *)addr);
4504                                                 sp++;
4505                                                 break;
4506                                         case MONO_TYPE_R4:
4507                                         case MONO_TYPE_R8:
4508                                         case MONO_TYPE_VALUETYPE:
4509                                         default:
4510                                                 is_const = FALSE;
4511                                                 break;
4512                                         }
4513                                 }
4514
4515                                 if (!is_const) {
4516                                         MonoInst *load;
4517                                         CHECK_STACK_OVF (1);
4518                                         MONO_INST_NEW (cfg, load, mono_type_to_ldind (field->type));
4519                                         type_to_eval_stack_type (field->type, load);
4520                                         load->cil_code = ip;
4521                                         load->inst_left = ins;
4522                                         *sp++ = load;
4523                                         load->flags |= ins_flag;
4524                                         ins_flag = 0;
4525                                         /* fixme: dont see the problem why this does not work */
4526                                         //cfg->disable_aot = TRUE;
4527                                 }
4528                         }
4529                         ip += 5;
4530                         break;
4531                 }
4532                 case CEE_STOBJ:
4533                         CHECK_STACK (2);
4534                         sp -= 2;
4535                         CHECK_OPSIZE (5);
4536                         token = read32 (ip + 1);
4537                         if (method->wrapper_type != MONO_WRAPPER_NONE)
4538                                 klass = mono_method_get_wrapper_data (method, token);
4539                         else
4540                                 klass = mono_class_get_full (image, token, generic_context);
4541                         mono_class_init (klass);
4542                         n = mono_type_to_stind (&klass->byval_arg);
4543                         if (n == CEE_STOBJ) {
4544                                 handle_stobj (cfg, bblock, sp [0], sp [1], ip, klass, FALSE, FALSE);
4545                         } else {
4546                                 /* FIXME: should check item at sp [1] is compatible with the type of the store. */
4547                                 MonoInst *store;
4548                                 MONO_INST_NEW (cfg, store, n);
4549                                 store->cil_code = ip;
4550                                 store->inst_left = sp [0];
4551                                 store->inst_right = sp [1];
4552                                 store->flags |= ins_flag;
4553                                 MONO_ADD_INS (bblock, store);
4554                         }
4555                         ins_flag = 0;
4556                         ip += 5;
4557                         inline_costs += 1;
4558                         break;
4559                 case CEE_BOX: {
4560                         MonoInst *val;
4561                         CHECK_STACK (1);
4562                         --sp;
4563                         val = *sp;
4564                         CHECK_OPSIZE (5);
4565                         token = read32 (ip + 1);
4566                         if (method->wrapper_type != MONO_WRAPPER_NONE)
4567                                 klass = mono_method_get_wrapper_data (method, token);
4568                         else
4569                                 klass = mono_class_get_full (image, token, generic_context);
4570                         mono_class_init (klass);
4571
4572                         if (MONO_TYPE_IS_REFERENCE (&klass->byval_arg)) {
4573                                 *sp++ = val;
4574                                 ip += 5;
4575                                 break;
4576                         }
4577                         *sp++ = handle_box (cfg, bblock, val, ip, klass);
4578                         ip += 5;
4579                         inline_costs += 1;
4580                         break;
4581                 }
4582                 case CEE_NEWARR:
4583                         CHECK_STACK (1);
4584                         MONO_INST_NEW (cfg, ins, *ip);
4585                         ins->cil_code = ip;
4586                         --sp;
4587
4588                         CHECK_OPSIZE (5);
4589                         token = read32 (ip + 1);
4590
4591                         /* allocate the domainvar - becaus this is used in decompose_foreach */
4592                         if (cfg->opt & MONO_OPT_SHARED)
4593                                 mono_get_domainvar (cfg);
4594                         
4595                         if (method->wrapper_type != MONO_WRAPPER_NONE)
4596                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
4597                         else
4598                                 klass = mono_class_get_full (image, token, generic_context);
4599
4600                         mono_class_init (klass);
4601                         ins->inst_newa_class = klass;
4602                         ins->inst_newa_len = *sp;
4603                         ins->type = STACK_OBJ;
4604                         ip += 5;
4605                         *sp++ = ins;
4606                         /* 
4607                          * we store the object so calls to create the array are not interleaved
4608                          * with the arguments of other calls.
4609                          */
4610                         if (1) {
4611                                 MonoInst *store, *temp, *load;
4612                                 --sp;
4613                                 temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
4614                                 NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
4615                                 store->cil_code = ins->cil_code;
4616                                 MONO_ADD_INS (bblock, store);
4617                                 NEW_TEMPLOAD (cfg, load, temp->inst_c0);
4618                                 load->cil_code = ins->cil_code;
4619                                 *sp++ = load;
4620                         }
4621                         inline_costs += 1;
4622                         break;
4623                 case CEE_LDLEN:
4624                         CHECK_STACK (1);
4625                         MONO_INST_NEW (cfg, ins, *ip);
4626                         ins->cil_code = ip++;
4627                         --sp;
4628                         ins->inst_left = *sp;
4629                         ins->type = STACK_PTR;
4630                         *sp++ = ins;
4631                         break;
4632                 case CEE_LDELEMA:
4633                         CHECK_STACK (2);
4634                         sp -= 2;
4635                         CHECK_OPSIZE (5);
4636
4637                         if (method->wrapper_type != MONO_WRAPPER_NONE)
4638                                 klass = (MonoClass*)mono_method_get_wrapper_data (method, read32 (ip + 1));
4639                         else
4640                                 klass = mono_class_get_full (image, read32 (ip + 1), generic_context);
4641                         mono_class_init (klass);
4642                         NEW_LDELEMA (cfg, ins, sp, klass);
4643                         ins->cil_code = ip;
4644                         *sp++ = ins;
4645                         ip += 5;
4646                         break;
4647                 case CEE_LDELEM: {
4648                         MonoInst *load;
4649                         CHECK_STACK (2);
4650                         sp -= 2;
4651                         CHECK_OPSIZE (5);
4652                         token = read32 (ip + 1);
4653                         klass = mono_class_get_full (image, token, generic_context);
4654                         mono_class_init (klass);
4655                         NEW_LDELEMA (cfg, load, sp, klass);
4656                         load->cil_code = ip;
4657                         MONO_INST_NEW (cfg, ins, mono_type_to_ldind (&klass->byval_arg));
4658                         ins->cil_code = ip;
4659                         ins->inst_left = load;
4660                         *sp++ = ins;
4661                         type_to_eval_stack_type (&klass->byval_arg, ins);
4662                         ip += 5;
4663                         break;
4664                 }
4665                 case CEE_LDELEM_I1:
4666                 case CEE_LDELEM_U1:
4667                 case CEE_LDELEM_I2:
4668                 case CEE_LDELEM_U2:
4669                 case CEE_LDELEM_I4:
4670                 case CEE_LDELEM_U4:
4671                 case CEE_LDELEM_I8:
4672                 case CEE_LDELEM_I:
4673                 case CEE_LDELEM_R4:
4674                 case CEE_LDELEM_R8:
4675                 case CEE_LDELEM_REF: {
4676                         MonoInst *load;
4677                         /*
4678                          * translate to:
4679                          * ldind.x (ldelema (array, index))
4680                          * ldelema does the bounds check
4681                          */
4682                         CHECK_STACK (2);
4683                         sp -= 2;
4684                         klass = array_access_to_klass (*ip);
4685                         NEW_LDELEMA (cfg, load, sp, klass);
4686                         load->cil_code = ip;
4687                         MONO_INST_NEW (cfg, ins, ldelem_to_ldind [*ip - CEE_LDELEM_I1]);
4688                         ins->cil_code = ip;
4689                         ins->inst_left = load;
4690                         *sp++ = ins;
4691                         ins->type = ldind_type [ins->opcode - CEE_LDIND_I1];
4692                         ++ip;
4693                         break;
4694                 }
4695                 case CEE_STELEM_I:
4696                 case CEE_STELEM_I1:
4697                 case CEE_STELEM_I2:
4698                 case CEE_STELEM_I4:
4699                 case CEE_STELEM_I8:
4700                 case CEE_STELEM_R4:
4701                 case CEE_STELEM_R8: {
4702                         MonoInst *load;
4703                         /*
4704                          * translate to:
4705                          * stind.x (ldelema (array, index), val)
4706                          * ldelema does the bounds check
4707                          */
4708                         CHECK_STACK (3);
4709                         sp -= 3;
4710                         klass = array_access_to_klass (*ip);
4711                         NEW_LDELEMA (cfg, load, sp, klass);
4712                         load->cil_code = ip;
4713                         MONO_INST_NEW (cfg, ins, stelem_to_stind [*ip - CEE_STELEM_I]);
4714                         ins->cil_code = ip;
4715                         ins->inst_left = load;
4716                         ins->inst_right = sp [2];
4717                         ++ip;
4718                         handle_loaded_temps (cfg, bblock, stack_start, sp);
4719                         MONO_ADD_INS (bblock, ins);
4720                         inline_costs += 1;
4721                         break;
4722                 }
4723                 case CEE_STELEM: {
4724                         MonoInst *load;
4725                         /*
4726                          * translate to:
4727                          * stind.x (ldelema (array, index), val)
4728                          * ldelema does the bounds check
4729                          */
4730                         CHECK_STACK (3);
4731                         sp -= 3;
4732                         CHECK_OPSIZE (5);
4733                         token = read32 (ip + 1);
4734                         klass = mono_class_get_full (image, token, generic_context);
4735                         mono_class_init (klass);
4736                         if (MONO_TYPE_IS_REFERENCE (&klass->byval_arg)) {
4737                                 MonoInst *iargs [3];
4738                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
4739
4740                                 iargs [2] = sp [2];
4741                                 iargs [1] = sp [1];
4742                                 iargs [0] = sp [0];
4743                         
4744                                 mono_emit_jit_icall (cfg, bblock, helper_stelem_ref, iargs, ip);
4745                         } else {
4746                                 NEW_LDELEMA (cfg, load, sp, klass);
4747                                 load->cil_code = ip;
4748
4749                                 n = mono_type_to_stind (&klass->byval_arg);
4750                                 if (n == CEE_STOBJ)
4751                                         handle_stobj (cfg, bblock, load, sp [2], ip, klass, FALSE, FALSE);
4752                                 else {
4753                                         MONO_INST_NEW (cfg, ins, n);
4754                                         ins->cil_code = ip;
4755                                         ins->inst_left = load;
4756                                         ins->inst_right = sp [2];
4757                                         handle_loaded_temps (cfg, bblock, stack_start, sp);
4758                                         MONO_ADD_INS (bblock, ins);
4759                                 }
4760                         }
4761                         ip += 5;
4762                         inline_costs += 1;
4763                         break;
4764                 }
4765                 case CEE_STELEM_REF: {
4766                         MonoInst *iargs [3];
4767
4768                         CHECK_STACK (3);
4769                         sp -= 3;
4770
4771                         handle_loaded_temps (cfg, bblock, stack_start, sp);
4772
4773                         iargs [2] = sp [2];
4774                         iargs [1] = sp [1];
4775                         iargs [0] = sp [0];
4776                         
4777                         mono_emit_jit_icall (cfg, bblock, helper_stelem_ref, iargs, ip);
4778
4779                         /*
4780                         MonoInst *group;
4781                         NEW_GROUP (cfg, group, sp [0], sp [1]);
4782                         MONO_INST_NEW (cfg, ins, CEE_STELEM_REF);
4783                         ins->cil_code = ip;
4784                         ins->inst_left = group;
4785                         ins->inst_right = sp [2];
4786                         MONO_ADD_INS (bblock, ins);
4787                         */
4788
4789                         ++ip;
4790                         inline_costs += 1;
4791                         break;
4792                 }
4793                 case CEE_CKFINITE: {
4794                         MonoInst *store, *temp;
4795                         CHECK_STACK (1);
4796
4797                         /* this instr. can throw exceptions as side effect,
4798                          * so we cant eliminate dead code which contains CKFINITE opdodes.
4799                          * Spilling to memory makes sure that we always perform
4800                          * this check */
4801
4802                         
4803                         MONO_INST_NEW (cfg, ins, CEE_CKFINITE);
4804                         ins->cil_code = ip;
4805                         ins->inst_left = sp [-1];
4806                         temp = mono_compile_create_var (cfg, &mono_defaults.double_class->byval_arg, OP_LOCAL);
4807
4808                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
4809                         store->cil_code = ip;
4810                         MONO_ADD_INS (bblock, store);
4811
4812                         NEW_TEMPLOAD (cfg, sp [-1], temp->inst_c0);
4813                        
4814                         ++ip;
4815                         break;
4816                 }
4817                 case CEE_REFANYVAL:
4818                         CHECK_STACK (1);
4819                         MONO_INST_NEW (cfg, ins, *ip);
4820                         --sp;
4821                         CHECK_OPSIZE (5);
4822                         klass = mono_class_get_full (image, read32 (ip + 1), generic_context);
4823                         mono_class_init (klass);
4824                         ins->type = STACK_MP;
4825                         ins->inst_left = *sp;
4826                         ins->klass = klass;
4827                         ins->inst_newa_class = klass;
4828                         ins->cil_code = ip;
4829                         ip += 5;
4830                         *sp++ = ins;
4831                         break;
4832                 case CEE_MKREFANY: {
4833                         MonoInst *loc, *klassconst;
4834
4835                         CHECK_STACK (1);
4836                         MONO_INST_NEW (cfg, ins, *ip);
4837                         --sp;
4838                         CHECK_OPSIZE (5);
4839                         klass = mono_class_get_full (image, read32 (ip + 1), generic_context);
4840                         mono_class_init (klass);
4841                         ins->cil_code = ip;
4842
4843                         loc = mono_compile_create_var (cfg, &mono_defaults.typed_reference_class->byval_arg, OP_LOCAL);
4844                         NEW_TEMPLOADA (cfg, ins->inst_right, loc->inst_c0);
4845
4846                         NEW_PCONST (cfg, klassconst, klass);
4847                         NEW_GROUP (cfg, ins->inst_left, *sp, klassconst);
4848                         
4849                         MONO_ADD_INS (bblock, ins);
4850
4851                         NEW_TEMPLOAD (cfg, *sp, loc->inst_c0);
4852                         ++sp;
4853                         ip += 5;
4854                         break;
4855                 }
4856                 case CEE_LDTOKEN: {
4857                         gpointer handle;
4858                         MonoClass *handle_class;
4859
4860                         CHECK_STACK_OVF (1);
4861
4862                         CHECK_OPSIZE (5);
4863                         n = read32 (ip + 1);
4864
4865                         handle = mono_ldtoken (image, n, &handle_class, generic_context);
4866                         mono_class_init (handle_class);
4867
4868                         if (cfg->opt & MONO_OPT_SHARED) {
4869                                 int temp;
4870                                 MonoInst *res, *store, *addr, *vtvar, *iargs [2];
4871
4872                                 vtvar = mono_compile_create_var (cfg, &handle_class->byval_arg, OP_LOCAL); 
4873
4874                                 NEW_IMAGECONST (cfg, iargs [0], image);
4875                                 NEW_ICONST (cfg, iargs [1], n);
4876                                 temp = mono_emit_jit_icall (cfg, bblock, mono_ldtoken_wrapper, iargs, ip);
4877                                 NEW_TEMPLOAD (cfg, res, temp);
4878                                 NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
4879                                 NEW_INDSTORE (cfg, store, addr, res, &mono_defaults.int_class->byval_arg);
4880                                 MONO_ADD_INS (bblock, store);
4881                                 NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
4882                         } else {
4883                                 if ((ip [5] == CEE_CALL) && (cmethod = mono_get_method_full (image, read32 (ip + 6), NULL, generic_context)) &&
4884                                                 (cmethod->klass == mono_defaults.monotype_class->parent) &&
4885                                                 (strcmp (cmethod->name, "GetTypeFromHandle") == 0) && 
4886                                         ((g_hash_table_lookup (bbhash, ip + 5) == NULL) ||
4887                                          (g_hash_table_lookup (bbhash, ip + 5) == bblock))) {
4888                                         MonoClass *tclass = mono_class_from_mono_type (handle);
4889                                         mono_class_init (tclass);
4890                                         if (mono_compile_aot)
4891                                                 NEW_TYPE_FROM_HANDLE_CONST (cfg, ins, image, n);
4892                                         else
4893                                                 NEW_PCONST (cfg, ins, mono_type_get_object (cfg->domain, handle));
4894                                         ins->type = STACK_OBJ;
4895                                         ins->klass = cmethod->klass;
4896                                         ip += 5;
4897                                 } else {
4898                                         MonoInst *store, *addr, *vtvar;
4899
4900                                         if (mono_compile_aot)
4901                                                 NEW_LDTOKENCONST (cfg, ins, image, n);
4902                                         else
4903                                                 NEW_PCONST (cfg, ins, handle);
4904                                         vtvar = mono_compile_create_var (cfg, &handle_class->byval_arg, OP_LOCAL);
4905                                         NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
4906                                         NEW_INDSTORE (cfg, store, addr, ins, &mono_defaults.int_class->byval_arg);
4907                                         MONO_ADD_INS (bblock, store);
4908                                         NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
4909                                 }
4910                         }
4911
4912                         *sp++ = ins;
4913                         ip += 5;
4914                         break;
4915                 }
4916                 case CEE_CONV_U2:
4917                 case CEE_CONV_U1:
4918                 case CEE_CONV_I:
4919                         CHECK_STACK (1);
4920                         ADD_UNOP (*ip);
4921                         ip++;
4922                         break;
4923                 case CEE_ADD_OVF:
4924                 case CEE_ADD_OVF_UN:
4925                 case CEE_MUL_OVF:
4926                 case CEE_MUL_OVF_UN:
4927                 case CEE_SUB_OVF:
4928                 case CEE_SUB_OVF_UN:
4929                         CHECK_STACK (2);
4930                         ADD_BINOP (*ip);
4931                         if (mono_find_jit_opcode_emulation (ins->opcode)) {
4932                                 --sp;
4933                                 *sp++ = emit_tree (cfg, bblock, ins);
4934                         }
4935                         ip++;
4936                         break;
4937                 case CEE_ENDFINALLY:
4938                         MONO_INST_NEW (cfg, ins, *ip);
4939                         MONO_ADD_INS (bblock, ins);
4940                         ins->cil_code = ip++;
4941                         start_new_bblock = 1;
4942
4943                         /*
4944                          * Control will leave the method so empty the stack, otherwise
4945                          * the next basic block will start with a nonempty stack.
4946                          */
4947                         while (sp != stack_start) {
4948                                 MONO_INST_NEW (cfg, ins, CEE_POP);
4949                                 ins->cil_code = ip;
4950                                 sp--;
4951                                 ins->inst_i0 = *sp;
4952                                 MONO_ADD_INS (bblock, ins);
4953                         }
4954                         break;
4955                 case CEE_LEAVE:
4956                 case CEE_LEAVE_S: {
4957                         GList *handlers;
4958                         if (*ip == CEE_LEAVE) {
4959                                 CHECK_OPSIZE (5);
4960                                 target = ip + 5 + (gint32)read32(ip + 1);
4961                         } else {
4962                                 CHECK_OPSIZE (2);
4963                                 target = ip + 2 + (signed char)(ip [1]);
4964                         }
4965
4966                         /* empty the stack */
4967                         while (sp != stack_start) {
4968                                 MONO_INST_NEW (cfg, ins, CEE_POP);
4969                                 ins->cil_code = ip;
4970                                 sp--;
4971                                 ins->inst_i0 = *sp;
4972                                 MONO_ADD_INS (bblock, ins);
4973                         }
4974
4975                         /* 
4976                          * If this leave statement is in a catch block, check for a
4977                          * pending exception, and rethrow it if necessary.
4978                          */
4979                         for (i = 0; i < header->num_clauses; ++i) {
4980                                 MonoExceptionClause *clause = &header->clauses [i];
4981                                 if (MONO_OFFSET_IN_HANDLER (clause, ip - header->code)) {
4982                                         int temp;
4983
4984                                         temp = mono_emit_jit_icall (cfg, bblock, mono_thread_get_pending_exception, NULL, ip);
4985                                         NEW_TEMPLOAD (cfg, *sp, temp);
4986
4987                                         MONO_INST_NEW (cfg, ins, OP_THROW_OR_NULL);
4988                                         ins->inst_left = *sp;
4989                                         ins->cil_code = ip;
4990                                         MONO_ADD_INS (bblock, ins);
4991                                 }
4992                         }
4993
4994                         /* fixme: call fault handler ? */
4995
4996                         if ((handlers = mono_find_final_block (cfg, ip, target, MONO_EXCEPTION_CLAUSE_FINALLY))) {
4997                                 GList *tmp;
4998                                 for (tmp = handlers; tmp; tmp = tmp->next) {
4999                                         tblock = tmp->data;
5000                                         link_bblock (cfg, bblock, tblock);
5001                                         MONO_INST_NEW (cfg, ins, OP_CALL_HANDLER);
5002                                         ins->cil_code = ip;
5003                                         ins->inst_target_bb = tblock;
5004                                         MONO_ADD_INS (bblock, ins);
5005                                 }
5006                                 g_list_free (handlers);
5007                         } 
5008
5009                         MONO_INST_NEW (cfg, ins, CEE_BR);
5010                         ins->cil_code = ip;
5011                         MONO_ADD_INS (bblock, ins);
5012                         GET_BBLOCK (cfg, bbhash, tblock, target);
5013                         link_bblock (cfg, bblock, tblock);
5014                         CHECK_BBLOCK (target, ip, tblock);
5015                         ins->inst_target_bb = tblock;
5016                         start_new_bblock = 1;
5017
5018                         if (*ip == CEE_LEAVE)
5019                                 ip += 5;
5020                         else
5021                                 ip += 2;
5022
5023                         break;
5024                 }
5025                 case CEE_STIND_I:
5026                         CHECK_STACK (2);
5027                         MONO_INST_NEW (cfg, ins, *ip);
5028                         sp -= 2;
5029                         handle_loaded_temps (cfg, bblock, stack_start, sp);
5030                         MONO_ADD_INS (bblock, ins);
5031                         ins->cil_code = ip++;
5032                         ins->inst_i0 = sp [0];
5033                         ins->inst_i1 = sp [1];
5034                         inline_costs += 1;
5035                         break;
5036                 case CEE_CONV_U:
5037                         CHECK_STACK (1);
5038                         ADD_UNOP (*ip);
5039                         ip++;
5040                         break;
5041                 /* trampoline mono specific opcodes */
5042                 case MONO_CUSTOM_PREFIX: {
5043
5044                         g_assert (method->wrapper_type != MONO_WRAPPER_NONE);
5045
5046                         CHECK_OPSIZE (2);
5047                         switch (ip [1]) {
5048
5049                         case CEE_MONO_FUNC1: {
5050                                 int temp;
5051                                 gpointer func = NULL;
5052                                 CHECK_STACK (1);
5053                                 sp--;
5054
5055                                 CHECK_OPSIZE (3);
5056                                 switch (ip [2]) {
5057                                 case MONO_MARSHAL_CONV_STR_LPWSTR:
5058                                         func = mono_string_to_utf16;
5059                                         break;
5060                                 case MONO_MARSHAL_CONV_LPWSTR_STR:
5061                                         func = mono_string_from_utf16;
5062                                         break;
5063                                 case MONO_MARSHAL_CONV_LPSTR_STR:
5064                                         func = mono_string_new_wrapper;
5065                                         break;
5066                                 case MONO_MARSHAL_CONV_STR_LPTSTR:
5067                                 case MONO_MARSHAL_CONV_STR_LPSTR:
5068                                         func = mono_string_to_utf8;
5069                                         break;
5070                                 case MONO_MARSHAL_CONV_STR_BSTR:
5071                                         func = mono_string_to_bstr;
5072                                         break;
5073                                 case MONO_MARSHAL_CONV_STR_TBSTR:
5074                                 case MONO_MARSHAL_CONV_STR_ANSIBSTR:
5075                                         func = mono_string_to_ansibstr;
5076                                         break;
5077                                 case MONO_MARSHAL_CONV_SB_LPSTR:
5078                                 case MONO_MARSHAL_CONV_SB_LPTSTR:
5079                                         func = mono_string_builder_to_utf8;
5080                                         break;
5081                                 case MONO_MARSHAL_CONV_SB_LPWSTR:
5082                                         func = mono_string_builder_to_utf16;
5083                                         break;
5084                                 case MONO_MARSHAL_CONV_ARRAY_SAVEARRAY:
5085                                         func = mono_array_to_savearray;
5086                                         break;
5087                                 case MONO_MARSHAL_CONV_ARRAY_LPARRAY:
5088                                         func = mono_array_to_lparray;
5089                                         break;
5090                                 case MONO_MARSHAL_CONV_DEL_FTN:
5091                                         func = mono_delegate_to_ftnptr;
5092                                         break;
5093                                 case MONO_MARSHAL_CONV_STRARRAY_STRLPARRAY:
5094                                         func = mono_marshal_string_array;
5095                                         break;
5096                                 case MONO_MARSHAL_CONV_STRARRAY_STRWLPARRAY:
5097                                         func = mono_marshal_string_array_to_unicode;
5098                                         break;
5099                                 default:
5100                                         g_warning ("unknown conversion %d\n", ip [2]);
5101                                         g_assert_not_reached ();
5102                                 }
5103
5104                                 temp = mono_emit_jit_icall (cfg, bblock, func, sp, ip);
5105                                 NEW_TEMPLOAD (cfg, *sp, temp);
5106                                 sp++;
5107
5108                                 ip += 3;
5109                                 inline_costs += 10 * num_calls++;
5110                                 break;
5111                         }
5112
5113                         case CEE_MONO_FUNC2: {
5114                                 int temp;
5115                                 gpointer func = NULL;
5116                                 CHECK_STACK (2);
5117                                 sp -= 2;
5118
5119                                 CHECK_OPSIZE (3);
5120                                 switch (ip [2]) {
5121                                 case MONO_MARSHAL_CONV_ASANY:
5122                                         func = mono_marshal_asany;
5123                                         break;
5124                                 case MONO_MARSHAL_CONV_FTN_DEL:
5125                                         func = mono_ftnptr_to_delegate;
5126                                         break;
5127                                 default:
5128                                         g_warning ("unknown conversion %d\n", ip [2]);
5129                                         g_assert_not_reached ();
5130                                 }
5131                                 temp = mono_emit_jit_icall (cfg, bblock, func, sp, ip);
5132                                 NEW_TEMPLOAD (cfg, *sp, temp);
5133                                 sp++;
5134
5135                                 ip += 3;
5136                                 inline_costs += 10 * num_calls++;
5137                                 break;
5138                         }
5139
5140                         case CEE_MONO_PROC2: {
5141                                 gpointer func = NULL;
5142                                 CHECK_STACK (2);
5143                                 sp -= 2;
5144
5145                                 CHECK_OPSIZE (3);
5146                                 switch (ip [2]) {
5147                                 case MONO_MARSHAL_CONV_LPSTR_SB:
5148                                 case MONO_MARSHAL_CONV_LPTSTR_SB:
5149                                         func = mono_string_utf8_to_builder;
5150                                         break;
5151                                 case MONO_MARSHAL_CONV_LPWSTR_SB:
5152                                         func = mono_string_utf16_to_builder;
5153                                         break;
5154                                 case MONO_MARSHAL_FREE_ARRAY:
5155                                         func = mono_marshal_free_array;
5156                                         break;
5157                                 case MONO_MARSHAL_CONV_ASANY:
5158                                         func = mono_marshal_asany;
5159                                         break;
5160                                 default:
5161                                         g_assert_not_reached ();
5162                                 }
5163
5164                                 mono_emit_jit_icall (cfg, bblock, func, sp, ip);
5165                                 ip += 3;
5166                                 inline_costs += 10 * num_calls++;
5167                                 break;
5168                         }
5169                         case CEE_MONO_PROC3: {
5170                                 gpointer func = NULL;
5171                                 CHECK_STACK (3);
5172                                 sp -= 3;
5173
5174                                 CHECK_OPSIZE (3);
5175                                 switch (ip [2]) {
5176                                 case MONO_MARSHAL_CONV_STR_BYVALSTR:
5177                                         func = mono_string_to_byvalstr;
5178                                         break;
5179                                 case MONO_MARSHAL_CONV_STR_BYVALWSTR:
5180                                         func = mono_string_to_byvalwstr;
5181                                         break;
5182                                 case MONO_MARSHAL_FREE_ASANY:
5183                                         func = mono_marshal_free_asany;
5184                                         break;
5185                                 default:
5186                                         g_assert_not_reached ();
5187                                 }
5188
5189                                 mono_emit_jit_icall (cfg, bblock, func, sp, ip);
5190                                 ip += 3;
5191                                 inline_costs += 10 * num_calls++;
5192                                 break;
5193                         }
5194                         case CEE_MONO_FREE:
5195                                 CHECK_STACK (1);
5196                                 sp -= 1;
5197                                 mono_emit_jit_icall (cfg, bblock, g_free, sp, ip);
5198                                 ip += 2;
5199                                 inline_costs += 10 * num_calls++;
5200                                 break;
5201                         case CEE_MONO_LDPTR:
5202                                 CHECK_STACK_OVF (1);
5203                                 CHECK_OPSIZE (6);
5204                                 token = read32 (ip + 2);
5205                                 NEW_PCONST (cfg, ins, mono_method_get_wrapper_data (method, token));
5206                                 ins->cil_code = ip;
5207                                 *sp++ = ins;
5208                                 ip += 6;
5209                                 inline_costs += 10 * num_calls++;
5210                                 break;
5211                         case CEE_MONO_VTADDR:
5212                                 CHECK_STACK (1);
5213                                 --sp;
5214                                 MONO_INST_NEW (cfg, ins, OP_VTADDR);
5215                                 ins->cil_code = ip;
5216                                 ins->type = STACK_MP;
5217                                 ins->inst_left = *sp;
5218                                 *sp++ = ins;
5219                                 ip += 2;
5220                                 break;
5221                         case CEE_MONO_NEWOBJ: {
5222                                 MonoInst *iargs [2];
5223                                 int temp;
5224                                 CHECK_STACK_OVF (1);
5225                                 CHECK_OPSIZE (6);
5226                                 token = read32 (ip + 2);
5227                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
5228                                 mono_class_init (klass);
5229                                 NEW_DOMAINCONST (cfg, iargs [0]);
5230                                 NEW_CLASSCONST (cfg, iargs [1], klass);
5231                                 temp = mono_emit_jit_icall (cfg, bblock, mono_object_new, iargs, ip);
5232                                 NEW_TEMPLOAD (cfg, *sp, temp);
5233                                 sp++;
5234                                 ip += 6;
5235                                 inline_costs += 10 * num_calls++;
5236                                 break;
5237                         }
5238                         case CEE_MONO_OBJADDR:
5239                                 CHECK_STACK (1);
5240                                 --sp;
5241                                 MONO_INST_NEW (cfg, ins, OP_OBJADDR);
5242                                 ins->cil_code = ip;
5243                                 ins->type = STACK_MP;
5244                                 ins->inst_left = *sp;
5245                                 *sp++ = ins;
5246                                 ip += 2;
5247                                 break;
5248                         case CEE_MONO_LDNATIVEOBJ:
5249                                 CHECK_STACK (1);
5250                                 CHECK_OPSIZE (6);
5251                                 token = read32 (ip + 2);
5252                                 klass = mono_method_get_wrapper_data (method, token);
5253                                 g_assert (klass->valuetype);
5254                                 mono_class_init (klass);
5255                                 NEW_INDLOAD (cfg, ins, sp [-1], &klass->byval_arg);
5256                                 sp [-1] = ins;
5257                                 ip += 6;
5258                                 break;
5259                         case CEE_MONO_RETOBJ:
5260                                 g_assert (cfg->ret);
5261                                 g_assert (method->signature->pinvoke); 
5262                                 CHECK_STACK (1);
5263                                 --sp;
5264                                 
5265                                 CHECK_OPSIZE (6);
5266                                 token = read32 (ip + 2);    
5267                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
5268
5269                                 NEW_RETLOADA (cfg, ins);
5270                                 handle_stobj (cfg, bblock, ins, *sp, ip, klass, FALSE, TRUE);
5271                                 
5272                                 if (sp != stack_start)
5273                                         goto unverified;
5274                                 
5275                                 MONO_INST_NEW (cfg, ins, CEE_BR);
5276                                 ins->cil_code = ip;
5277                                 ins->inst_target_bb = end_bblock;
5278                                 MONO_ADD_INS (bblock, ins);
5279                                 link_bblock (cfg, bblock, end_bblock);
5280                                 start_new_bblock = 1;
5281                                 ip += 6;
5282                                 break;
5283                         case CEE_MONO_CISINST:
5284                         case CEE_MONO_CCASTCLASS: {
5285                                 int token;
5286                                 CHECK_STACK (1);
5287                                 --sp;
5288                                 CHECK_OPSIZE (6);
5289                                 token = read32 (ip + 2);
5290                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
5291                                 MONO_INST_NEW (cfg, ins, (ip [1] == CEE_MONO_CISINST) ? OP_CISINST : OP_CCASTCLASS);
5292                                 ins->type = STACK_I4;
5293                                 ins->inst_left = *sp;
5294                                 ins->inst_newa_class = klass;
5295                                 ins->cil_code = ip;
5296                                 *sp++ = emit_tree (cfg, bblock, ins);
5297                                 ip += 6;
5298                                 break;
5299                         }
5300                         case CEE_MONO_SAVE_LMF:
5301                         case CEE_MONO_RESTORE_LMF:
5302 #ifdef MONO_ARCH_HAVE_LMF_OPS
5303                                 MONO_INST_NEW (cfg, ins, (ip [1] == CEE_MONO_SAVE_LMF) ? OP_SAVE_LMF : OP_RESTORE_LMF);
5304                                 MONO_ADD_INS (bblock, ins);
5305                                 cfg->need_lmf_area = TRUE;
5306 #endif
5307                                 ip += 2;
5308                                 break;
5309                         default:
5310                                 g_error ("opcode 0x%02x 0x%02x not handled", MONO_CUSTOM_PREFIX, ip [1]);
5311                                 break;
5312                         }
5313                         break;
5314                 }
5315                 case CEE_PREFIX1: {
5316                         CHECK_OPSIZE (2);
5317                         switch (ip [1]) {
5318                         case CEE_ARGLIST: {
5319                                 /* somewhat similar to LDTOKEN */
5320                                 MonoInst *addr, *vtvar;
5321                                 CHECK_STACK_OVF (1);
5322                                 vtvar = mono_compile_create_var (cfg, &mono_defaults.argumenthandle_class->byval_arg, OP_LOCAL); 
5323
5324                                 NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
5325                                 addr->cil_code = ip;
5326                                 MONO_INST_NEW (cfg, ins, OP_ARGLIST);
5327                                 ins->cil_code = ip;
5328                                 ins->inst_left = addr;
5329                                 MONO_ADD_INS (bblock, ins);
5330                                 NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
5331                                 ins->cil_code = ip;
5332                                 *sp++ = ins;
5333                                 ip += 2;
5334                                 break;
5335                         }
5336                         case CEE_CEQ:
5337                         case CEE_CGT:
5338                         case CEE_CGT_UN:
5339                         case CEE_CLT:
5340                         case CEE_CLT_UN: {
5341                                 MonoInst *cmp;
5342                                 CHECK_STACK (2);
5343                                 /*
5344                                  * The following transforms:
5345                                  *    CEE_CEQ    into OP_CEQ
5346                                  *    CEE_CGT    into OP_CGT
5347                                  *    CEE_CGT_UN into OP_CGT_UN
5348                                  *    CEE_CLT    into OP_CLT
5349                                  *    CEE_CLT_UN into OP_CLT_UN
5350                                  */
5351                                 MONO_INST_NEW (cfg, cmp, 256 + ip [1]);
5352                                 
5353                                 MONO_INST_NEW (cfg, ins, cmp->opcode);
5354                                 sp -= 2;
5355                                 cmp->inst_i0 = sp [0];
5356                                 cmp->inst_i1 = sp [1];
5357                                 cmp->cil_code = ip;
5358                                 type_from_op (cmp);
5359                                 CHECK_TYPE (cmp);
5360                                 cmp->opcode = OP_COMPARE;
5361                                 ins->cil_code = ip;
5362                                 ins->type = STACK_I4;
5363                                 ins->inst_i0 = cmp;
5364                                 *sp++ = ins;
5365                                 /* spill it to reduce the expression complexity
5366                                  * and workaround bug 54209 
5367                                  */
5368                                 if (cmp->inst_left->type == STACK_I8) {
5369                                         --sp;
5370                                         *sp++ = emit_tree (cfg, bblock, ins);
5371                                 }
5372                                 ip += 2;
5373                                 break;
5374                         }
5375                         case CEE_LDFTN: {
5376                                 MonoInst *argconst;
5377                                 int temp;
5378
5379                                 CHECK_STACK_OVF (1);
5380                                 CHECK_OPSIZE (6);
5381                                 n = read32 (ip + 2);
5382                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
5383                                         cmethod = mono_method_get_wrapper_data (method, n);
5384                                 else {
5385                                         cmethod = mono_get_method_full (image, n, NULL, generic_context);
5386                                 }
5387
5388                                 mono_class_init (cmethod->klass);
5389                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
5390
5391                                 NEW_METHODCONST (cfg, argconst, cmethod);
5392                                 if (method->wrapper_type != MONO_WRAPPER_SYNCHRONIZED)
5393                                         temp = mono_emit_jit_icall (cfg, bblock, mono_ldftn, &argconst, ip);
5394                                 else
5395                                         temp = mono_emit_jit_icall (cfg, bblock, mono_ldftn_nosync, &argconst, ip);
5396                                 NEW_TEMPLOAD (cfg, *sp, temp);
5397                                 sp ++;
5398                                 
5399                                 ip += 6;
5400                                 inline_costs += 10 * num_calls++;
5401                                 break;
5402                         }
5403                         case CEE_LDVIRTFTN: {
5404                                 MonoInst *args [2];
5405                                 int temp;
5406
5407                                 CHECK_STACK (1);
5408                                 CHECK_OPSIZE (6);
5409                                 n = read32 (ip + 2);
5410                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
5411                                         cmethod = mono_method_get_wrapper_data (method, n);
5412                                 else
5413                                         cmethod = mono_get_method_full (image, n, NULL, generic_context);
5414
5415                                 mono_class_init (cmethod->klass);
5416                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
5417
5418                                 --sp;
5419                                 args [0] = *sp;
5420                                 NEW_METHODCONST (cfg, args [1], cmethod);
5421                                 temp = mono_emit_jit_icall (cfg, bblock, mono_ldvirtfn, args, ip);
5422                                 NEW_TEMPLOAD (cfg, *sp, temp);
5423                                 sp ++;
5424
5425                                 ip += 6;
5426                                 inline_costs += 10 * num_calls++;
5427                                 break;
5428                         }
5429                         case CEE_LDARG:
5430                                 CHECK_STACK_OVF (1);
5431                                 CHECK_OPSIZE (4);
5432                                 n = read16 (ip + 2);
5433                                 CHECK_ARG (n);
5434                                 NEW_ARGLOAD (cfg, ins, n);
5435                                 ins->cil_code = ip;
5436                                 *sp++ = ins;
5437                                 ip += 4;
5438                                 break;
5439                         case CEE_LDARGA:
5440                                 CHECK_STACK_OVF (1);
5441                                 CHECK_OPSIZE (4);
5442                                 n = read16 (ip + 2);
5443                                 CHECK_ARG (n);
5444                                 NEW_ARGLOADA (cfg, ins, n);
5445                                 ins->cil_code = ip;
5446                                 *sp++ = ins;
5447                                 ip += 4;
5448                                 break;
5449                         case CEE_STARG:
5450                                 CHECK_STACK (1);
5451                                 --sp;
5452                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
5453                                 CHECK_OPSIZE (4);
5454                                 n = read16 (ip + 2);
5455                                 CHECK_ARG (n);
5456                                 NEW_ARGSTORE (cfg, ins, n, *sp);
5457                                 ins->cil_code = ip;
5458                                 if (ins->opcode == CEE_STOBJ) {
5459                                         NEW_ARGLOADA (cfg, ins, n);
5460                                         handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
5461                                 } else
5462                                         MONO_ADD_INS (bblock, ins);
5463                                 ip += 4;
5464                                 break;
5465                         case CEE_LDLOC:
5466                                 CHECK_STACK_OVF (1);
5467                                 CHECK_OPSIZE (4);
5468                                 n = read16 (ip + 2);
5469                                 CHECK_LOCAL (n);
5470                                 NEW_LOCLOAD (cfg, ins, n);
5471                                 ins->cil_code = ip;
5472                                 *sp++ = ins;
5473                                 ip += 4;
5474                                 break;
5475                         case CEE_LDLOCA:
5476                                 CHECK_STACK_OVF (1);
5477                                 CHECK_OPSIZE (4);
5478                                 n = read16 (ip + 2);
5479                                 CHECK_LOCAL (n);
5480                                 NEW_LOCLOADA (cfg, ins, n);
5481                                 ins->cil_code = ip;
5482                                 *sp++ = ins;
5483                                 ip += 4;
5484                                 break;
5485                         case CEE_STLOC:
5486                                 CHECK_STACK (1);
5487                                 --sp;
5488                                 CHECK_OPSIZE (4);
5489                                 n = read16 (ip + 2);
5490                                 CHECK_LOCAL (n);
5491                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
5492                                 NEW_LOCSTORE (cfg, ins, n, *sp);
5493                                 ins->cil_code = ip;
5494                                 if (ins->opcode == CEE_STOBJ) {
5495                                         NEW_LOCLOADA (cfg, ins, n);
5496                                         handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
5497                                 } else
5498                                         MONO_ADD_INS (bblock, ins);
5499                                 ip += 4;
5500                                 inline_costs += 1;
5501                                 break;
5502                         case CEE_LOCALLOC:
5503                                 CHECK_STACK (1);
5504                                 --sp;
5505                                 if (sp != stack_start) 
5506                                         goto unverified;
5507                                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC);
5508                                 ins->inst_left = *sp;
5509                                 ins->cil_code = ip;
5510
5511                                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
5512                                 if (header->init_locals)
5513                                         ins->flags |= MONO_INST_INIT;
5514
5515                                 *sp++ = ins;
5516                                 ip += 2;
5517                                 /* FIXME: set init flag if locals init is set in this method */
5518                                 break;
5519                         case CEE_ENDFILTER: {
5520                                 MonoExceptionClause *clause, *nearest;
5521                                 int cc, nearest_num;
5522
5523                                 CHECK_STACK (1);
5524                                 --sp;
5525                                 if ((sp != stack_start) || (sp [0]->type != STACK_I4)) 
5526                                         goto unverified;
5527                                 MONO_INST_NEW (cfg, ins, OP_ENDFILTER);
5528                                 ins->inst_left = *sp;
5529                                 ins->cil_code = ip;
5530                                 MONO_ADD_INS (bblock, ins);
5531                                 start_new_bblock = 1;
5532                                 ip += 2;
5533
5534                                 nearest = NULL;
5535                                 nearest_num = 0;
5536                                 for (cc = 0; cc < header->num_clauses; ++cc) {
5537                                         clause = &header->clauses [cc];
5538                                         if ((clause->flags & MONO_EXCEPTION_CLAUSE_FILTER) &&
5539                                             (!nearest || (clause->token_or_filter > nearest->token_or_filter))) {
5540                                                 nearest = clause;
5541                                                 nearest_num = cc;
5542                                         }
5543                                 }
5544                                 g_assert (nearest);
5545                                 filter_lengths [nearest_num] = (ip - header->code) -  nearest->token_or_filter;
5546
5547                                 break;
5548                         }
5549                         case CEE_UNALIGNED_:
5550                                 ins_flag |= MONO_INST_UNALIGNED;
5551                                 /* FIXME: record alignment? we can assume 1 for now */
5552                                 CHECK_OPSIZE (3);
5553                                 ip += 3;
5554                                 break;
5555                         case CEE_VOLATILE_:
5556                                 ins_flag |= MONO_INST_VOLATILE;
5557                                 ip += 2;
5558                                 break;
5559                         case CEE_TAIL_:
5560                                 ins_flag |= MONO_INST_TAILCALL;
5561                                 /* Can't inline tail calls at this time */
5562                                 inline_costs += 100000;
5563                                 ip += 2;
5564                                 break;
5565                         case CEE_INITOBJ:
5566                                 CHECK_STACK (1);
5567                                 --sp;
5568                                 CHECK_OPSIZE (6);
5569                                 token = read32 (ip + 2);
5570                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
5571                                         klass = mono_method_get_wrapper_data (method, token);
5572                                 else
5573                                         klass = mono_class_get_full (image, token, generic_context);
5574                                 if (MONO_TYPE_IS_REFERENCE (&klass->byval_arg)) {
5575                                         MonoInst *store, *load;
5576                                         NEW_PCONST (cfg, load, NULL);
5577                                         load->cil_code = ip;
5578                                         load->type = STACK_OBJ;
5579                                         MONO_INST_NEW (cfg, store, CEE_STIND_REF);
5580                                         store->cil_code = ip;
5581                                         handle_loaded_temps (cfg, bblock, stack_start, sp);
5582                                         MONO_ADD_INS (bblock, store);
5583                                         store->inst_i0 = sp [0];
5584                                         store->inst_i1 = load;
5585                                 } else {
5586                                         handle_initobj (cfg, bblock, *sp, NULL, klass, stack_start, sp);
5587                                 }
5588                                 ip += 6;
5589                                 inline_costs += 1;
5590                                 break;
5591                         case CEE_CONSTRAINED_:
5592                                 /* FIXME: implement */
5593                                 CHECK_OPSIZE (6);
5594                                 token = read32 (ip + 2);
5595                                 constrained_call = mono_class_get_full (image, token, generic_context);
5596                                 ip += 6;
5597                                 break;
5598                         case CEE_CPBLK:
5599                         case CEE_INITBLK: {
5600                                 MonoInst *iargs [3];
5601                                 CHECK_STACK (3);
5602                                 sp -= 3;
5603                                 if ((cfg->opt & MONO_OPT_INTRINS) && (ip [1] == CEE_CPBLK) && (sp [2]->opcode == OP_ICONST) && ((n = sp [2]->inst_c0) <= sizeof (gpointer) * 5)) {
5604                                         MonoInst *copy;
5605                                         MONO_INST_NEW (cfg, copy, OP_MEMCPY);
5606                                         copy->inst_left = sp [0];
5607                                         copy->inst_right = sp [1];
5608                                         copy->cil_code = ip;
5609                                         copy->unused = n;
5610                                         MONO_ADD_INS (bblock, copy);
5611                                         ip += 2;
5612                                         break;
5613                                 }
5614                                 iargs [0] = sp [0];
5615                                 iargs [1] = sp [1];
5616                                 iargs [2] = sp [2];
5617                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
5618                                 if (ip [1] == CEE_CPBLK) {
5619                                         mono_emit_jit_icall (cfg, bblock, helper_memcpy, iargs, ip);
5620                                 } else {
5621                                         mono_emit_jit_icall (cfg, bblock, helper_memset, iargs, ip);
5622                                 }
5623                                 ip += 2;
5624                                 inline_costs += 1;
5625                                 break;
5626                         }
5627                         case CEE_NO_:
5628                                 CHECK_OPSIZE (3);
5629                                 if (ip [2] & 0x1)
5630                                         ins_flag |= MONO_INST_NOTYPECHECK;
5631                                 if (ip [2] & 0x2)
5632                                         ins_flag |= MONO_INST_NORANGECHECK;
5633                                 /* we ignore the no-nullcheck for now since we
5634                                  * really do it explicitly only when doing callvirt->call
5635                                  */
5636                                 ip += 3;
5637                                 break;
5638                         case CEE_RETHROW: {
5639                                 MonoInst *load;
5640                                 /* FIXME: check we are in a catch handler */
5641                                 NEW_TEMPLOAD (cfg, load, cfg->exvar->inst_c0);
5642                                 load->cil_code = ip;
5643                                 MONO_INST_NEW (cfg, ins, CEE_THROW);
5644                                 ins->inst_left = load;
5645                                 ins->cil_code = ip;
5646                                 MONO_ADD_INS (bblock, ins);
5647                                 sp = stack_start;
5648                                 start_new_bblock = 1;
5649                                 ip += 2;
5650                                 break;
5651                         }
5652                         case CEE_SIZEOF:
5653                                 CHECK_STACK_OVF (1);
5654                                 CHECK_OPSIZE (6);
5655                                 token = read32 (ip + 2);
5656                                 /* FIXXME: handle generics. */
5657                                 if (mono_metadata_token_table (token) == MONO_TABLE_TYPESPEC) {
5658                                         MonoType *type = mono_type_create_from_typespec (image, token);
5659                                         token = mono_type_size (type, &align);
5660                                 } else {
5661                                         MonoClass *szclass = mono_class_get_full (image, token, generic_context);
5662                                         mono_class_init (szclass);
5663                                         token = mono_class_value_size (szclass, &align);
5664                                 }
5665                                 NEW_ICONST (cfg, ins, token);
5666                                 ins->cil_code = ip;
5667                                 *sp++= ins;
5668                                 ip += 6;
5669                                 break;
5670                         case CEE_REFANYTYPE:
5671                                 CHECK_STACK (1);
5672                                 MONO_INST_NEW (cfg, ins, OP_REFANYTYPE);
5673                                 --sp;
5674                                 ins->type = STACK_MP;
5675                                 ins->inst_left = *sp;
5676                                 ins->type = STACK_VTYPE;
5677                                 ins->klass = mono_defaults.typehandle_class;
5678                                 ins->cil_code = ip;
5679                                 ip += 2;
5680                                 *sp++ = ins;
5681                                 break;
5682                         case CEE_READONLY_:
5683                                 ip += 2;
5684                                 break;
5685                         default:
5686                                 g_error ("opcode 0xfe 0x%02x not handled", ip [1]);
5687                         }
5688                         break;
5689                 }
5690                 default:
5691                         g_error ("opcode 0x%02x not handled", *ip);
5692                 }
5693         }
5694         if (start_new_bblock != 1)
5695                 goto unverified;
5696
5697         bblock->cil_length = ip - bblock->cil_code;
5698         bblock->next_bb = end_bblock;
5699         link_bblock (cfg, bblock, end_bblock);
5700
5701         if (cfg->method == method && cfg->domainvar) {
5702                 MonoCallInst *call;
5703                 MonoInst *store;
5704
5705                 MONO_INST_NEW_CALL (cfg, call, CEE_CALL);
5706                 call->signature = helper_sig_domain_get;
5707                 call->inst.type = STACK_PTR;
5708                 call->fptr = mono_domain_get;
5709                 NEW_TEMPSTORE (cfg, store, cfg->domainvar->inst_c0, (MonoInst*)call);
5710                 
5711                 MONO_ADD_INS (init_localsbb, store);
5712         }
5713
5714         if (header->init_locals) {
5715                 MonoInst *store;
5716                 for (i = 0; i < header->num_locals; ++i) {
5717                         int t = header->locals [i]->type;
5718                         if (t == MONO_TYPE_VALUETYPE && header->locals [i]->data.klass->enumtype)
5719                                 t = header->locals [i]->data.klass->enum_basetype->type;
5720                         /* FIXME: use initobj for valuetypes, handle pointers, long, float. */
5721                         if (t >= MONO_TYPE_BOOLEAN && t <= MONO_TYPE_U4) {
5722                                 NEW_ICONST (cfg, ins, 0);
5723                                 NEW_LOCSTORE (cfg, store, i, ins);
5724                                 MONO_ADD_INS (init_localsbb, store);
5725                         } else if (t == MONO_TYPE_I8 || t == MONO_TYPE_U8) {
5726                                 MONO_INST_NEW (cfg, ins, OP_I8CONST);
5727                                 ins->type = STACK_I8;
5728                                 ins->inst_l = 0;
5729                                 NEW_LOCSTORE (cfg, store, i, ins);
5730                                 MONO_ADD_INS (init_localsbb, store);
5731                         } else if (t == MONO_TYPE_R4 || t == MONO_TYPE_R8) {
5732                                 MONO_INST_NEW (cfg, ins, OP_R8CONST);
5733                                 ins->type = STACK_R8;
5734                                 ins->inst_p0 = (void*)&r8_0;
5735                                 NEW_LOCSTORE (cfg, store, i, ins);
5736                                 MONO_ADD_INS (init_localsbb, store);
5737                         } else if ((t == MONO_TYPE_VALUETYPE) || (t == MONO_TYPE_TYPEDBYREF)) {
5738                                 NEW_LOCLOADA (cfg, ins, i);
5739                                 handle_initobj (cfg, init_localsbb, ins, NULL, mono_class_from_mono_type (header->locals [i]), NULL, NULL);
5740                                 break;
5741                         } else {
5742                                 NEW_PCONST (cfg, ins, NULL);
5743                                 NEW_LOCSTORE (cfg, store, i, ins);
5744                                 MONO_ADD_INS (init_localsbb, store);
5745                         }
5746                 }
5747         }
5748
5749         
5750         /* resolve backward branches in the middle of an existing basic block */
5751         for (tmp = bb_recheck; tmp; tmp = tmp->next) {
5752                 bblock = tmp->data;
5753                 /*g_print ("need recheck in %s at IL_%04x\n", method->name, bblock->cil_code - header->code);*/
5754                 tblock = find_previous (bbhash, start_bblock, bblock->cil_code);
5755                 if (tblock != start_bblock) {
5756                         int l;
5757                         split_bblock (cfg, tblock, bblock);
5758                         l = bblock->cil_code - header->code;
5759                         bblock->cil_length = tblock->cil_length - l;
5760                         tblock->cil_length = l;
5761                 } else {
5762                         g_print ("recheck failed.\n");
5763                 }
5764         }
5765
5766         /*
5767          * we compute regions here, because the length of filter clauses is not known in advance.
5768          * It is computed in the CEE_ENDFILTER case in the above switch statement
5769          */
5770         if (cfg->method == method) {
5771                 MonoBasicBlock *bb;
5772                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5773                         bb->region = mono_find_block_region (cfg, bb->real_offset, filter_lengths);
5774                         if (cfg->spvars)
5775                                 mono_create_spvar_for_region (cfg, bb->region);
5776                         if (cfg->verbose_level > 2)
5777                                 g_print ("REGION BB%d IL_%04x ID_%08X\n", bb->block_num, bb->real_offset, bb->region);
5778                 }
5779         } else {
5780                 g_hash_table_destroy (bbhash);
5781         }
5782
5783         dont_inline = g_list_remove (dont_inline, method);
5784         return inline_costs;
5785
5786  inline_failure:
5787         if (cfg->method != method) 
5788                 g_hash_table_destroy (bbhash);
5789         dont_inline = g_list_remove (dont_inline, method);
5790         return -1;
5791
5792  unverified:
5793         if (cfg->method != method) 
5794                 g_hash_table_destroy (bbhash);
5795         g_error ("Invalid IL code at IL%04x in %s: %s\n", ip - header->code, 
5796                  mono_method_full_name (method, TRUE), mono_disasm_code_one (NULL, method, ip, NULL));
5797         dont_inline = g_list_remove (dont_inline, method);
5798         return -1;
5799 }
5800
5801 void
5802 mono_print_tree (MonoInst *tree) {
5803         int arity;
5804
5805         if (!tree)
5806                 return;
5807
5808         arity = mono_burg_arity [tree->opcode];
5809
5810         printf (" %s%s", arity?"(":"",  mono_inst_name (tree->opcode));
5811
5812         switch (tree->opcode) {
5813         case OP_ICONST:
5814                 printf ("[%d]", tree->inst_c0);
5815                 break;
5816         case OP_I8CONST:
5817                 printf ("[%lld]", tree->inst_l);
5818                 break;
5819         case OP_R8CONST:
5820                 printf ("[%f]", *(double*)tree->inst_p0);
5821                 break;
5822         case OP_R4CONST:
5823                 printf ("[%f]", *(float*)tree->inst_p0);
5824                 break;
5825         case OP_ARG:
5826         case OP_LOCAL:
5827                 printf ("[%d]", tree->inst_c0);
5828                 break;
5829         case OP_REGOFFSET:
5830                 if (tree->inst_offset < 0)
5831                         printf ("[-0x%x(%s)]", -tree->inst_offset, mono_arch_regname (tree->inst_basereg));
5832                 else
5833                         printf ("[0x%x(%s)]", tree->inst_offset, mono_arch_regname (tree->inst_basereg));
5834                 break;
5835         case OP_REGVAR:
5836                 printf ("[%s]", mono_arch_regname (tree->dreg));
5837                 break;
5838         case CEE_NEWARR:
5839                 printf ("[%s]",  tree->inst_newa_class->name);
5840                 mono_print_tree (tree->inst_newa_len);
5841                 break;
5842         case CEE_CALL:
5843         case CEE_CALLVIRT:
5844         case OP_FCALL:
5845         case OP_FCALLVIRT:
5846         case OP_LCALL:
5847         case OP_LCALLVIRT:
5848         case OP_VCALL:
5849         case OP_VCALLVIRT:
5850         case OP_VOIDCALL:
5851         case OP_VOIDCALLVIRT: {
5852                 MonoCallInst *call = (MonoCallInst*)tree;
5853                 if (call->method)
5854                         printf ("[%s]", call->method->name);
5855                 break;
5856         }
5857         case OP_PHI: {
5858                 int i;
5859                 printf ("[%d (", tree->inst_c0);
5860                 for (i = 0; i < tree->inst_phi_args [0]; i++) {
5861                         if (i)
5862                                 printf (", ");
5863                         printf ("%d", tree->inst_phi_args [i + 1]);
5864                 }
5865                 printf (")]");
5866                 break;
5867         }
5868         case OP_RENAME:
5869         case OP_RETARG:
5870         case CEE_NOP:
5871         case CEE_JMP:
5872         case CEE_BREAK:
5873                 break;
5874         case OP_LOAD_MEMBASE:
5875         case OP_LOADI4_MEMBASE:
5876         case OP_LOADU4_MEMBASE:
5877         case OP_LOADU1_MEMBASE:
5878         case OP_LOADI1_MEMBASE:
5879         case OP_LOADU2_MEMBASE:
5880         case OP_LOADI2_MEMBASE:
5881                 printf ("[%s] <- [%s + 0x%x]", mono_arch_regname (tree->dreg), mono_arch_regname (tree->inst_basereg), tree->inst_offset);
5882                 break;
5883         case CEE_BR:
5884                 printf ("[B%d]", tree->inst_target_bb->block_num);
5885                 break;
5886         case CEE_SWITCH:
5887         case CEE_ISINST:
5888         case CEE_CASTCLASS:
5889         case OP_OUTARG:
5890         case OP_CALL_REG:
5891         case OP_FCALL_REG:
5892         case OP_LCALL_REG:
5893         case OP_VCALL_REG:
5894         case OP_VOIDCALL_REG:
5895                 mono_print_tree (tree->inst_left);
5896                 break;
5897         case CEE_BNE_UN:
5898         case CEE_BEQ:
5899         case CEE_BLT:
5900         case CEE_BLT_UN:
5901         case CEE_BGT:
5902         case CEE_BGT_UN:
5903         case CEE_BGE:
5904         case CEE_BGE_UN:
5905         case CEE_BLE:
5906         case CEE_BLE_UN:
5907                 printf ("[B%dB%d]", tree->inst_true_bb->block_num, tree->inst_false_bb->block_num);
5908                 mono_print_tree (tree->inst_left);
5909                 break;
5910         default:
5911                 if (!mono_arch_print_tree(tree, arity)) {
5912                         if (arity) {
5913                                 mono_print_tree (tree->inst_left);
5914                                 if (arity > 1)
5915                                         mono_print_tree (tree->inst_right);
5916                         }
5917                 }
5918                 break;
5919         }
5920
5921         if (arity)
5922                 printf (")");
5923 }
5924
5925 void
5926 mono_print_tree_nl (MonoInst *tree)
5927 {
5928         mono_print_tree (tree);
5929         printf ("\n");
5930 }
5931
5932 static MonoType*
5933 type_from_typename (char *typename)
5934 {
5935         MonoClass *klass;
5936
5937         if (!strcmp (typename, "int"))
5938                 klass = mono_defaults.int_class;
5939         else if (!strcmp (typename, "ptr"))
5940                 klass = mono_defaults.int_class;
5941         else if (!strcmp (typename, "void"))
5942                 klass = mono_defaults.void_class;
5943         else if (!strcmp (typename, "int32"))
5944                 klass = mono_defaults.int32_class;
5945         else if (!strcmp (typename, "uint32"))
5946                 klass = mono_defaults.uint32_class;
5947         else if (!strcmp (typename, "long"))
5948                 klass = mono_defaults.int64_class;
5949         else if (!strcmp (typename, "ulong"))
5950                 klass = mono_defaults.uint64_class;
5951         else if (!strcmp (typename, "float"))
5952                 klass = mono_defaults.single_class;
5953         else if (!strcmp (typename, "double"))
5954                 klass = mono_defaults.double_class;
5955         else if (!strcmp (typename, "object"))
5956                 klass = mono_defaults.object_class;
5957         else {
5958                 g_error (typename);
5959                 g_assert_not_reached ();
5960         }
5961         return &klass->byval_arg;
5962 }
5963
5964 static MonoMethodSignature*
5965 make_icall_sig (const char *sigstr)
5966 {
5967         gchar **parts;
5968         int i, len;
5969         gchar **tmp;
5970         MonoMethodSignature *res;
5971
5972         parts = g_strsplit (sigstr, " ", 256);
5973
5974         tmp = parts;
5975         len = 0;
5976         while (*tmp) {
5977                 len ++;
5978                 tmp ++;
5979         }
5980
5981         res = mono_metadata_signature_alloc (mono_defaults.corlib, len - 1);
5982         res->pinvoke = 1;
5983
5984 #ifdef PLATFORM_WIN32
5985         /* 
5986          * Under windows, the default pinvoke calling convention is STDCALL but
5987          * we need CDECL.
5988          */
5989         res->call_convention = MONO_CALL_C;
5990 #endif
5991
5992         res->ret = type_from_typename (parts [0]);
5993         for (i = 1; i < len; ++i) {
5994                 res->params [i - 1] = type_from_typename (parts [i]);
5995         }
5996
5997         g_strfreev (parts);
5998
5999         return res;
6000 }
6001
6002 static void
6003 create_helper_signature (void)
6004 {
6005
6006         /* FIXME: set call conv */
6007         /* MonoArray * mono_array_new (MonoDomain *domain, MonoClass *klass, gint32 len) */
6008         helper_sig_newarr = make_icall_sig ("object ptr ptr int32");
6009
6010         /* MonoArray * mono_array_new_specific (MonoVTable *vtable, guint32 len) */
6011         helper_sig_newarr_specific = make_icall_sig ("object ptr int32");
6012
6013         /* MonoObject * mono_object_new (MonoDomain *domain, MonoClass *klass) */
6014         helper_sig_object_new = make_icall_sig ("object ptr ptr");
6015
6016         /* MonoObject * mono_object_new_specific (MonoVTable *vtable) */
6017         helper_sig_object_new_specific = make_icall_sig ("object ptr");
6018
6019         /* void* mono_method_compile (MonoMethod*) */
6020         helper_sig_compile = make_icall_sig ("ptr ptr");
6021
6022         /* void* mono_ldvirtfn (MonoObject *, MonoMethod*) */
6023         helper_sig_compile_virt = make_icall_sig ("ptr object ptr");
6024
6025         /* MonoString* mono_ldstr (MonoDomain *domain, MonoImage *image, guint32 str_index) */
6026         helper_sig_ldstr = make_icall_sig ("object ptr ptr int32");
6027
6028         /* MonoDomain *mono_domain_get (void) */
6029         helper_sig_domain_get = make_icall_sig ("ptr");
6030
6031         /* void stelem_ref (MonoArray *, int index, MonoObject *) */
6032         helper_sig_stelem_ref = make_icall_sig ("void ptr int32 object");
6033
6034         /* void stelem_ref_check (MonoArray *, MonoObject *) */
6035         helper_sig_stelem_ref_check = make_icall_sig ("void object object");
6036
6037         /* long amethod (long, long) */
6038         helper_sig_long_long_long = make_icall_sig ("long long long");
6039
6040         /* object  amethod (intptr) */
6041         helper_sig_obj_ptr = make_icall_sig ("object ptr");
6042
6043         helper_sig_obj_ptr_ptr = make_icall_sig ("object ptr ptr");
6044
6045         /* void amethod (intptr) */
6046         helper_sig_void_ptr = make_icall_sig ("void ptr");
6047
6048         /* void amethod (MonoObject *obj) */
6049         helper_sig_void_obj = make_icall_sig ("void object");
6050
6051         /* void amethod (MonoObject *obj, void *ptr, int i) */
6052         helper_sig_void_obj_ptr_int = make_icall_sig ("void object ptr int");
6053
6054         /* intptr amethod (void) */
6055         helper_sig_ptr_void = make_icall_sig ("ptr");
6056
6057         /* object amethod (void) */
6058         helper_sig_obj_void = make_icall_sig ("object");
6059
6060         /* void  amethod (intptr, intptr) */
6061         helper_sig_void_ptr_ptr = make_icall_sig ("void ptr ptr");
6062
6063         /* void  amethod (intptr, intptr, intptr) */
6064         helper_sig_void_ptr_ptr_ptr = make_icall_sig ("void ptr ptr ptr");
6065
6066         /* intptr  amethod (intptr, intptr) */
6067         helper_sig_ptr_ptr_ptr = make_icall_sig ("ptr ptr ptr");
6068
6069         /* IntPtr  amethod (object) */
6070         helper_sig_ptr_obj = make_icall_sig ("ptr object");
6071
6072         /* IntPtr  amethod (object, int) */
6073         helper_sig_ptr_obj_int = make_icall_sig ("ptr object int");
6074
6075         /* IntPtr  amethod (int) */
6076         helper_sig_ptr_int = make_icall_sig ("ptr int32");
6077
6078         /* long amethod (long, guint32) */
6079         helper_sig_long_long_int = make_icall_sig ("long long int32");
6080
6081         /* ulong amethod (double) */
6082         helper_sig_ulong_double = make_icall_sig ("ulong double");
6083
6084         /* long amethod (double) */
6085         helper_sig_long_double = make_icall_sig ("long double");
6086
6087         /* double amethod (long) */
6088         helper_sig_double_long = make_icall_sig ("double long");
6089
6090         /* double amethod (int) */
6091         helper_sig_double_int = make_icall_sig ("double int32");
6092
6093         /* float amethod (long) */
6094         helper_sig_float_long = make_icall_sig ("float long");
6095
6096         /* double amethod (double, double) */
6097         helper_sig_double_double_double = make_icall_sig ("double double double");
6098
6099         /* uint amethod (double) */
6100         helper_sig_uint_double = make_icall_sig ("uint32 double");
6101
6102         /* int amethod (double) */
6103         helper_sig_int_double = make_icall_sig ("int32 double");
6104
6105         /* void  initobj (intptr, int size) */
6106         helper_sig_initobj = make_icall_sig ("void ptr int32");
6107
6108         /* void  memcpy (intptr, intptr, int size) */
6109         helper_sig_memcpy = make_icall_sig ("void ptr ptr int32");
6110
6111         /* void  memset (intptr, int val, int size) */
6112         helper_sig_memset = make_icall_sig ("void ptr int32 int32");
6113
6114         helper_sig_class_init_trampoline = make_icall_sig ("void");
6115 }
6116
6117 static GHashTable *jit_icall_hash_name = NULL;
6118 static GHashTable *jit_icall_hash_addr = NULL;
6119
6120 MonoJitICallInfo *
6121 mono_find_jit_icall_by_name (const char *name)
6122 {
6123         MonoJitICallInfo *info;
6124         g_assert (jit_icall_hash_name);
6125
6126         //printf ("lookup addr %s %p\n", name, g_hash_table_lookup (jit_icall_hash_name, name));
6127         EnterCriticalSection (&trampoline_hash_mutex);
6128         info = g_hash_table_lookup (jit_icall_hash_name, name);
6129         LeaveCriticalSection (&trampoline_hash_mutex);
6130         return info;
6131 }
6132
6133 MonoJitICallInfo *
6134 mono_find_jit_icall_by_addr (gconstpointer addr)
6135 {
6136         MonoJitICallInfo *info;
6137         g_assert (jit_icall_hash_addr);
6138
6139         EnterCriticalSection (&trampoline_hash_mutex);
6140         info = g_hash_table_lookup (jit_icall_hash_addr, (gpointer)addr);
6141         LeaveCriticalSection (&trampoline_hash_mutex);
6142
6143         return info;
6144 }
6145
6146 gconstpointer
6147 mono_icall_get_wrapper (MonoJitICallInfo* callinfo)
6148 {
6149         char *name;
6150         MonoMethod *wrapper;
6151         gconstpointer code;
6152         
6153         if (callinfo->wrapper)
6154                 return callinfo->wrapper;
6155         
6156         name = g_strdup_printf ("__icall_wrapper_%s", callinfo->name);
6157         wrapper = mono_marshal_get_icall_wrapper (callinfo->sig, name, callinfo->func);
6158         /* Must be domain neutral since there is only one copy */
6159         code = mono_jit_compile_method_with_opt (wrapper, default_opt | MONO_OPT_SHARED);
6160
6161         EnterCriticalSection (&trampoline_hash_mutex);
6162         if (!callinfo->wrapper) {
6163                 callinfo->wrapper = code;
6164                 g_hash_table_insert (jit_icall_hash_addr, (gpointer)callinfo->wrapper, callinfo);
6165         }
6166         LeaveCriticalSection (&trampoline_hash_mutex);
6167
6168         g_free (name);
6169         return callinfo->wrapper;
6170 }
6171
6172 MonoJitICallInfo *
6173 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save)
6174 {
6175         MonoJitICallInfo *info;
6176         
6177         g_assert (func);
6178         g_assert (name);
6179
6180         EnterCriticalSection (&trampoline_hash_mutex);
6181
6182         if (!jit_icall_hash_name) {
6183                 jit_icall_hash_name = g_hash_table_new (g_str_hash, g_str_equal);
6184                 jit_icall_hash_addr = g_hash_table_new (NULL, NULL);
6185         }
6186
6187         if (g_hash_table_lookup (jit_icall_hash_name, name)) {
6188                 g_warning ("jit icall already defined \"%s\"\n", name);
6189                 g_assert_not_reached ();
6190         }
6191
6192         info = g_new (MonoJitICallInfo, 1);
6193         
6194         info->name = name;
6195         info->func = func;
6196         info->sig = sig;
6197
6198         if (is_save) {
6199                 info->wrapper = func;
6200         } else {
6201                 info->wrapper = NULL;
6202         }
6203
6204         g_hash_table_insert (jit_icall_hash_name, (gpointer)info->name, info);
6205         g_hash_table_insert (jit_icall_hash_addr, (gpointer)func, info);
6206
6207         LeaveCriticalSection (&trampoline_hash_mutex);
6208         return info;
6209 }
6210
6211 gpointer
6212 mono_create_class_init_trampoline (MonoVTable *vtable)
6213 {
6214         gpointer code;
6215
6216         /* previously created trampoline code */
6217         mono_domain_lock (vtable->domain);
6218         code = 
6219                 mono_g_hash_table_lookup (vtable->domain->class_init_trampoline_hash,
6220                                                                   vtable);
6221         mono_domain_unlock (vtable->domain);
6222         if (code)
6223                 return code;
6224
6225         code = mono_arch_create_class_init_trampoline (vtable);
6226
6227         /* store trampoline address */
6228         mono_domain_lock (vtable->domain);
6229         mono_g_hash_table_insert (vtable->domain->class_init_trampoline_hash,
6230                                                           vtable, code);
6231         mono_domain_unlock (vtable->domain);
6232
6233         EnterCriticalSection (&trampoline_hash_mutex);
6234         if (!class_init_hash_addr)
6235                 class_init_hash_addr = g_hash_table_new (NULL, NULL);
6236         g_hash_table_insert (class_init_hash_addr, code, vtable);
6237         LeaveCriticalSection (&trampoline_hash_mutex);
6238
6239         return code;
6240 }
6241
6242 gpointer
6243 mono_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, 
6244                                                          gboolean add_sync_wrapper)
6245 {
6246         MonoJitInfo *ji;
6247         gpointer code;
6248
6249         if (add_sync_wrapper && method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED)
6250                 return mono_create_jump_trampoline (domain, mono_marshal_get_synchronized_wrapper (method), FALSE);
6251
6252         code = mono_jit_find_compiled_method (domain, method);
6253         if (code)
6254                 return code;
6255
6256         EnterCriticalSection (&trampoline_hash_mutex);
6257
6258         if (jump_trampoline_hash) {
6259                 code = g_hash_table_lookup (jump_trampoline_hash, method);
6260                 if (code) {
6261                         LeaveCriticalSection (&trampoline_hash_mutex);
6262                         return code;
6263                 }
6264         }
6265
6266         ji = mono_arch_create_jump_trampoline (method);
6267
6268         /*
6269          * mono_delegate_ctor needs to find the method metadata from the 
6270          * trampoline address, so we save it here.
6271          */
6272
6273         mono_jit_info_table_add (mono_root_domain, ji);
6274
6275         if (!jump_trampoline_hash)
6276                 jump_trampoline_hash = g_hash_table_new (NULL, NULL);
6277         g_hash_table_insert (jump_trampoline_hash, method, ji->code_start);
6278
6279         LeaveCriticalSection (&trampoline_hash_mutex);
6280
6281         return ji->code_start;
6282 }
6283
6284 MonoVTable*
6285 mono_find_class_init_trampoline_by_addr (gconstpointer addr)
6286 {
6287         MonoVTable *res;
6288
6289         EnterCriticalSection (&trampoline_hash_mutex);
6290         if (class_init_hash_addr)
6291                 res = g_hash_table_lookup (class_init_hash_addr, addr);
6292         else
6293                 res = NULL;
6294         LeaveCriticalSection (&trampoline_hash_mutex);
6295         return res;
6296 }
6297
6298 void
6299 mono_register_opcode_emulation (int opcode, const char *name, MonoMethodSignature *sig, gpointer func, gboolean no_throw)
6300 {
6301         MonoJitICallInfo *info;
6302
6303         if (!emul_opcode_map)
6304                 emul_opcode_map = g_new0 (MonoJitICallInfo*, OP_LAST + 1);
6305
6306         g_assert (!sig->hasthis);
6307         g_assert (sig->param_count < 3);
6308
6309         info = mono_register_jit_icall (func, name, sig, no_throw);
6310
6311         emul_opcode_map [opcode] = info;
6312 }
6313
6314 static void
6315 decompose_foreach (MonoInst *tree, gpointer data) 
6316 {
6317         static MonoJitICallInfo *newarr_info = NULL;
6318         static MonoJitICallInfo *newarr_specific_info = NULL;
6319         MonoJitICallInfo *info;
6320         int i;
6321
6322         switch (tree->opcode) {
6323         case CEE_NEWARR: {
6324                 MonoCompile *cfg = data;
6325                 MonoInst *iargs [3];
6326
6327                 if (!newarr_info) {
6328                         newarr_info = mono_find_jit_icall_by_addr (mono_array_new);
6329                         g_assert (newarr_info);
6330                         newarr_specific_info = mono_find_jit_icall_by_addr (mono_array_new_specific);
6331                         g_assert (newarr_specific_info);
6332                 }
6333
6334                 if (cfg->opt & MONO_OPT_SHARED) {
6335                         NEW_DOMAINCONST (cfg, iargs [0]);
6336                         NEW_CLASSCONST (cfg, iargs [1], tree->inst_newa_class);
6337                         iargs [2] = tree->inst_newa_len;
6338
6339                         info = newarr_info;
6340                 }
6341                 else {
6342                         MonoVTable *vtable = mono_class_vtable (cfg->domain, mono_array_class_get (tree->inst_newa_class, 1));
6343
6344                         NEW_VTABLECONST (cfg, iargs [0], vtable);
6345                         iargs [1] = tree->inst_newa_len;
6346
6347                         info = newarr_specific_info;
6348                 }
6349
6350                 mono_emulate_opcode (cfg, tree, iargs, info);
6351
6352                 /* Need to decompose arguments after the the opcode is decomposed */
6353                 for (i = 0; i < info->sig->param_count; ++i)
6354                         dec_foreach (iargs [i], cfg);
6355                 break;
6356         }
6357
6358         default:
6359                 break;
6360         }
6361 }
6362
6363 void
6364 mono_inst_foreach (MonoInst *tree, MonoInstFunc func, gpointer data) {
6365
6366         switch (mono_burg_arity [tree->opcode]) {
6367         case 0: break;
6368         case 1: 
6369                 mono_inst_foreach (tree->inst_left, func, data);
6370                 break;
6371         case 2: 
6372                 mono_inst_foreach (tree->inst_left, func, data);
6373                 mono_inst_foreach (tree->inst_right, func, data);
6374                 break;
6375         default:
6376                 g_assert_not_reached ();
6377         }
6378         func (tree, data);
6379 }
6380
6381 G_GNUC_UNUSED
6382 static void
6383 mono_print_bb_code (MonoBasicBlock *bb) {
6384         if (bb->code) {
6385                 MonoInst *c = bb->code;
6386                 while (c) {
6387                         mono_print_tree (c);
6388                         g_print ("\n");
6389                         c = c->next;
6390                 }
6391         }
6392 }
6393
6394 static void
6395 print_dfn (MonoCompile *cfg) {
6396         int i, j;
6397         char *code;
6398         MonoBasicBlock *bb;
6399
6400         g_print ("IR code for method %s\n", mono_method_full_name (cfg->method, TRUE));
6401
6402         for (i = 0; i < cfg->num_bblocks; ++i) {
6403                 bb = cfg->bblocks [i];
6404                 if (bb->cil_code) {
6405                         char* code1, *code2;
6406                         code1 = mono_disasm_code_one (NULL, cfg->method, bb->cil_code, NULL);
6407                         if (bb->last_ins->cil_code)
6408                                 code2 = mono_disasm_code_one (NULL, cfg->method, bb->last_ins->cil_code, NULL);
6409                         else
6410                                 code2 = g_strdup ("");
6411
6412                         code1 [strlen (code1) - 1] = 0;
6413                         code = g_strdup_printf ("%s -> %s", code1, code2);
6414                         g_free (code1);
6415                         g_free (code2);
6416                 } else
6417                         code = g_strdup ("\n");
6418                 g_print ("\nBB%d DFN%d (len: %d): %s", bb->block_num, i, bb->cil_length, code);
6419                 if (bb->code) {
6420                         MonoInst *c = bb->code;
6421                         while (c) {
6422                                 mono_print_tree (c);
6423                                 g_print ("\n");
6424                                 c = c->next;
6425                         }
6426                 } else {
6427
6428                 }
6429
6430                 g_print ("\tprev:");
6431                 for (j = 0; j < bb->in_count; ++j) {
6432                         g_print (" BB%d", bb->in_bb [j]->block_num);
6433                 }
6434                 g_print ("\t\tsucc:");
6435                 for (j = 0; j < bb->out_count; ++j) {
6436                         g_print (" BB%d", bb->out_bb [j]->block_num);
6437                 }
6438                 g_print ("\n\tidom: BB%d\n", bb->idom? bb->idom->block_num: -1);
6439
6440                 if (bb->idom)
6441                         g_assert (mono_bitset_test_fast (bb->dominators, bb->idom->dfn));
6442
6443                 if (bb->dominators)
6444                         mono_blockset_print (cfg, bb->dominators, "\tdominators", bb->idom? bb->idom->dfn: -1);
6445                 if (bb->dfrontier)
6446                         mono_blockset_print (cfg, bb->dfrontier, "\tdfrontier", -1);
6447                 g_free (code);
6448         }
6449
6450         g_print ("\n");
6451 }
6452
6453 void
6454 mono_bblock_add_inst (MonoBasicBlock *bb, MonoInst *inst)
6455 {
6456         inst->next = NULL;
6457         if (bb->last_ins) {
6458                 g_assert (bb->code);
6459                 bb->last_ins->next = inst;
6460                 bb->last_ins = inst;
6461         } else {
6462                 bb->last_ins = bb->code = inst;
6463         }
6464 }
6465
6466 void
6467 mono_destroy_compile (MonoCompile *cfg)
6468 {
6469         //mono_mempool_stats (cfg->mempool);
6470         g_hash_table_destroy (cfg->bb_hash);
6471         mono_free_loop_info (cfg);
6472         if (cfg->rs)
6473                 mono_regstate_free (cfg->rs);
6474         if (cfg->spvars)
6475                 g_hash_table_destroy (cfg->spvars);
6476         mono_mempool_destroy (cfg->mempool);
6477         g_list_free (cfg->ldstr_list);
6478
6479         g_free (cfg->varinfo);
6480         g_free (cfg->vars);
6481         g_free (cfg);
6482 }
6483
6484 #ifdef HAVE_KW_THREAD
6485 static __thread gpointer mono_lmf_addr;
6486 #endif
6487
6488 MonoLMF **
6489 mono_get_lmf_addr (void)
6490 {
6491 #ifdef HAVE_KW_THREAD
6492         return mono_lmf_addr;
6493 #else
6494         MonoJitTlsData *jit_tls;
6495
6496         if ((jit_tls = TlsGetValue (mono_jit_tls_id)))
6497                 return &jit_tls->lmf;
6498
6499         g_assert_not_reached ();
6500         return NULL;
6501 #endif
6502 }
6503
6504 /**
6505  * mono_thread_abort:
6506  * @obj: exception object
6507  *
6508  * abort the thread, print exception information and stack trace
6509  */
6510 static void
6511 mono_thread_abort (MonoObject *obj)
6512 {
6513         /* MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id); */
6514         
6515         /* handle_remove should be eventually called for this thread, too
6516         g_free (jit_tls);*/
6517
6518         ExitThread (-1);
6519 }
6520
6521 static void*
6522 setup_jit_tls_data (gpointer stack_start, gpointer abort_func)
6523 {
6524         MonoJitTlsData *jit_tls;
6525         MonoLMF *lmf;
6526
6527         jit_tls = TlsGetValue (mono_jit_tls_id);
6528         if (jit_tls)
6529                 return jit_tls;
6530
6531         jit_tls = g_new0 (MonoJitTlsData, 1);
6532
6533         TlsSetValue (mono_jit_tls_id, jit_tls);
6534
6535         jit_tls->abort_func = abort_func;
6536         jit_tls->end_of_stack = stack_start;
6537
6538         lmf = g_new0 (MonoLMF, 1);
6539         lmf->ebp = -1;
6540
6541         jit_tls->lmf = jit_tls->first_lmf = lmf;
6542
6543 #ifdef HAVE_KW_THREAD
6544         mono_lmf_addr = &jit_tls->lmf;
6545 #endif
6546
6547         mono_arch_setup_jit_tls_data (jit_tls);
6548
6549         return jit_tls;
6550 }
6551
6552 static void
6553 mono_thread_start_cb (guint32 tid, gpointer stack_start, gpointer func)
6554 {
6555         MonoThread *thread;
6556         void *jit_tls = setup_jit_tls_data (stack_start, mono_thread_abort);
6557         thread = mono_thread_current ();
6558         if (thread)
6559                 thread->jit_data = jit_tls;
6560 }
6561
6562 void (*mono_thread_attach_aborted_cb ) (MonoObject *obj) = NULL;
6563
6564 static void
6565 mono_thread_abort_dummy (MonoObject *obj)
6566 {
6567   if (mono_thread_attach_aborted_cb)
6568     mono_thread_attach_aborted_cb (obj);
6569   else
6570     mono_thread_abort (obj);
6571 }
6572
6573 static void
6574 mono_thread_attach_cb (guint32 tid, gpointer stack_start)
6575 {
6576         MonoThread *thread;
6577         void *jit_tls = setup_jit_tls_data (stack_start, mono_thread_abort_dummy);
6578         thread = mono_thread_current ();
6579         if (thread)
6580                 thread->jit_data = jit_tls;
6581 }
6582
6583 static void
6584 mini_thread_cleanup (MonoThread *thread)
6585 {
6586         MonoJitTlsData *jit_tls = thread->jit_data;
6587
6588         if (jit_tls) {
6589                 mono_arch_free_jit_tls_data (jit_tls);
6590                 g_free (jit_tls->first_lmf);
6591                 g_free (jit_tls);
6592                 thread->jit_data = NULL;
6593         }
6594 }
6595
6596 void
6597 mono_add_patch_info (MonoCompile *cfg, int ip, MonoJumpInfoType type, gconstpointer target)
6598 {
6599         MonoJumpInfo *ji = mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfo));
6600
6601         ji->ip.i = ip;
6602         ji->type = type;
6603         ji->data.target = target;
6604         ji->next = cfg->patch_info;
6605
6606         cfg->patch_info = ji;
6607 }
6608
6609 void
6610 mono_remove_patch_info (MonoCompile *cfg, int ip)
6611 {
6612         MonoJumpInfo **ji = &cfg->patch_info;
6613
6614         while (*ji) {
6615                 if ((*ji)->ip.i == ip)
6616                         *ji = (*ji)->next;
6617                 else
6618                         ji = &((*ji)->next);
6619         }
6620 }
6621
6622 gpointer
6623 mono_resolve_patch_target (MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *patch_info, gboolean run_cctors)
6624 {
6625         unsigned char *ip = patch_info->ip.i + code;
6626         gconstpointer target = NULL;
6627
6628         switch (patch_info->type) {
6629         case MONO_PATCH_INFO_BB:
6630                 target = patch_info->data.bb->native_offset + code;
6631                 break;
6632         case MONO_PATCH_INFO_ABS:
6633                 target = patch_info->data.target;
6634                 break;
6635         case MONO_PATCH_INFO_LABEL:
6636                 target = patch_info->data.inst->inst_c0 + code;
6637                 break;
6638         case MONO_PATCH_INFO_IP:
6639                 target = ip;
6640                 break;
6641         case MONO_PATCH_INFO_METHOD_REL:
6642                 target = code + patch_info->data.offset;
6643                 break;
6644         case MONO_PATCH_INFO_INTERNAL_METHOD: {
6645                 MonoJitICallInfo *mi = mono_find_jit_icall_by_name (patch_info->data.name);
6646                 if (!mi) {
6647                         g_warning ("unknown MONO_PATCH_INFO_INTERNAL_METHOD %s", patch_info->data.name);
6648                         g_assert_not_reached ();
6649                 }
6650                 target = mono_icall_get_wrapper (mi);
6651                 break;
6652         }
6653         case MONO_PATCH_INFO_METHOD_JUMP: {
6654                 GSList *list;
6655
6656                 /* get the trampoline to the method from the domain */
6657                 target = mono_create_jump_trampoline (domain, patch_info->data.method, TRUE);
6658                 if (!domain->jump_target_hash)
6659                         domain->jump_target_hash = g_hash_table_new (NULL, NULL);
6660                 list = g_hash_table_lookup (domain->jump_target_hash, patch_info->data.method);
6661                 list = g_slist_prepend (list, ip);
6662                 g_hash_table_insert (domain->jump_target_hash, patch_info->data.method, list);
6663                 break;
6664         }
6665         case MONO_PATCH_INFO_METHOD:
6666                 if (patch_info->data.method == method) {
6667                         target = code;
6668                 } else
6669                         /* get the trampoline to the method from the domain */
6670                         target = mono_arch_create_jit_trampoline (patch_info->data.method);
6671                 break;
6672         case MONO_PATCH_INFO_SWITCH: {
6673                 gpointer *jump_table;
6674                 int i;
6675         
6676                 mono_domain_lock (domain);
6677                 jump_table = mono_code_manager_reserve (domain->code_mp, sizeof (gpointer) * patch_info->table_size);
6678                 mono_domain_unlock (domain);
6679
6680                 for (i = 0; i < patch_info->table_size; i++) {
6681                         jump_table [i] = code + (int)patch_info->data.table [i];
6682                 }
6683                 target = jump_table;
6684                 break;
6685         }
6686         case MONO_PATCH_INFO_METHODCONST:
6687         case MONO_PATCH_INFO_CLASS:
6688         case MONO_PATCH_INFO_IMAGE:
6689         case MONO_PATCH_INFO_FIELD:
6690                 target = patch_info->data.target;
6691                 break;
6692         case MONO_PATCH_INFO_IID:
6693                 mono_class_init (patch_info->data.klass);
6694                 target = (gpointer)patch_info->data.klass->interface_id;
6695                 break;
6696         case MONO_PATCH_INFO_VTABLE:
6697                 target = mono_class_vtable (domain, patch_info->data.klass);
6698                 break;
6699         case MONO_PATCH_INFO_CLASS_INIT:
6700                 target = mono_create_class_init_trampoline (mono_class_vtable (domain, patch_info->data.klass));
6701                 break;
6702         case MONO_PATCH_INFO_SFLDA: {
6703                 MonoVTable *vtable = mono_class_vtable (domain, patch_info->data.field->parent);
6704                 if (!vtable->initialized && !(vtable->klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT) && mono_class_needs_cctor_run (vtable->klass, method))
6705                         /* Done by the generated code */
6706                         ;
6707                 else {
6708                         if (run_cctors)
6709                                 mono_runtime_class_init (vtable);
6710                 }
6711                 target = (char*)vtable->data + patch_info->data.field->offset;
6712                 break;
6713         }
6714         case MONO_PATCH_INFO_R4:
6715         case MONO_PATCH_INFO_R8:
6716                 target = patch_info->data.target;
6717                 break;
6718         case MONO_PATCH_INFO_EXC_NAME:
6719                 target = patch_info->data.name;
6720                 break;
6721         case MONO_PATCH_INFO_LDSTR:
6722                 target =
6723                         mono_ldstr (domain, patch_info->data.token->image, 
6724                                                 mono_metadata_token_index (patch_info->data.token->token));
6725                 break;
6726         case MONO_PATCH_INFO_TYPE_FROM_HANDLE: {
6727                 gpointer handle;
6728                 MonoClass *handle_class;
6729
6730                 handle = mono_ldtoken (patch_info->data.token->image, 
6731                                        patch_info->data.token->token, &handle_class, NULL);
6732                 mono_class_init (handle_class);
6733                 mono_class_init (mono_class_from_mono_type (handle));
6734
6735                 target =
6736                         mono_type_get_object (domain, handle);
6737                 break;
6738         }
6739         case MONO_PATCH_INFO_LDTOKEN: {
6740                 gpointer handle;
6741                 MonoClass *handle_class;
6742                 
6743                 handle = mono_ldtoken (patch_info->data.token->image,
6744                                        patch_info->data.token->token, &handle_class, NULL);
6745                 mono_class_init (handle_class);
6746                 
6747                 target = handle;
6748                 break;
6749         }
6750         case MONO_PATCH_INFO_BB_OVF:
6751         case MONO_PATCH_INFO_EXC_OVF:
6752                 break;
6753         default:
6754                 g_assert_not_reached ();
6755         }
6756
6757         return (gpointer)target;
6758 }
6759
6760 static void
6761 dec_foreach (MonoInst *tree, MonoCompile *cfg) {
6762         MonoJitICallInfo *info;
6763
6764         decompose_foreach (tree, cfg);
6765
6766         switch (mono_burg_arity [tree->opcode]) {
6767         case 0: break;
6768         case 1: 
6769                 dec_foreach (tree->inst_left, cfg);
6770
6771                 if ((info = mono_find_jit_opcode_emulation (tree->opcode))) {
6772                         MonoInst *iargs [2];
6773                 
6774                         iargs [0] = tree->inst_left;
6775
6776                         mono_emulate_opcode (cfg, tree, iargs, info);
6777                         return;
6778                 }
6779
6780                 break;
6781         case 2:
6782 #ifdef MONO_ARCH_BIGMUL_INTRINS
6783                 if (tree->opcode == OP_LMUL
6784                                 && (cfg->opt & MONO_OPT_INTRINS)
6785                                 && (tree->inst_left->opcode == CEE_CONV_I8 
6786                                         || tree->inst_left->opcode == CEE_CONV_U8)
6787                                 && tree->inst_left->inst_left->type == STACK_I4
6788                                 && (tree->inst_right->opcode == CEE_CONV_I8 
6789                                         || tree->inst_right->opcode == CEE_CONV_U8)
6790                                 && tree->inst_right->inst_left->type == STACK_I4) {
6791                         tree->opcode = (tree->inst_left->opcode == CEE_CONV_I8 ? OP_BIGMUL: OP_BIGMUL_UN);
6792                         tree->inst_left = tree->inst_left->inst_left;
6793                         tree->inst_right = tree->inst_right->inst_left;
6794                         dec_foreach (tree, cfg);
6795                 } else 
6796 #endif
6797                         if ((info = mono_find_jit_opcode_emulation (tree->opcode))) {
6798                         MonoInst *iargs [2];
6799                 
6800                         iargs [0] = tree->inst_i0;
6801                         iargs [1] = tree->inst_i1;
6802                 
6803                         mono_emulate_opcode (cfg, tree, iargs, info);
6804
6805                         dec_foreach (iargs [0], cfg);
6806                         dec_foreach (iargs [1], cfg);
6807                         return;
6808                 } else {
6809                         dec_foreach (tree->inst_left, cfg);
6810                         dec_foreach (tree->inst_right, cfg);
6811                 }
6812                 break;
6813         default:
6814                 g_assert_not_reached ();
6815         }
6816 }
6817
6818 static void
6819 decompose_pass (MonoCompile *cfg) {
6820         MonoBasicBlock *bb;
6821
6822         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
6823                 MonoInst *tree;
6824                 cfg->cbb = bb;
6825                 cfg->prev_ins = NULL;
6826                 for (tree = cfg->cbb->code; tree; tree = tree->next) {
6827                         dec_foreach (tree, cfg);
6828                         cfg->prev_ins = tree;
6829                 }
6830         }
6831 }
6832
6833 static void
6834 nullify_basic_block (MonoBasicBlock *bb) 
6835 {
6836         bb->in_count = 0;
6837         bb->out_count = 0;
6838         bb->in_bb = NULL;
6839         bb->out_bb = NULL;
6840         bb->next_bb = NULL;
6841         bb->code = bb->last_ins = NULL;
6842         bb->cil_code = NULL;
6843 }
6844
6845 static void 
6846 replace_out_block (MonoBasicBlock *bb, MonoBasicBlock *orig,  MonoBasicBlock *repl)
6847 {
6848         int i;
6849
6850         for (i = 0; i < bb->out_count; i++) {
6851                 MonoBasicBlock *ob = bb->out_bb [i];
6852                 if (ob == orig) {
6853                         if (!repl) {
6854                                 if (bb->out_count > 1) {
6855                                         bb->out_bb [i] = bb->out_bb [bb->out_count - 1];
6856                                 }
6857                                 bb->out_count--;
6858                         } else {
6859                                 bb->out_bb [i] = repl;
6860                         }
6861                 }
6862         }
6863 }
6864
6865 static void 
6866 replace_in_block (MonoBasicBlock *bb, MonoBasicBlock *orig, MonoBasicBlock *repl)
6867 {
6868         int i;
6869
6870         for (i = 0; i < bb->in_count; i++) {
6871                 MonoBasicBlock *ib = bb->in_bb [i];
6872                 if (ib == orig) {
6873                         if (!repl) {
6874                                 if (bb->in_count > 1) {
6875                                         bb->in_bb [i] = bb->in_bb [bb->in_count - 1];
6876                                 }
6877                                 bb->in_count--;
6878                         } else {
6879                                 bb->in_bb [i] = repl;
6880                         }
6881                 }
6882         }
6883 }
6884
6885 static void 
6886 replace_basic_block (MonoBasicBlock *bb, MonoBasicBlock *orig,  MonoBasicBlock *repl)
6887 {
6888         int i, j;
6889
6890         for (i = 0; i < bb->out_count; i++) {
6891                 MonoBasicBlock *ob = bb->out_bb [i];
6892                 for (j = 0; j < ob->in_count; j++) {
6893                         if (ob->in_bb [j] == orig) {
6894                                 ob->in_bb [j] = repl;
6895                         }
6896                 }
6897         }
6898
6899 }
6900
6901
6902 static void
6903 merge_basic_blocks (MonoBasicBlock *bb, MonoBasicBlock *bbn) 
6904 {
6905         bb->out_count = bbn->out_count;
6906         bb->out_bb = bbn->out_bb;
6907
6908         replace_basic_block (bb, bbn, bb);
6909
6910         if (bb->last_ins) {
6911                 if (bbn->code) {
6912                         bb->last_ins->next = bbn->code;
6913                         bb->last_ins = bbn->last_ins;
6914                 }
6915         } else {
6916                 bb->code = bbn->code;
6917                 bb->last_ins = bbn->last_ins;
6918         }
6919         bb->next_bb = bbn->next_bb;
6920         nullify_basic_block (bbn);
6921 }
6922
6923 /*
6924  * Optimizes the branches on the Control Flow Graph
6925  *
6926  */
6927 static void
6928 optimize_branches (MonoCompile *cfg)
6929 {
6930         int i, changed = FALSE;
6931         MonoBasicBlock *bb, *bbn;
6932         guint32 niterations;
6933
6934         /*
6935          * Some crazy loops could cause the code below to go into an infinite
6936          * loop, see bug #53003 for an example. To prevent this, we put an upper
6937          * bound on the number of iterations.
6938          */
6939         niterations = 1000;
6940         do {
6941                 changed = FALSE;
6942                 niterations --;
6943
6944                 /* we skip the entry block (exit is handled specially instead ) */
6945                 for (bb = cfg->bb_entry->next_bb; bb; bb = bb->next_bb) {
6946
6947                         /* dont touch code inside exception clauses */
6948                         if (bb->region != -1)
6949                                 continue;
6950
6951                         if ((bbn = bb->next_bb) && bbn->in_count == 0 && bb->region == bbn->region) {
6952                                 if (cfg->verbose_level > 2)
6953                                         g_print ("nullify block triggered %d\n", bbn->block_num);
6954
6955                                 bb->next_bb = bbn->next_bb;
6956
6957                                 for (i = 0; i < bbn->out_count; i++)
6958                                         replace_in_block (bbn->out_bb [i], bbn, NULL);
6959
6960                                 nullify_basic_block (bbn);                      
6961                                 changed = TRUE;
6962                         }
6963
6964                         if (bb->out_count == 1) {
6965                                 bbn = bb->out_bb [0];
6966
6967                                 /* conditional branches where true and false targets are the same can be also replaced with CEE_BR */
6968                                 if (bb->last_ins && MONO_IS_COND_BRANCH_OP (bb->last_ins)) {
6969                                         bb->last_ins->opcode = CEE_BR;
6970                                         bb->last_ins->inst_target_bb = bb->last_ins->inst_true_bb;
6971                                         changed = TRUE;
6972                                         if (cfg->verbose_level > 2)
6973                                                 g_print ("cond branch removal triggered in %d %d\n", bb->block_num, bb->out_count);
6974                                 }
6975
6976                                 if (bb->region == bbn->region && bb->next_bb == bbn) {
6977                                         /* the block are in sequence anyway ... */
6978
6979                                         /* branches to the following block can be removed */
6980                                         if (bb->last_ins && bb->last_ins->opcode == CEE_BR) {
6981                                                 bb->last_ins->opcode = CEE_NOP;
6982                                                 changed = TRUE;
6983                                                 if (cfg->verbose_level > 2)
6984                                                         g_print ("br removal triggered %d -> %d\n", bb->block_num, bbn->block_num);
6985                                         }
6986
6987                                         if (bbn->in_count == 1) {
6988
6989                                                 if (bbn != cfg->bb_exit) {
6990                                                         if (cfg->verbose_level > 2)
6991                                                                 g_print ("block merge triggered %d -> %d\n", bb->block_num, bbn->block_num);
6992                                                         merge_basic_blocks (bb, bbn);
6993                                                         changed = TRUE;
6994                                                 }
6995
6996                                                 //mono_print_bb_code (bb);
6997                                         }
6998                                 }                               
6999                         }
7000                 }
7001         } while (changed && (niterations > 0));
7002
7003         niterations = 1000;
7004         do {
7005                 changed = FALSE;
7006                 niterations --;
7007
7008                 /* we skip the entry block (exit is handled specially instead ) */
7009                 for (bb = cfg->bb_entry->next_bb; bb; bb = bb->next_bb) {
7010
7011                         /* dont touch code inside exception clauses */
7012                         if (bb->region != -1)
7013                                 continue;
7014
7015                         if ((bbn = bb->next_bb) && bbn->in_count == 0 && bb->region == bbn->region) {
7016                                 if (cfg->verbose_level > 2) {
7017                                         g_print ("nullify block triggered %d\n", bbn->block_num);
7018                                 }
7019                                 bb->next_bb = bbn->next_bb;
7020
7021                                 for (i = 0; i < bbn->out_count; i++)
7022                                         replace_in_block (bbn->out_bb [i], bbn, NULL);
7023
7024                                 nullify_basic_block (bbn);                      
7025                                 changed = TRUE;
7026                                 break;
7027                         }
7028
7029
7030                         if (bb->out_count == 1) {
7031                                 bbn = bb->out_bb [0];
7032
7033                                 if (bb->last_ins && bb->last_ins->opcode == CEE_BR) {
7034                                         bbn = bb->last_ins->inst_target_bb;
7035                                         if (bb->region == bbn->region && bbn->code && bbn->code->opcode == CEE_BR &&
7036                                             bbn->code->inst_target_bb->region == bb->region) {
7037                                                 
7038                                                 if (cfg->verbose_level > 2)
7039                                                         g_print ("in %s branch to branch triggered %d -> %d\n", cfg->method->name, 
7040                                                                  bb->block_num, bbn->block_num);
7041                                                 
7042                                                 replace_basic_block (bb, bb->out_bb [0], bbn->code->inst_target_bb);
7043                                                 bb->last_ins->inst_target_bb = bbn->code->inst_target_bb;
7044                                                 changed = TRUE;
7045                                                 break;
7046                                         }
7047                                 }
7048                         } else if (bb->out_count == 2) {
7049                                 if (bb->last_ins && MONO_IS_COND_BRANCH_NOFP (bb->last_ins)) {
7050                                         bbn = bb->last_ins->inst_true_bb;
7051                                         if (bb->region == bbn->region && bbn->code && bbn->code->opcode == CEE_BR &&
7052                                             bbn->code->inst_target_bb->region == bb->region) {
7053                                                 if (cfg->verbose_level > 2)             
7054                                                         g_print ("cbranch1 to branch triggered %d -> (%d) %d (0x%02x)\n", 
7055                                                                  bb->block_num, bbn->block_num, bbn->code->inst_target_bb->block_num, 
7056                                                                  bbn->code->opcode);
7057
7058                                                 bb->last_ins->inst_true_bb = bbn->code->inst_target_bb;
7059
7060                                                 replace_in_block (bbn, bb, NULL);
7061                                                 if (!bbn->in_count)
7062                                                         replace_in_block (bbn->code->inst_target_bb, bbn, bb);
7063                                                 replace_out_block (bb, bbn, bbn->code->inst_target_bb);
7064
7065                                                 link_bblock (cfg, bb, bbn->code->inst_target_bb);
7066
7067                                                 changed = TRUE;
7068                                                 break;
7069                                         }
7070
7071                                         bbn = bb->last_ins->inst_false_bb;
7072                                         if (bb->region == bbn->region && bbn->code && bbn->code->opcode == CEE_BR &&
7073                                             bbn->code->inst_target_bb->region == bb->region) {
7074                                                 if (cfg->verbose_level > 2)
7075                                                         g_print ("cbranch2 to branch triggered %d -> (%d) %d (0x%02x)\n", 
7076                                                                  bb->block_num, bbn->block_num, bbn->code->inst_target_bb->block_num, 
7077                                                                  bbn->code->opcode);
7078
7079                                                 bb->last_ins->inst_false_bb = bbn->code->inst_target_bb;
7080
7081                                                 replace_in_block (bbn, bb, NULL);
7082                                                 if (!bbn->in_count)
7083                                                         replace_in_block (bbn->code->inst_target_bb, bbn, bb);
7084                                                 replace_out_block (bb, bbn, bbn->code->inst_target_bb);
7085
7086                                                 link_bblock (cfg, bb, bbn->code->inst_target_bb);
7087
7088                                                 changed = TRUE;
7089                                                 break;
7090                                         }
7091                                 }
7092                         }
7093                 }
7094         } while (changed && (niterations > 0));
7095
7096 }
7097
7098 static void
7099 mono_compile_create_vars (MonoCompile *cfg)
7100 {
7101         MonoMethodSignature *sig;
7102         MonoMethodHeader *header;
7103         int i;
7104
7105         header = ((MonoMethodNormal *)cfg->method)->header;
7106
7107         sig = cfg->method->signature;
7108         
7109         if (!MONO_TYPE_IS_VOID (sig->ret)) {
7110                 cfg->ret = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst));
7111                 cfg->ret->opcode = OP_RETARG;
7112                 cfg->ret->inst_vtype = sig->ret;
7113                 cfg->ret->klass = mono_class_from_mono_type (sig->ret);
7114         }
7115         if (cfg->verbose_level > 2)
7116                 g_print ("creating vars\n");
7117
7118         if (sig->hasthis)
7119                 mono_compile_create_var (cfg, &cfg->method->klass->this_arg, OP_ARG);
7120
7121         for (i = 0; i < sig->param_count; ++i)
7122                 mono_compile_create_var (cfg, sig->params [i], OP_ARG);
7123
7124         cfg->locals_start = cfg->num_varinfo;
7125
7126         if (cfg->verbose_level > 2)
7127                 g_print ("creating locals\n");
7128         for (i = 0; i < header->num_locals; ++i)
7129                 mono_compile_create_var (cfg, header->locals [i], OP_LOCAL);
7130         if (cfg->verbose_level > 2)
7131                 g_print ("locals done\n");
7132 }
7133
7134 void
7135 mono_print_code (MonoCompile *cfg)
7136 {
7137         MonoBasicBlock *bb;
7138         
7139         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
7140                 MonoInst *tree = bb->code;      
7141
7142                 if (!tree)
7143                         continue;
7144                 
7145                 g_print ("CODE BLOCK %d (nesting %d):\n", bb->block_num, bb->nesting);
7146
7147                 for (; tree; tree = tree->next) {
7148                         mono_print_tree (tree);
7149                         g_print ("\n");
7150                 }
7151
7152                 if (bb->last_ins)
7153                         bb->last_ins->next = NULL;
7154         }
7155 }
7156
7157 extern const char * const mono_burg_rule_string [];
7158
7159 static void
7160 emit_state (MonoCompile *cfg, MBState *state, int goal)
7161 {
7162         MBState *kids [10];
7163         int ern = mono_burg_rule (state, goal);
7164         const guint16 *nts = mono_burg_nts [ern];
7165         MBEmitFunc emit;
7166
7167         //g_print ("rule: %s\n", mono_burg_rule_string [ern]);
7168         switch (goal) {
7169         case MB_NTERM_reg:
7170                 //if (state->reg2)
7171                 //      state->reg1 = state->reg2; /* chain rule */
7172                 //else
7173                 state->reg1 = mono_regstate_next_int (cfg->rs);
7174                 //g_print ("alloc symbolic R%d (reg2: R%d) in block %d\n", state->reg1, state->reg2, cfg->cbb->block_num);
7175                 break;
7176         case MB_NTERM_lreg:
7177                 state->reg1 = mono_regstate_next_int (cfg->rs);
7178                 state->reg2 = mono_regstate_next_int (cfg->rs);
7179                 break;
7180         case MB_NTERM_freg:
7181                 state->reg1 = mono_regstate_next_float (cfg->rs);
7182                 break;
7183         default:
7184                 /* do nothing */
7185                 break;
7186         }
7187         if (nts [0]) {
7188                 mono_burg_kids (state, ern, kids);
7189
7190                 emit_state (cfg, kids [0], nts [0]);
7191                 if (nts [1]) {
7192                         emit_state (cfg, kids [1], nts [1]);
7193                         if (nts [2]) {
7194                                 g_assert (!nts [3]);
7195                                 emit_state (cfg, kids [2], nts [2]);
7196                         }
7197                 }
7198         }
7199
7200 //      g_print ("emit: %s (%p)\n", mono_burg_rule_string [ern], state);
7201         if ((emit = mono_burg_func [ern]))
7202                 emit (state, state->tree, cfg); 
7203 }
7204
7205 #define DEBUG_SELECTION
7206
7207 static void 
7208 mini_select_instructions (MonoCompile *cfg)
7209 {
7210         static const int reverse_map [] = {
7211                 CEE_BNE_UN, CEE_BLT, CEE_BLE, CEE_BGT, CEE_BGE,
7212                 CEE_BEQ, CEE_BLT_UN, CEE_BLE_UN, CEE_BGT_UN, CEE_BGE_UN
7213         };
7214         static const int reverse_fmap [] = {
7215                 OP_FBNE_UN, OP_FBLT, OP_FBLE, OP_FBGT, OP_FBGE,
7216                 OP_FBEQ, OP_FBLT_UN, OP_FBLE_UN, OP_FBGT_UN, OP_FBGE_UN
7217         };
7218         static const int reverse_lmap [] = {
7219                 OP_LBNE_UN, OP_LBLT, OP_LBLE, OP_LBGT, OP_LBGE,
7220                 OP_LBEQ, OP_LBLT_UN, OP_LBLE_UN, OP_LBGT_UN, OP_LBGE_UN
7221         };
7222
7223         MonoBasicBlock *bb;
7224         
7225         cfg->state_pool = mono_mempool_new ();
7226         cfg->rs = mono_regstate_new ();
7227
7228         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
7229                 if (bb->last_ins && MONO_IS_COND_BRANCH_OP (bb->last_ins) &&
7230                     bb->next_bb != bb->last_ins->inst_false_bb) {
7231
7232                         /* we are careful when inverting, since bugs like #59580
7233                          * could show up when dealing with NaNs.
7234                          */
7235                         if (MONO_IS_COND_BRANCH_NOFP(bb->last_ins) && bb->next_bb == bb->last_ins->inst_true_bb) {
7236                                 MonoBasicBlock *tmp =  bb->last_ins->inst_true_bb;
7237                                 bb->last_ins->inst_true_bb = bb->last_ins->inst_false_bb;
7238                                 bb->last_ins->inst_false_bb = tmp;
7239                                 
7240                                 if (bb->last_ins->opcode >= CEE_BEQ && bb->last_ins->opcode <= CEE_BLT_UN) {
7241                                         bb->last_ins->opcode = reverse_map [bb->last_ins->opcode - CEE_BEQ];
7242                                 } else if (bb->last_ins->opcode >= OP_FBEQ && bb->last_ins->opcode <= OP_FBLT_UN) {
7243                                         bb->last_ins->opcode = reverse_fmap [bb->last_ins->opcode - OP_FBEQ];
7244                                 } else if (bb->last_ins->opcode >= OP_LBEQ && bb->last_ins->opcode <= OP_LBLT_UN) {
7245                                         bb->last_ins->opcode = reverse_lmap [bb->last_ins->opcode - OP_LBEQ];
7246                                 }
7247                         } else {                        
7248                                 MonoInst *inst = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst));
7249                                 inst->opcode = CEE_BR;
7250                                 inst->inst_target_bb = bb->last_ins->inst_false_bb;
7251                                 mono_bblock_add_inst (bb, inst);
7252                         }
7253                 }
7254         }
7255
7256 #ifdef DEBUG_SELECTION
7257         if (cfg->verbose_level >= 4) {
7258         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
7259                 MonoInst *tree = bb->code;      
7260                 g_print ("DUMP BLOCK %d:\n", bb->block_num);
7261                 if (!tree)
7262                         continue;
7263                 for (; tree; tree = tree->next) {
7264                         mono_print_tree (tree);
7265                         g_print ("\n");
7266                 }
7267         }
7268         }
7269 #endif
7270
7271         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
7272                 MonoInst *tree = bb->code, *next;       
7273                 MBState *mbstate;
7274
7275                 if (!tree)
7276                         continue;
7277                 bb->code = NULL;
7278                 bb->last_ins = NULL;
7279                 
7280                 cfg->cbb = bb;
7281                 mono_regstate_reset (cfg->rs);
7282
7283 #ifdef DEBUG_SELECTION
7284                 if (cfg->verbose_level >= 3)
7285                         g_print ("LABEL BLOCK %d:\n", bb->block_num);
7286 #endif
7287                 for (; tree; tree = next) {
7288                         next = tree->next;
7289 #ifdef DEBUG_SELECTION
7290                         if (cfg->verbose_level >= 3) {
7291                                 mono_print_tree (tree);
7292                                 g_print ("\n");
7293                         }
7294 #endif
7295
7296                         if (!(mbstate = mono_burg_label (tree, cfg))) {
7297                                 g_warning ("unable to label tree %p", tree);
7298                                 mono_print_tree (tree);
7299                                 g_print ("\n");                         
7300                                 g_assert_not_reached ();
7301                         }
7302                         emit_state (cfg, mbstate, MB_NTERM_stmt);
7303                 }
7304                 bb->max_ireg = cfg->rs->next_vireg;
7305                 bb->max_freg = cfg->rs->next_vfreg;
7306
7307                 if (bb->last_ins)
7308                         bb->last_ins->next = NULL;
7309
7310                 mono_mempool_empty (cfg->state_pool); 
7311         }
7312         mono_mempool_destroy (cfg->state_pool); 
7313 }
7314
7315 void
7316 mono_codegen (MonoCompile *cfg)
7317 {
7318         MonoJumpInfo *patch_info;
7319         MonoBasicBlock *bb;
7320         int i, max_epilog_size;
7321         guint8 *code;
7322
7323         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
7324                 cfg->spill_count = 0;
7325                 /* we reuse dfn here */
7326                 /* bb->dfn = bb_count++; */
7327                 mono_arch_local_regalloc (cfg, bb);
7328         }
7329
7330         if (cfg->prof_options & MONO_PROFILE_COVERAGE)
7331                 cfg->coverage_info = mono_profiler_coverage_alloc (cfg->method, cfg->num_bblocks);
7332
7333         code = mono_arch_emit_prolog (cfg);
7334
7335         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
7336                 code = mono_arch_instrument_prolog (cfg, mono_profiler_method_enter, code, FALSE);
7337
7338         cfg->code_len = code - cfg->native_code;
7339         cfg->prolog_end = cfg->code_len;
7340
7341         mono_debug_open_method (cfg);
7342
7343         /* emit code all basic blocks */
7344         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
7345                 bb->native_offset = cfg->code_len;
7346                 mono_arch_output_basic_block (cfg, bb);
7347         }
7348         cfg->bb_exit->native_offset = cfg->code_len;
7349
7350         code = cfg->native_code + cfg->code_len;
7351
7352         max_epilog_size = mono_arch_max_epilog_size (cfg);
7353
7354         /* we always allocate code in cfg->domain->code_mp to increase locality */
7355         cfg->code_size = cfg->code_len + max_epilog_size;
7356         /* fixme: align to MONO_ARCH_CODE_ALIGNMENT */
7357
7358         mono_domain_lock (cfg->domain);
7359         code = mono_code_manager_reserve (cfg->domain->code_mp, cfg->code_size);
7360         mono_domain_unlock (cfg->domain);
7361
7362         memcpy (code, cfg->native_code, cfg->code_len);
7363         g_free (cfg->native_code);
7364         cfg->native_code = code;
7365         code = cfg->native_code + cfg->code_len;
7366   
7367         /* g_assert (((int)cfg->native_code & (MONO_ARCH_CODE_ALIGNMENT - 1)) == 0); */
7368
7369         cfg->epilog_begin = cfg->code_len;
7370
7371         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
7372                 code = mono_arch_instrument_epilog (cfg, mono_profiler_method_leave, code, FALSE);
7373
7374         cfg->code_len = code - cfg->native_code;
7375
7376         mono_arch_emit_epilog (cfg);
7377
7378         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
7379                 switch (patch_info->type) {
7380                 case MONO_PATCH_INFO_ABS: {
7381                         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (patch_info->data.target);
7382                         if (info) {
7383                                 //printf ("TEST %s %p\n", info->name, patch_info->data.target);
7384                                 if ((cfg->method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) && 
7385                                         strstr (cfg->method->name, info->name))
7386                                         /*
7387                                          * This is an icall wrapper, and this is a call to the
7388                                          * wrapped function.
7389                                          */
7390                                         ;
7391                                 else {
7392                                         patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
7393                                         patch_info->data.name = info->name;
7394                                 }
7395                         }
7396                         else {
7397                                 MonoVTable *vtable = mono_find_class_init_trampoline_by_addr (patch_info->data.target);
7398                                 if (vtable) {
7399                                         patch_info->type = MONO_PATCH_INFO_CLASS_INIT;
7400                                         patch_info->data.klass = vtable->klass;
7401                                 }
7402                         }
7403                         break;
7404                 }
7405                 case MONO_PATCH_INFO_SWITCH: {
7406                         gpointer *table;
7407                         mono_domain_lock (cfg->domain);
7408                         table = mono_code_manager_reserve (cfg->domain->code_mp, sizeof (gpointer) * patch_info->table_size);
7409                         mono_domain_unlock (cfg->domain);
7410                 
7411                         patch_info->ip.i = patch_info->ip.label->inst_c0;
7412                         for (i = 0; i < patch_info->table_size; i++) {
7413                                 table [i] = (gpointer)patch_info->data.table [i]->native_offset;
7414                         }
7415                         patch_info->data.target = table;
7416                         break;
7417                 }
7418                 default:
7419                         /* do nothing */
7420                         break;
7421                 }
7422         }
7423        
7424         if (cfg->verbose_level > 0)
7425                 g_print ("Method %s emitted at %p to %p [%s]\n", 
7426                                  mono_method_full_name (cfg->method, TRUE), 
7427                                  cfg->native_code, cfg->native_code + cfg->code_len, cfg->domain->friendly_name);
7428
7429         mono_arch_patch_code (cfg->method, cfg->domain, cfg->native_code, cfg->patch_info, cfg->run_cctors);
7430
7431         mono_domain_lock (cfg->domain);
7432         mono_code_manager_commit (cfg->domain->code_mp, cfg->native_code, cfg->code_size, cfg->code_len);
7433         mono_domain_unlock (cfg->domain);
7434         
7435         mono_arch_flush_icache (cfg->native_code, cfg->code_len);
7436
7437         mono_debug_close_method (cfg);
7438 }
7439
7440 static void
7441 mono_cprop_copy_values (MonoCompile *cfg, MonoInst *tree, MonoInst **acp)
7442 {
7443         MonoInst *cp;
7444         int arity;
7445
7446         if (tree->ssa_op == MONO_SSA_LOAD && (tree->inst_i0->opcode == OP_LOCAL || tree->inst_i0->opcode == OP_ARG) && 
7447             (cp = acp [tree->inst_i0->inst_c0]) && !tree->inst_i0->flags) {
7448
7449                 if (cp->opcode == OP_ICONST) {
7450                         if (cfg->opt & MONO_OPT_CONSPROP) {
7451                                 //{ static int c = 0; printf ("CCOPY %d %d %s\n", c++, cp->inst_c0, mono_method_full_name (cfg->method, TRUE)); }
7452                                 *tree = *cp;
7453                         }
7454                 } else {
7455                         if (tree->inst_i0->inst_vtype->type == cp->inst_vtype->type) {
7456                                 if (cfg->opt & MONO_OPT_COPYPROP) {
7457                                         //{ static int c = 0; printf ("VCOPY %d\n", ++c); }
7458                                         tree->inst_i0 = cp;
7459                                 } 
7460                         }
7461                 } 
7462         } else {
7463                 arity = mono_burg_arity [tree->opcode];
7464
7465                 if (arity) {
7466                         mono_cprop_copy_values (cfg, tree->inst_i0, acp);
7467                         if (cfg->opt & MONO_OPT_CFOLD)
7468                                 mono_constant_fold_inst (tree, NULL); 
7469                         /* The opcode may have changed */
7470                         if (mono_burg_arity [tree->opcode] > 1) {
7471                                 mono_cprop_copy_values (cfg, tree->inst_i1, acp);
7472                                 if (cfg->opt & MONO_OPT_CFOLD)
7473                                         mono_constant_fold_inst (tree, NULL); 
7474                         }
7475                         mono_constant_fold_inst (tree, NULL); 
7476                 }
7477         }
7478 }
7479
7480 static void
7481 mono_cprop_invalidate_values (MonoInst *tree, MonoInst **acp, int acp_size)
7482 {
7483         int arity;
7484
7485         switch (tree->opcode) {
7486         case CEE_STIND_I:
7487         case CEE_STIND_I1:
7488         case CEE_STIND_I2:
7489         case CEE_STIND_I4:
7490         case CEE_STIND_REF:
7491         case CEE_STIND_I8:
7492         case CEE_STIND_R4:
7493         case CEE_STIND_R8:
7494         case CEE_STOBJ:
7495                 if (tree->ssa_op == MONO_SSA_NOP) {
7496                         memset (acp, 0, sizeof (MonoInst *) * acp_size);
7497                         return;
7498                 }
7499
7500                 break;
7501         case CEE_CALL:
7502         case OP_CALL_REG:
7503         case CEE_CALLVIRT:
7504         case OP_LCALL_REG:
7505         case OP_LCALLVIRT:
7506         case OP_LCALL:
7507         case OP_FCALL_REG:
7508         case OP_FCALLVIRT:
7509         case OP_FCALL:
7510         case OP_VCALL_REG:
7511         case OP_VCALLVIRT:
7512         case OP_VCALL:
7513         case OP_VOIDCALL_REG:
7514         case OP_VOIDCALLVIRT:
7515         case OP_VOIDCALL: {
7516                 MonoCallInst *call = (MonoCallInst *)tree;
7517                 MonoMethodSignature *sig = call->signature;
7518                 int i, byref = FALSE;
7519
7520                 for (i = 0; i < sig->param_count; i++) {
7521                         if (sig->params [i]->byref) {
7522                                 byref = TRUE;
7523                                 break;
7524                         }
7525                 }
7526
7527                 if (byref)
7528                         memset (acp, 0, sizeof (MonoInst *) * acp_size);
7529
7530                 return;
7531         }
7532         default:
7533                 break;
7534         }
7535
7536         arity = mono_burg_arity [tree->opcode];
7537
7538         switch (arity) {
7539         case 0:
7540                 break;
7541         case 1:
7542                 mono_cprop_invalidate_values (tree->inst_i0, acp, acp_size);
7543                 break;
7544         case 2:
7545                 mono_cprop_invalidate_values (tree->inst_i0, acp, acp_size);
7546                 mono_cprop_invalidate_values (tree->inst_i1, acp, acp_size);
7547                 break;
7548         default:
7549                 g_assert_not_reached ();
7550         }
7551 }
7552
7553 static void
7554 mono_local_cprop_bb (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **acp, int acp_size)
7555 {
7556         MonoInst *tree = bb->code;      
7557         int i;
7558
7559         if (!tree)
7560                 return;
7561
7562         for (; tree; tree = tree->next) {
7563
7564                 mono_cprop_copy_values (cfg, tree, acp);
7565
7566                 mono_cprop_invalidate_values (tree, acp, acp_size);
7567
7568                 if (tree->ssa_op == MONO_SSA_STORE  && 
7569                     (tree->inst_i0->opcode == OP_LOCAL || tree->inst_i0->opcode == OP_ARG)) {
7570                         MonoInst *i1 = tree->inst_i1;
7571
7572                         acp [tree->inst_i0->inst_c0] = NULL;
7573
7574                         for (i = 0; i < acp_size; i++) {
7575                                 if (acp [i] && acp [i]->opcode != OP_ICONST && 
7576                                     acp [i]->inst_c0 == tree->inst_i0->inst_c0) {
7577                                         acp [i] = NULL;
7578                                 }
7579                         }
7580
7581                         if (i1->opcode == OP_ICONST) {
7582                                 acp [tree->inst_i0->inst_c0] = i1;
7583                                 //printf ("DEF1 BB%d %d\n", bb->block_num,tree->inst_i0->inst_c0);
7584                         }
7585                         if (i1->ssa_op == MONO_SSA_LOAD && 
7586                             (i1->inst_i0->opcode == OP_LOCAL || i1->inst_i0->opcode == OP_ARG) &&
7587                             (i1->inst_i0->inst_c0 != tree->inst_i0->inst_c0)) {
7588                                 acp [tree->inst_i0->inst_c0] = i1->inst_i0;
7589                                 //printf ("DEF2 BB%d %d %d\n", bb->block_num,tree->inst_i0->inst_c0,i1->inst_i0->inst_c0);
7590                         }
7591                 }
7592
7593                 /*
7594                   if (tree->opcode == CEE_BEQ) {
7595                   g_assert (tree->inst_i0->opcode == OP_COMPARE);
7596                   if (tree->inst_i0->inst_i0->opcode == OP_ICONST &&
7597                   tree->inst_i0->inst_i1->opcode == OP_ICONST) {
7598                   
7599                   tree->opcode = CEE_BR;
7600                   if (tree->inst_i0->inst_i0->opcode == tree->inst_i0->inst_i1->opcode) {
7601                   tree->inst_target_bb = tree->inst_true_bb;
7602                   } else {
7603                   tree->inst_target_bb = tree->inst_false_bb;
7604                   }
7605                   }
7606                   }
7607                 */
7608         }
7609 }
7610
7611 static void
7612 mono_local_cprop (MonoCompile *cfg)
7613 {
7614         MonoBasicBlock *bb;
7615         MonoInst **acp;
7616
7617         acp = alloca (sizeof (MonoInst *) * cfg->num_varinfo);
7618
7619         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
7620                 memset (acp, 0, sizeof (MonoInst *) * cfg->num_varinfo);
7621                 mono_local_cprop_bb (cfg, bb, acp, cfg->num_varinfo);
7622         }
7623 }
7624
7625 MonoCompile*
7626 mini_method_compile (MonoMethod *method, guint32 opts, MonoDomain *domain, gboolean run_cctors, int parts)
7627 {
7628         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
7629         guint8 *ip = (guint8 *)header->code;
7630         MonoCompile *cfg;
7631         MonoJitInfo *jinfo;
7632         int dfn = 0, i, code_size_ratio;
7633
7634         mono_jit_stats.methods_compiled++;
7635         if (mono_profiler_get_events () & MONO_PROFILE_JIT_COMPILATION)
7636                 mono_profiler_method_jit (method);
7637
7638         cfg = g_new0 (MonoCompile, 1);
7639         cfg->method = method;
7640         cfg->mempool = mono_mempool_new ();
7641         cfg->opt = opts;
7642         cfg->prof_options = mono_profiler_get_events ();
7643         cfg->run_cctors = run_cctors;
7644         cfg->bb_hash = g_hash_table_new (NULL, NULL);
7645         cfg->domain = domain;
7646         cfg->verbose_level = mini_verbose;
7647         cfg->intvars = mono_mempool_alloc0 (cfg->mempool, sizeof (guint16) * STACK_MAX * 
7648                                             ((MonoMethodNormal *)method)->header->max_stack);
7649
7650         if (cfg->verbose_level > 2)
7651                 g_print ("converting method %s\n", mono_method_full_name (method, TRUE));
7652
7653         /*
7654          * create MonoInst* which represents arguments and local variables
7655          */
7656         mono_compile_create_vars (cfg);
7657
7658         if ((i = mono_method_to_ir (cfg, method, NULL, NULL, cfg->locals_start, NULL, NULL, NULL, 0, FALSE)) < 0) {
7659                 if (cfg->prof_options & MONO_PROFILE_JIT_COMPILATION)
7660                         mono_profiler_method_end_jit (method, MONO_PROFILE_FAILED);
7661                 mono_destroy_compile (cfg);
7662                 return NULL;
7663         }
7664
7665         mono_jit_stats.basic_blocks += cfg->num_bblocks;
7666         mono_jit_stats.max_basic_blocks = MAX (cfg->num_bblocks, mono_jit_stats.max_basic_blocks);
7667
7668         if (cfg->num_varinfo > 2000) {
7669                 /* 
7670                  * we disable some optimizations if there are too many variables
7671                  * because JIT time may become too expensive. The actual number needs 
7672                  * to be tweaked and eventually the non-linear algorithms should be fixed.
7673                  */
7674                 cfg->opt &= ~ (MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP);
7675                 cfg->disable_ssa = TRUE;
7676         }
7677         /*g_print ("numblocks = %d\n", cfg->num_bblocks);*/
7678
7679         /* Depth-first ordering on basic blocks */
7680         cfg->bblocks = mono_mempool_alloc (cfg->mempool, sizeof (MonoBasicBlock*) * (cfg->num_bblocks + 1));
7681
7682         if (cfg->opt & MONO_OPT_BRANCH)
7683                 optimize_branches (cfg);
7684
7685         df_visit (cfg->bb_entry, &dfn, cfg->bblocks);
7686         if (cfg->num_bblocks != dfn + 1) {
7687                 MonoBasicBlock *bb;
7688
7689                 cfg->num_bblocks = dfn + 1;
7690
7691                 if (!header->clauses) {
7692                         /* remove unreachable code, because the code in them may be 
7693                          * inconsistent  (access to dead variables for example) */
7694                         for (bb = cfg->bb_entry; bb;) {
7695                                 MonoBasicBlock *bbn = bb->next_bb;
7696
7697                                 if (bbn && bbn->region == -1 && !bbn->dfn) {
7698                                         if (cfg->verbose_level > 1)
7699                                                 g_print ("found unreachabel code in BB%d\n", bbn->block_num);
7700                                         bb->next_bb = bbn->next_bb;
7701                                         nullify_basic_block (bbn);                      
7702                                 } else {
7703                                         bb = bb->next_bb;
7704                                 }
7705                         }
7706                 }
7707         }
7708
7709         if (cfg->opt & MONO_OPT_LOOP) {
7710                 mono_compile_dominator_info (cfg, MONO_COMP_DOM | MONO_COMP_IDOM);
7711                 mono_compute_natural_loops (cfg);
7712         }
7713
7714         /* after method_to_ir */
7715         if (parts == 1)
7716                 return cfg;
7717
7718 //#define DEBUGSSA "logic_run"
7719 #define DEBUGSSA_CLASS "Tests"
7720 #ifdef DEBUGSSA
7721
7722         if (!header->num_clauses && !cfg->disable_ssa) {
7723                 mono_local_cprop (cfg);
7724                 mono_ssa_compute (cfg);
7725         }
7726 #else 
7727
7728         /* fixme: add all optimizations which requires SSA */
7729         if (cfg->opt & (MONO_OPT_DEADCE | MONO_OPT_ABCREM)) {
7730                 if (!(cfg->comp_done & MONO_COMP_SSA) && !header->num_clauses && !cfg->disable_ssa) {
7731                         mono_local_cprop (cfg);
7732                         mono_ssa_compute (cfg);
7733
7734                         if (cfg->verbose_level >= 2) {
7735                                 print_dfn (cfg);
7736                         }
7737                 }
7738         }
7739 #endif
7740
7741         /* after SSA translation */
7742         if (parts == 2)
7743                 return cfg;
7744
7745         if ((cfg->opt & MONO_OPT_CONSPROP) ||  (cfg->opt & MONO_OPT_COPYPROP)) {
7746                 if (cfg->comp_done & MONO_COMP_SSA) {
7747                         mono_ssa_cprop (cfg);
7748                 } else {
7749                         mono_local_cprop (cfg);
7750                 }
7751         }
7752
7753         if (cfg->comp_done & MONO_COMP_SSA) {                   
7754                 mono_ssa_deadce (cfg);
7755
7756                 //mono_ssa_strength_reduction (cfg);
7757
7758                 if ((cfg->flags & MONO_CFG_HAS_LDELEMA) && (cfg->opt & MONO_OPT_ABCREM))
7759                         mono_perform_abc_removal (cfg);
7760
7761                 mono_ssa_remove (cfg);
7762
7763                 if (cfg->opt & MONO_OPT_BRANCH)
7764                         optimize_branches (cfg);
7765         }
7766
7767         /* after SSA removal */
7768         if (parts == 3)
7769                 return cfg;
7770
7771         decompose_pass (cfg);
7772
7773         if (cfg->opt & MONO_OPT_LINEARS) {
7774                 GList *vars, *regs;
7775
7776                 /* fixme: maybe we can avoid to compute livenesss here if already computed ? */
7777                 cfg->comp_done &= ~MONO_COMP_LIVENESS;
7778                 if (!(cfg->comp_done & MONO_COMP_LIVENESS))
7779                         mono_analyze_liveness (cfg);
7780
7781                 if ((vars = mono_arch_get_allocatable_int_vars (cfg))) {
7782                         regs = mono_arch_get_global_int_regs (cfg);
7783                         mono_linear_scan (cfg, vars, regs, &cfg->used_int_regs);
7784                 }
7785         }
7786
7787         //mono_print_code (cfg);
7788
7789        //print_dfn (cfg);
7790         
7791         /* variables are allocated after decompose, since decompose could create temps */
7792         mono_arch_allocate_vars (cfg);
7793
7794         if (cfg->opt & MONO_OPT_CFOLD)
7795                 mono_constant_fold (cfg);
7796
7797         mini_select_instructions (cfg);
7798
7799         mono_codegen (cfg);
7800         if (cfg->verbose_level >= 2) {
7801                 char *id =  mono_method_full_name (cfg->method, FALSE);
7802                 mono_disassemble_code (cfg->native_code, cfg->code_len, id + 3);
7803                 g_free (id);
7804         }
7805         
7806         jinfo = mono_mempool_alloc0 (cfg->domain->mp, sizeof (MonoJitInfo));
7807
7808         jinfo = g_new0 (MonoJitInfo, 1);
7809         jinfo->method = method;
7810         jinfo->code_start = cfg->native_code;
7811         jinfo->code_size = cfg->code_len;
7812         jinfo->used_regs = cfg->used_int_regs;
7813         jinfo->domain_neutral = (cfg->opt & MONO_OPT_SHARED) != 0;
7814
7815         if (header->num_clauses) {
7816                 int i;
7817
7818                 jinfo->exvar_offset = cfg->exvar? cfg->exvar->inst_offset: 0;
7819                 jinfo->num_clauses = header->num_clauses;
7820                 jinfo->clauses = mono_mempool_alloc0 (cfg->domain->mp, 
7821                         sizeof (MonoJitExceptionInfo) * header->num_clauses);
7822
7823                 for (i = 0; i < header->num_clauses; i++) {
7824                         MonoExceptionClause *ec = &header->clauses [i];
7825                         MonoJitExceptionInfo *ei = &jinfo->clauses [i];
7826                         MonoBasicBlock *tblock;
7827
7828                         ei->flags = ec->flags;
7829
7830                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
7831                                 tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->token_or_filter);
7832                                 g_assert (tblock);
7833                                 ei->data.filter = cfg->native_code + tblock->native_offset;
7834                         } else {
7835                                 ei->data.token = ec->token_or_filter;
7836                         }
7837
7838                         tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->try_offset);
7839                         g_assert (tblock);
7840                         ei->try_start = cfg->native_code + tblock->native_offset;
7841                         g_assert (tblock->native_offset);
7842                         tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->try_offset + ec->try_len);
7843                         g_assert (tblock);
7844                         ei->try_end = cfg->native_code + tblock->native_offset;
7845                         g_assert (tblock->native_offset);
7846                         tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->handler_offset);
7847                         g_assert (tblock);
7848                         ei->handler_start = cfg->native_code + tblock->native_offset;
7849                 }
7850         }
7851
7852         cfg->jit_info = jinfo;
7853
7854         mono_jit_info_table_add (cfg->domain, jinfo);
7855
7856         /* collect statistics */
7857         mono_jit_stats.allocated_code_size += cfg->code_len;
7858         code_size_ratio = cfg->code_len;
7859         if (code_size_ratio > mono_jit_stats.biggest_method_size) {
7860                         mono_jit_stats.biggest_method_size = code_size_ratio;
7861                         mono_jit_stats.biggest_method = method;
7862         }
7863         code_size_ratio = (code_size_ratio * 100) / ((MonoMethodNormal *)method)->header->code_size;
7864         if (code_size_ratio > mono_jit_stats.max_code_size_ratio) {
7865                 mono_jit_stats.max_code_size_ratio = code_size_ratio;
7866                 mono_jit_stats.max_ratio_method = method;
7867         }
7868         mono_jit_stats.native_code_size += cfg->code_len;
7869
7870         if (cfg->prof_options & MONO_PROFILE_JIT_COMPILATION)
7871                 mono_profiler_method_end_jit (method, MONO_PROFILE_OK);
7872
7873         return cfg;
7874 }
7875
7876 static gpointer
7877 mono_jit_compile_method_inner (MonoMethod *method, MonoDomain *target_domain)
7878 {
7879         MonoCompile *cfg;
7880         GHashTable *jit_code_hash;
7881         gpointer code = NULL;
7882         guint32 opt;
7883         MonoJitInfo *info;
7884
7885         opt = default_opt;
7886
7887         jit_code_hash = target_domain->jit_code_hash;
7888
7889 #ifdef MONO_USE_AOT_COMPILER
7890         if (!mono_compile_aot && (opt & MONO_OPT_AOT)) {
7891                 MonoJitInfo *info;
7892                 MonoDomain *domain = mono_domain_get ();
7893
7894                 mono_domain_lock (domain);
7895
7896                 mono_class_init (method->klass);
7897                 if ((info = mono_aot_get_method (domain, method))) {
7898                         g_hash_table_insert (domain->jit_code_hash, method, info);
7899                         mono_domain_unlock (domain);
7900                         mono_runtime_class_init (mono_class_vtable (domain, method->klass));
7901                         return info->code_start;
7902                 }
7903
7904                 mono_domain_unlock (domain);
7905         }
7906 #endif
7907
7908         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
7909             (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
7910                 MonoMethod *nm;
7911
7912                 if (!method->addr) {
7913                         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
7914                                 method->addr = mono_lookup_internal_call (method);
7915                         else
7916                                 if (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)
7917                                         mono_lookup_pinvoke_call (method, NULL, NULL);
7918                 }
7919                         nm = mono_marshal_get_native_wrapper (method);
7920                         return mono_compile_method (nm);
7921
7922                         //if (mono_debug_format != MONO_DEBUG_FORMAT_NONE) 
7923                         //mono_debug_add_wrapper (method, nm);
7924         } else if ((method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME)) {
7925                 const char *name = method->name;
7926                 MonoMethod *nm;
7927
7928                 if (method->klass->parent == mono_defaults.multicastdelegate_class) {
7929                         if (*name == '.' && (strcmp (name, ".ctor") == 0)) {
7930                                 /* FIXME: uhm, we need a wrapper to handle exceptions? */
7931                                 return (gpointer)mono_delegate_ctor;
7932                         } else if (*name == 'I' && (strcmp (name, "Invoke") == 0)) {
7933                                 nm = mono_marshal_get_delegate_invoke (method);
7934                                 return mono_jit_compile_method (nm);
7935                         } else if (*name == 'B' && (strcmp (name, "BeginInvoke") == 0)) {
7936                                 nm = mono_marshal_get_delegate_begin_invoke (method);
7937                                 return mono_jit_compile_method (nm);
7938                         } else if (*name == 'E' && (strcmp (name, "EndInvoke") == 0)) {
7939                                 nm = mono_marshal_get_delegate_end_invoke (method);
7940                                 return mono_jit_compile_method (nm);
7941                         }
7942                 }
7943                 return NULL;
7944         }
7945
7946         cfg = mini_method_compile (method, opt, target_domain, TRUE, 0);
7947
7948         mono_domain_lock (target_domain);
7949
7950         /* Check if some other thread already did the job. In this case, we can
7951        discard the code this thread generated. */
7952
7953         if ((info = g_hash_table_lookup (target_domain->jit_code_hash, method))) {
7954                 /* We can't use a domain specific method in another domain */
7955                 if ((target_domain == mono_domain_get ()) || info->domain_neutral) {
7956                         code = info->code_start;
7957 //                      printf("Discarding code for method %s\n", method->name);
7958                 }
7959         }
7960         
7961         if (code == NULL) {
7962                 g_hash_table_insert (jit_code_hash, method, cfg->jit_info);
7963                 code = cfg->native_code;
7964         }
7965
7966         mono_destroy_compile (cfg);
7967
7968         if (target_domain->jump_target_hash) {
7969                 MonoJumpInfo patch_info;
7970                 GSList *list, *tmp;
7971                 list = g_hash_table_lookup (target_domain->jump_target_hash, method);
7972                 if (list) {
7973                         patch_info.next = NULL;
7974                         patch_info.ip.i = 0;
7975                         patch_info.type = MONO_PATCH_INFO_METHOD_JUMP;
7976                         patch_info.data.method = method;
7977                         g_hash_table_remove (target_domain->jump_target_hash, method);
7978                 }
7979                 for (tmp = list; tmp; tmp = tmp->next)
7980                         mono_arch_patch_code (NULL, target_domain, tmp->data, &patch_info, TRUE);
7981                 g_slist_free (list);
7982         }
7983
7984         mono_domain_unlock (target_domain);
7985
7986         mono_runtime_class_init (mono_class_vtable (target_domain, method->klass));
7987         return code;
7988 }
7989
7990 static gpointer
7991 mono_jit_compile_method_with_opt (MonoMethod *method, guint32 opt)
7992 {
7993         /* FIXME: later copy the code from mono */
7994         MonoDomain *target_domain, *domain = mono_domain_get ();
7995         MonoJitInfo *info;
7996         gpointer p;
7997
7998         if (opt & MONO_OPT_SHARED)
7999                 target_domain = mono_root_domain;
8000         else 
8001                 target_domain = domain;
8002
8003         mono_domain_lock (target_domain);
8004
8005         if ((info = g_hash_table_lookup (target_domain->jit_code_hash, method))) {
8006                 /* We can't use a domain specific method in another domain */
8007                 if (! ((domain != target_domain) && !info->domain_neutral)) {
8008                         mono_domain_unlock (target_domain);
8009                         mono_jit_stats.methods_lookups++;
8010                         mono_runtime_class_init (mono_class_vtable (domain, method->klass));
8011                         return info->code_start;
8012                 }
8013         }
8014
8015         mono_domain_unlock (target_domain);
8016         p = mono_jit_compile_method_inner (method, target_domain);
8017         return p;
8018 }
8019
8020 static gpointer
8021 mono_jit_compile_method (MonoMethod *method)
8022 {
8023         return mono_jit_compile_method_with_opt (method, default_opt);
8024 }
8025
8026 static gpointer
8027 mono_jit_find_compiled_method (MonoDomain *domain, MonoMethod *method)
8028 {
8029         MonoDomain *target_domain;
8030         MonoJitInfo *info;
8031
8032         if (default_opt & MONO_OPT_SHARED)
8033                 target_domain = mono_root_domain;
8034         else 
8035                 target_domain = domain;
8036
8037         mono_domain_lock (target_domain);
8038
8039         if ((info = g_hash_table_lookup (target_domain->jit_code_hash, method))) {
8040                 /* We can't use a domain specific method in another domain */
8041                 if (! ((domain != target_domain) && !info->domain_neutral)) {
8042                         mono_domain_unlock (target_domain);
8043                         mono_jit_stats.methods_lookups++;
8044                         return info->code_start;
8045                 }
8046         }
8047
8048         mono_domain_unlock (target_domain);
8049
8050         return NULL;
8051 }
8052
8053 /**
8054  * mono_jit_runtime_invoke:
8055  * @method: the method to invoke
8056  * @obj: this pointer
8057  * @params: array of parameter values.
8058  * @exc: used to catch exceptions objects
8059  */
8060 static MonoObject*
8061 mono_jit_runtime_invoke (MonoMethod *method, void *obj, void **params, MonoObject **exc)
8062 {
8063         MonoMethod *invoke;
8064         MonoObject *(*runtime_invoke) (MonoObject *this, void **params, MonoObject **exc, void* compiled_method);
8065         void* compiled_method;
8066
8067         if (obj == NULL && !(method->flags & METHOD_ATTRIBUTE_STATIC) && !method->string_ctor && (method->wrapper_type == 0)) {
8068                 g_warning ("Ignoring invocation of an instance method on a NULL instance.\n");
8069                 return NULL;
8070         }
8071
8072         invoke = mono_marshal_get_runtime_invoke (method);
8073         runtime_invoke = mono_jit_compile_method (invoke);
8074         
8075         /* We need this here becuase mono_marshal_get_runtime_invoke can be place 
8076          * the helper method in System.Object and not the target class
8077          */
8078         mono_runtime_class_init (mono_class_vtable (mono_domain_get (), method->klass));
8079
8080         compiled_method = mono_jit_compile_method (method);
8081         return runtime_invoke (obj, params, exc, compiled_method);
8082 }
8083
8084 #ifdef PLATFORM_WIN32
8085 #define GET_CONTEXT \
8086         struct sigcontext *ctx = (struct sigcontext*)_dummy;
8087 #else
8088 #ifdef __sparc
8089 #define GET_CONTEXT \
8090     void *ctx = context;
8091 #elif defined(__ppc__) || defined (__powerpc__) || defined (__s390__)
8092 #define GET_CONTEXT \
8093     void *ctx = context;
8094 #else
8095 #define GET_CONTEXT \
8096         void **_p = (void **)&_dummy; \
8097         struct sigcontext *ctx = (struct sigcontext *)++_p;
8098 #endif
8099 #endif
8100
8101 #ifdef MONO_ARCH_USE_SIGACTION
8102 #define SIG_HANDLER_SIGNATURE(ftn) ftn (int _dummy, siginfo_t *info, void *context)
8103 #else
8104 #define SIG_HANDLER_SIGNATURE(ftn) ftn (int _dummy)
8105 #endif
8106
8107 static void
8108 SIG_HANDLER_SIGNATURE (sigfpe_signal_handler)
8109 {
8110         MonoException *exc;
8111         GET_CONTEXT
8112
8113         exc = mono_get_exception_divide_by_zero ();
8114         
8115         mono_arch_handle_exception (ctx, exc, FALSE);
8116 }
8117
8118 static void
8119 SIG_HANDLER_SIGNATURE (sigill_signal_handler)
8120 {
8121         MonoException *exc;
8122         GET_CONTEXT
8123         exc = mono_get_exception_execution_engine ("SIGILL");
8124         
8125         mono_arch_handle_exception (ctx, exc, FALSE);
8126 }
8127
8128 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
8129
8130 static void
8131 sigsegv_signal_handler (int _dummy, siginfo_t *info, void *context)
8132 {
8133         MonoException *exc;
8134         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
8135         struct sigcontext *ctx = (struct sigcontext *)&(((ucontext_t*)context)->uc_mcontext);
8136                 
8137         /* Can't allocate memory using Boehm GC on altstack */
8138         if (jit_tls->stack_size && 
8139                 ((guint8*)info->si_addr >= (guint8*)jit_tls->end_of_stack - jit_tls->stack_size) &&
8140                 ((guint8*)info->si_addr < (guint8*)jit_tls->end_of_stack))
8141                 exc = mono_domain_get ()->stack_overflow_ex;
8142         else
8143                 exc = mono_domain_get ()->null_reference_ex;
8144                         
8145         mono_arch_handle_exception (ctx, exc, FALSE);
8146 }
8147
8148 #else
8149
8150 static void
8151 SIG_HANDLER_SIGNATURE (sigsegv_signal_handler)
8152 {
8153         GET_CONTEXT;
8154
8155         mono_arch_handle_exception (ctx, NULL, FALSE);
8156 }
8157
8158 #endif
8159
8160 static void
8161 SIG_HANDLER_SIGNATURE (sigusr1_signal_handler)
8162 {
8163         gboolean running_managed;
8164         MonoException *exc;
8165         
8166         GET_CONTEXT
8167
8168         running_managed = (mono_jit_info_table_find (mono_domain_get (), mono_arch_ip_from_context(ctx)) != NULL);
8169         
8170         exc = mono_thread_request_interruption (running_managed); 
8171         if (!exc) return;
8172         
8173         mono_arch_handle_exception (ctx, exc, FALSE);
8174 }
8175
8176 static void
8177 SIG_HANDLER_SIGNATURE (sigquit_signal_handler)
8178 {
8179        MonoException *exc;
8180        GET_CONTEXT
8181
8182        exc = mono_get_exception_execution_engine ("Interrupted (SIGQUIT).");
8183        
8184        mono_arch_handle_exception (ctx, exc, FALSE);
8185 }
8186
8187 static void
8188 SIG_HANDLER_SIGNATURE (sigint_signal_handler)
8189 {
8190         MonoException *exc;
8191         GET_CONTEXT
8192
8193         exc = mono_get_exception_execution_engine ("Interrupted (SIGINT).");
8194         
8195         mono_arch_handle_exception (ctx, exc, FALSE);
8196 }
8197
8198 #ifndef PLATFORM_WIN32
8199 static void
8200 add_signal_handler (int signo, gpointer handler)
8201 {
8202         struct sigaction sa;
8203
8204 #ifdef MONO_ARCH_USE_SIGACTION
8205         sa.sa_sigaction = handler;
8206         sigemptyset (&sa.sa_mask);
8207         sa.sa_flags = SA_SIGINFO;
8208 #else
8209         sa.sa_handler = handler;
8210         sigemptyset (&sa.sa_mask);
8211         sa.sa_flags = 0;
8212 #endif
8213         g_assert (sigaction (signo, &sa, NULL) != -1);
8214 }
8215 #endif
8216
8217 static void
8218 mono_runtime_install_handlers (void)
8219 {
8220 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
8221         struct sigaction sa;
8222 #endif
8223
8224 #ifdef PLATFORM_WIN32
8225         win32_seh_init();
8226         win32_seh_set_handler(SIGFPE, sigfpe_signal_handler);
8227         win32_seh_set_handler(SIGILL, sigill_signal_handler);
8228         win32_seh_set_handler(SIGSEGV, sigsegv_signal_handler);
8229         if (getenv ("MONO_DEBUG"))
8230                 win32_seh_set_handler(SIGINT, sigint_signal_handler);
8231 #else /* !PLATFORM_WIN32 */
8232
8233         /* libpthreads has its own implementation of sigaction(),
8234          * but it seems to work well with our current exception
8235          * handlers. If not we must call syscall directly instead 
8236          * of sigaction */
8237
8238         if (getenv ("MONO_DEBUG")) {
8239                 add_signal_handler (SIGINT, sigint_signal_handler);
8240         }
8241
8242         add_signal_handler (SIGFPE, sigfpe_signal_handler);
8243         add_signal_handler (SIGQUIT, sigquit_signal_handler);
8244         add_signal_handler (SIGILL, sigill_signal_handler);
8245         add_signal_handler (SIGBUS, sigsegv_signal_handler);
8246         add_signal_handler (mono_thread_get_abort_signal (), sigusr1_signal_handler);
8247
8248         /* catch SIGSEGV */
8249 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
8250         sa.sa_sigaction = sigsegv_signal_handler;
8251         sigemptyset (&sa.sa_mask);
8252         sa.sa_flags = SA_SIGINFO | SA_ONSTACK;
8253         g_assert (sigaction (SIGSEGV, &sa, NULL) != -1);
8254 #else
8255         add_signal_handler (SIGSEGV, sigsegv_signal_handler);
8256 #endif
8257
8258 #endif /* PLATFORM_WIN32 */
8259 }
8260
8261 /* mono_jit_create_remoting_trampoline:
8262  * @method: pointer to the method info
8263  *
8264  * Creates a trampoline which calls the remoting functions. This
8265  * is used in the vtable of transparent proxies.
8266  * 
8267  * Returns: a pointer to the newly created code 
8268  */
8269 static gpointer
8270 mono_jit_create_remoting_trampoline (MonoMethod *method)
8271 {
8272         MonoMethod *nm;
8273         guint8 *addr = NULL;
8274
8275         if ((method->flags & METHOD_ATTRIBUTE_ABSTRACT) || 
8276             (method->signature->hasthis && (method->klass->marshalbyref || method->klass == mono_defaults.object_class))) {
8277                 nm = mono_marshal_get_remoting_invoke (method);
8278                 addr = mono_compile_method (nm);
8279         } else {
8280                 addr = mono_compile_method (method);
8281         }
8282         return addr;
8283 }
8284
8285 MonoDomain *
8286 mini_init (const char *filename)
8287 {
8288         MonoDomain *domain;
8289
8290         mono_arch_cpu_init ();
8291
8292         if (!g_thread_supported ())
8293                 g_thread_init (NULL);
8294
8295         mono_jit_tls_id = TlsAlloc ();
8296         setup_jit_tls_data ((gpointer)-1, mono_thread_abort);
8297
8298         InitializeCriticalSection (&trampoline_hash_mutex);
8299
8300         mono_burg_init ();
8301
8302         if (default_opt & MONO_OPT_AOT)
8303                 mono_aot_init ();
8304
8305         mono_runtime_install_handlers ();
8306         mono_threads_install_cleanup (mini_thread_cleanup);
8307
8308 #define JIT_TRAMPOLINES_WORK
8309 #ifdef JIT_TRAMPOLINES_WORK
8310         mono_install_compile_method (mono_jit_compile_method);
8311         mono_install_trampoline (mono_arch_create_jit_trampoline);
8312         mono_install_remoting_trampoline (mono_jit_create_remoting_trampoline);
8313 #endif
8314 #define JIT_INVOKE_WORKS
8315 #ifdef JIT_INVOKE_WORKS
8316         mono_install_runtime_invoke (mono_jit_runtime_invoke);
8317         mono_install_handler (mono_arch_get_throw_exception ());
8318 #endif
8319         mono_install_stack_walk (mono_jit_walk_stack);
8320
8321         domain = mono_init (filename);
8322         mono_init_icall ();
8323
8324         mono_add_internal_call ("System.Diagnostics.StackFrame::get_frame_info", 
8325                                 ves_icall_get_frame_info);
8326         mono_add_internal_call ("System.Diagnostics.StackTrace::get_trace", 
8327                                 ves_icall_get_trace);
8328         mono_add_internal_call ("Mono.Runtime::mono_runtime_install_handlers", 
8329                                 mono_runtime_install_handlers);
8330
8331
8332         create_helper_signature ();
8333
8334 #define JIT_CALLS_WORK
8335 #ifdef JIT_CALLS_WORK
8336         /* Needs to be called here since register_jit_icall depends on it */
8337         mono_marshal_init ();
8338
8339         mono_arch_register_lowlevel_calls ();
8340         mono_register_jit_icall (mono_profiler_method_enter, "mono_profiler_method_enter", NULL, TRUE);
8341         mono_register_jit_icall (mono_profiler_method_leave, "mono_profiler_method_leave", NULL, TRUE);
8342         mono_register_jit_icall (mono_trace_enter_method, "mono_trace_enter_method", NULL, TRUE);
8343         mono_register_jit_icall (mono_trace_leave_method, "mono_trace_leave_method", NULL, TRUE);
8344         mono_register_jit_icall (mono_get_lmf_addr, "mono_get_lmf_addr", helper_sig_ptr_void, TRUE);
8345         mono_register_jit_icall (mono_domain_get, "mono_domain_get", helper_sig_domain_get, TRUE);
8346
8347         /* fixme: we cant handle vararg methods this way, because the signature is not constant */
8348         //mono_register_jit_icall (ves_array_element_address, "ves_array_element_address", NULL);
8349         //mono_register_jit_icall (mono_array_new_va, "mono_array_new_va", NULL);
8350
8351         mono_register_jit_icall (mono_arch_get_throw_exception (), "mono_arch_throw_exception", helper_sig_void_obj, TRUE);
8352         mono_register_jit_icall (mono_arch_get_throw_exception_by_name (), "mono_arch_throw_exception_by_name", 
8353                                  helper_sig_void_ptr, TRUE);
8354         mono_register_jit_icall (mono_thread_get_pending_exception, "mono_thread_get_pending_exception", helper_sig_obj_void, FALSE);
8355
8356         /* 
8357          * NOTE, NOTE, NOTE, NOTE:
8358          * when adding emulation for some opcodes, remember to also add a dummy
8359          * rule to the burg files, because we need the arity information to be correct.
8360          */
8361         mono_register_opcode_emulation (OP_LMUL, "__emul_lmul", helper_sig_long_long_long, mono_llmult, TRUE);
8362         mono_register_opcode_emulation (OP_LMUL_OVF_UN, "__emul_lmul_ovf_un", helper_sig_long_long_long, mono_llmult_ovf_un, FALSE);
8363         mono_register_opcode_emulation (OP_LMUL_OVF, "__emul_lmul_ovf", helper_sig_long_long_long, mono_llmult_ovf, FALSE);
8364         mono_register_opcode_emulation (OP_LDIV, "__emul_ldiv", helper_sig_long_long_long, mono_lldiv, FALSE);
8365         mono_register_opcode_emulation (OP_LDIV_UN, "__emul_ldiv_un", helper_sig_long_long_long, mono_lldiv_un, FALSE);
8366         mono_register_opcode_emulation (OP_LREM, "__emul_lrem", helper_sig_long_long_long, mono_llrem, FALSE);
8367         mono_register_opcode_emulation (OP_LREM_UN, "__emul_lrem_un", helper_sig_long_long_long, mono_llrem_un, FALSE);
8368
8369 #ifndef MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS
8370         mono_register_opcode_emulation (OP_LSHL, "__emul_lshl", helper_sig_long_long_int, mono_lshl, TRUE);
8371         mono_register_opcode_emulation (OP_LSHR, "__emul_lshr", helper_sig_long_long_int, mono_lshr, TRUE);
8372         mono_register_opcode_emulation (OP_LSHR_UN, "__emul_lshr_un", helper_sig_long_long_int, mono_lshr_un, TRUE);
8373 #endif
8374
8375         mono_register_opcode_emulation (OP_FCONV_TO_U8, "__emul_fconv_to_u8", helper_sig_ulong_double, mono_fconv_u8, FALSE);
8376         mono_register_opcode_emulation (OP_FCONV_TO_U4, "__emul_fconv_to_u4", helper_sig_uint_double, mono_fconv_u4, FALSE);
8377         mono_register_opcode_emulation (OP_FCONV_TO_OVF_I8, "__emul_fconv_to_ovf_i8", helper_sig_long_double, mono_fconv_ovf_i8, FALSE);
8378         mono_register_opcode_emulation (OP_FCONV_TO_OVF_U8, "__emul_fconv_to_ovf_u8", helper_sig_ulong_double, mono_fconv_ovf_u8, FALSE);
8379
8380 #ifdef MONO_ARCH_EMULATE_FCONV_TO_I8
8381         mono_register_opcode_emulation (OP_FCONV_TO_I8, "__emul_fconv_to_i8", helper_sig_long_double, mono_fconv_i8, FALSE);
8382 #endif
8383 #ifdef MONO_ARCH_EMULATE_CONV_R8_UN
8384         mono_register_opcode_emulation (CEE_CONV_R_UN, "__emul_conv_r_un", helper_sig_double_int, mono_conv_to_r8_un, FALSE);
8385 #endif
8386 #ifdef MONO_ARCH_EMULATE_LCONV_TO_R8
8387         mono_register_opcode_emulation (OP_LCONV_TO_R8, "__emul_lconv_to_r8", helper_sig_double_long, mono_lconv_to_r8, FALSE);
8388 #endif
8389 #ifdef MONO_ARCH_EMULATE_LCONV_TO_R4
8390         mono_register_opcode_emulation (OP_LCONV_TO_R4, "__emul_lconv_to_r4", helper_sig_float_long, mono_lconv_to_r4, FALSE);
8391 #endif
8392 #ifdef MONO_ARCH_EMULATE_LCONV_TO_R8_UN
8393         mono_register_opcode_emulation (OP_LCONV_TO_R_UN, "__emul_lconv_to_r8_un", helper_sig_double_long, mono_lconv_to_r8_un, FALSE);
8394 #endif
8395 #ifdef MONO_ARCH_EMULATE_FREM
8396         mono_register_opcode_emulation (OP_FREM, "__emul_frem", helper_sig_double_double_double, fmod, FALSE);
8397 #endif
8398
8399 #if SIZEOF_VOID_P == 4
8400         mono_register_opcode_emulation (OP_FCONV_TO_U, "__emul_fconv_to_u", helper_sig_uint_double, mono_fconv_u4, TRUE);
8401 #else
8402 #ifdef __GNUC__
8403 #warning "fixme: add opcode emulation"
8404 #endif
8405 #endif
8406
8407         /* other jit icalls */
8408         mono_register_jit_icall (mono_class_static_field_address , "mono_class_static_field_address", 
8409                                  helper_sig_ptr_ptr_ptr, FALSE);
8410         mono_register_jit_icall (mono_ldtoken_wrapper, "mono_ldtoken_wrapper", helper_sig_ptr_ptr_ptr, FALSE);
8411         mono_register_jit_icall (mono_get_special_static_data, "mono_get_special_static_data", helper_sig_ptr_int, FALSE);
8412         mono_register_jit_icall (mono_ldstr, "mono_ldstr", helper_sig_ldstr, FALSE);
8413         mono_register_jit_icall (helper_memcpy, "helper_memcpy", helper_sig_memcpy, FALSE);
8414         mono_register_jit_icall (helper_memset, "helper_memset", helper_sig_memset, FALSE);
8415         mono_register_jit_icall (helper_initobj, "helper_initobj", helper_sig_initobj, FALSE);
8416         mono_register_jit_icall (helper_stelem_ref, "helper_stelem_ref", helper_sig_stelem_ref, FALSE);
8417         mono_register_jit_icall (helper_stelem_ref_check, "helper_stelem_ref_check", helper_sig_stelem_ref_check, FALSE);
8418         mono_register_jit_icall (mono_object_new, "mono_object_new", helper_sig_object_new, FALSE);
8419         mono_register_jit_icall (mono_object_new_specific, "mono_object_new_specific", helper_sig_object_new_specific, FALSE);
8420         mono_register_jit_icall (mono_object_new_fast, "mono_object_new_fast", helper_sig_object_new_specific, FALSE);
8421         mono_register_jit_icall (mono_array_new, "mono_array_new", helper_sig_newarr, FALSE);
8422         mono_register_jit_icall (mono_array_new_specific, "mono_array_new_specific", helper_sig_newarr_specific, FALSE);
8423         mono_register_jit_icall (mono_string_to_utf16, "mono_string_to_utf16", helper_sig_ptr_obj, FALSE);
8424         mono_register_jit_icall (mono_string_from_utf16, "mono_string_from_utf16", helper_sig_obj_ptr, FALSE);
8425         mono_register_jit_icall (mono_string_new_wrapper, "mono_string_new_wrapper", helper_sig_obj_ptr, FALSE);
8426         mono_register_jit_icall (mono_string_to_utf8, "mono_string_to_utf8", helper_sig_ptr_obj, FALSE);
8427         mono_register_jit_icall (mono_string_to_bstr, "mono_string_to_bstr", helper_sig_ptr_obj, FALSE);
8428         mono_register_jit_icall (mono_string_to_ansibstr, "mono_string_to_ansibstr", helper_sig_ptr_obj, FALSE);
8429         mono_register_jit_icall (mono_string_builder_to_utf8, "mono_string_builder_to_utf8", helper_sig_ptr_obj, FALSE);
8430         mono_register_jit_icall (mono_string_builder_to_utf16, "mono_string_builder_to_utf16", helper_sig_ptr_obj, FALSE);
8431         mono_register_jit_icall (mono_array_to_savearray, "mono_array_to_savearray", helper_sig_ptr_obj, FALSE);
8432         mono_register_jit_icall (mono_array_to_lparray, "mono_array_to_lparray", helper_sig_ptr_obj, FALSE);
8433         mono_register_jit_icall (mono_delegate_to_ftnptr, "mono_delegate_to_ftnptr", helper_sig_ptr_obj, FALSE);
8434         mono_register_jit_icall (mono_ftnptr_to_delegate, "mono_ftnptr_to_delegate", helper_sig_obj_ptr_ptr, FALSE);
8435         mono_register_jit_icall (mono_marshal_string_array, "mono_marshal_string_array", helper_sig_ptr_obj, FALSE);
8436         mono_register_jit_icall (mono_marshal_string_array_to_unicode, "mono_marshal_string_array_to_unicode", helper_sig_ptr_obj, FALSE);
8437         mono_register_jit_icall (mono_marshal_asany, "mono_marshal_asany", helper_sig_ptr_obj_int, FALSE);
8438         mono_register_jit_icall (mono_marshal_free_asany, "mono_marshal_free_asany", helper_sig_void_obj_ptr_int, FALSE);
8439         mono_register_jit_icall (mono_string_utf8_to_builder, "mono_string_utf8_to_builder", helper_sig_void_ptr_ptr, FALSE);
8440         mono_register_jit_icall (mono_string_utf16_to_builder, "mono_string_utf16_to_builder", helper_sig_void_ptr_ptr, FALSE);
8441         mono_register_jit_icall (mono_marshal_free_array, "mono_marshal_free_array", helper_sig_void_ptr_ptr, FALSE);
8442         mono_register_jit_icall (mono_string_to_byvalstr, "mono_string_to_byvalstr", helper_sig_void_ptr_ptr_ptr, FALSE);
8443         mono_register_jit_icall (mono_string_to_byvalwstr, "mono_string_to_byvalwstr", helper_sig_void_ptr_ptr_ptr, FALSE);
8444         mono_register_jit_icall (g_free, "g_free", helper_sig_void_ptr, FALSE);
8445         mono_register_jit_icall (mono_runtime_class_init, "mono_runtime_class_init", helper_sig_void_ptr, FALSE);
8446         mono_register_jit_icall (mono_ldftn, "mono_ldftn", helper_sig_compile, FALSE);
8447         mono_register_jit_icall (mono_ldftn_nosync, "mono_ldftn_nosync", helper_sig_compile, FALSE);
8448         mono_register_jit_icall (mono_ldvirtfn, "mono_ldvirtfn", helper_sig_compile_virt, FALSE);
8449 #endif
8450
8451 #define JIT_RUNTIME_WORKS
8452 #ifdef JIT_RUNTIME_WORKS
8453         mono_runtime_install_cleanup ((MonoDomainFunc)mini_cleanup);
8454         mono_runtime_init (domain, mono_thread_start_cb, mono_thread_attach_cb);
8455 #endif
8456
8457         mono_thread_attach (domain);
8458         return domain;
8459 }
8460
8461 MonoJitStats mono_jit_stats = {0};
8462
8463 static void 
8464 print_jit_stats (void)
8465 {
8466         if (mono_jit_stats.enabled) {
8467                 g_print ("Mono Jit statistics\n");
8468                 g_print ("Compiled methods:       %ld\n", mono_jit_stats.methods_compiled);
8469                 g_print ("Methods from AOT:       %ld\n", mono_jit_stats.methods_aot);
8470                 g_print ("Methods cache lookup:   %ld\n", mono_jit_stats.methods_lookups);
8471                 g_print ("Method trampolines:     %ld\n", mono_jit_stats.method_trampolines);
8472                 g_print ("Basic blocks:           %ld\n", mono_jit_stats.basic_blocks);
8473                 g_print ("Max basic blocks:       %ld\n", mono_jit_stats.max_basic_blocks);
8474                 g_print ("Allocated vars:         %ld\n", mono_jit_stats.allocate_var);
8475                 g_print ("Analyze stack repeat:   %ld\n", mono_jit_stats.analyze_stack_repeat);
8476                 g_print ("Compiled CIL code size: %ld\n", mono_jit_stats.cil_code_size);
8477                 g_print ("Native code size:       %ld\n", mono_jit_stats.native_code_size);
8478                 g_print ("Max code size ratio:    %.2f (%s::%s)\n", mono_jit_stats.max_code_size_ratio/100.0,
8479                                 mono_jit_stats.max_ratio_method->klass->name, mono_jit_stats.max_ratio_method->name);
8480                 g_print ("Biggest method:         %ld (%s::%s)\n", mono_jit_stats.biggest_method_size,
8481                                 mono_jit_stats.biggest_method->klass->name, mono_jit_stats.biggest_method->name);
8482                 g_print ("Code reallocs:          %ld\n", mono_jit_stats.code_reallocs);
8483                 g_print ("Allocated code size:    %ld\n", mono_jit_stats.allocated_code_size);
8484                 g_print ("Inlineable methods:     %ld\n", mono_jit_stats.inlineable_methods);
8485                 g_print ("Inlined methods:        %ld\n", mono_jit_stats.inlined_methods);
8486                 
8487                 g_print ("\nCreated object count:   %ld\n", mono_stats.new_object_count);
8488                 g_print ("Initialized classes:    %ld\n", mono_stats.initialized_class_count);
8489                 g_print ("Used classes:           %ld\n", mono_stats.used_class_count);
8490                 g_print ("Static data size:       %ld\n", mono_stats.class_static_data_size);
8491                 g_print ("VTable data size:       %ld\n", mono_stats.class_vtable_size);
8492
8493                 g_print ("\nGeneric instances:      %ld\n", mono_stats.generic_instance_count);
8494                 g_print ("Inflated methods:       %ld\n", mono_stats.inflated_method_count);
8495                 g_print ("Inflated types:         %ld\n", mono_stats.inflated_type_count);
8496                 g_print ("Generics metadata size: %ld\n", mono_stats.generics_metadata_size);
8497         }
8498 }
8499
8500 void
8501 mini_cleanup (MonoDomain *domain)
8502 {
8503         /* 
8504          * mono_runtime_cleanup() and mono_domain_finalize () need to
8505          * be called early since they need the execution engine still
8506          * fully working (mono_domain_finalize may invoke managed finalizers
8507          * and mono_runtime_cleanup will wait for other threads to finish).
8508          */
8509         mono_domain_finalize (domain, 2000);
8510
8511         mono_runtime_cleanup (domain);
8512
8513         mono_profiler_shutdown ();
8514
8515         mono_debug_cleanup ();
8516
8517 #ifdef PLATFORM_WIN32
8518         win32_seh_cleanup();
8519 #endif
8520
8521         mono_domain_free (domain, TRUE);
8522
8523         print_jit_stats ();
8524 }
8525
8526 void
8527 mono_set_defaults (int verbose_level, guint32 opts)
8528 {
8529         mini_verbose = verbose_level;
8530         default_opt = opts;
8531 }
8532
8533 static void
8534 mono_precompile_assembly (MonoAssembly *ass, void *user_data)
8535 {
8536         MonoImage *image = ass->image;
8537         MonoMethod *method;
8538         int i, count = 0;
8539
8540         if (mini_verbose > 0)
8541                 printf ("PRECOMPILE: %s.\n", ass->image->name);
8542
8543         for (i = 0; i < image->tables [MONO_TABLE_METHOD].rows; ++i) {
8544                 method = mono_get_method (image, MONO_TOKEN_METHOD_DEF | (i + 1), NULL);
8545                 if (method->flags & METHOD_ATTRIBUTE_ABSTRACT)
8546                         continue;
8547                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
8548                         continue;
8549
8550                 count++;
8551                 if (mini_verbose > 1) {
8552                         char * desc = mono_method_full_name (method, TRUE);
8553                         g_print ("Compiling %d %s\n", count, desc);
8554                         g_free (desc);
8555                 }
8556                 mono_compile_method (method);
8557         }
8558 }
8559
8560 void mono_precompile_assemblies ()
8561 {
8562         mono_assembly_foreach ((GFunc)mono_precompile_assembly, NULL);
8563 }