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