cd90c6bf6c037ca75fc2144c4a7ba7b4eb83011d
[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
15 #include <mono/metadata/assembly.h>
16 #include <mono/metadata/loader.h>
17 #include <mono/metadata/cil-coff.h>
18 #include <mono/metadata/tabledefs.h>
19 #include <mono/metadata/class.h>
20 #include <mono/metadata/object.h>
21 #include <mono/metadata/exception.h>
22 #include <mono/metadata/opcodes.h>
23 #include <mono/metadata/mono-endian.h>
24 #include <mono/metadata/tokentype.h>
25 #include <mono/metadata/tabledefs.h>
26 #include <mono/metadata/threads.h>
27 #include <mono/metadata/marshal.h>
28 #include <mono/metadata/socket-io.h>
29 #include <mono/metadata/appdomain.h>
30 #include <mono/metadata/debug-helpers.h>
31 #include <mono/io-layer/io-layer.h>
32 #include "mono/metadata/profiler.h"
33 #include <mono/metadata/profiler-private.h>
34 #include <mono/metadata/mono-config.h>
35 #include <mono/metadata/environment.h>
36 #include <mono/metadata/mono-debug.h>
37 #include <mono/metadata/mono-debug-debugger.h>
38
39 #include "mini.h"
40 #include <string.h>
41 #include <ctype.h>
42 #include "inssel.h"
43
44 #include "jit-icalls.c"
45
46 #define MONO_CHECK_THIS(ins) (cfg->method->signature->hasthis && (ins)->ssa_op == MONO_SSA_LOAD && (ins)->inst_left->inst_c0 == 0)
47
48 gboolean  mono_arch_handle_exception (struct sigcontext *ctx, gpointer obj, gboolean test_only);
49 static gpointer mono_jit_compile_method (MonoMethod *method);
50
51 static void handle_stobj (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *dest, MonoInst *src, 
52                           const unsigned char *ip, MonoClass *klass, gboolean to_end, gboolean native);
53
54 static int mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_bblock, MonoBasicBlock *end_bblock, 
55                    int locals_offset, MonoInst *return_var, GList *dont_inline, MonoInst **inline_args, 
56                    guint inline_offset, gboolean is_virtual_call);
57
58 extern guint8 mono_burg_arity [];
59 /* helper methods signature */
60 static MonoMethodSignature *helper_sig_long_long_long = NULL;
61 static MonoMethodSignature *helper_sig_long_long_int = NULL;
62 static MonoMethodSignature *helper_sig_newarr = NULL;
63 static MonoMethodSignature *helper_sig_newarr_specific = NULL;
64 static MonoMethodSignature *helper_sig_ldstr = NULL;
65 static MonoMethodSignature *helper_sig_domain_get = NULL;
66 static MonoMethodSignature *helper_sig_object_new = NULL;
67 static MonoMethodSignature *helper_sig_object_new_specific = NULL;
68 static MonoMethodSignature *helper_sig_compile = NULL;
69 static MonoMethodSignature *helper_sig_compile_virt = NULL;
70 static MonoMethodSignature *helper_sig_obj_ptr = NULL;
71 static MonoMethodSignature *helper_sig_ptr_void = NULL;
72 static MonoMethodSignature *helper_sig_void_ptr = NULL;
73 static MonoMethodSignature *helper_sig_void_obj = NULL;
74 static MonoMethodSignature *helper_sig_void_ptr_ptr = NULL;
75 static MonoMethodSignature *helper_sig_void_ptr_ptr_ptr = NULL;
76 static MonoMethodSignature *helper_sig_ptr_ptr_ptr = NULL;
77 static MonoMethodSignature *helper_sig_ptr_obj = NULL;
78 static MonoMethodSignature *helper_sig_ptr_int = NULL;
79 static MonoMethodSignature *helper_sig_initobj = NULL;
80 static MonoMethodSignature *helper_sig_memcpy = NULL;
81 static MonoMethodSignature *helper_sig_memset = NULL;
82 static MonoMethodSignature *helper_sig_ulong_double = NULL;
83 static MonoMethodSignature *helper_sig_long_double = NULL;
84 static MonoMethodSignature *helper_sig_uint_double = NULL;
85 static MonoMethodSignature *helper_sig_int_double = NULL;
86 static MonoMethodSignature *helper_sig_stelem_ref = NULL;
87
88 static guint32 default_opt = MONO_OPT_PEEPHOLE;
89
90 guint32 mono_jit_tls_id = 0;
91 gboolean mono_jit_trace_calls = FALSE;
92 gboolean mono_break_on_exc = FALSE;
93 gboolean mono_compile_aot = FALSE;
94 gboolean mono_trace_coverage = FALSE;
95 gboolean mono_jit_profile = FALSE;
96 MonoDebugFormat mono_debug_format = MONO_DEBUG_FORMAT_NONE;
97
98 CRITICAL_SECTION *metadata_section = NULL;
99
100 static int mini_verbose = 0;
101
102 #ifdef MONO_USE_EXC_TABLES
103 static gboolean
104 mono_type_blittable (MonoType *type)
105 {
106         if (type->byref)
107                 return FALSE;
108
109         switch (type->type){
110         case MONO_TYPE_VOID:
111         case MONO_TYPE_I1:
112         case MONO_TYPE_U1:
113         case MONO_TYPE_I2:
114         case MONO_TYPE_U2:
115         case MONO_TYPE_I4:
116         case MONO_TYPE_U4:
117         case MONO_TYPE_I8:
118         case MONO_TYPE_U8:
119         case MONO_TYPE_R4:
120         case MONO_TYPE_R8:
121         case MONO_TYPE_I:
122         case MONO_TYPE_U:
123         case MONO_TYPE_OBJECT:
124                 return TRUE;
125         case MONO_TYPE_VALUETYPE:
126         case MONO_TYPE_CLASS:
127                 return type->data.klass->blittable;
128                 break;
129         default:
130                 break;
131         }
132
133         return FALSE;
134 }
135
136 gboolean
137 mono_method_blittable (MonoMethod *method)
138 {
139         MonoMethodSignature *sig;
140         int i;
141
142         if (!method->addr)
143                 return FALSE;
144
145         if (!mono_arch_has_unwind_info (method->addr)) {
146                 return FALSE;
147         }
148
149         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
150                 return TRUE;
151
152         sig = method->signature;
153
154         if (!mono_type_blittable (sig->ret))
155                 return FALSE;
156
157         for (i = 0; i < sig->param_count; i++)
158                 if (!mono_type_blittable (sig->params [i]))
159                         return FALSE;
160
161         return TRUE;
162 }
163 #endif
164
165 /* debug function */
166 static void
167 print_method_from_ip (void *ip)
168 {
169         MonoJitInfo *ji;
170         char *method;
171         
172         ji = mono_jit_info_table_find (mono_domain_get (), ip);
173         if (!ji) {
174                 g_print ("No method at %p\n", ip);
175                 return;
176         }
177         method = mono_method_full_name (ji->method, TRUE);
178         g_print ("IP at offset 0x%x of method %s (%p %p)\n", (char*)ip - (char*)ji->code_start, method, ji->code_start, (char*)ji->code_start + ji->code_size);
179         g_free (method);
180
181 }
182
183 #define MONO_INIT_VARINFO(vi,id) do { \
184         (vi)->range.first_use.pos.bid = 0xffff; \
185         (vi)->reg = -1; \
186         (vi)->idx = (id); \
187 } while (0)
188
189 /*
190  * Basic blocks have two numeric identifiers:
191  * dfn: Depth First Number
192  * block_num: unique ID assigned at bblock creation
193  */
194 #define NEW_BBLOCK(cfg) (mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoBasicBlock)))
195 #define ADD_BBLOCK(cfg,bbhash,b) do {   \
196                 g_hash_table_insert (bbhash, (b)->cil_code, (b));       \
197                 (b)->block_num = cfg->num_bblocks++;    \
198                 (b)->real_offset = real_offset; \
199         } while (0)
200
201 #define GET_BBLOCK(cfg,bbhash,tblock,ip) do {   \
202                 (tblock) = g_hash_table_lookup (bbhash, (ip));  \
203                 if (!(tblock)) {        \
204                         if ((ip) >= end || (ip) < header->code) goto unverified; \
205                         (tblock) = NEW_BBLOCK (cfg);    \
206                         (tblock)->cil_code = (ip);      \
207                         ADD_BBLOCK (cfg, (bbhash), (tblock));   \
208                 }       \
209                 (tblock)->real_offset = real_offset; \
210         } while (0)
211
212 #define CHECK_BBLOCK(target,ip,tblock) do {     \
213                 if ((target) < (ip) && !(tblock)->code) {       \
214                         bb_recheck = g_list_prepend (bb_recheck, (tblock));     \
215                         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);   \
216                 }       \
217         } while (0)
218
219 #define NEW_ICONST(cfg,dest,val) do {   \
220                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
221                 (dest)->opcode = OP_ICONST;     \
222                 (dest)->inst_c0 = (val);        \
223                 (dest)->type = STACK_I4;        \
224         } while (0)
225
226 /* FIXME: have a different definition of NEW_PCONST for 64 bit systems */
227 #define NEW_PCONST(cfg,dest,val) do {   \
228                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
229                 (dest)->opcode = OP_ICONST;     \
230                 (dest)->inst_p0 = (val);        \
231                 (dest)->type = STACK_PTR;       \
232         } while (0)
233
234 #define NEW_CLASSCONST(cfg,dest,val) do {       \
235                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
236                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
237                 (dest)->inst_p0 = (val);        \
238                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_CLASS; \
239                 (dest)->type = STACK_PTR;       \
240         } while (0)
241
242 #define NEW_IMAGECONST(cfg,dest,val) do {       \
243                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
244                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
245                 (dest)->inst_p0 = (val);        \
246                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_IMAGE; \
247                 (dest)->type = STACK_PTR;       \
248         } while (0)
249
250 #define NEW_FIELDCONST(cfg,dest,field) do {     \
251                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
252                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
253                 (dest)->inst_p0 = (field);      \
254                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_FIELD; \
255                 (dest)->type = STACK_PTR;       \
256         } while (0)
257
258 #define NEW_METHODCONST(cfg,dest,val) do {      \
259                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
260                 (dest)->opcode = mono_compile_aot ? OP_AOTCONST : OP_ICONST;    \
261                 (dest)->inst_p0 = (val);        \
262                 (dest)->inst_i1 = (gpointer)MONO_PATCH_INFO_METHODCONST; \
263                 (dest)->type = STACK_PTR;       \
264         } while (0)
265
266 #define NEW_DOMAINCONST(cfg,dest) do { \
267                if ((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot) { \
268                        NEW_TEMPLOAD (cfg, dest, mono_get_domainvar (cfg)->inst_c0); \
269                } else { \
270                        NEW_PCONST (cfg, dest, (cfg)->domain); \
271                } \
272         } while (0)
273
274 #define GET_VARINFO_INST(cfg,num) ((cfg)->varinfo [(num)]->inst)
275
276 #define NEW_ARGLOAD(cfg,dest,num) do {  \
277                 if (arg_array [(num)]->opcode == OP_ICONST) (dest) = arg_array [(num)]; else { \
278                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
279                 (dest)->ssa_op = MONO_SSA_LOAD; \
280                 (dest)->inst_i0 = arg_array [(num)];    \
281                 (dest)->opcode = mono_type_to_ldind ((dest)->inst_i0->inst_vtype);      \
282                 type_to_eval_stack_type (param_types [(num)], (dest));  \
283                 (dest)->klass = (dest)->inst_i0->klass; \
284         }} while (0)
285
286 #define NEW_LOCLOAD(cfg,dest,num) do {  \
287                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
288                 (dest)->ssa_op = MONO_SSA_LOAD; \
289                 (dest)->inst_i0 = (cfg)->varinfo [locals_offset + (num)];       \
290                 (dest)->opcode = mono_type_to_ldind ((dest)->inst_i0->inst_vtype);      \
291                 type_to_eval_stack_type (header->locals [(num)], (dest));       \
292                 (dest)->klass = (dest)->inst_i0->klass; \
293         } while (0)
294
295 #define NEW_LOCLOADA(cfg,dest,num) do { \
296                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
297                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
298                 (dest)->inst_i0 = (cfg)->varinfo [locals_offset + (num)];       \
299                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
300                 (dest)->opcode = OP_LDADDR;     \
301                 (dest)->type = STACK_MP;        \
302                 (dest)->klass = (dest)->inst_i0->klass; \
303                 (cfg)->disable_ssa = TRUE; \
304         } while (0)
305
306 #define NEW_RETLOADA(cfg,dest) do {     \
307                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
308                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
309                 (dest)->inst_i0 = (cfg)->ret;   \
310                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
311                 (dest)->opcode = CEE_LDIND_I;   \
312                 (dest)->type = STACK_MP;        \
313                 (dest)->klass = (dest)->inst_i0->klass; \
314                 (cfg)->disable_ssa = TRUE; \
315         } while (0)
316
317 #define NEW_ARGLOADA(cfg,dest,num) do { \
318                 if (arg_array [(num)]->opcode == OP_ICONST) goto inline_failure; \
319                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
320                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
321                 (dest)->inst_i0 = arg_array [(num)];    \
322                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
323                 (dest)->opcode = OP_LDADDR;     \
324                 (dest)->type = STACK_MP;        \
325                 (dest)->klass = (dest)->inst_i0->klass; \
326                 (cfg)->disable_ssa = TRUE; \
327         } while (0)
328
329 #define NEW_TEMPLOAD(cfg,dest,num) do { \
330                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
331                 (dest)->ssa_op = MONO_SSA_LOAD; \
332                 (dest)->inst_i0 = (cfg)->varinfo [(num)];       \
333                 (dest)->opcode = mono_type_to_ldind ((dest)->inst_i0->inst_vtype);      \
334                 type_to_eval_stack_type ((dest)->inst_i0->inst_vtype, (dest));  \
335                 (dest)->klass = (dest)->inst_i0->klass; \
336         } while (0)
337
338 #define NEW_TEMPLOADA(cfg,dest,num) do {        \
339                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
340                 (dest)->ssa_op = MONO_SSA_MAYBE_LOAD;   \
341                 (dest)->inst_i0 = (cfg)->varinfo [(num)];       \
342                 (dest)->inst_i0->flags |= MONO_INST_INDIRECT;   \
343                 (dest)->opcode = OP_LDADDR;     \
344                 (dest)->type = STACK_MP;        \
345                 (dest)->klass = (dest)->inst_i0->klass; \
346                 (cfg)->disable_ssa = TRUE; \
347         } while (0)
348
349
350 #define NEW_INDLOAD(cfg,dest,addr,vtype) do {   \
351                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
352                 (dest)->inst_left = addr;       \
353                 (dest)->opcode = mono_type_to_ldind (vtype);    \
354                 type_to_eval_stack_type (vtype, (dest));        \
355                 /* FIXME: (dest)->klass = (dest)->inst_i0->klass;*/     \
356         } while (0)
357
358 #define NEW_INDSTORE(cfg,dest,addr,value,vtype) do {    \
359                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
360                 (dest)->inst_i0 = addr; \
361                 (dest)->opcode = mono_type_to_stind (vtype);    \
362                 (dest)->inst_i1 = (value);      \
363                 /* FIXME: (dest)->klass = (dest)->inst_i0->klass;*/     \
364         } while (0)
365
366 #define NEW_TEMPSTORE(cfg,dest,num,inst) do {   \
367                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
368                 (dest)->ssa_op = MONO_SSA_STORE;        \
369                 (dest)->inst_i0 = (cfg)->varinfo [(num)];       \
370                 (dest)->opcode = mono_type_to_stind ((dest)->inst_i0->inst_vtype);      \
371                 (dest)->inst_i1 = (inst);       \
372                 (dest)->klass = (dest)->inst_i0->klass; \
373         } while (0)
374
375 #define NEW_LOCSTORE(cfg,dest,num,inst) do {    \
376                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
377                 (dest)->opcode = mono_type_to_stind (header->locals [(num)]);   \
378                 (dest)->ssa_op = MONO_SSA_STORE;        \
379                 (dest)->inst_i0 = (cfg)->varinfo [locals_offset + (num)];       \
380                 (dest)->inst_i1 = (inst);       \
381                 (dest)->klass = (dest)->inst_i0->klass; \
382         } while (0)
383
384 #define NEW_ARGSTORE(cfg,dest,num,inst) do {    \
385                 if (arg_array [(num)]->opcode == OP_ICONST) goto inline_failure; \
386                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
387                 (dest)->opcode = mono_type_to_stind (param_types [(num)]);      \
388                 (dest)->ssa_op = MONO_SSA_STORE;        \
389                 (dest)->inst_i0 = arg_array [(num)];    \
390                 (dest)->inst_i1 = (inst);       \
391                 (dest)->klass = (dest)->inst_i0->klass; \
392         } while (0)
393
394 #define ADD_BINOP(op) do {      \
395                 MONO_INST_NEW (cfg, ins, (op)); \
396                 ins->cil_code = ip;     \
397                 sp -= 2;        \
398                 ins->inst_i0 = sp [0];  \
399                 ins->inst_i1 = sp [1];  \
400                 *sp++ = ins;    \
401                 type_from_op (ins);     \
402                 CHECK_TYPE (ins);       \
403         } while (0)
404
405 #define ADD_UNOP(op) do {       \
406                 MONO_INST_NEW (cfg, ins, (op)); \
407                 ins->cil_code = ip;     \
408                 sp--;   \
409                 ins->inst_i0 = sp [0];  \
410                 *sp++ = ins;    \
411                 type_from_op (ins);     \
412                 CHECK_TYPE (ins);       \
413         } while (0)
414
415 #define ADD_BINCOND(next_block) do {    \
416                 MonoInst *cmp;  \
417                 MONO_INST_NEW(cfg, cmp, OP_COMPARE);    \
418                 sp -= 2;                \
419                 cmp->inst_i0 = sp [0];  \
420                 cmp->inst_i1 = sp [1];  \
421                 cmp->cil_code = ins->cil_code;  \
422                 type_from_op (cmp);     \
423                 CHECK_TYPE (cmp);       \
424                 ins->inst_i0 = cmp;     \
425                 MONO_ADD_INS (bblock, ins);     \
426                 ins->inst_many_bb = mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);      \
427                 GET_BBLOCK (cfg, bbhash, tblock, target);               \
428                 link_bblock (cfg, bblock, tblock);      \
429                 ins->inst_true_bb = tblock;     \
430                 CHECK_BBLOCK (target, ip, tblock);      \
431                 if ((next_block)) {     \
432                         link_bblock (cfg, bblock, (next_block));        \
433                         ins->inst_false_bb = (next_block);      \
434                         start_new_bblock = 1;   \
435                 } else {        \
436                         GET_BBLOCK (cfg, bbhash, tblock, ip);           \
437                         link_bblock (cfg, bblock, tblock);      \
438                         ins->inst_false_bb = tblock;    \
439                         start_new_bblock = 2;   \
440                 }       \
441         } while (0)
442
443 /* FIXME: handle float, long ... */
444 #define ADD_UNCOND(istrue) do { \
445                 MonoInst *cmp;  \
446                 MONO_INST_NEW(cfg, cmp, OP_COMPARE);    \
447                 sp--;           \
448                 cmp->inst_i0 = sp [0];  \
449                 switch (cmp->inst_i0->type) { \
450                 case STACK_I8: \
451                         cmp->inst_i1 = zero_int64; break; \
452                 case STACK_R8: \
453                         cmp->inst_i1 = zero_r8; break; \
454                 case STACK_PTR: \
455                 case STACK_MP: \
456                         cmp->inst_i1 = zero_ptr; break; \
457                 case STACK_OBJ: \
458                         cmp->inst_i1 = zero_obj; break; \
459                 default: \
460                         cmp->inst_i1 = zero_int32;  \
461                 }  \
462                 cmp->cil_code = ins->cil_code;  \
463                 type_from_op (cmp);     \
464                 CHECK_TYPE (cmp);       \
465                 ins->inst_i0 = cmp;     \
466                 ins->opcode = (istrue)? CEE_BNE_UN: CEE_BEQ;    \
467                 MONO_ADD_INS (bblock, ins);     \
468                 ins->inst_many_bb = mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);      \
469                 GET_BBLOCK (cfg, bbhash, tblock, target);               \
470                 link_bblock (cfg, bblock, tblock);      \
471                 ins->inst_true_bb = tblock;     \
472                 CHECK_BBLOCK (target, ip, tblock);      \
473                 GET_BBLOCK (cfg, bbhash, tblock, ip);           \
474                 link_bblock (cfg, bblock, tblock);      \
475                 ins->inst_false_bb = tblock;    \
476                 start_new_bblock = 2;   \
477         } while (0)
478
479 #define NEW_LDELEMA(cfg,dest,sp,k) do { \
480                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
481                 (dest)->opcode = CEE_LDELEMA;   \
482                 (dest)->inst_left = (sp) [0];   \
483                 (dest)->inst_right = (sp) [1];  \
484                 (dest)->type = STACK_MP;        \
485                 (dest)->klass = (k);    \
486         } while (0)
487
488 #define NEW_GROUP(cfg,dest,el1,el2) do {        \
489                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
490                 (dest)->opcode = OP_GROUP;      \
491                 (dest)->inst_left = (el1);      \
492                 (dest)->inst_right = (el2);     \
493         } while (0)
494
495 static GHashTable *coverage_hash = NULL;
496
497 MonoCoverageInfo *
498 mono_allocate_coverage_info (MonoMethod *method, int size)
499 {
500         MonoCoverageInfo *res;
501
502         if (!coverage_hash)
503                 coverage_hash = g_hash_table_new (NULL, NULL);
504
505         res = g_malloc0 (sizeof (MonoCoverageInfo) + sizeof (int) * size * 2);
506
507         res->entries = size;
508
509         g_hash_table_insert (coverage_hash, method, res);
510
511         return res;
512 }
513
514 MonoCoverageInfo *
515 mono_get_coverage_info (MonoMethod *method)
516 {
517         if (!coverage_hash)
518                 return NULL;
519
520         return g_hash_table_lookup (coverage_hash, method);
521 }
522                 
523 #if 0
524 static gint
525 compare_bblock (gconstpointer a, gconstpointer b)
526 {
527         const MonoBasicBlock *b1 = a;
528         const MonoBasicBlock *b2 = b;
529
530         return b2->cil_code - b1->cil_code;
531 }
532 #endif
533
534 /* *
535  * link_bblock: Links two basic blocks
536  *
537  * links two basic blocks in the control flow graph, the 'from'
538  * argument is the starting block and the 'to' argument is the block
539  * the control flow ends to after 'from'.
540  */
541 static void
542 link_bblock (MonoCompile *cfg, MonoBasicBlock *from, MonoBasicBlock* to)
543 {
544         MonoBasicBlock **newa;
545         int i, found;
546
547 #if 0
548         if (from->cil_code) {
549                 if (to->cil_code)
550                         g_print ("edge from IL%04x to IL_%04x\n", from->cil_code - cfg->cil_code, to->cil_code - cfg->cil_code);
551                 else
552                         g_print ("edge from IL%04x to exit\n", from->cil_code - cfg->cil_code);
553         } else {
554                 if (to->cil_code)
555                         g_print ("edge from entry to IL_%04x\n", to->cil_code - cfg->cil_code);
556                 else
557                         g_print ("edge from entry to exit\n");
558         }
559 #endif
560         found = FALSE;
561         for (i = 0; i < from->out_count; ++i) {
562                 if (to == from->out_bb [i]) {
563                         found = TRUE;
564                         break;
565                 }
566         }
567         if (!found) {
568                 newa = mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (from->out_count + 1));
569                 for (i = 0; i < from->out_count; ++i) {
570                         newa [i] = from->out_bb [i];
571                 }
572                 newa [i] = to;
573                 from->out_count++;
574                 from->out_bb = newa;
575         }
576
577         found = FALSE;
578         for (i = 0; i < to->in_count; ++i) {
579                 if (from == to->in_bb [i]) {
580                         found = TRUE;
581                         break;
582                 }
583         }
584         if (!found) {
585                 newa = mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (to->in_count + 1));
586                 for (i = 0; i < to->in_count; ++i) {
587                         newa [i] = to->in_bb [i];
588                 }
589                 newa [i] = from;
590                 to->in_count++;
591                 to->in_bb = newa;
592         }
593 }
594
595 /*
596  * We mark each basic block with a region ID. We use that to avoid BB
597  * optimizations when blocks are in different regions. 
598  */
599 static int
600 mono_find_block_region (MonoCompile *cfg, int offset, int *filter_lengths)
601 {
602         MonoMethod *method = cfg->method;
603         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
604         MonoExceptionClause *clause;
605         int i;
606
607         /* first search for handlers and filters */
608         for (i = 0; i < header->num_clauses; ++i) {
609                 clause = &header->clauses [i];
610                 if ((clause->flags & MONO_EXCEPTION_CLAUSE_FILTER) && (offset >= clause->token_or_filter) &&
611                     (offset < (clause->token_or_filter + filter_lengths [i])))
612                         return (i << 8) | 128 | clause->flags;
613                            
614                 if (MONO_OFFSET_IN_HANDLER (clause, offset)) {
615                         return (i << 8) | 64 | clause->flags;
616                 }
617         }
618
619         /* search the try blocks */
620         for (i = 0; i < header->num_clauses; ++i) {
621                 clause = &header->clauses [i];
622                 if (MONO_OFFSET_IN_CLAUSE (clause, offset))
623                         return (i << 8) | clause->flags;
624         }
625
626         return -1;
627 }
628
629 static GList*
630 mono_find_final_block (MonoCompile *cfg, unsigned char *ip, unsigned char *target, int type)
631 {
632         MonoMethod *method = cfg->method;
633         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
634         MonoExceptionClause *clause;
635         MonoBasicBlock *handler;
636         int i;
637         GList *res = NULL;
638
639         for (i = 0; i < header->num_clauses; ++i) {
640                 clause = &header->clauses [i];
641                 if (MONO_OFFSET_IN_CLAUSE (clause, (ip - header->code)) && 
642                     (!MONO_OFFSET_IN_CLAUSE (clause, (target - header->code)))) {
643                         if (clause->flags == type) {
644                                 handler = g_hash_table_lookup (cfg->bb_hash, header->code + clause->handler_offset);
645                                 g_assert (handler);
646                                 res = g_list_append (res, handler);
647                         }
648                 }
649         }
650         return res;
651 }
652
653
654 static void
655 df_visit (MonoBasicBlock *start, int *dfn, MonoBasicBlock **array)
656 {
657         int i;
658
659         array [*dfn] = start;
660         /*g_print ("visit %d at %p\n", *dfn, start->cil_code);*/
661         for (i = 0; i < start->out_count; ++i) {
662                 if (start->out_bb [i]->dfn)
663                         continue;
664                 (*dfn)++;
665                 start->out_bb [i]->dfn = *dfn;
666                 start->out_bb [i]->df_parent = start;
667                 array [*dfn] = start->out_bb [i];
668                 df_visit (start->out_bb [i], dfn, array);
669         }
670 }
671
672 typedef struct {
673         const guchar *code;
674         MonoBasicBlock *best;
675 } PrevStruct;
676
677 static void
678 previous_foreach (gconstpointer key, gpointer val, gpointer data)
679 {
680         PrevStruct *p = data;
681         MonoBasicBlock *bb = val;
682         //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,
683         //bb->method == p->best->method, bb->cil_code < p->code, bb->cil_code > p->best->cil_code);
684
685         if (bb->cil_code && bb->cil_code < p->code && bb->cil_code > p->best->cil_code)
686                 p->best = bb;
687 }
688
689 static MonoBasicBlock*
690 find_previous (GHashTable *bb_hash, MonoBasicBlock *start, const guchar *code) {
691         PrevStruct p;
692
693         p.code = code;
694         p.best = start;
695
696         g_hash_table_foreach (bb_hash, (GHFunc)previous_foreach, &p);
697         return p.best;
698 }
699
700 static void
701 split_bblock (MonoCompile *cfg, MonoBasicBlock *first, MonoBasicBlock *second) {
702         int i, j;
703         MonoInst *inst;
704         MonoBasicBlock *bb;
705
706         if (second->code)
707                 return;
708         
709         /* 
710          * FIXME: take into account all the details:
711          * second may have been the target of more than one bblock
712          */
713         second->out_count = first->out_count;
714         second->out_bb = first->out_bb;
715
716         for (i = 0; i < first->out_count; ++i) {
717                 bb = first->out_bb [i];
718                 for (j = 0; j < bb->in_count; ++j) {
719                         if (bb->in_bb [j] == first)
720                                 bb->in_bb [j] = second;
721                 }
722         }
723
724         first->out_count = 0;
725         first->out_bb = NULL;
726         link_bblock (cfg, first, second);
727
728         second->last_ins = first->last_ins;
729
730         /*g_print ("start search at %p for %p\n", first->cil_code, second->cil_code);*/
731         for (inst = first->code; inst && inst->next; inst = inst->next) {
732                 /*char *code = mono_disasm_code_one (NULL, cfg->method, inst->next->cil_code, NULL);
733                 g_print ("found %p: %s", inst->next->cil_code, code);
734                 g_free (code);*/
735                 if (inst->cil_code < second->cil_code && inst->next->cil_code >= second->cil_code) {
736                         second->code = inst->next;
737                         inst->next = NULL;
738                         first->last_ins = inst;
739                         second->next_bb = first->next_bb;
740                         first->next_bb = second;
741                         return;
742                 }
743         }
744         if (!second->code) {
745                 g_warning ("bblock split failed in %s::%s\n", cfg->method->klass->name, cfg->method->name);
746                 //G_BREAKPOINT ();
747         }
748 }
749
750 guint
751 mono_type_to_ldind (MonoType *type)
752 {
753         int t = type->type;
754
755         if (type->byref)
756                 return CEE_LDIND_I;
757
758 handle_enum:
759         switch (t) {
760         case MONO_TYPE_I1:
761                 return CEE_LDIND_I1;
762         case MONO_TYPE_U1:
763         case MONO_TYPE_BOOLEAN:
764                 return CEE_LDIND_U1;
765         case MONO_TYPE_I2:
766                 return CEE_LDIND_I2;
767         case MONO_TYPE_U2:
768         case MONO_TYPE_CHAR:
769                 return CEE_LDIND_U2;
770         case MONO_TYPE_I4:
771                 return CEE_LDIND_I4;
772         case MONO_TYPE_U4:
773                 return CEE_LDIND_U4;
774         case MONO_TYPE_I:
775         case MONO_TYPE_U:
776         case MONO_TYPE_PTR:
777         case MONO_TYPE_FNPTR:
778                 return CEE_LDIND_I;
779         case MONO_TYPE_CLASS:
780         case MONO_TYPE_STRING:
781         case MONO_TYPE_OBJECT:
782         case MONO_TYPE_SZARRAY:
783         case MONO_TYPE_ARRAY:    
784                 return CEE_LDIND_REF;
785         case MONO_TYPE_I8:
786         case MONO_TYPE_U8:
787                 return CEE_LDIND_I8;
788         case MONO_TYPE_R4:
789                 return CEE_LDIND_R4;
790         case MONO_TYPE_R8:
791                 return CEE_LDIND_R8;
792         case MONO_TYPE_VALUETYPE:
793                 if (type->data.klass->enumtype) {
794                         t = type->data.klass->enum_basetype->type;
795                         goto handle_enum;
796                 }
797                 return CEE_LDOBJ;
798         default:
799                 g_error ("unknown type 0x%02x in type_to_ldind", type->type);
800         }
801         return -1;
802 }
803
804 guint
805 mono_type_to_stind (MonoType *type)
806 {
807         int t = type->type;
808
809         if (type->byref)
810                 return CEE_STIND_I;
811
812 handle_enum:
813         switch (t) {
814         case MONO_TYPE_I1:
815         case MONO_TYPE_U1:
816         case MONO_TYPE_BOOLEAN:
817                 return CEE_STIND_I1;
818         case MONO_TYPE_I2:
819         case MONO_TYPE_U2:
820         case MONO_TYPE_CHAR:
821                 return CEE_STIND_I2;
822         case MONO_TYPE_I4:
823         case MONO_TYPE_U4:
824                 return CEE_STIND_I4;
825         case MONO_TYPE_I:
826         case MONO_TYPE_U:
827         case MONO_TYPE_PTR:
828         case MONO_TYPE_FNPTR:
829                 return CEE_STIND_I;
830         case MONO_TYPE_CLASS:
831         case MONO_TYPE_STRING:
832         case MONO_TYPE_OBJECT:
833         case MONO_TYPE_SZARRAY:
834         case MONO_TYPE_ARRAY:    
835                 return CEE_STIND_REF;
836         case MONO_TYPE_I8:
837         case MONO_TYPE_U8:
838                 return CEE_STIND_I8;
839         case MONO_TYPE_R4:
840                 return CEE_STIND_R4;
841         case MONO_TYPE_R8:
842                 return CEE_STIND_R8;
843         case MONO_TYPE_VALUETYPE:
844                 if (type->data.klass->enumtype) {
845                         t = type->data.klass->enum_basetype->type;
846                         goto handle_enum;
847                 }
848                 return CEE_STOBJ;
849                 /* fail right now */
850         default:
851                 g_error ("unknown type %02x in type_to_stind", type->type);
852         }
853         return -1;
854 }
855
856 /*
857  * Returns the type used in the eval stack when @type is loaded.
858  * FIXME: return a MonoType/MonoClass for the byref and VALUETYPE cases.
859  */
860 static void
861 type_to_eval_stack_type (MonoType *type, MonoInst *inst) {
862         int t = type->type;
863
864         if (type->byref) {
865                 inst->type = STACK_MP;
866                 return;
867         }
868
869 handle_enum:
870         switch (t) {
871         case MONO_TYPE_I1:
872         case MONO_TYPE_U1:
873         case MONO_TYPE_BOOLEAN:
874         case MONO_TYPE_I2:
875         case MONO_TYPE_U2:
876         case MONO_TYPE_CHAR:
877         case MONO_TYPE_I4:
878         case MONO_TYPE_U4:
879                 inst->type = STACK_I4;
880                 return;
881         case MONO_TYPE_I:
882         case MONO_TYPE_U:
883         case MONO_TYPE_PTR:
884         case MONO_TYPE_FNPTR:
885                 inst->type = STACK_PTR;
886                 return;
887         case MONO_TYPE_CLASS:
888         case MONO_TYPE_STRING:
889         case MONO_TYPE_OBJECT:
890         case MONO_TYPE_SZARRAY:
891         case MONO_TYPE_ARRAY:    
892                 inst->type = STACK_OBJ;
893                 return;
894         case MONO_TYPE_I8:
895         case MONO_TYPE_U8:
896                 inst->type = STACK_I8;
897                 return;
898         case MONO_TYPE_R4:
899         case MONO_TYPE_R8:
900                 inst->type = STACK_R8;
901                 return;
902         case MONO_TYPE_VALUETYPE:
903                 if (type->data.klass->enumtype) {
904                         t = type->data.klass->enum_basetype->type;
905                         goto handle_enum;
906                 } else {
907                         inst->klass = type->data.klass;
908                         inst->type = STACK_VTYPE;
909                         return;
910                 }
911         default:
912                 g_error ("unknown type 0x%02x in eval stack type", type->type);
913         }
914 }
915
916 /*
917  * The following tables are used to quickly validate the IL code in type_from_op ().
918  */
919 static const char
920 bin_num_table [STACK_MAX] [STACK_MAX] = {
921         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
922         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
923         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
924         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
925         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_R8,  STACK_INV, STACK_INV, STACK_INV},
926         {STACK_INV, STACK_MP,  STACK_INV, STACK_MP,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV},
927         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
928         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
929 };
930
931 static const char 
932 neg_table [] = {
933         STACK_INV, STACK_I4, STACK_I8, STACK_PTR, STACK_R8, STACK_INV, STACK_INV, STACK_INV
934 };
935
936 /* reduce the size of this table */
937 static const char
938 bin_int_table [STACK_MAX] [STACK_MAX] = {
939         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
940         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
941         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
942         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
943         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
944         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
945         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
946         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
947 };
948
949 static const char
950 bin_comp_table [STACK_MAX] [STACK_MAX] = {
951         {0},
952         {0, 1, 0, 1, 0, 0, 4, 0},
953         {0, 0, 1, 0, 0, 0, 0, 0},
954         {0, 1, 0, 1, 0, 2, 4, 0},
955         {0, 0, 0, 0, 1, 0, 0, 0},
956         {0, 0, 0, 2, 0, 1, 0, 0},
957         {0, 4, 0, 4, 0, 0, 3, 0},
958         {0, 0, 0, 0, 0, 0, 0, 0},
959 };
960
961 /* reduce the size of this table */
962 static const char
963 shift_table [STACK_MAX] [STACK_MAX] = {
964         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
965         {STACK_INV, STACK_I4,  STACK_INV, STACK_I4,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
966         {STACK_INV, STACK_I8,  STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
967         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
968         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
969         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
970         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
971         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
972 };
973
974 /*
975  * Tables to map from the non-specific opcode to the matching
976  * type-specific opcode.
977  */
978 /* handles from CEE_ADD to CEE_SHR_UN (CEE_REM_UN for floats) */
979 static const guint16
980 binops_op_map [STACK_MAX] = {
981         0, 0, OP_LADD-CEE_ADD, OP_PADD-CEE_ADD, OP_FADD-CEE_ADD, 0
982 };
983
984 /* handles from CEE_NEG to CEE_CONV_U8 */
985 static const guint16
986 unops_op_map [STACK_MAX] = {
987         0, 0, OP_LNEG-CEE_NEG, OP_PNEG-CEE_NEG, OP_FNEG-CEE_NEG, 0
988 };
989
990 /* handles from CEE_CONV_U2 to CEE_SUB_OVF_UN */
991 static const guint16
992 ovfops_op_map [STACK_MAX] = {
993         0, 0, OP_LCONV_TO_U2-CEE_CONV_U2, OP_PCONV_TO_U2-CEE_CONV_U2, OP_FCONV_TO_U2-CEE_CONV_U2, 0
994 };
995
996 /* handles from CEE_CONV_OVF_I1_UN to CEE_CONV_OVF_U_UN */
997 static const guint16
998 ovf2ops_op_map [STACK_MAX] = {
999         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
1000 };
1001
1002 /* handles from CEE_CONV_OVF_I1 to CEE_CONV_OVF_U8 */
1003 static const guint16
1004 ovf3ops_op_map [STACK_MAX] = {
1005         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
1006 };
1007
1008 /* handles from CEE_CEQ to CEE_CLT_UN */
1009 static const guint16
1010 ceqops_op_map [STACK_MAX] = {
1011         0, 0, OP_LCEQ-CEE_CEQ, OP_PCEQ-CEE_CEQ, OP_FCEQ-CEE_CEQ, 0
1012 };
1013
1014 /*
1015  * Sets ins->type (the type on the eval stack) according to the
1016  * type of the opcode and the arguments to it.
1017  * Invalid IL code is marked by setting ins->type to the invalid value STACK_INV.
1018  *
1019  * FIXME: this function sets ins->type unconditionally in some cases, but
1020  * it should set it to invalid for some types (a conv.x on an object)
1021  */
1022 static void
1023 type_from_op (MonoInst *ins) {
1024         switch (ins->opcode) {
1025         /* binops */
1026         case CEE_ADD:
1027         case CEE_SUB:
1028         case CEE_MUL:
1029         case CEE_DIV:
1030         case CEE_REM:
1031                 /* FIXME: check unverifiable args for STACK_MP */
1032                 ins->type = bin_num_table [ins->inst_i0->type] [ins->inst_i1->type];
1033                 ins->opcode += binops_op_map [ins->type];
1034                 return;
1035         case CEE_DIV_UN:
1036         case CEE_REM_UN:
1037         case CEE_AND:
1038         case CEE_OR:
1039         case CEE_XOR:
1040                 ins->type = bin_int_table [ins->inst_i0->type] [ins->inst_i1->type];
1041                 ins->opcode += binops_op_map [ins->type];
1042                 return;
1043         case CEE_SHL:
1044         case CEE_SHR:
1045         case CEE_SHR_UN:
1046                 ins->type = shift_table [ins->inst_i0->type] [ins->inst_i1->type];
1047                 ins->opcode += binops_op_map [ins->type];
1048                 return;
1049         case OP_COMPARE:
1050                 /* FIXME: handle some specifics with ins->next->type */
1051                 ins->type = bin_comp_table [ins->inst_i0->type] [ins->inst_i1->type] ? STACK_I4: STACK_INV;
1052                 return;
1053         case 256+CEE_CEQ:
1054         case 256+CEE_CGT:
1055         case 256+CEE_CGT_UN:
1056         case 256+CEE_CLT:
1057         case 256+CEE_CLT_UN:
1058                 ins->type = bin_comp_table [ins->inst_i0->type] [ins->inst_i1->type] ? STACK_I4: STACK_INV;
1059                 ins->opcode += ceqops_op_map [ins->inst_i0->type];
1060                 return;
1061         /* unops */
1062         case CEE_NEG:
1063                 ins->type = neg_table [ins->inst_i0->type];
1064                 ins->opcode += unops_op_map [ins->type];
1065                 return;
1066         case CEE_NOT:
1067                 if (ins->inst_i0->type >= STACK_I4 && ins->inst_i0->type <= STACK_PTR)
1068                         ins->type = ins->inst_i0->type;
1069                 else
1070                         ins->type = STACK_INV;
1071                 ins->opcode += unops_op_map [ins->type];
1072                 return;
1073         case CEE_CONV_I1:
1074         case CEE_CONV_I2:
1075         case CEE_CONV_I4:
1076         case CEE_CONV_U4:
1077                 ins->type = STACK_I4;
1078                 ins->opcode += unops_op_map [ins->inst_i0->type];
1079                 return;
1080         case CEE_CONV_R_UN:
1081                 ins->type = STACK_R8;
1082                 switch (ins->inst_i0->type) {
1083                 case STACK_I4:
1084                 case STACK_PTR:
1085                         break;
1086                 case STACK_I8:
1087                         ins->opcode = OP_LCONV_TO_R_UN; 
1088                         break;
1089                 }
1090                 return;
1091         case CEE_CONV_OVF_I1:
1092         case CEE_CONV_OVF_U1:
1093         case CEE_CONV_OVF_I2:
1094         case CEE_CONV_OVF_U2:
1095         case CEE_CONV_OVF_I4:
1096         case CEE_CONV_OVF_U4:
1097                 ins->type = STACK_I4;
1098                 ins->opcode += ovf3ops_op_map [ins->inst_i0->type];
1099                 return;
1100         case CEE_CONV_OVF_I_UN:
1101         case CEE_CONV_OVF_U_UN:
1102                 ins->type = STACK_PTR;
1103                 ins->opcode += ovf2ops_op_map [ins->inst_i0->type];
1104                 return;
1105         case CEE_CONV_OVF_I1_UN:
1106         case CEE_CONV_OVF_I2_UN:
1107         case CEE_CONV_OVF_I4_UN:
1108         case CEE_CONV_OVF_U1_UN:
1109         case CEE_CONV_OVF_U2_UN:
1110         case CEE_CONV_OVF_U4_UN:
1111                 ins->type = STACK_I4;
1112                 ins->opcode += ovf2ops_op_map [ins->inst_i0->type];
1113                 return;
1114         case CEE_CONV_U:
1115                 ins->type = STACK_PTR;
1116                 switch (ins->inst_i0->type) {
1117                 case STACK_I4:
1118                 case STACK_PTR:
1119                 case STACK_MP:
1120                         break;
1121                 case STACK_I8:
1122                         ins->opcode = OP_LCONV_TO_U;
1123                         break;
1124                 case STACK_R8:
1125                         ins->opcode = OP_FCONV_TO_U;
1126                         break;
1127                 }
1128                 return;
1129         case CEE_CONV_I8:
1130         case CEE_CONV_U8:
1131                 ins->type = STACK_I8;
1132                 ins->opcode += unops_op_map [ins->inst_i0->type];
1133                 return;
1134         case CEE_CONV_OVF_I8:
1135         case CEE_CONV_OVF_U8:
1136                 ins->type = STACK_I8;
1137                 ins->opcode += ovf3ops_op_map [ins->inst_i0->type];
1138                 return;
1139         case CEE_CONV_OVF_U8_UN:
1140         case CEE_CONV_OVF_I8_UN:
1141                 ins->type = STACK_I8;
1142                 ins->opcode += ovf2ops_op_map [ins->inst_i0->type];
1143                 return;
1144         case CEE_CONV_R4:
1145         case CEE_CONV_R8:
1146                 ins->type = STACK_R8;
1147                 ins->opcode += unops_op_map [ins->inst_i0->type];
1148                 return;
1149         case CEE_CKFINITE:
1150                 ins->type = STACK_R8;           
1151                 return;
1152         case CEE_CONV_U2:
1153         case CEE_CONV_U1:
1154                 ins->type = STACK_I4;
1155                 ins->opcode += ovfops_op_map [ins->inst_i0->type];
1156                 break;
1157         case CEE_CONV_I:
1158         case CEE_CONV_OVF_I:
1159         case CEE_CONV_OVF_U:
1160                 ins->type = STACK_PTR;
1161                 ins->opcode += ovfops_op_map [ins->inst_i0->type];
1162                 return;
1163         case CEE_ADD_OVF:
1164         case CEE_ADD_OVF_UN:
1165         case CEE_MUL_OVF:
1166         case CEE_MUL_OVF_UN:
1167         case CEE_SUB_OVF:
1168         case CEE_SUB_OVF_UN:
1169                 ins->type = bin_num_table [ins->inst_i0->type] [ins->inst_i1->type];
1170                 ins->opcode += ovfops_op_map [ins->inst_i0->type];
1171                 return;
1172         default:
1173                 g_error ("opcode 0x%04x not handled in type from op", ins->opcode);
1174                 break;
1175         }
1176 }
1177
1178 static const char 
1179 ldind_type [] = {
1180         STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I8, STACK_MP, STACK_R8, STACK_R8, STACK_OBJ
1181 };
1182
1183 /* map ldelem.x to the matching ldind.x opcode */
1184 static const guchar
1185 ldelem_to_ldind [] = {
1186         CEE_LDIND_I1,
1187         CEE_LDIND_U1,
1188         CEE_LDIND_I2,
1189         CEE_LDIND_U2,
1190         CEE_LDIND_I4,
1191         CEE_LDIND_U4,
1192         CEE_LDIND_I8,
1193         CEE_LDIND_I,
1194         CEE_LDIND_R4,
1195         CEE_LDIND_R8,
1196         CEE_LDIND_REF
1197 };
1198
1199 /* map stelem.x to the matching stind.x opcode */
1200 static const guchar
1201 stelem_to_stind [] = {
1202         CEE_STIND_I,
1203         CEE_STIND_I1,
1204         CEE_STIND_I2,
1205         CEE_STIND_I4,
1206         CEE_STIND_I8,
1207         CEE_STIND_R4,
1208         CEE_STIND_R8,
1209         CEE_STIND_REF
1210 };
1211
1212 #if 0
1213
1214 static const char
1215 param_table [STACK_MAX] [STACK_MAX] = {
1216         {0},
1217 };
1218
1219 static int
1220 check_values_to_signature (MonoInst *args, MonoType *this, MonoMethodSignature *sig) {
1221         int i;
1222
1223         if (sig->hasthis) {
1224                 switch (args->type) {
1225                 case STACK_I4:
1226                 case STACK_I8:
1227                 case STACK_R8:
1228                 case STACK_VTYPE:
1229                 case STACK_INV:
1230                         return 0;
1231                 }
1232                 args++;
1233         }
1234         for (i = 0; i < sig->param_count; ++i) {
1235                 switch (args [i].type) {
1236                 case STACK_INV:
1237                         return 0;
1238                 case STACK_MP:
1239                         if (!sig->params [i]->byref)
1240                                 return 0;
1241                         continue;
1242                 case STACK_OBJ:
1243                         if (sig->params [i]->byref)
1244                                 return 0;
1245                         switch (sig->params [i]->type) {
1246                         case MONO_TYPE_CLASS:
1247                         case MONO_TYPE_STRING:
1248                         case MONO_TYPE_OBJECT:
1249                         case MONO_TYPE_SZARRAY:
1250                         case MONO_TYPE_ARRAY:
1251                                 break;
1252                         default:
1253                                 return 0;
1254                         }
1255                         continue;
1256                 case STACK_R8:
1257                         if (sig->params [i]->byref)
1258                                 return 0;
1259                         if (sig->params [i]->type != MONO_TYPE_R4 && sig->params [i]->type != MONO_TYPE_R8)
1260                                 return 0;
1261                         continue;
1262                 case STACK_PTR:
1263                 case STACK_I4:
1264                 case STACK_I8:
1265                 case STACK_VTYPE:
1266                         break;
1267                 }
1268                 /*if (!param_table [args [i].type] [sig->params [i]->type])
1269                         return 0;*/
1270         }
1271         return 1;
1272 }
1273 #endif
1274
1275 /*
1276  * When we need a pointer to the current domain many times in a method, we
1277  * call mono_domain_get() once and we store the result in a local variable.
1278  * This function returns the variable that represents the MonoDomain*.
1279  */
1280 inline static MonoInst *
1281 mono_get_domainvar (MonoCompile *cfg)
1282 {
1283         if (!cfg->domainvar)
1284                 cfg->domainvar = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1285         return cfg->domainvar;
1286 }
1287
1288 MonoInst*
1289 mono_compile_create_var (MonoCompile *cfg, MonoType *type, int opcode)
1290 {
1291         MonoInst *inst;
1292         int num = cfg->num_varinfo;
1293
1294         if ((num + 1) >= cfg->varinfo_count) {
1295                 cfg->varinfo_count = (cfg->varinfo_count + 2) * 2;
1296                 cfg->varinfo = (MonoInst **)g_realloc (cfg->varinfo, sizeof (MonoInst*) * cfg->varinfo_count);
1297                 cfg->vars = (MonoMethodVar **)g_realloc (cfg->vars, sizeof (MonoMethodVar*) * cfg->varinfo_count);      
1298         }
1299
1300         mono_jit_stats.allocate_var++;
1301
1302         MONO_INST_NEW (cfg, inst, opcode);
1303         inst->inst_c0 = num;
1304         inst->inst_vtype = type;
1305         inst->klass = mono_class_from_mono_type (type);
1306         /* if set to 1 the variable is native */
1307         inst->unused = 0;
1308
1309         cfg->varinfo [num] = inst;
1310
1311         cfg->vars [num] = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoMethodVar));
1312         MONO_INIT_VARINFO (cfg->vars [num], num);
1313
1314         cfg->num_varinfo++;
1315         //g_print ("created temp %d of type %s\n", num, mono_type_get_name (type));
1316         return inst;
1317 }
1318
1319 static MonoType*
1320 type_from_stack_type (MonoInst *ins) {
1321         switch (ins->type) {
1322         case STACK_I4: return &mono_defaults.int32_class->byval_arg;
1323         case STACK_I8: return &mono_defaults.int64_class->byval_arg;
1324         case STACK_PTR: return &mono_defaults.int_class->byval_arg;
1325         case STACK_R8: return &mono_defaults.double_class->byval_arg;
1326         case STACK_MP: return &mono_defaults.int_class->byval_arg;
1327         case STACK_OBJ: return &mono_defaults.object_class->byval_arg;
1328         case STACK_VTYPE: return &ins->klass->byval_arg;
1329         default:
1330                 g_error ("stack type %d to montype not handled\n", ins->type);
1331         }
1332         return NULL;
1333 }
1334
1335 static MonoClass*
1336 array_access_to_klass (int opcode)
1337 {
1338         switch (opcode) {
1339         case CEE_LDELEM_U1:
1340                 return mono_defaults.byte_class;
1341         case CEE_LDELEM_U2:
1342                 return mono_defaults.uint16_class;
1343         case CEE_LDELEM_I:
1344         case CEE_STELEM_I:
1345                 return mono_defaults.int_class;
1346         case CEE_LDELEM_I1:
1347         case CEE_STELEM_I1:
1348                 return mono_defaults.sbyte_class;
1349         case CEE_LDELEM_I2:
1350         case CEE_STELEM_I2:
1351                 return mono_defaults.int16_class;
1352         case CEE_LDELEM_I4:
1353         case CEE_STELEM_I4:
1354                 return mono_defaults.int32_class;
1355         case CEE_LDELEM_U4:
1356                 return mono_defaults.uint32_class;
1357         case CEE_LDELEM_I8:
1358         case CEE_STELEM_I8:
1359                 return mono_defaults.int64_class;
1360         case CEE_LDELEM_R4:
1361         case CEE_STELEM_R4:
1362                 return mono_defaults.single_class;
1363         case CEE_LDELEM_R8:
1364         case CEE_STELEM_R8:
1365                 return mono_defaults.double_class;
1366         case CEE_LDELEM_REF:
1367         case CEE_STELEM_REF:
1368                 return mono_defaults.object_class;
1369         default:
1370                 g_assert_not_reached ();
1371         }
1372         return NULL;
1373 }
1374
1375 static void
1376 mono_add_ins_to_end (MonoBasicBlock *bb, MonoInst *inst)
1377 {
1378         MonoInst *prev;
1379         if (!bb->code) {
1380                 MONO_ADD_INS (bb, inst);
1381                 return;
1382         }
1383         switch (bb->last_ins->opcode) {
1384         case CEE_BEQ:
1385         case CEE_BGE:
1386         case CEE_BGT:
1387         case CEE_BLE:
1388         case CEE_BLT:
1389         case CEE_BNE_UN:
1390         case CEE_BGE_UN:
1391         case CEE_BGT_UN:
1392         case CEE_BLE_UN:
1393         case CEE_BLT_UN:
1394         case CEE_BR:
1395                 prev = bb->code;
1396                 while (prev->next && prev->next != bb->last_ins)
1397                         prev = prev->next;
1398                 if (prev == bb->code) {
1399                         if (bb->last_ins == bb->code) {
1400                                 inst->next = bb->code;
1401                                 bb->code = inst;
1402                         } else {
1403                                 inst->next = prev->next;
1404                                 prev->next = inst;
1405                         }
1406                 } else {
1407                         inst->next = bb->last_ins;
1408                         prev->next = inst;
1409                 }
1410                 break;
1411         //      g_warning ("handle conditional jump in add_ins_to_end ()\n");
1412         default:
1413                 MONO_ADD_INS (bb, inst);
1414                 break;
1415         }
1416 }
1417
1418 void
1419 mono_add_varcopy_to_end (MonoCompile *cfg, MonoBasicBlock *bb, int src, int dest)
1420 {
1421         MonoInst *inst, *load;
1422
1423         NEW_TEMPLOAD (cfg, load, src);
1424
1425         NEW_TEMPSTORE (cfg, inst, dest, load);
1426         if (inst->opcode == CEE_STOBJ) {
1427                 NEW_TEMPLOADA (cfg, inst, dest);
1428                 handle_stobj (cfg, bb, inst, load, NULL, inst->klass, TRUE, FALSE);
1429         } else {
1430                 inst->cil_code = NULL;
1431                 mono_add_ins_to_end (bb, inst);
1432         }
1433 }
1434
1435 /*
1436  * We try to share variables when possible
1437  */
1438 static MonoInst *
1439 mono_compile_get_interface_var (MonoCompile *cfg, int slot, MonoInst *ins)
1440 {
1441         MonoInst *res;
1442         int pos, vnum;
1443
1444         /* inlining can result in deeper stacks */ 
1445         if (slot >= ((MonoMethodNormal *)cfg->method)->header->max_stack)
1446                 return mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1447
1448         pos = ins->type - 1 + slot * STACK_MAX;
1449
1450         switch (ins->type) {
1451         case STACK_I4:
1452         case STACK_I8:
1453         case STACK_R8:
1454         case STACK_PTR:
1455         case STACK_MP:
1456         case STACK_OBJ:
1457                 if ((vnum = cfg->intvars [pos]))
1458                         return cfg->varinfo [vnum];
1459                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1460                 cfg->intvars [pos] = res->inst_c0;
1461                 break;
1462         default:
1463                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1464         }
1465         return res;
1466 }
1467
1468 /*
1469  * This function is called to handle items that are left on the evaluation stack
1470  * at basic block boundaries. What happens is that we save the values to local variables
1471  * and we reload them later when first entering the target basic block (with the
1472  * handle_loaded_temps () function).
1473  * A single joint point will use the same variables (stored in the array bb->out_stack or
1474  * bb->in_stack, if the basic block is before or after the joint point).
1475  */
1476 static int
1477 handle_stack_args (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **sp, int count) {
1478         int i;
1479         MonoBasicBlock *outb;
1480         MonoInst *inst, **locals;
1481
1482         if (!count)
1483                 return 0;
1484         if (cfg->verbose_level > 3)
1485                 g_print ("%d item(s) on exit from B%d\n", count, bb->block_num);
1486         if (!bb->out_scount) {
1487                 int found = 0;
1488                 bb->out_scount = count;
1489                 //g_print ("bblock %d has out:", bb->block_num);
1490                 for (i = 0; i < bb->out_count; ++i) {
1491                         outb = bb->out_bb [i];
1492                         //g_print (" %d", outb->block_num);
1493                         if (outb->in_stack) {
1494                                 found = 1;
1495                                 bb->out_stack = outb->in_stack;
1496                                 break;
1497                         }
1498                 }
1499                 //g_print ("\n");
1500                 if (!found) {
1501                         bb->out_stack = mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * count);
1502                         for (i = 0; i < count; ++i) {
1503 #if 1
1504                                 /* try to reuse temps already allocated for this purpouse, if they occupy the same 
1505                                  * stack slot and if they are of the same type. */
1506                                 bb->out_stack [i] = mono_compile_get_interface_var (cfg, i, sp [i]);
1507 #else
1508                                 bb->out_stack [i] = mono_compile_create_var (cfg, type_from_stack_type (sp [i]), OP_LOCAL);
1509 #endif
1510                         }
1511                 }
1512         }
1513         locals = bb->out_stack;
1514         for (i = 0; i < count; ++i) {
1515                 /* add store ops at the end of the bb, before the branch */
1516                 NEW_TEMPSTORE (cfg, inst, locals [i]->inst_c0, sp [i]);
1517                 if (inst->opcode == CEE_STOBJ) {
1518                         NEW_TEMPLOADA (cfg, inst, locals [i]->inst_c0);
1519                         handle_stobj (cfg, bb, inst, sp [i], sp [i]->cil_code, inst->klass, TRUE, FALSE);
1520                 } else {
1521                         inst->cil_code = sp [i]->cil_code;
1522                         mono_add_ins_to_end (bb, inst);
1523                 }
1524                 if (cfg->verbose_level > 3)
1525                         g_print ("storing %d to temp %d\n", i, locals [i]->inst_c0);
1526         }
1527         
1528         for (i = 0; i < bb->out_count; ++i) {
1529                 outb = bb->out_bb [i];
1530                 if (outb->in_scount)
1531                         continue; /* check they are the same locals */
1532                 outb->in_scount = count;
1533                 outb->in_stack = locals;
1534         }
1535         return 0;
1536 }
1537
1538 static int
1539 ret_type_to_call_opcode (MonoType *type, int calli, int virt)
1540 {
1541         int t = type->type;
1542
1543         if (type->byref)
1544                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1545
1546 handle_enum:
1547         switch (t) {
1548         case MONO_TYPE_VOID:
1549                 return calli? OP_VOIDCALL_REG: virt? OP_VOIDCALLVIRT: OP_VOIDCALL;
1550         case MONO_TYPE_I1:
1551         case MONO_TYPE_U1:
1552         case MONO_TYPE_BOOLEAN:
1553         case MONO_TYPE_I2:
1554         case MONO_TYPE_U2:
1555         case MONO_TYPE_CHAR:
1556         case MONO_TYPE_I4:
1557         case MONO_TYPE_U4:
1558                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1559         case MONO_TYPE_I:
1560         case MONO_TYPE_U:
1561         case MONO_TYPE_PTR:
1562                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1563         case MONO_TYPE_CLASS:
1564         case MONO_TYPE_STRING:
1565         case MONO_TYPE_OBJECT:
1566         case MONO_TYPE_SZARRAY:
1567         case MONO_TYPE_ARRAY:    
1568                 return calli? OP_CALL_REG: virt? CEE_CALLVIRT: CEE_CALL;
1569         case MONO_TYPE_I8:
1570         case MONO_TYPE_U8:
1571                 return calli? OP_LCALL_REG: virt? OP_LCALLVIRT: OP_LCALL;
1572         case MONO_TYPE_R4:
1573         case MONO_TYPE_R8:
1574                 return calli? OP_FCALL_REG: virt? OP_FCALLVIRT: OP_FCALL;
1575         case MONO_TYPE_VALUETYPE:
1576                 if (type->data.klass->enumtype) {
1577                         t = type->data.klass->enum_basetype->type;
1578                         goto handle_enum;
1579                 } else
1580                         return calli? OP_VCALL_REG: virt? OP_VCALLVIRT: OP_VCALL;
1581         default:
1582                 g_error ("unknown type %02x in ret_type_to_call_opcode", type->type);
1583         }
1584         return -1;
1585 }
1586
1587 void
1588 mono_create_jump_table (MonoCompile *cfg, MonoInst *label, MonoBasicBlock **bbs, int num_blocks)
1589 {
1590         MonoJumpInfo *ji = mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfo));
1591         
1592         ji->ip.label = label;
1593         ji->type = MONO_PATCH_INFO_SWITCH;
1594         ji->data.table = bbs;
1595         ji->next = cfg->patch_info;
1596         ji->table_size = num_blocks;
1597         cfg->patch_info = ji;
1598 }
1599
1600 /*
1601  * When we add a tree of instructions, we need to ensure the instructions currently
1602  * on the stack are executed before (like, if we load a value from a local).
1603  * We ensure this by saving the currently loaded values to temps and rewriting the
1604  * instructions to load the values.
1605  * This is not done for opcodes that terminate a basic block (because it's handled already
1606  * by handle_stack_args ()) and for opcodes that can't change values, like POP.
1607  */
1608 static void
1609 handle_loaded_temps (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst **stack, MonoInst **sp)
1610 {
1611         MonoInst *load, *store, *temp, *ins;
1612
1613         while (stack < sp) {
1614                 ins = *stack;
1615                 /* handle also other constants */
1616                 if (ins->opcode != OP_ICONST) {
1617                         temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1618                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
1619                         store->cil_code = ins->cil_code;
1620                         if (store->opcode == CEE_STOBJ) {
1621                                 NEW_TEMPLOADA (cfg, store, temp->inst_c0);
1622                                 handle_stobj (cfg, bblock, store, ins, ins->cil_code, temp->klass, FALSE, FALSE);
1623                         } else
1624                                 MONO_ADD_INS (bblock, store);
1625                         NEW_TEMPLOAD (cfg, load, temp->inst_c0);
1626                         load->cil_code = ins->cil_code;
1627                         *stack = load;
1628                 }
1629                 stack++;
1630         }
1631 }
1632
1633 inline static int
1634 mono_spill_call (MonoCompile *cfg, MonoBasicBlock *bblock, MonoCallInst *call, MonoMethodSignature *sig, gboolean ret_object, 
1635                  const guint8 *ip, gboolean to_end)
1636 {
1637         MonoInst *temp, *store, *ins = (MonoInst*)call;
1638         MonoType *ret = sig->ret;
1639
1640         if (!MONO_TYPE_IS_VOID (ret) || ret_object) {
1641                 if (ret_object) {
1642                         call->inst.type = STACK_OBJ;
1643                         call->inst.opcode = CEE_CALL;
1644                         temp = mono_compile_create_var (cfg, &mono_defaults.string_class->byval_arg, OP_LOCAL);
1645                 } else {
1646                         type_to_eval_stack_type (ret, ins);
1647                         temp = mono_compile_create_var (cfg, ret, OP_LOCAL);
1648                 }
1649
1650                 if (MONO_TYPE_ISSTRUCT (ret)) {
1651                         MonoInst *loada;
1652
1653                         /* we use this to allocate native sized structs */
1654                         temp->unused = sig->pinvoke;
1655
1656                         NEW_TEMPLOADA (cfg, loada, temp->inst_c0);
1657                         if (call->inst.opcode == OP_VCALL)
1658                                 ins->inst_left = loada;
1659                         else
1660                                 ins->inst_right = loada; /* a virtual or indirect call */
1661
1662                         if (to_end)
1663                                 mono_add_ins_to_end (bblock, ins);
1664                         else
1665                                 MONO_ADD_INS (bblock, ins);
1666                 } else {
1667                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
1668                         store->cil_code = ip;
1669                         if (to_end)
1670                                 mono_add_ins_to_end (bblock, store);
1671                         else
1672                                 MONO_ADD_INS (bblock, store);
1673                 }
1674                 return temp->inst_c0;
1675         } else {
1676                 if (to_end)
1677                         mono_add_ins_to_end (bblock, ins);
1678                 else
1679                         MONO_ADD_INS (bblock, ins);
1680                 return -1;
1681         }
1682 }
1683
1684 inline static MonoCallInst *
1685 mono_emit_call_args (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethodSignature *sig, 
1686                      MonoInst **args, int calli, int virtual, const guint8 *ip, gboolean to_end)
1687 {
1688         MonoCallInst *call;
1689         int i;
1690
1691         MONO_INST_NEW_CALL (cfg, call, ret_type_to_call_opcode (sig->ret, calli, virtual));
1692         
1693         call->inst.cil_code = ip;
1694         call->args = args;
1695         call->signature = sig;
1696         call = mono_arch_call_opcode (cfg, bblock, call, virtual);
1697
1698         for (i = 0; i < (sig->param_count + sig->hasthis); ++i) {
1699                 if (call->args [i]) {
1700                         if (!call->args [i]->cil_code)
1701                                 call->args [i]->cil_code = ip;
1702                         if (to_end)
1703                                 mono_add_ins_to_end (bblock, call->args [i]);
1704                         else
1705                                 MONO_ADD_INS (bblock, call->args [i]);
1706                 }
1707         }
1708         return call;
1709 }
1710
1711 inline static int
1712 mono_emit_calli (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethodSignature *sig, 
1713                  MonoInst **args, MonoInst *addr, const guint8 *ip)
1714 {
1715         MonoCallInst *call = mono_emit_call_args (cfg, bblock, sig, args, TRUE, FALSE, ip, FALSE);
1716
1717         call->inst.inst_i0 = addr;
1718
1719         return mono_spill_call (cfg, bblock, call, sig, FALSE, ip, FALSE);
1720 }
1721
1722 static MonoCallInst*
1723 mono_emit_method_call (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethod *method, MonoMethodSignature *sig,
1724                        MonoInst **args, const guint8 *ip, MonoInst *this)
1725 {
1726         gboolean virtual = this != NULL;
1727         MonoCallInst *call;
1728
1729         call = mono_emit_call_args (cfg, bblock, sig, args, FALSE, virtual, ip, FALSE);
1730
1731         if (this && sig->hasthis && 
1732             (method->klass->marshalbyref || method->klass == mono_defaults.object_class) && 
1733             !(method->flags & METHOD_ATTRIBUTE_VIRTUAL) && !MONO_CHECK_THIS (this)) {
1734                 call->method = mono_marshal_get_remoting_invoke_with_check (method);
1735         } else {
1736                 call->method = method;
1737         }
1738         call->inst.flags |= MONO_INST_HAS_METHOD;
1739         call->inst.inst_left = this;
1740
1741         return call;
1742 }
1743
1744 inline static int
1745 mono_emit_method_call_spilled (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethod *method,  
1746                        MonoInst **args, const guint8 *ip, MonoInst *this)
1747 {
1748         MonoCallInst *call = mono_emit_method_call (cfg, bblock, method, method->signature, args, ip, this);
1749
1750         return mono_spill_call (cfg, bblock, call, method->signature, method->string_ctor, ip, FALSE);
1751 }
1752
1753 inline static int
1754 mono_emit_native_call (MonoCompile *cfg, MonoBasicBlock *bblock, gconstpointer func, MonoMethodSignature *sig,
1755                        MonoInst **args, const guint8 *ip, gboolean to_end)
1756 {
1757         MonoCallInst *call;
1758
1759         g_assert (sig);
1760
1761         call = mono_emit_call_args (cfg, bblock, sig, args, FALSE, FALSE, ip, to_end);
1762         call->fptr = func;
1763         return mono_spill_call (cfg, bblock, call, sig, func == mono_array_new_va, ip, to_end);
1764 }
1765
1766 inline static int
1767 mono_emit_jit_icall (MonoCompile *cfg, MonoBasicBlock *bblock, gconstpointer func, MonoInst **args, const guint8 *ip)
1768 {
1769         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (func);
1770         
1771         if (!info) {
1772                 g_warning ("unregistered JIT ICall");
1773                 g_assert_not_reached ();
1774         }
1775
1776         return mono_emit_native_call (cfg, bblock, info->wrapper, info->sig, args, ip, FALSE);
1777 }
1778
1779 static void
1780 mono_emulate_opcode (MonoCompile *cfg, MonoInst *tree, MonoInst **iargs, MonoJitICallInfo *info)
1781 {
1782         MonoInst *ins, *temp = NULL, *store, *load;
1783         int i, nargs;
1784         MonoCallInst *call;
1785
1786         /*g_print ("emulating: ");
1787         mono_print_tree (tree);
1788         g_print ("\n");*/
1789         MONO_INST_NEW_CALL (cfg, call, ret_type_to_call_opcode (info->sig->ret, FALSE, FALSE));
1790         ins = (MonoInst*)call;
1791         
1792         call->inst.cil_code = tree->cil_code;
1793         call->args = iargs;
1794         call->signature = info->sig;
1795
1796         call = mono_arch_call_opcode (cfg, cfg->cbb, call, FALSE);
1797
1798         if (!MONO_TYPE_IS_VOID (info->sig->ret)) {
1799                 temp = mono_compile_create_var (cfg, info->sig->ret, OP_LOCAL);
1800                 NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
1801                 store->cil_code = tree->cil_code;
1802         } else {
1803                 store = ins;
1804         }
1805
1806         nargs = info->sig->param_count + info->sig->hasthis;
1807
1808         for (i = 1; i < nargs; i++) {
1809                 call->args [i - 1]->next = call->args [i];
1810         }
1811
1812         if (nargs)
1813                 call->args [nargs - 1]->next = store;
1814
1815         if (cfg->prev_ins) {
1816                 store->next = cfg->prev_ins->next;
1817                 if (nargs)
1818                         cfg->prev_ins->next =  call->args [0];
1819                 else
1820                         cfg->prev_ins->next = store;
1821         } else {
1822                 store->next = cfg->cbb->code;
1823                 if (nargs)              
1824                         cfg->cbb->code = call->args [0];
1825                 else
1826                         cfg->cbb->code = store;
1827         }
1828
1829         
1830         call->fptr = info->wrapper;
1831
1832         if (!MONO_TYPE_IS_VOID (info->sig->ret)) {
1833                 NEW_TEMPLOAD (cfg, load, temp->inst_c0);
1834                 *tree = *load;
1835         }
1836 }
1837
1838 static MonoMethodSignature *
1839 mono_get_element_address_signature (int arity)
1840 {
1841         static GHashTable *sighash = NULL;
1842         MonoMethodSignature *res;
1843         int i;
1844
1845         if (!sighash)
1846                 sighash = g_hash_table_new (NULL, NULL);
1847
1848
1849         if ((res = g_hash_table_lookup (sighash, (gpointer)arity)))
1850                 return res;
1851
1852         res = mono_metadata_signature_alloc (mono_defaults.corlib, arity + 1);
1853
1854         res->params [0] = &mono_defaults.array_class->byval_arg; 
1855         
1856         for (i = 1; i <= arity; i++)
1857                 res->params [i] = &mono_defaults.int_class->byval_arg;
1858
1859         res->ret = &mono_defaults.int_class->byval_arg;
1860
1861         g_hash_table_insert (sighash, (gpointer)arity, res);
1862
1863         return res;
1864 }
1865
1866 static void
1867 handle_stobj (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *dest, MonoInst *src, const unsigned char *ip, MonoClass *klass, gboolean to_end, gboolean native) {
1868         MonoInst *iargs [3];
1869         int n;
1870         guint32 align = 0;
1871
1872         g_assert (klass);
1873         /*
1874          * This check breaks with spilled vars... need to handle it during verification anyway.
1875          * g_assert (klass && klass == src->klass && klass == dest->klass);
1876          */
1877
1878         if (native)
1879                 n = mono_class_native_size (klass, &align);
1880         else
1881                 n = mono_class_value_size (klass, &align);
1882
1883         if ((cfg->opt & MONO_OPT_INTRINS) && !to_end && n <= sizeof (gpointer) * 5) {
1884                 MonoInst *inst;
1885                 MONO_INST_NEW (cfg, inst, OP_MEMCPY);
1886                 inst->inst_left = dest;
1887                 inst->inst_right = src;
1888                 inst->cil_code = ip;
1889                 inst->unused = n;
1890                 MONO_ADD_INS (bblock, inst);
1891                 return;
1892         }
1893         iargs [0] = dest;
1894         iargs [1] = src;
1895         NEW_ICONST (cfg, iargs [2], n);
1896
1897         mono_emit_native_call (cfg, bblock, helper_memcpy, helper_sig_memcpy, iargs, ip, to_end);
1898 }
1899
1900 static void
1901 handle_initobj (MonoCompile *cfg, MonoBasicBlock *bblock, MonoInst *dest, const guchar *ip, MonoClass *klass, MonoInst **stack_start, MonoInst **sp)
1902 {
1903         MonoInst *iargs [2];
1904         MonoInst *ins, *zero_int32;
1905         int n;
1906
1907         NEW_ICONST (cfg, zero_int32, 0);
1908
1909         mono_class_init (klass);
1910         n = mono_class_value_size (klass, NULL);
1911         MONO_INST_NEW (cfg, ins, 0);
1912         ins->cil_code = ip;
1913         ins->inst_left = dest;
1914         ins->inst_right = zero_int32;
1915         switch (n) {
1916         case 1:
1917                 ins->opcode = CEE_STIND_I1;
1918                 MONO_ADD_INS (bblock, ins);
1919                 break;
1920         case 2:
1921                 ins->opcode = CEE_STIND_I2;
1922                 MONO_ADD_INS (bblock, ins);
1923                 break;
1924         case 4:
1925                 ins->opcode = CEE_STIND_I4;
1926                 MONO_ADD_INS (bblock, ins);
1927                 break;
1928         default:
1929                 handle_loaded_temps (cfg, bblock, stack_start, sp);
1930                 NEW_ICONST (cfg, ins, n);
1931                 iargs [0] = dest;
1932                 iargs [1] = ins;
1933                 mono_emit_jit_icall (cfg, bblock, helper_initobj, iargs, ip);
1934                 break;
1935         }
1936 }
1937
1938 #define CODE_IS_STLOC(ip) (((ip) [0] >= CEE_STLOC_0 && (ip) [0] <= CEE_STLOC_3) || ((ip) [0] == CEE_STLOC_S))
1939
1940 static gboolean
1941 mono_method_check_inlining (MonoMethod *method)
1942 {
1943         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
1944         MonoMethodSignature *signature = method->signature;
1945         int i;
1946
1947         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
1948             (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
1949             (method->iflags & METHOD_IMPL_ATTRIBUTE_NOINLINING) ||
1950             (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) ||
1951             (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
1952             (method->klass->marshalbyref) ||
1953             !header || header->num_clauses ||
1954             /* fixme: why cant we inline valuetype returns? */
1955             MONO_TYPE_ISSTRUCT (signature->ret))
1956                 return FALSE;
1957
1958         /* its not worth to inline methods with valuetype arguments?? */
1959         for (i = 0; i < signature->param_count; i++) {
1960                 if (MONO_TYPE_ISSTRUCT (signature->params [i])) {
1961                         return FALSE;
1962                 }
1963         }
1964
1965         //if (!MONO_TYPE_IS_VOID (signature->ret)) return FALSE;
1966
1967         /* also consider num_locals? */
1968         if (header->code_size < 20)
1969                 return TRUE;
1970
1971         return FALSE;
1972 }
1973
1974 static MonoInst*
1975 mini_get_ldelema_ins (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethod *cmethod, MonoInst **sp, unsigned char *ip, gboolean is_set)
1976 {
1977         int temp, rank;
1978         MonoInst *addr;
1979         MonoMethodSignature *esig;
1980
1981         rank = cmethod->signature->param_count - (is_set? 1: 0);
1982         /* 
1983          * FIXME: handle TypeMismatch for set or use the slow path
1984          * for that.
1985          */
1986         if (rank == 2 && (cfg->opt & MONO_OPT_INTRINS)) {
1987                 MonoInst *indexes;
1988                 NEW_GROUP (cfg, indexes, sp [1], sp [2]);
1989                 MONO_INST_NEW (cfg, addr, OP_LDELEMA2D);
1990                 addr->inst_left = sp [0];
1991                 addr->inst_right = indexes;
1992                 addr->cil_code = ip;
1993                 addr->type = STACK_MP;
1994                 addr->klass = cmethod->klass;
1995                 return addr;
1996         }
1997         esig = mono_get_element_address_signature (rank);
1998         temp = mono_emit_native_call (cfg, bblock, ves_array_element_address, esig, sp, ip, FALSE);
1999         NEW_TEMPLOAD (cfg, addr, temp);
2000         return addr;
2001 }
2002
2003 static MonoInst*
2004 mini_get_opcode_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
2005 {
2006         int pc, op;
2007         MonoInst *ins;
2008
2009         if (cmethod->klass == mono_defaults.string_class) {
2010                 if (cmethod->name [0] != 'g' || strcmp (cmethod->name, "get_Chars"))
2011                         return NULL;
2012                 op = OP_GETCHR;
2013         } else if (cmethod->klass == mono_defaults.math_class) {
2014                 if (strcmp (cmethod->name, "Sin") == 0)
2015                         op = OP_SIN;
2016                 else if (strcmp (cmethod->name, "Cos") == 0)
2017                         op = OP_COS;
2018                 else if (strcmp (cmethod->name, "Tan") == 0)
2019                         op = OP_TAN;
2020                 else if (strcmp (cmethod->name, "Atan") == 0)
2021                         op = OP_ATAN;
2022                 else if (strcmp (cmethod->name, "Sqrt") == 0)
2023                         op = OP_SQRT;
2024                 else if (strcmp (cmethod->name, "Abs") == 0 && fsig->params [0]->type == MONO_TYPE_R8)
2025                         op = OP_ABS;
2026                 else
2027                         return NULL;
2028         } else {
2029                 return NULL;
2030         }
2031         pc = fsig->param_count + fsig->hasthis;
2032         MONO_INST_NEW (cfg, ins, op);
2033
2034         if (pc > 0) {
2035                 ins->inst_i0 = args [0];
2036                 if (pc > 1)
2037                         ins->inst_i1 = args [1];
2038         }
2039
2040         return ins;
2041 }
2042
2043 static void
2044 mono_save_args (MonoCompile *cfg, MonoBasicBlock *bblock, MonoMethodSignature *sig, MonoInst **sp, MonoInst **args)
2045 {
2046         MonoInst *store, *temp;
2047         int i;
2048
2049         g_assert (!MONO_TYPE_ISSTRUCT (sig->ret));
2050
2051         if (!sig->hasthis && sig->param_count == 0) 
2052                 return;
2053
2054         if (sig->hasthis) {
2055                 if (sp [0]->opcode == OP_ICONST) {
2056                         *args++ = sp [0];
2057                 } else {
2058                         temp = mono_compile_create_var (cfg, type_from_stack_type (*sp), OP_LOCAL);
2059                         *args++ = temp;
2060                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, *sp);
2061                         store->cil_code = sp [0]->cil_code;
2062                         MONO_ADD_INS (bblock, store);
2063                 }
2064                 sp++;
2065         }
2066
2067         for (i = 0; i < sig->param_count; ++i) {
2068                 if (sp [0]->opcode == OP_ICONST) {
2069                         *args++ = sp [0];
2070                 } else {
2071                         temp = mono_compile_create_var (cfg, sig->params [i], OP_LOCAL);
2072                         *args++ = temp;
2073                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, *sp);
2074                         store->cil_code = sp [0]->cil_code;
2075                         if (store->opcode == CEE_STOBJ) {
2076                                 NEW_TEMPLOADA (cfg, store, temp->inst_c0);
2077                                 handle_stobj (cfg, bblock, store, *sp, sp [0]->cil_code, temp->klass, FALSE, FALSE);
2078                         } else {
2079                                 MONO_ADD_INS (bblock, store);
2080                         } 
2081                 }
2082                 sp++;
2083         }
2084 }
2085
2086 static int
2087 inline_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoBasicBlock *bblock, MonoInst **sp,
2088                 guchar *ip, guint real_offset, GList *dont_inline, MonoBasicBlock **last_b)
2089 {
2090         MonoInst *ins, *rvar = NULL;
2091         MonoMethodHeader *cheader;
2092         MonoBasicBlock *ebblock, *sbblock;
2093         int i, costs, new_locals_offset;
2094
2095         if (cfg->verbose_level > 2)
2096                 g_print ("INLINE START %p %s\n", cmethod,  mono_method_full_name (cmethod, TRUE));
2097
2098         cheader = ((MonoMethodNormal *)cmethod)->header;
2099
2100         if (!cmethod->inline_info) {
2101                 mono_jit_stats.inlineable_methods++;
2102                 cmethod->inline_info = 1;
2103         }
2104         /* allocate space to store the return value */
2105         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
2106                 rvar =  mono_compile_create_var (cfg, fsig->ret, OP_LOCAL);
2107         }
2108
2109         /* allocate local variables */
2110         new_locals_offset = cfg->num_varinfo;
2111         for (i = 0; i < cheader->num_locals; ++i)
2112                 mono_compile_create_var (cfg, cheader->locals [i], OP_LOCAL);
2113         
2114         /* allocate starte and end blocks */
2115         sbblock = NEW_BBLOCK (cfg);
2116         sbblock->block_num = cfg->num_bblocks++;
2117         sbblock->real_offset = real_offset;
2118
2119         ebblock = NEW_BBLOCK (cfg);
2120         ebblock->block_num = cfg->num_bblocks++;
2121         ebblock->real_offset = real_offset;
2122         
2123         costs = mono_method_to_ir (cfg, cmethod, sbblock, ebblock, new_locals_offset, rvar, dont_inline, sp, real_offset, *ip == CEE_CALLVIRT);
2124         
2125         if (costs >= 0 && costs < 60) {
2126                 if (cfg->verbose_level > 2)
2127                         g_print ("INLINE END %s\n", mono_method_full_name (cmethod, TRUE));
2128                 
2129                 mono_jit_stats.inlined_methods++;
2130
2131                 /* always add some code to avoid block split failures */
2132                 MONO_INST_NEW (cfg, ins, CEE_NOP);
2133                 MONO_ADD_INS (bblock, ins);
2134                 ins->cil_code = ip;
2135
2136                 bblock->next_bb = sbblock;
2137                 link_bblock (cfg, bblock, sbblock);
2138
2139                 if (rvar) {
2140                         NEW_TEMPLOAD (cfg, ins, rvar->inst_c0);
2141                         *sp++ = ins;
2142                 }
2143                 *last_b = ebblock;
2144                 return costs + 1;
2145         } else {
2146                 if (cfg->verbose_level > 2)
2147                         g_print ("INLINE ABORTED %s\n", mono_method_full_name (cmethod, TRUE));
2148         }
2149         return 0;
2150 }
2151
2152 /*
2153  * Some of these comments may well be out-of-date.
2154  * Design decisions: we do a single pass over the IL code (and we do bblock 
2155  * splitting/merging in the few cases when it's required: a back jump to an IL
2156  * address that was not already seen as bblock starting point).
2157  * Code is validated as we go (full verification is still better left to metadata/verify.c).
2158  * Complex operations are decomposed in simpler ones right away. We need to let the 
2159  * arch-specific code peek and poke inside this process somehow (except when the 
2160  * optimizations can take advantage of the full semantic info of coarse opcodes).
2161  * All the opcodes of the form opcode.s are 'normalized' to opcode.
2162  * MonoInst->opcode initially is the IL opcode or some simplification of that 
2163  * (OP_LOAD, OP_STORE). The arch-specific code may rearrange it to an arch-specific 
2164  * opcode with value bigger than OP_LAST.
2165  * At this point the IR can be handed over to an interpreter, a dumb code generator
2166  * or to the optimizing code generator that will translate it to SSA form.
2167  *
2168  * Profiling directed optimizations.
2169  * We may compile by default with few or no optimizations and instrument the code
2170  * or the user may indicate what methods to optimize the most either in a config file
2171  * or through repeated runs where the compiler applies offline the optimizations to 
2172  * each method and then decides if it was worth it.
2173  *
2174  * TODO:
2175  * * consider using an array instead of an hash table (bb_hash)
2176  */
2177
2178 #define CHECK_TYPE(ins) if (!(ins)->type) goto unverified
2179 #define CHECK_STACK(num) if ((sp - stack_start) < (num)) goto unverified
2180 #define CHECK_STACK_OVF(num) if (((sp - stack_start) + (num)) > header->max_stack) goto unverified
2181
2182 /* offset from br.s -> br like opcodes */
2183 #define BIG_BRANCH_OFFSET 13
2184
2185 /*
2186  * mono_method_to_ir: translates IL into basic blocks containing trees
2187  */
2188 static int
2189 mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_bblock, MonoBasicBlock *end_bblock, 
2190                    int locals_offset, MonoInst *return_var, GList *dont_inline, MonoInst **inline_args, 
2191                    guint inline_offset, gboolean is_virtual_call)
2192 {
2193         MonoInst *zero_int32, *zero_int64, *zero_ptr, *zero_obj, *zero_r8;
2194         MonoInst *ins, **sp, **stack_start;
2195         MonoBasicBlock *bblock, *tblock = NULL, *init_localsbb = NULL;
2196         GHashTable *bbhash;
2197         MonoMethod *cmethod;
2198         MonoInst **arg_array;
2199         MonoMethodHeader *header;
2200         MonoImage *image;
2201         guint32 token, ins_flag;
2202         MonoClass *klass;
2203         unsigned char *ip, *end, *target;
2204         static double r8_0 = 0.0;
2205         MonoMethodSignature *sig;
2206         MonoType **param_types;
2207         GList *bb_recheck = NULL, *tmp;
2208         int i, n, start_new_bblock, align;
2209         int num_calls = 0, inline_costs = 0;
2210         int *filter_lengths = NULL;
2211         int breakpoint_id = 0;
2212         guint real_offset;
2213
2214         image = method->klass->image;
2215         header = ((MonoMethodNormal *)method)->header;
2216         sig = method->signature;
2217         ip = (unsigned char*)header->code;
2218         end = ip + header->code_size;
2219         mono_jit_stats.cil_code_size += header->code_size;
2220
2221         if (cfg->method == method) {
2222                 real_offset = 0;
2223                 bbhash = cfg->bb_hash;
2224         } else {
2225                 real_offset = inline_offset;
2226                 bbhash = g_hash_table_new (g_direct_hash, NULL);
2227         }
2228
2229         dont_inline = g_list_prepend (dont_inline, method);
2230         if (cfg->method == method) {
2231
2232                 /* ENTRY BLOCK */
2233                 cfg->bb_entry = start_bblock = NEW_BBLOCK (cfg);
2234                 start_bblock->cil_code = NULL;
2235                 start_bblock->cil_length = 0;
2236                 start_bblock->block_num = cfg->num_bblocks++;
2237
2238                 /* EXIT BLOCK */
2239                 cfg->bb_exit = end_bblock = NEW_BBLOCK (cfg);
2240                 end_bblock->cil_code = NULL;
2241                 end_bblock->cil_length = 0;
2242                 end_bblock->block_num = cfg->num_bblocks++;
2243                 g_assert (cfg->num_bblocks == 2);
2244
2245                 arg_array = alloca (sizeof (MonoInst *) * (sig->hasthis + sig->param_count));
2246                 for (i = sig->hasthis + sig->param_count - 1; i >= 0; i--)
2247                         arg_array [i] = cfg->varinfo [i];
2248
2249                 if (mono_compile_aot) 
2250                         cfg->opt |= MONO_OPT_SHARED;
2251
2252                 if (header->num_clauses) {
2253                         int size = sizeof (int) * header->num_clauses;
2254                         filter_lengths = alloca (size);
2255                         memset (filter_lengths, 0, size);
2256
2257                         cfg->spvar = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2258                         /* prevent it from being register allocated */
2259                         cfg->spvar->flags |= MONO_INST_INDIRECT;
2260                 }
2261                 /* handle exception clauses */
2262                 for (i = 0; i < header->num_clauses; ++i) {
2263                         //unsigned char *p = ip;
2264                         MonoExceptionClause *clause = &header->clauses [i];
2265                         GET_BBLOCK (cfg, bbhash, tblock, ip + clause->try_offset);
2266                         tblock->real_offset = clause->try_offset;
2267                         GET_BBLOCK (cfg, bbhash, tblock, ip + clause->handler_offset);
2268                         tblock->real_offset = clause->handler_offset;
2269
2270                         MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
2271                         MONO_ADD_INS (tblock, ins);
2272
2273                         /*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);
2274                           while (p < end) {
2275                           g_print ("%s", mono_disasm_code_one (NULL, method, p, &p));
2276                           }*/
2277                         /* catch and filter blocks get the exception object on the stack */
2278                         if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE ||
2279                             clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2280                                 /* mostly like handle_stack_args (), but just sets the input args */
2281                                 /* g_print ("handling clause at IL_%04x\n", clause->handler_offset); */
2282                                 if (!cfg->exvar) {
2283                                         cfg->exvar = mono_compile_create_var (cfg, &mono_defaults.object_class->byval_arg, OP_LOCAL);
2284                                         /* prevent it from being register allocated */
2285                                         cfg->exvar->flags |= MONO_INST_INDIRECT;
2286                                 }
2287                                 tblock->in_scount = 1;
2288                                 tblock->in_stack = mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
2289                                 tblock->in_stack [0] = cfg->exvar;
2290                                 
2291                                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2292                                         GET_BBLOCK (cfg, bbhash, tblock, ip + clause->token_or_filter);
2293                                         tblock->real_offset = clause->token_or_filter;
2294                                         tblock->in_scount = 1;
2295                                         tblock->in_stack = mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
2296                                         tblock->in_stack [0] = cfg->exvar;
2297                                         MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
2298                                         MONO_ADD_INS (tblock, ins);
2299                                 }
2300                         }
2301                 }
2302
2303         } else {
2304                 arg_array = alloca (sizeof (MonoInst *) * (sig->hasthis + sig->param_count));
2305                 mono_save_args (cfg, start_bblock, sig, inline_args, arg_array);
2306         }
2307
2308         /* FIRST CODE BLOCK */
2309         bblock = NEW_BBLOCK (cfg);
2310         bblock->cil_code = ip;
2311
2312         ADD_BBLOCK (cfg, bbhash, bblock);
2313
2314         if (cfg->method == method) {
2315                 breakpoint_id = mono_debugger_method_has_breakpoint (method);
2316                 if (breakpoint_id && (mono_debug_format != MONO_DEBUG_FORMAT_DEBUGGER)) {
2317                         MONO_INST_NEW (cfg, ins, CEE_BREAK);
2318                         MONO_ADD_INS (bblock, ins);
2319                 }
2320         }
2321         
2322         if ((header->init_locals || (cfg->method == method && (cfg->opt & MONO_OPT_SHARED)))) {
2323                 /* we use a separate basic block for the initialization code */
2324                 cfg->bb_init = init_localsbb = NEW_BBLOCK (cfg);
2325                 init_localsbb->real_offset = real_offset;
2326                 start_bblock->next_bb = init_localsbb;
2327                 init_localsbb->next_bb = bblock;
2328                 link_bblock (cfg, start_bblock, init_localsbb);
2329                 link_bblock (cfg, init_localsbb, bblock);
2330                 init_localsbb->block_num = cfg->num_bblocks++;
2331         } else {
2332                 start_bblock->next_bb = bblock;
2333                 link_bblock (cfg, start_bblock, bblock);
2334         }
2335
2336         mono_debug_init_method (cfg, bblock, breakpoint_id);
2337
2338         param_types = mono_mempool_alloc (cfg->mempool, sizeof (MonoType*) * (sig->hasthis + sig->param_count));
2339         if (sig->hasthis)
2340                 param_types [0] = method->klass->valuetype?&method->klass->this_arg:&method->klass->byval_arg;
2341         for (n = 0; n < sig->param_count; ++n)
2342                 param_types [n + sig->hasthis] = sig->params [n];
2343
2344         /* do this somewhere outside - not here */
2345         NEW_ICONST (cfg, zero_int32, 0);
2346         NEW_ICONST (cfg, zero_int64, 0);
2347         zero_int64->type = STACK_I8;
2348         NEW_PCONST (cfg, zero_ptr, 0);
2349         NEW_PCONST (cfg, zero_obj, 0);
2350         zero_obj->type = STACK_OBJ;
2351
2352         MONO_INST_NEW (cfg, zero_r8, OP_R8CONST);
2353         zero_r8->type = STACK_R8;
2354         zero_r8->inst_p0 = &r8_0;
2355
2356         /* add a check for this != NULL to inlined methods */
2357         if (is_virtual_call) {
2358                 MONO_INST_NEW (cfg, ins, OP_CHECK_THIS);
2359                 NEW_ARGLOAD (cfg, ins->inst_left, 0);
2360                 ins->cil_code = ip;
2361                 MONO_ADD_INS (bblock, ins);
2362         }
2363
2364         /* we use a spare stack slot in SWITCH and NEWOBJ and others */
2365         stack_start = sp = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst*) * (header->max_stack + 1));
2366
2367         ins_flag = 0;
2368         start_new_bblock = 0;
2369         while (ip < end) {
2370
2371                 if (cfg->method == method)
2372                         real_offset = ip - header->code;
2373                 else
2374                         real_offset = inline_offset;
2375
2376                 if (start_new_bblock) {
2377                         bblock->cil_length = ip - bblock->cil_code;
2378                         if (start_new_bblock == 2) {
2379                                 g_assert (ip == tblock->cil_code);
2380                         } else {
2381                                 GET_BBLOCK (cfg, bbhash, tblock, ip);
2382                         }
2383                         bblock->next_bb = tblock;
2384                         bblock = tblock;
2385                         start_new_bblock = 0;
2386                         for (i = 0; i < bblock->in_scount; ++i) {
2387                                 NEW_TEMPLOAD (cfg, ins, bblock->in_stack [i]->inst_c0);
2388                                 *sp++ = ins;
2389                         }
2390                 } else {
2391                         if ((tblock = g_hash_table_lookup (bbhash, ip)) && (tblock != bblock)) {
2392                                 link_bblock (cfg, bblock, tblock);
2393                                 if (sp != stack_start) {
2394                                         handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
2395                                         sp = stack_start;
2396                                 }
2397                                 bblock->next_bb = tblock;
2398                                 bblock = tblock;
2399                                 for (i = 0; i < bblock->in_scount; ++i) {
2400                                         NEW_TEMPLOAD (cfg, ins, bblock->in_stack [i]->inst_c0);
2401                                         *sp++ = ins;
2402                                 }
2403                         }
2404                 }
2405
2406                 if (cfg->verbose_level > 3)
2407                         g_print ("converting (in B%d: stack: %d) %s", bblock->block_num, sp-stack_start, mono_disasm_code_one (NULL, method, ip, NULL));
2408
2409                 switch (*ip) {
2410                 case CEE_NOP:
2411                         ++ip;
2412                         break;
2413                 case CEE_BREAK:
2414                         MONO_INST_NEW (cfg, ins, CEE_BREAK);
2415                         ins->cil_code = ip++;
2416                         MONO_ADD_INS (bblock, ins);
2417                         break;
2418                 case CEE_LDARG_0:
2419                 case CEE_LDARG_1:
2420                 case CEE_LDARG_2:
2421                 case CEE_LDARG_3:
2422                         CHECK_STACK_OVF (1);
2423                         n = (*ip)-CEE_LDARG_0;
2424                         NEW_ARGLOAD (cfg, ins, n);
2425                         ins->cil_code = ip++;
2426                         *sp++ = ins;
2427                         break;
2428                 case CEE_LDLOC_0:
2429                 case CEE_LDLOC_1:
2430                 case CEE_LDLOC_2:
2431                 case CEE_LDLOC_3:
2432                         CHECK_STACK_OVF (1);
2433                         n = (*ip)-CEE_LDLOC_0;
2434                         NEW_LOCLOAD (cfg, ins, n);
2435                         ins->cil_code = ip++;
2436                         *sp++ = ins;
2437                         break;
2438                 case CEE_STLOC_0:
2439                 case CEE_STLOC_1:
2440                 case CEE_STLOC_2:
2441                 case CEE_STLOC_3:
2442                         CHECK_STACK (1);
2443                         n = (*ip)-CEE_STLOC_0;
2444                         --sp;
2445                         handle_loaded_temps (cfg, bblock, stack_start, sp);
2446                         NEW_LOCSTORE (cfg, ins, n, *sp);
2447                         ins->cil_code = ip;
2448                         if (ins->opcode == CEE_STOBJ) {
2449                                 NEW_LOCLOADA (cfg, ins, n);
2450                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
2451                         } else
2452                                 MONO_ADD_INS (bblock, ins);
2453                         ++ip;
2454                         inline_costs += 1;
2455                         break;
2456                 case CEE_LDARG_S:
2457                         CHECK_STACK_OVF (1);
2458                         NEW_ARGLOAD (cfg, ins, ip [1]);
2459                         ins->cil_code = ip;
2460                         *sp++ = ins;
2461                         ip += 2;
2462                         break;
2463                 case CEE_LDARGA_S:
2464                         CHECK_STACK_OVF (1);
2465                         NEW_ARGLOADA (cfg, ins, ip [1]);
2466                         ins->cil_code = ip;
2467                         *sp++ = ins;
2468                         ip += 2;
2469                         break;
2470                 case CEE_STARG_S:
2471                         CHECK_STACK (1);
2472                         --sp;
2473                         NEW_ARGSTORE (cfg, ins, ip [1], *sp);
2474                         handle_loaded_temps (cfg, bblock, stack_start, sp);
2475                         ins->cil_code = ip;
2476                         if (ins->opcode == CEE_STOBJ) {
2477                                 NEW_ARGLOADA (cfg, ins, ip [1]);
2478                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
2479                         } else
2480                                 MONO_ADD_INS (bblock, ins);
2481                         ip += 2;
2482                         break;
2483                 case CEE_LDLOC_S:
2484                         CHECK_STACK_OVF (1);
2485                         NEW_LOCLOAD (cfg, ins, ip [1]);
2486                         ins->cil_code = ip;
2487                         *sp++ = ins;
2488                         ip += 2;
2489                         break;
2490                 case CEE_LDLOCA_S:
2491                         CHECK_STACK_OVF (1);
2492                         NEW_LOCLOADA (cfg, ins, ip [1]);
2493                         ins->cil_code = ip;
2494                         *sp++ = ins;
2495                         ip += 2;
2496                         break;
2497                 case CEE_STLOC_S:
2498                         CHECK_STACK (1);
2499                         --sp;
2500                         handle_loaded_temps (cfg, bblock, stack_start, sp);
2501                         NEW_LOCSTORE (cfg, ins, ip [1], *sp);
2502                         ins->cil_code = ip;
2503                         if (ins->opcode == CEE_STOBJ) {
2504                                 NEW_LOCLOADA (cfg, ins, ip [1]);
2505                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
2506                         } else
2507                                 MONO_ADD_INS (bblock, ins);
2508                         ip += 2;
2509                         inline_costs += 1;
2510                         break;
2511                 case CEE_LDNULL:
2512                         CHECK_STACK_OVF (1);
2513                         NEW_PCONST (cfg, ins, NULL);
2514                         ins->cil_code = ip;
2515                         ins->type = STACK_OBJ;
2516                         ++ip;
2517                         *sp++ = ins;
2518                         break;
2519                 case CEE_LDC_I4_M1:
2520                         CHECK_STACK_OVF (1);
2521                         NEW_ICONST (cfg, ins, -1);
2522                         ins->cil_code = ip;
2523                         ++ip;
2524                         *sp++ = ins;
2525                         break;
2526                 case CEE_LDC_I4_0:
2527                 case CEE_LDC_I4_1:
2528                 case CEE_LDC_I4_2:
2529                 case CEE_LDC_I4_3:
2530                 case CEE_LDC_I4_4:
2531                 case CEE_LDC_I4_5:
2532                 case CEE_LDC_I4_6:
2533                 case CEE_LDC_I4_7:
2534                 case CEE_LDC_I4_8:
2535                         CHECK_STACK_OVF (1);
2536                         NEW_ICONST (cfg, ins, (*ip) - CEE_LDC_I4_0);
2537                         ins->cil_code = ip;
2538                         ++ip;
2539                         *sp++ = ins;
2540                         break;
2541                 case CEE_LDC_I4_S:
2542                         CHECK_STACK_OVF (1);
2543                         ++ip;
2544                         NEW_ICONST (cfg, ins, *((signed char*)ip));
2545                         ins->cil_code = ip;
2546                         ++ip;
2547                         *sp++ = ins;
2548                         break;
2549                 case CEE_LDC_I4:
2550                         CHECK_STACK_OVF (1);
2551                         NEW_ICONST (cfg, ins, (gint32)read32 (ip + 1));
2552                         ins->cil_code = ip;
2553                         ip += 5;
2554                         *sp++ = ins;
2555                         break;
2556                 case CEE_LDC_I8:
2557                         CHECK_STACK_OVF (1);
2558                         MONO_INST_NEW (cfg, ins, OP_I8CONST);
2559                         ins->cil_code = ip;
2560                         ins->type = STACK_I8;
2561                         ++ip;
2562                         ins->inst_l = (gint64)read64 (ip);
2563                         ip += 8;
2564                         *sp++ = ins;
2565                         break;
2566                 case CEE_LDC_R4: {
2567                         float *f = g_malloc (sizeof (float));
2568                         CHECK_STACK_OVF (1);
2569                         MONO_INST_NEW (cfg, ins, OP_R4CONST);
2570                         ins->type = STACK_R8;
2571                         ++ip;
2572                         readr4 (ip, f);
2573                         ins->inst_p0 = f;
2574                         ip += 4;
2575                         *sp++ = ins;                    
2576                         break;
2577                 }
2578                 case CEE_LDC_R8: {
2579                         double *d = g_malloc (sizeof (double));
2580                         CHECK_STACK_OVF (1);
2581                         MONO_INST_NEW (cfg, ins, OP_R8CONST);
2582                         ins->type = STACK_R8;
2583                         ++ip;
2584                         readr8 (ip, d);
2585                         ins->inst_p0 = d;
2586                         ip += 8;
2587                         *sp++ = ins;                    
2588                         break;
2589                 }
2590                 case CEE_DUP: {
2591                         MonoInst *temp, *store;
2592                         CHECK_STACK (1);
2593                         CHECK_STACK_OVF (1);
2594                         sp--;
2595                         ins = *sp;
2596                 
2597                         /* 
2598                          * small optimization: if the loaded value was from a local already,
2599                          * just load it twice.
2600                          */
2601                         if (ins->ssa_op == MONO_SSA_LOAD && 
2602                             (ins->inst_i0->opcode == OP_LOCAL || ins->inst_i0->opcode == OP_ARG)) {
2603                                 sp++;
2604                                 MONO_INST_NEW (cfg, temp, 0);
2605                                 *temp = *ins;
2606                                 temp->cil_code = ip;
2607                                 *sp++ = temp;
2608                         } else {
2609                                 temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
2610                                 temp->cil_code = ip;
2611                                 NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
2612                                 store->cil_code = ip;
2613                                 MONO_ADD_INS (bblock, store);
2614                                 NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
2615                                 *sp++ = ins;
2616                                 ins->cil_code = ip;
2617                                 NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
2618                                 *sp++ = ins;
2619                                 ins->cil_code = ip;
2620                         }
2621                         ++ip;
2622                         inline_costs += 2;
2623                         break;
2624                 }
2625                 case CEE_POP:
2626                         CHECK_STACK (1);
2627                         MONO_INST_NEW (cfg, ins, CEE_POP);
2628                         MONO_ADD_INS (bblock, ins);
2629                         ins->cil_code = ip++;
2630                         --sp;
2631                         ins->inst_i0 = *sp;
2632                         break;
2633                 case CEE_JMP:
2634                         if (stack_start != sp)
2635                                 goto unverified;
2636                         MONO_INST_NEW (cfg, ins, CEE_JMP);
2637                         token = read32 (ip + 1);
2638                         /* FIXME: check the signature matches */
2639                         cmethod = mono_get_method (image, token, NULL);
2640                         ins->inst_p0 = cmethod;
2641                         MONO_ADD_INS (bblock, ins);
2642                         ip += 5;
2643                         start_new_bblock = 1;
2644                         break;
2645                 case CEE_CALLI:
2646                 case CEE_CALL:
2647                 case CEE_CALLVIRT: {
2648                         MonoInst *addr = NULL;
2649                         MonoMethodSignature *fsig = NULL;
2650                         int temp, array_rank = 0;
2651                         int virtual = *ip == CEE_CALLVIRT;
2652
2653                         token = read32 (ip + 1);
2654
2655                         if (*ip == CEE_CALLI) {
2656                                 cmethod = NULL;
2657                                 CHECK_STACK (1);
2658                                 --sp;
2659                                 addr = *sp;
2660                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
2661                                         fsig = (MonoMethodSignature *)mono_method_get_wrapper_data (method, token);
2662                                 else
2663                                         fsig = mono_metadata_parse_signature (image, token);
2664
2665                                 n = fsig->param_count + fsig->hasthis;
2666
2667                         } else {
2668                                 cmethod = mono_get_method (image, token, NULL);
2669
2670                                 if (!cmethod->klass->inited)
2671                                         mono_class_init (cmethod->klass);
2672
2673                                 if (cmethod->signature->pinvoke) {
2674 #ifdef MONO_USE_EXC_TABLES
2675                                         if (mono_method_blittable (cmethod)) {
2676                                                 fsig = cmethod->signature;
2677                                         } else {
2678 #endif
2679                                                 MonoMethod *wrapper = mono_marshal_get_native_wrapper (cmethod);
2680                                                 fsig = wrapper->signature;
2681 #ifdef MONO_USE_EXC_TABLES
2682                                         }
2683 #endif
2684                                 } else {
2685                                         fsig = cmethod->signature;
2686                                 }
2687
2688                                 n = fsig->param_count + fsig->hasthis;
2689
2690                                 if (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL &&
2691                                     cmethod->klass->parent == mono_defaults.array_class) {
2692                                         array_rank = cmethod->klass->rank;
2693                                 }
2694
2695                                 if (cmethod->string_ctor)
2696                                         g_assert_not_reached ();
2697
2698                         }
2699
2700                         CHECK_STACK (n);
2701
2702                         //g_assert (!virtual || fsig->hasthis);
2703
2704                         sp -= n;
2705
2706                         if ((ins_flag & MONO_INST_TAILCALL) && cmethod && (*ip == CEE_CALL)) {
2707                                 int i;
2708                                 for (i = 0; i < n; ++i) {
2709                                         NEW_ARGSTORE (cfg, ins, i, sp [i]);
2710                                         ins->cil_code = ip;
2711                                         MONO_ADD_INS (bblock, ins);
2712                                 }
2713                                 MONO_INST_NEW (cfg, ins, CEE_JMP);
2714                                 ins->cil_code = ip;
2715                                 ins->inst_p0 = cmethod;
2716                                 MONO_ADD_INS (bblock, ins);
2717                                 start_new_bblock = 1;
2718                                 /* skip CEE_RET as well */
2719                                 ip += 6;
2720                                 ins_flag = 0;
2721                                 break;
2722                         }
2723                         if (cmethod && (cfg->opt & MONO_OPT_INTRINS) && (ins = mini_get_opcode_for_method (cfg, cmethod, fsig, sp))) {
2724                                 ins->cil_code = ip;
2725
2726                                 if (MONO_TYPE_IS_VOID (fsig->ret)) {
2727                                         MONO_ADD_INS (bblock, ins);
2728                                 } else {
2729                                         type_to_eval_stack_type (fsig->ret, ins);
2730                                         *sp = ins;
2731                                         sp++;
2732                                 }
2733
2734                                 ip += 5;
2735                                 break;
2736                         }
2737
2738                         handle_loaded_temps (cfg, bblock, stack_start, sp);
2739
2740                         if ((cfg->opt & MONO_OPT_INLINE) && cmethod &&
2741                             (!virtual || !(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) || (cmethod->flags & METHOD_ATTRIBUTE_FINAL)) && 
2742                             mono_method_check_inlining (cmethod) &&
2743                             !g_list_find (dont_inline, cmethod)) {
2744                                 int costs;
2745                                 MonoBasicBlock *ebblock;
2746                                 
2747                                 if ((costs = inline_method (cfg, cmethod, fsig, bblock, sp, ip, real_offset, dont_inline, &ebblock))) {
2748                                         ip += 5;
2749                                         real_offset += 5;
2750
2751                                         GET_BBLOCK (cfg, bbhash, bblock, ip);
2752                                         ebblock->next_bb = bblock;
2753                                         link_bblock (cfg, ebblock, bblock);
2754
2755                                         if (!MONO_TYPE_IS_VOID (fsig->ret))
2756                                                 sp++;
2757
2758                                         /* indicates start of a new block, and triggers a load of all 
2759                                            stack arguments at bb boundarie */
2760                                         bblock = ebblock;
2761
2762                                         inline_costs += costs;
2763                                         break;
2764                                 }
2765                         }
2766                         
2767                         inline_costs += 10 * num_calls++;
2768
2769                         /* tail recursion elimination */
2770                         if ((cfg->opt & MONO_OPT_TAILC) && *ip == CEE_CALL && cmethod == cfg->method && ip [5] == CEE_RET) {
2771                                 gboolean has_vtargs = FALSE;
2772                                 int i;
2773                                 
2774                                 /* keep it simple */
2775                                 for (i =  fsig->param_count - 1; i >= 0; i--) {
2776                                         if (MONO_TYPE_ISSTRUCT (cmethod->signature->params [i])) 
2777                                                 has_vtargs = TRUE;
2778                                 }
2779
2780                                 if (!has_vtargs) {
2781                                         for (i = 0; i < n; ++i) {
2782                                                 NEW_ARGSTORE (cfg, ins, i, sp [i]);
2783                                                 ins->cil_code = ip;
2784                                                 MONO_ADD_INS (bblock, ins);
2785                                         }
2786                                         MONO_INST_NEW (cfg, ins, CEE_BR);
2787                                         ins->cil_code = ip;
2788                                         MONO_ADD_INS (bblock, ins);
2789                                         tblock = start_bblock->out_bb [0];
2790                                         link_bblock (cfg, bblock, tblock);
2791                                         ins->inst_target_bb = tblock;
2792                                         start_new_bblock = 1;
2793                                         ip += 5;
2794                                         
2795                                         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
2796                                                 /* just create a dummy - the value is never used */
2797                                                 ins = mono_compile_create_var (cfg, fsig->ret, OP_LOCAL);
2798                                                 NEW_TEMPLOAD (cfg, *sp, ins->inst_c0);
2799                                                 sp++;
2800                                         }
2801
2802                                         break;
2803                                 }
2804                         }
2805
2806                         if (*ip == CEE_CALLI) {
2807
2808                                 if ((temp = mono_emit_calli (cfg, bblock, fsig, sp, addr, ip)) != -1) {
2809                                         NEW_TEMPLOAD (cfg, *sp, temp);
2810                                         sp++;
2811                                 }
2812                                         
2813                         } else if (array_rank) {
2814                                 MonoInst *addr;
2815
2816                                 if (strcmp (cmethod->name, "Set") == 0) { /* array Set */ 
2817                                         addr = mini_get_ldelema_ins (cfg, bblock, cmethod, sp, ip, TRUE);
2818                                         NEW_INDSTORE (cfg, ins, addr, sp [fsig->param_count], fsig->params [fsig->param_count - 1]);
2819                                         ins->cil_code = ip;
2820                                         if (ins->opcode == CEE_STOBJ) {
2821                                                 handle_stobj (cfg, bblock, addr, sp [fsig->param_count], ip, mono_class_from_mono_type (fsig->params [fsig->param_count-1]), FALSE, FALSE);
2822                                         } else {
2823                                                 MONO_ADD_INS (bblock, ins);
2824                                         }
2825
2826                                 } else if (strcmp (cmethod->name, "Get") == 0) { /* array Get */
2827                                         addr = mini_get_ldelema_ins (cfg, bblock, cmethod, sp, ip, FALSE);
2828                                         NEW_INDLOAD (cfg, ins, addr, fsig->ret);
2829                                         ins->cil_code = ip;
2830
2831                                         *sp++ = ins;
2832                                 } else if (strcmp (cmethod->name, "Address") == 0) { /* array Address */
2833                                         addr = mini_get_ldelema_ins (cfg, bblock, cmethod, sp, ip, FALSE);
2834                                         *sp++ = addr;
2835                                 } else {
2836                                         g_assert_not_reached ();
2837                                 }
2838
2839                         } else {
2840                                 if (0 && CODE_IS_STLOC (ip + 5) && (!MONO_TYPE_ISSTRUCT (fsig->ret)) && (!MONO_TYPE_IS_VOID (fsig->ret) || cmethod->string_ctor)) {
2841                                         /* no need to spill */
2842                                         ins = (MonoInst*)mono_emit_method_call (cfg, bblock, cmethod, fsig, sp, ip, virtual ? sp [0] : NULL);
2843                                         *sp++ = ins;
2844                                 } else {
2845                                         if ((temp = mono_emit_method_call_spilled (cfg, bblock, cmethod, sp, ip, virtual ? sp [0] : NULL)) != -1) {
2846                                                 NEW_TEMPLOAD (cfg, *sp, temp);
2847                                                 sp++;
2848                                         }
2849                                 }
2850                         }
2851
2852                         ip += 5;
2853                         break;
2854                 }
2855                 case CEE_RET:
2856                         if (cfg->method != method) {
2857                                 /* return from inlined methode */
2858                                 if (return_var) {
2859                                         MonoInst *store;
2860                                         CHECK_STACK (1);
2861                                         --sp;
2862                                         //g_assert (returnvar != -1);
2863                                         NEW_TEMPSTORE (cfg, store, return_var->inst_c0, *sp);
2864                                         store->cil_code = sp [0]->cil_code;
2865                                         if (store->opcode == CEE_STOBJ) {
2866                                                 g_assert_not_reached ();
2867                                                 NEW_TEMPLOADA (cfg, store, return_var->inst_c0);
2868                                                 handle_stobj (cfg, bblock, store, *sp, sp [0]->cil_code, return_var->klass, FALSE, FALSE);
2869                                         } else
2870                                                 MONO_ADD_INS (bblock, store);
2871                                 } 
2872                         } else {
2873                                 if (cfg->ret) {
2874                                         g_assert (!return_var);
2875                                         CHECK_STACK (1);
2876                                         --sp;
2877                                         MONO_INST_NEW (cfg, ins, CEE_NOP);
2878                                         ins->opcode = mono_type_to_stind (method->signature->ret);
2879                                         if (ins->opcode == CEE_STOBJ) {
2880                                                 NEW_RETLOADA (cfg, ins);
2881                                                 handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
2882                                         } else {
2883                                                 ins->opcode = OP_SETRET;
2884                                                 ins->cil_code = ip;
2885                                                 ins->inst_i0 = *sp;;
2886                                                 ins->inst_i1 = NULL;
2887                                                 MONO_ADD_INS (bblock, ins);
2888                                         }
2889                                 }
2890                         }
2891                         if (sp != stack_start)
2892                                 goto unverified;
2893                         MONO_INST_NEW (cfg, ins, CEE_BR);
2894                         ins->cil_code = ip++;
2895                         ins->inst_target_bb = end_bblock;
2896                         MONO_ADD_INS (bblock, ins);
2897                         link_bblock (cfg, bblock, end_bblock);
2898                         start_new_bblock = 1;
2899                         break;
2900                 case CEE_BR_S:
2901                         MONO_INST_NEW (cfg, ins, CEE_BR);
2902                         ins->cil_code = ip++;
2903                         MONO_ADD_INS (bblock, ins);
2904                         target = ip + 1 + (signed char)(*ip);
2905                         ++ip;
2906                         GET_BBLOCK (cfg, bbhash, tblock, target);
2907                         link_bblock (cfg, bblock, tblock);
2908                         CHECK_BBLOCK (target, ip, tblock);
2909                         ins->inst_target_bb = tblock;
2910                         if (sp != stack_start) {
2911                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
2912                                 sp = stack_start;
2913                         }
2914                         start_new_bblock = 1;
2915                         inline_costs += 10;
2916                         break;
2917                 case CEE_BRFALSE_S:
2918                 case CEE_BRTRUE_S:
2919                         CHECK_STACK (1);
2920                         MONO_INST_NEW (cfg, ins, *ip + BIG_BRANCH_OFFSET);
2921                         ins->cil_code = ip++;
2922                         target = ip + 1 + *(signed char*)ip;
2923                         ip++;
2924                         ADD_UNCOND (ins->opcode == CEE_BRTRUE);
2925                         if (sp != stack_start) {
2926                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
2927                                 sp = stack_start;
2928                         }
2929                         inline_costs += 10;
2930                         break;
2931                 case CEE_BEQ_S:
2932                 case CEE_BGE_S:
2933                 case CEE_BGT_S:
2934                 case CEE_BLE_S:
2935                 case CEE_BLT_S:
2936                 case CEE_BNE_UN_S:
2937                 case CEE_BGE_UN_S:
2938                 case CEE_BGT_UN_S:
2939                 case CEE_BLE_UN_S:
2940                 case CEE_BLT_UN_S:
2941                         CHECK_STACK (2);
2942                         MONO_INST_NEW (cfg, ins, *ip + BIG_BRANCH_OFFSET);
2943                         ins->cil_code = ip++;
2944                         target = ip + 1 + *(signed char*)ip;
2945                         ip++;
2946                         ADD_BINCOND (NULL);
2947                         if (sp != stack_start) {
2948                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
2949                                 sp = stack_start;
2950                         }
2951                         inline_costs += 10;
2952                         break;
2953                 case CEE_BR:
2954                         MONO_INST_NEW (cfg, ins, CEE_BR);
2955                         ins->cil_code = ip++;
2956                         MONO_ADD_INS (bblock, ins);
2957                         target = ip + 4 + (gint32)read32(ip);
2958                         ip += 4;
2959                         GET_BBLOCK (cfg, bbhash, tblock, target);
2960                         link_bblock (cfg, bblock, tblock);
2961                         CHECK_BBLOCK (target, ip, tblock);
2962                         ins->inst_target_bb = tblock;
2963                         if (sp != stack_start) {
2964                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
2965                                 sp = stack_start;
2966                         }
2967                         start_new_bblock = 1;
2968                         inline_costs += 10;
2969                         break;
2970                 case CEE_BRFALSE:
2971                 case CEE_BRTRUE:
2972                         CHECK_STACK (1);
2973                         MONO_INST_NEW (cfg, ins, *ip);
2974                         ins->cil_code = ip++;
2975                         target = ip + 4 + (gint32)read32(ip);
2976                         ip += 4;
2977                         ADD_UNCOND(ins->opcode == CEE_BRTRUE);
2978                         if (sp != stack_start) {
2979                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
2980                                 sp = stack_start;
2981                         }
2982                         inline_costs += 10;
2983                         break;
2984                 case CEE_BEQ:
2985                 case CEE_BGE:
2986                 case CEE_BGT:
2987                 case CEE_BLE:
2988                 case CEE_BLT:
2989                 case CEE_BNE_UN:
2990                 case CEE_BGE_UN:
2991                 case CEE_BGT_UN:
2992                 case CEE_BLE_UN:
2993                 case CEE_BLT_UN:
2994                         CHECK_STACK (2);
2995                         MONO_INST_NEW (cfg, ins, *ip);
2996                         ins->cil_code = ip++;
2997                         target = ip + 4 + (gint32)read32(ip);
2998                         ip += 4;
2999                         ADD_BINCOND(NULL);
3000                         if (sp != stack_start) {
3001                                 handle_stack_args (cfg, bblock, stack_start, sp - stack_start);
3002                                 sp = stack_start;
3003                         }
3004                         inline_costs += 10;
3005                         break;
3006                 case CEE_SWITCH:
3007                         CHECK_STACK (1);
3008                         n = read32 (ip + 1);
3009                         MONO_INST_NEW (cfg, ins, *ip);
3010                         --sp;
3011                         ins->inst_left = *sp;
3012                         if (ins->inst_left->type != STACK_I4) goto unverified;
3013                         ins->cil_code = ip;
3014                         ip += 5;
3015                         target = ip + n * sizeof (guint32);
3016                         MONO_ADD_INS (bblock, ins);
3017                         GET_BBLOCK (cfg, bbhash, tblock, target);
3018                         link_bblock (cfg, bblock, tblock);
3019                         ins->klass = GUINT_TO_POINTER (n);
3020                         ins->inst_many_bb = mono_mempool_alloc (cfg->mempool, sizeof (MonoBasicBlock*) * (n + 1));
3021                         ins->inst_many_bb [n] = tblock;
3022
3023                         for (i = 0; i < n; ++i) {
3024                                 GET_BBLOCK (cfg, bbhash, tblock, target + (gint32)read32(ip));
3025                                 link_bblock (cfg, bblock, tblock);
3026                                 ins->inst_many_bb [i] = tblock;
3027                                 ip += 4;
3028                         }
3029                         /* FIXME: handle stack args */
3030                         inline_costs += 20;
3031                         break;
3032                 case CEE_LDIND_I1:
3033                 case CEE_LDIND_U1:
3034                 case CEE_LDIND_I2:
3035                 case CEE_LDIND_U2:
3036                 case CEE_LDIND_I4:
3037                 case CEE_LDIND_U4:
3038                 case CEE_LDIND_I8:
3039                 case CEE_LDIND_I:
3040                 case CEE_LDIND_R4:
3041                 case CEE_LDIND_R8:
3042                 case CEE_LDIND_REF:
3043                         CHECK_STACK (1);
3044                         MONO_INST_NEW (cfg, ins, *ip);
3045                         ins->cil_code = ip;
3046                         --sp;
3047                         ins->inst_i0 = *sp;
3048                         *sp++ = ins;
3049                         ins->type = ldind_type [*ip - CEE_LDIND_I1];
3050                         ins->flags |= ins_flag;
3051                         ins_flag = 0;
3052                         ++ip;
3053                         break;
3054                 case CEE_STIND_REF:
3055                 case CEE_STIND_I1:
3056                 case CEE_STIND_I2:
3057                 case CEE_STIND_I4:
3058                 case CEE_STIND_I8:
3059                 case CEE_STIND_R4:
3060                 case CEE_STIND_R8:
3061                         CHECK_STACK (2);
3062                         MONO_INST_NEW (cfg, ins, *ip);
3063                         ins->cil_code = ip++;
3064                         sp -= 2;
3065                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3066                         MONO_ADD_INS (bblock, ins);
3067                         ins->inst_i0 = sp [0];
3068                         ins->inst_i1 = sp [1];
3069                         ins->flags |= ins_flag;
3070                         ins_flag = 0;
3071                         inline_costs += 1;
3072                         break;
3073                 case CEE_ADD:
3074                 case CEE_SUB:
3075                 case CEE_MUL:
3076                 case CEE_DIV:
3077                 case CEE_DIV_UN:
3078                 case CEE_REM:
3079                 case CEE_REM_UN:
3080                 case CEE_AND:
3081                 case CEE_OR:
3082                 case CEE_XOR:
3083                 case CEE_SHL:
3084                 case CEE_SHR:
3085                 case CEE_SHR_UN:
3086                         CHECK_STACK (2);
3087                         ADD_BINOP (*ip);
3088                         ip++;
3089                         break;
3090                 case CEE_NEG:
3091                 case CEE_NOT:
3092                 case CEE_CONV_I1:
3093                 case CEE_CONV_I2:
3094                 case CEE_CONV_I4:
3095                 case CEE_CONV_I8:
3096                 case CEE_CONV_R4:
3097                 case CEE_CONV_R8:
3098                 case CEE_CONV_U4:
3099                 case CEE_CONV_U8:
3100                 case CEE_CONV_OVF_I8:
3101                 case CEE_CONV_OVF_U8:
3102                 case CEE_CONV_R_UN:
3103                         CHECK_STACK (1);
3104                         ADD_UNOP (*ip);
3105                         ip++;
3106                         break;
3107                 case CEE_CONV_OVF_I4:
3108                 case CEE_CONV_OVF_I1:
3109                 case CEE_CONV_OVF_I2:
3110                 case CEE_CONV_OVF_I:
3111                 case CEE_CONV_OVF_U:
3112                         CHECK_STACK (1);
3113
3114                         if (sp [-1]->type == STACK_R8) {
3115                                 ADD_UNOP (CEE_CONV_OVF_I8);
3116                                 ADD_UNOP (*ip);
3117                         } else {
3118                                 ADD_UNOP (*ip);
3119                         }
3120
3121                         ip++;
3122                         break;
3123                 case CEE_CONV_OVF_U1:
3124                 case CEE_CONV_OVF_U2:
3125                 case CEE_CONV_OVF_U4:
3126                         CHECK_STACK (1);
3127
3128                         if (sp [-1]->type == STACK_R8) {
3129                                 ADD_UNOP (CEE_CONV_OVF_U8);
3130                                 ADD_UNOP (*ip);
3131                         } else {
3132                                 ADD_UNOP (*ip);
3133                         }
3134
3135                         ip++;
3136                         break;
3137                 case CEE_CONV_OVF_I1_UN:
3138                 case CEE_CONV_OVF_I2_UN:
3139                 case CEE_CONV_OVF_I4_UN:
3140                 case CEE_CONV_OVF_I8_UN:
3141                 case CEE_CONV_OVF_U1_UN:
3142                 case CEE_CONV_OVF_U2_UN:
3143                 case CEE_CONV_OVF_U4_UN:
3144                 case CEE_CONV_OVF_U8_UN:
3145                 case CEE_CONV_OVF_I_UN:
3146                 case CEE_CONV_OVF_U_UN:
3147                         CHECK_STACK (1);
3148                         ADD_UNOP (*ip);
3149                         ip++;
3150                         break;
3151                 case CEE_CPOBJ:
3152                         g_error ("opcode 0x%02x not handled", *ip);
3153                         break;
3154                 case CEE_LDOBJ: {
3155                         MonoInst *iargs [3];
3156                         CHECK_STACK (1);
3157                         --sp;
3158                         token = read32 (ip + 1);
3159                         if (method->wrapper_type != MONO_WRAPPER_NONE)
3160                                 klass = mono_method_get_wrapper_data (method, token);
3161                         else
3162                                 klass = mono_class_get (image, token);
3163
3164                         mono_class_init (klass);
3165                         n = mono_class_value_size (klass, NULL);
3166                         ins = mono_compile_create_var (cfg, &klass->byval_arg, OP_LOCAL);
3167                         NEW_TEMPLOADA (cfg, iargs [0], ins->inst_c0);
3168                         if ((cfg->opt & MONO_OPT_INTRINS) && n <= sizeof (gpointer) * 5) {
3169                                 MonoInst *copy;
3170                                 MONO_INST_NEW (cfg, copy, OP_MEMCPY);
3171                                 copy->inst_left = iargs [0];
3172                                 copy->inst_right = *sp;
3173                                 copy->cil_code = ip;
3174                                 copy->unused = n;
3175                                 MONO_ADD_INS (bblock, copy);
3176                         } else {
3177                                 iargs [1] = *sp;
3178                                 NEW_ICONST (cfg, iargs [2], n);
3179                                 iargs [2]->cil_code = ip;
3180
3181                                 mono_emit_jit_icall (cfg, bblock, helper_memcpy, iargs, ip);
3182                         }
3183                         NEW_TEMPLOAD (cfg, *sp, ins->inst_c0);
3184                         ++sp;
3185                         ip += 5;
3186                         inline_costs += 1;
3187                         break;
3188                 }
3189                 case CEE_LDSTR:
3190                         CHECK_STACK_OVF (1);
3191                         n = read32 (ip + 1);
3192
3193                         if (mono_compile_aot) {
3194                                 cfg->ldstr_list = g_list_prepend (cfg->ldstr_list, (gpointer)n);
3195                         }
3196
3197                         if ((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot) {
3198                                 int temp;
3199                                 MonoInst *iargs [3];
3200                                 NEW_TEMPLOAD (cfg, iargs [0], mono_get_domainvar (cfg)->inst_c0);
3201                                 NEW_IMAGECONST (cfg, iargs [1], image);
3202                                 NEW_ICONST (cfg, iargs [2], mono_metadata_token_index (n));
3203                                 temp = mono_emit_jit_icall (cfg, bblock, mono_ldstr, iargs, ip);
3204                                 NEW_TEMPLOAD (cfg, *sp, temp);
3205                                 mono_ldstr (cfg->domain, image, mono_metadata_token_index (n));
3206                         } else {
3207                                 NEW_PCONST (cfg, ins, NULL);
3208                                 ins->cil_code = ip;
3209                                 ins->type = STACK_OBJ;
3210                                 ins->inst_p0 = mono_ldstr (cfg->domain, image, mono_metadata_token_index (n));
3211                                 *sp = ins;
3212                         }
3213                         sp++;
3214                         ip += 5;
3215                         break;
3216                 case CEE_NEWOBJ: {
3217                         MonoInst *iargs [2];
3218                         int temp;
3219
3220                         token = read32 (ip + 1);
3221                         if (method->wrapper_type != MONO_WRAPPER_NONE) {
3222                                 cmethod = mono_method_get_wrapper_data (method, token);
3223                         } else
3224                                 cmethod = mono_get_method (image, token, NULL);
3225
3226                         mono_class_init (cmethod->klass);
3227
3228                         n = cmethod->signature->param_count;
3229                         CHECK_STACK (n);
3230
3231                         /* move the args to allow room for 'this' in the first position */
3232                         while (n--) {
3233                                 --sp;
3234                                 sp [1] = sp [0];
3235                         }
3236
3237                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3238                         
3239
3240                         if (cmethod->klass->parent == mono_defaults.array_class) {
3241                                 NEW_METHODCONST (cfg, *sp, cmethod);
3242                                 temp = mono_emit_native_call (cfg, bblock, mono_array_new_va, cmethod->signature, sp, ip, FALSE);
3243
3244                         } else if (cmethod->string_ctor) {
3245                                 /* we simply pass a null pointer */
3246                                 NEW_PCONST (cfg, *sp, NULL); 
3247                                 /* now call the string ctor */
3248                                 temp = mono_emit_method_call_spilled (cfg, bblock, cmethod, sp, ip, NULL);
3249                         } else {
3250                                 if (cmethod->klass->valuetype) {
3251                                         iargs [0] = mono_compile_create_var (cfg, &cmethod->klass->byval_arg, OP_LOCAL);
3252                                         temp = iargs [0]->inst_c0;
3253                                         NEW_TEMPLOADA (cfg, *sp, temp);
3254                                 } else {
3255                                         if ((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot) {
3256                                                 NEW_DOMAINCONST (cfg, iargs [0]);
3257                                                 NEW_CLASSCONST (cfg, iargs [1], cmethod->klass);
3258
3259                                                 temp = mono_emit_jit_icall (cfg, bblock, mono_object_new, iargs, ip);
3260                                         } else {
3261                                                 MonoVTable *vtable = mono_class_vtable (cfg->domain, cmethod->klass);
3262                                                 NEW_PCONST (cfg, iargs [0], vtable);
3263                                                 temp = mono_emit_jit_icall (cfg, bblock, mono_object_new_specific, iargs, ip);
3264                                         }
3265                                         NEW_TEMPLOAD (cfg, *sp, temp);
3266                                 }
3267
3268                                 if ((cfg->opt & MONO_OPT_INLINE) && cmethod &&
3269                                     mono_method_check_inlining (cmethod) &&
3270                                     !mono_class_is_subclass_of (cmethod->klass, mono_defaults.exception_class, FALSE) &&
3271                                     !g_list_find (dont_inline, cmethod)) {
3272                                         int costs;
3273                                         MonoBasicBlock *ebblock;
3274                                         if ((costs = inline_method (cfg, cmethod, cmethod->signature, bblock, sp, ip, real_offset, dont_inline, &ebblock))) {
3275
3276                                                 ip += 5;
3277                                                 real_offset += 5;
3278                                                 
3279                                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
3280                                                 ebblock->next_bb = bblock;
3281                                                 link_bblock (cfg, ebblock, bblock);
3282
3283                                                 NEW_TEMPLOAD (cfg, *sp, temp);
3284                                                 sp++;
3285
3286                                                 /* indicates start of a new block, and triggers a load 
3287                                                    of all stack arguments at bb boundarie */
3288                                                 bblock = ebblock;
3289
3290                                                 inline_costs += costs;
3291                                                 break;
3292                                                 
3293                                         } else {
3294                                                 mono_emit_method_call_spilled (cfg, bblock, cmethod, sp, ip, sp[0]);
3295                                         }
3296                                 } else {
3297                                         /* now call the actual ctor */
3298                                         mono_emit_method_call_spilled (cfg, bblock, cmethod, sp, ip, sp[0]);
3299                                 }
3300                         }
3301
3302                         NEW_TEMPLOAD (cfg, *sp, temp);
3303                         sp++;
3304                         
3305                         ip += 5;
3306                         inline_costs += 5;
3307                         break;
3308                 }
3309                 case CEE_ISINST:
3310                         CHECK_STACK (1);
3311                         MONO_INST_NEW (cfg, ins, *ip);
3312                         --sp;
3313                         klass = mono_class_get (image, read32 (ip + 1));
3314                         mono_class_init (klass);
3315                         ins->type = STACK_OBJ;
3316                         ins->inst_left = *sp;
3317                         ins->inst_newa_class = klass;
3318                         ins->cil_code = ip;
3319                         ip += 5;
3320                         *sp++ = ins;
3321                         break;
3322                 case CEE_UNBOX: {
3323                         MonoInst *add, *vtoffset;
3324
3325                         CHECK_STACK (1);
3326                         --sp;
3327                         token = read32 (ip + 1);
3328                         if (method->wrapper_type != MONO_WRAPPER_NONE)
3329                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
3330                         else 
3331                                 klass = mono_class_get (image, token);
3332                         mono_class_init (klass);
3333
3334
3335                         MONO_INST_NEW (cfg, ins, OP_UNBOXCAST);
3336                         ins->type = STACK_OBJ;
3337                         ins->inst_left = *sp;
3338                         ins->klass = klass;
3339                         ins->inst_newa_class = klass;
3340                         ins->cil_code = ip;
3341
3342                         MONO_INST_NEW (cfg, add, CEE_ADD);
3343                         NEW_ICONST (cfg, vtoffset, sizeof (MonoObject));
3344                         add->inst_left = ins;
3345                         add->inst_right = vtoffset;
3346                         add->type = STACK_MP;
3347                         *sp++ = add;
3348                         ip += 5;
3349                         inline_costs += 2;
3350                         break;
3351                 }
3352                 case CEE_CASTCLASS:
3353                         CHECK_STACK (1);
3354                         MONO_INST_NEW (cfg, ins, *ip);
3355                         --sp;
3356                         klass = mono_class_get (image, read32 (ip + 1));
3357                         mono_class_init (klass);
3358                         ins->type = STACK_OBJ;
3359                         ins->inst_left = *sp;
3360                         ins->klass = klass;
3361                         ins->inst_newa_class = klass;
3362                         ins->cil_code = ip;
3363                         ip += 5;
3364                         *sp++ = ins;
3365                         break;
3366                 case CEE_THROW:
3367                         CHECK_STACK (1);
3368                         MONO_INST_NEW (cfg, ins, *ip);
3369                         --sp;
3370                         ins->inst_left = *sp;
3371                         ins->cil_code = ip++;
3372                         MONO_ADD_INS (bblock, ins);
3373                         sp = stack_start;
3374                         start_new_bblock = 1;
3375                         break;
3376                 case CEE_LDFLD:
3377                 case CEE_LDFLDA:
3378                 case CEE_STFLD: {
3379                         MonoInst *offset_ins;
3380                         MonoClassField *field;
3381                         MonoBasicBlock *ebblock;
3382                         int costs;
3383                         guint foffset;
3384
3385                         if (*ip == CEE_STFLD) {
3386                                 CHECK_STACK (2);
3387                                 sp -= 2;
3388                         } else {
3389                                 CHECK_STACK (1);
3390                                 --sp;
3391                         }
3392                         // FIXME: enable this test later.
3393                         //if (sp [0]->type != STACK_OBJ && sp [0]->type != STACK_MP)
3394                         //      goto unverified;
3395                         token = read32 (ip + 1);
3396                         field = mono_field_from_token (image, token, &klass);
3397                         mono_class_init (klass);
3398
3399                         foffset = klass->valuetype? field->offset - sizeof (MonoObject): field->offset;
3400                         /* FIXME: mark instructions for use in SSA */
3401                         if (*ip == CEE_STFLD) {
3402                                 if (klass->marshalbyref && !MONO_CHECK_THIS (sp [0])) {
3403                                         MonoMethod *stfld_wrapper = mono_marshal_get_stfld_wrapper (field->type); 
3404                                         MonoInst *iargs [5];
3405
3406                                         iargs [0] = sp [0];
3407                                         NEW_CLASSCONST (cfg, iargs [1], klass);
3408                                         NEW_FIELDCONST (cfg, iargs [2], field);
3409                                         NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : 
3410                                                     field->offset);
3411                                         iargs [4] = sp [1];
3412
3413                                         if (cfg->opt & MONO_OPT_INLINE) {
3414                                                 costs = inline_method (cfg, stfld_wrapper, stfld_wrapper->signature, bblock, 
3415                                                                        iargs, ip, real_offset, dont_inline, &ebblock);
3416                                                 g_assert (costs > 0);
3417                                                       
3418                                                 ip += 5;
3419                                                 real_offset += 5;
3420
3421                                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
3422                                                 ebblock->next_bb = bblock;
3423                                                 link_bblock (cfg, ebblock, bblock);
3424
3425                                                 /* indicates start of a new block, and triggers a load 
3426                                                    of all stack arguments at bb boundarie */
3427                                                 bblock = ebblock;
3428
3429                                                 inline_costs += costs;
3430                                                 break;
3431                                         } else {
3432                                                 mono_emit_method_call_spilled (cfg, bblock, stfld_wrapper, iargs, ip, NULL);
3433                                         }
3434                                 } else {
3435                                         MonoInst *store;
3436                                         NEW_ICONST (cfg, offset_ins, foffset);
3437                                         MONO_INST_NEW (cfg, ins, CEE_ADD);
3438                                         ins->cil_code = ip;
3439                                         ins->inst_left = *sp;
3440                                         ins->inst_right = offset_ins;
3441                                         ins->type = STACK_MP;
3442
3443                                         MONO_INST_NEW (cfg, store, mono_type_to_stind (field->type));
3444                                         store->cil_code = ip;
3445                                         store->inst_left = ins;
3446                                         store->inst_right = sp [1];
3447                                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3448                                         store->flags |= ins_flag;
3449                                         ins_flag = 0;
3450                                         if (store->opcode == CEE_STOBJ) {
3451                                                 handle_stobj (cfg, bblock, ins, sp [1], ip, 
3452                                                               mono_class_from_mono_type (field->type), FALSE, FALSE);
3453                                         } else
3454                                                 MONO_ADD_INS (bblock, store);
3455                                 }
3456                         } else {
3457                                 if (klass->marshalbyref && !MONO_CHECK_THIS (sp [0])) {
3458                                         /* fixme: we need to inline that call somehow */
3459                                         MonoMethod *ldfld_wrapper = mono_marshal_get_ldfld_wrapper (field->type); 
3460                                         MonoInst *iargs [4];
3461                                         int temp;
3462                                         
3463                                         iargs [0] = sp [0];
3464                                         NEW_CLASSCONST (cfg, iargs [1], klass);
3465                                         NEW_FIELDCONST (cfg, iargs [2], field);
3466                                         NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : field->offset);
3467                                         if (cfg->opt & MONO_OPT_INLINE) {
3468                                                 costs = inline_method (cfg, ldfld_wrapper, ldfld_wrapper->signature, bblock, 
3469                                                                        iargs, ip, real_offset, dont_inline, &ebblock);
3470                                                 g_assert (costs > 0);
3471                                                       
3472                                                 ip += 5;
3473                                                 real_offset += 5;
3474
3475                                                 GET_BBLOCK (cfg, bbhash, bblock, ip);
3476                                                 ebblock->next_bb = bblock;
3477                                                 link_bblock (cfg, ebblock, bblock);
3478
3479                                                 temp = iargs [0]->inst_i0->inst_c0;
3480
3481                                                 if (*ip == CEE_LDFLDA) {
3482                                                         /* not sure howto handle this */
3483                                                         NEW_TEMPLOADA (cfg, *sp, temp);
3484                                                 } else {
3485                                                         NEW_TEMPLOAD (cfg, *sp, temp);
3486                                                 }
3487                                                 sp++;
3488
3489                                                 /* indicates start of a new block, and triggers a load of
3490                                                    all stack arguments at bb boundarie */
3491                                                 bblock = ebblock;
3492                                                 
3493                                                 inline_costs += costs;
3494                                                 break;
3495                                         } else {
3496                                                 temp = mono_emit_method_call_spilled (cfg, bblock, ldfld_wrapper, iargs, ip, NULL);
3497                                                 if (*ip == CEE_LDFLDA) {
3498                                                         /* not sure howto handle this */
3499                                                         NEW_TEMPLOADA (cfg, *sp, temp);
3500                                                 } else {
3501                                                         NEW_TEMPLOAD (cfg, *sp, temp);
3502                                                 }
3503                                                 sp++;
3504                                         }
3505                                 } else {
3506                                         NEW_ICONST (cfg, offset_ins, foffset);
3507                                         MONO_INST_NEW (cfg, ins, CEE_ADD);
3508                                         ins->cil_code = ip;
3509                                         ins->inst_left = *sp;
3510                                         ins->inst_right = offset_ins;
3511                                         ins->type = STACK_MP;
3512
3513                                         if (*ip == CEE_LDFLDA) {
3514                                                 *sp++ = ins;
3515                                         } else {
3516                                                 MonoInst *load;
3517                                                 MONO_INST_NEW (cfg, load, mono_type_to_ldind (field->type));
3518                                                 type_to_eval_stack_type (field->type, load);
3519                                                 load->cil_code = ip;
3520                                                 load->inst_left = ins;
3521                                                 load->flags |= ins_flag;
3522                                                 ins_flag = 0;
3523                                                 *sp++ = load;
3524                                         }
3525                                 }
3526                         }
3527                         ip += 5;
3528                         break;
3529                 }
3530                 case CEE_LDSFLD:
3531                 case CEE_LDSFLDA:
3532                 case CEE_STSFLD: {
3533                         MonoClassField *field;
3534                         MonoVTable *vtable;
3535
3536                         token = read32 (ip + 1);
3537
3538                         field = mono_field_from_token (image, token, &klass);
3539                         mono_class_init (klass);
3540
3541                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3542                                 
3543                         if (((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot)) {
3544                                 int temp;
3545                                 MonoInst *iargs [2];
3546                                 g_assert (field->parent);
3547                                 NEW_TEMPLOAD (cfg, iargs [0], mono_get_domainvar (cfg)->inst_c0);
3548                                 NEW_FIELDCONST (cfg, iargs [1], field);
3549                                 temp = mono_emit_jit_icall (cfg, bblock, mono_class_static_field_address, iargs, ip);
3550                                 NEW_TEMPLOAD (cfg, ins, temp);
3551                         } else {
3552                                 gpointer addr;
3553                                 vtable = mono_class_vtable (cfg->domain, klass);
3554                                 if (!cfg->domain->thread_static_fields || !(addr = g_hash_table_lookup (cfg->domain->thread_static_fields, field))) {
3555                                         addr = (char*)vtable->data + field->offset;
3556                                         NEW_PCONST (cfg, ins, addr);
3557                                         ins->cil_code = ip;
3558                                 } else {
3559                                         /* 
3560                                          * insert call to mono_threads_get_static_data (GPOINTER_TO_UINT (addr)) 
3561                                          * This could be later optimized to do just a couple of
3562                                          * memory dereferences with constant offsets.
3563                                          */
3564                                         int temp;
3565                                         MonoInst *iargs [1];
3566                                         NEW_ICONST (cfg, iargs [0], GPOINTER_TO_UINT (addr));
3567                                         temp = mono_emit_jit_icall (cfg, bblock, mono_threads_get_static_data, iargs, ip);
3568                                         NEW_TEMPLOAD (cfg, ins, temp);
3569                                 }
3570                         }
3571
3572                         /* FIXME: mark instructions for use in SSA */
3573                         if (*ip == CEE_LDSFLDA) {
3574                                 *sp++ = ins;
3575                         } else if (*ip == CEE_STSFLD) {
3576                                 MonoInst *store;
3577                                 CHECK_STACK (1);
3578                                 sp--;
3579                                 MONO_INST_NEW (cfg, store, mono_type_to_stind (field->type));
3580                                 store->cil_code = ip;
3581                                 store->inst_left = ins;
3582                                 store->inst_right = sp [0];
3583                                 store->flags |= ins_flag;
3584                                 ins_flag = 0;
3585
3586                                 if (store->opcode == CEE_STOBJ) {
3587                                         handle_stobj (cfg, bblock, ins, sp [0], ip, mono_class_from_mono_type (field->type), FALSE, FALSE);
3588                                 } else
3589                                         MONO_ADD_INS (bblock, store);
3590                         } else {
3591                                 MonoInst *load;
3592                                 CHECK_STACK_OVF (1);
3593                                 MONO_INST_NEW (cfg, load, mono_type_to_ldind (field->type));
3594                                 type_to_eval_stack_type (field->type, load);
3595                                 load->cil_code = ip;
3596                                 load->inst_left = ins;
3597                                 *sp++ = load;
3598                                 load->flags |= ins_flag;
3599                                 ins_flag = 0;
3600                         /* fixme: dont see the problem why this does not work */
3601                                 //cfg->disable_aot = TRUE;
3602                         }
3603                         ip += 5;
3604                         break;
3605                 }
3606                 case CEE_STOBJ:
3607                         CHECK_STACK (2);
3608                         sp -= 2;
3609                         token = read32 (ip + 1);
3610                         if (method->wrapper_type != MONO_WRAPPER_NONE)
3611                                 klass = mono_method_get_wrapper_data (method, token);
3612                         else
3613                                 klass = mono_class_get (image, token);
3614                         mono_class_init (klass);
3615                         handle_stobj (cfg, bblock, sp [0], sp [1], ip, klass, FALSE, FALSE);
3616                         ip += 5;
3617                         inline_costs += 1;
3618                         break;
3619                 case CEE_BOX: {
3620                         MonoInst *iargs [2];
3621                         MonoInst *load, *vtoffset, *add, *val, *vstore;
3622                         int temp;
3623                         CHECK_STACK (1);
3624                         --sp;
3625                         val = *sp;
3626                         token = read32 (ip + 1);
3627                         if (method->wrapper_type != MONO_WRAPPER_NONE)
3628                                 klass = mono_method_get_wrapper_data (method, token);
3629                         else
3630                                 klass = mono_class_get (image, token);
3631                         mono_class_init (klass);
3632
3633                         /* much like NEWOBJ */
3634                         NEW_DOMAINCONST (cfg, iargs [0]);
3635                         NEW_CLASSCONST (cfg, iargs [1], klass);
3636                         
3637                         temp = mono_emit_jit_icall (cfg, bblock, mono_object_new, iargs, ip);
3638                         NEW_TEMPLOAD (cfg, load, temp);
3639                         NEW_ICONST (cfg, vtoffset, sizeof (MonoObject));
3640                         MONO_INST_NEW (cfg, add, CEE_ADD);
3641                         add->inst_left = load;
3642                         add->inst_right = vtoffset;
3643                         add->cil_code = ip;
3644                         add->klass = klass;
3645                         MONO_INST_NEW (cfg, vstore, CEE_STIND_I);
3646                         vstore->opcode = mono_type_to_stind (&klass->byval_arg);
3647                         vstore->cil_code = ip;
3648                         vstore->inst_left = add;
3649                         vstore->inst_right = val;
3650
3651                         if (vstore->opcode == CEE_STOBJ) {
3652                                 handle_stobj (cfg, bblock, add, val, ip, klass, FALSE, FALSE);
3653                         } else
3654                                 MONO_ADD_INS (bblock, vstore);
3655
3656                         NEW_TEMPLOAD (cfg, load, temp);
3657                         *sp++ = load;
3658                         ip += 5;
3659                         inline_costs += 1;
3660                         break;
3661                 }
3662                 case CEE_NEWARR:
3663                         CHECK_STACK (1);
3664                         MONO_INST_NEW (cfg, ins, *ip);
3665                         ins->cil_code = ip;
3666                         --sp;
3667
3668                         token = read32 (ip + 1);
3669
3670                         /* allocate the domainvar - becaus this is used in decompose_foreach */
3671                         if ((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot)
3672                                 mono_get_domainvar (cfg);
3673                         
3674                         if (method->wrapper_type != MONO_WRAPPER_NONE)
3675                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
3676                         else
3677                                 klass = mono_class_get (image, token);
3678
3679                         mono_class_init (klass);
3680                         ins->inst_newa_class = klass;
3681                         ins->inst_newa_len = *sp;
3682                         ins->type = STACK_OBJ;
3683                         ip += 5;
3684                         *sp++ = ins;
3685                         inline_costs += 1;
3686                         break;
3687                 case CEE_LDLEN:
3688                         CHECK_STACK (1);
3689                         MONO_INST_NEW (cfg, ins, *ip);
3690                         ins->cil_code = ip++;
3691                         --sp;
3692                         ins->inst_left = *sp;
3693                         ins->type = STACK_PTR;
3694                         *sp++ = ins;
3695                         break;
3696                 case CEE_LDELEMA:
3697                         CHECK_STACK (2);
3698                         sp -= 2;
3699                         klass = mono_class_get (image, read32 (ip + 1));
3700                         mono_class_init (klass);
3701                         NEW_LDELEMA (cfg, ins, sp, klass);
3702                         ins->cil_code = ip;
3703                         *sp++ = ins;
3704                         ip += 5;
3705                         break;
3706                 case CEE_LDELEM_I1:
3707                 case CEE_LDELEM_U1:
3708                 case CEE_LDELEM_I2:
3709                 case CEE_LDELEM_U2:
3710                 case CEE_LDELEM_I4:
3711                 case CEE_LDELEM_U4:
3712                 case CEE_LDELEM_I8:
3713                 case CEE_LDELEM_I:
3714                 case CEE_LDELEM_R4:
3715                 case CEE_LDELEM_R8:
3716                 case CEE_LDELEM_REF: {
3717                         MonoInst *load;
3718                         /*
3719                          * translate to:
3720                          * ldind.x (ldelema (array, index))
3721                          * ldelema does the bounds check
3722                          */
3723                         CHECK_STACK (2);
3724                         sp -= 2;
3725                         klass = array_access_to_klass (*ip);
3726                         NEW_LDELEMA (cfg, load, sp, klass);
3727                         load->cil_code = ip;
3728                         MONO_INST_NEW (cfg, ins, ldelem_to_ldind [*ip - CEE_LDELEM_I1]);
3729                         ins->cil_code = ip;
3730                         ins->inst_left = load;
3731                         *sp++ = ins;
3732                         ins->type = ldind_type [ins->opcode - CEE_LDIND_I1];
3733                         ++ip;
3734                         break;
3735                 }
3736                 case CEE_STELEM_I:
3737                 case CEE_STELEM_I1:
3738                 case CEE_STELEM_I2:
3739                 case CEE_STELEM_I4:
3740                 case CEE_STELEM_I8:
3741                 case CEE_STELEM_R4:
3742                 case CEE_STELEM_R8: {
3743                         MonoInst *load;
3744                         /*
3745                          * translate to:
3746                          * stind.x (ldelema (array, index), val)
3747                          * ldelema does the bounds check
3748                          */
3749                         CHECK_STACK (3);
3750                         sp -= 3;
3751                         klass = array_access_to_klass (*ip);
3752                         NEW_LDELEMA (cfg, load, sp, klass);
3753                         load->cil_code = ip;
3754                         MONO_INST_NEW (cfg, ins, stelem_to_stind [*ip - CEE_STELEM_I]);
3755                         ins->cil_code = ip;
3756                         ins->inst_left = load;
3757                         ins->inst_right = sp [2];
3758                         ++ip;
3759                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3760                         MONO_ADD_INS (bblock, ins);
3761                         /* FIXME: add the implicit STELEM_REF castclass */
3762                         inline_costs += 1;
3763                         cfg->disable_ssa = TRUE;
3764                         break;
3765                 }
3766                 case CEE_STELEM_REF: {
3767                         MonoInst *iargs [3];
3768
3769                         CHECK_STACK (3);
3770                         sp -= 3;
3771
3772                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3773
3774                         iargs [2] = sp [2];
3775                         iargs [1] = sp [1];
3776                         iargs [0] = sp [0];
3777                         
3778                         mono_emit_jit_icall (cfg, bblock, helper_stelem_ref, iargs, ip);
3779
3780                         /*
3781                         MonoInst *group;
3782                         NEW_GROUP (cfg, group, sp [0], sp [1]);
3783                         MONO_INST_NEW (cfg, ins, CEE_STELEM_REF);
3784                         ins->cil_code = ip;
3785                         ins->inst_left = group;
3786                         ins->inst_right = sp [2];
3787                         MONO_ADD_INS (bblock, ins);
3788                         */
3789
3790                         ++ip;
3791                         inline_costs += 1;
3792                         cfg->disable_ssa = TRUE;
3793                         break;
3794                 }
3795                 case CEE_CKFINITE: {
3796                         MonoInst *store, *temp;
3797                         CHECK_STACK (1);
3798
3799                         /* this instr. can throw exceptions as side effect,
3800                          * so we cant eliminate dead code which contains CKFINITE opdodes.
3801                          * Spilling to memory makes sure that we always perform
3802                          * this check */
3803
3804                         
3805                         MONO_INST_NEW (cfg, ins, CEE_CKFINITE);
3806                         ins->cil_code = ip;
3807                         ins->inst_left = sp [-1];
3808                         temp = mono_compile_create_var (cfg, &mono_defaults.double_class->byval_arg, OP_LOCAL);
3809
3810                         NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
3811                         store->cil_code = ip;
3812                         MONO_ADD_INS (bblock, store);
3813
3814                         NEW_TEMPLOAD (cfg, sp [-1], temp->inst_c0);
3815                        
3816                         ++ip;
3817                         break;
3818                 }
3819                 case CEE_REFANYVAL:
3820                 case CEE_MKREFANY:
3821                         g_error ("opcode 0x%02x not handled", *ip);
3822                         break;
3823                 case CEE_LDTOKEN: {
3824                         gpointer handle;
3825                         MonoClass *handle_class;
3826
3827                         CHECK_STACK_OVF (1);
3828
3829                         n = read32 (ip + 1);
3830
3831                         handle = mono_ldtoken (image, n, &handle_class);
3832                         mono_class_init (handle_class);
3833
3834                         if (((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot)) {
3835                                 int temp;
3836                                 MonoInst *res, *store, *addr, *vtvar, *iargs [2];
3837
3838                                 vtvar = mono_compile_create_var (cfg, &handle_class->byval_arg, OP_LOCAL); 
3839
3840                                 NEW_IMAGECONST (cfg, iargs [0], image);
3841                                 NEW_ICONST (cfg, iargs [1], n);
3842                                 temp = mono_emit_jit_icall (cfg, bblock, mono_ldtoken_wrapper, iargs, ip);
3843                                 NEW_TEMPLOAD (cfg, res, temp);
3844                                 NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
3845                                 NEW_INDSTORE (cfg, store, addr, res, &mono_defaults.int_class->byval_arg);
3846                                 MONO_ADD_INS (bblock, store);
3847                                 NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
3848                         } else {
3849                                 if ((ip [5] == CEE_CALL) && (cmethod = mono_get_method (image, read32 (ip + 6), NULL)) &&
3850                                                 (cmethod->klass == mono_defaults.monotype_class->parent) &&
3851                                                 (strcmp (cmethod->name, "GetTypeFromHandle") == 0)) {
3852                                         MonoClass *tclass = mono_class_from_mono_type (handle);
3853                                         mono_class_init (tclass);
3854                                         NEW_PCONST (cfg, ins, mono_type_get_object (cfg->domain, handle));
3855                                         ins->type = STACK_OBJ;
3856                                         ins->klass = cmethod->klass;
3857                                         ip += 5;
3858                                 } else {
3859                                         NEW_PCONST (cfg, ins, handle);
3860                                         ins->type = STACK_VTYPE;
3861                                         ins->klass = handle_class;
3862                                 }
3863                         }
3864
3865                         *sp++ = ins;
3866                         ip += 5;
3867                         break;
3868                 }
3869                 case CEE_CONV_U2:
3870                 case CEE_CONV_U1:
3871                 case CEE_CONV_I:
3872                         CHECK_STACK (1);
3873                         ADD_UNOP (*ip);
3874                         ip++;
3875                         break;
3876                 case CEE_ADD_OVF:
3877                 case CEE_ADD_OVF_UN:
3878                 case CEE_MUL_OVF:
3879                 case CEE_MUL_OVF_UN:
3880                 case CEE_SUB_OVF:
3881                 case CEE_SUB_OVF_UN:
3882                         CHECK_STACK (2);
3883                         ADD_BINOP (*ip);
3884                         ip++;
3885                         break;
3886                 case CEE_ENDFINALLY:
3887                         /* FIXME: check stack state */
3888                         MONO_INST_NEW (cfg, ins, *ip);
3889                         MONO_ADD_INS (bblock, ins);
3890                         ins->cil_code = ip++;
3891                         start_new_bblock = 1;
3892                         break;
3893                 case CEE_LEAVE:
3894                 case CEE_LEAVE_S: {
3895                         GList *handlers;
3896                         if (*ip == CEE_LEAVE) {
3897                                 target = ip + 5 + (gint32)read32(ip + 1);
3898                         } else {
3899                                 target = ip + 2 + (signed char)(ip [1]);
3900                         }
3901
3902                         /* empty the stack */
3903                         while (sp != stack_start) {
3904                                 MONO_INST_NEW (cfg, ins, CEE_POP);
3905                                 ins->cil_code = ip;
3906                                 sp--;
3907                                 ins->inst_i0 = *sp;
3908                                 MONO_ADD_INS (bblock, ins);
3909                         }
3910
3911                         /* fixme: call fault handler ? */
3912
3913                         if ((handlers = mono_find_final_block (cfg, ip, target, MONO_EXCEPTION_CLAUSE_FINALLY))) {
3914                                 GList *tmp;
3915                                 for (tmp = handlers; tmp; tmp = tmp->next) {
3916                                         tblock = tmp->data;
3917                                         link_bblock (cfg, bblock, tblock);
3918                                         MONO_INST_NEW (cfg, ins, OP_CALL_HANDLER);
3919                                         ins->cil_code = ip;
3920                                         ins->inst_target_bb = tblock;
3921                                         MONO_ADD_INS (bblock, ins);
3922                                 }
3923                                 g_list_free (handlers);
3924                         } 
3925
3926                         MONO_INST_NEW (cfg, ins, CEE_BR);
3927                         ins->cil_code = ip;
3928                         MONO_ADD_INS (bblock, ins);
3929                         GET_BBLOCK (cfg, bbhash, tblock, target);
3930                         link_bblock (cfg, bblock, tblock);
3931                         CHECK_BBLOCK (target, ip, tblock);
3932                         ins->inst_target_bb = tblock;
3933                         start_new_bblock = 1;
3934
3935                         if (*ip == CEE_LEAVE)
3936                                 ip += 5;
3937                         else
3938                                 ip += 2;
3939
3940                         break;
3941                 }
3942                 case CEE_STIND_I:
3943                         CHECK_STACK (2);
3944                         MONO_INST_NEW (cfg, ins, *ip);
3945                         sp -= 2;
3946                         handle_loaded_temps (cfg, bblock, stack_start, sp);
3947                         MONO_ADD_INS (bblock, ins);
3948                         ins->cil_code = ip++;
3949                         ins->inst_i0 = sp [0];
3950                         ins->inst_i1 = sp [1];
3951                         inline_costs += 1;
3952                         break;
3953                 case CEE_CONV_U:
3954                         CHECK_STACK (1);
3955                         ADD_UNOP (*ip);
3956                         ip++;
3957                         break;
3958                 /* trampoline mono specific opcodes */
3959                 case MONO_CUSTOM_PREFIX: {
3960
3961                         g_assert (method->wrapper_type != MONO_WRAPPER_NONE);
3962
3963                         switch (ip [1]) {
3964
3965                         case CEE_MONO_FUNC1: {
3966                                 int temp;
3967                                 gpointer func = NULL;
3968                                 CHECK_STACK (1);
3969                                 sp--;
3970
3971                                 switch (ip [2]) {
3972                                 case MONO_MARSHAL_CONV_STR_LPWSTR:
3973                                         func = mono_string_to_utf16;
3974                                         break;
3975                                 case MONO_MARSHAL_CONV_LPWSTR_STR:
3976                                         func = mono_string_from_utf16;
3977                                         break;
3978                                 case MONO_MARSHAL_CONV_LPSTR_STR:
3979                                         func = mono_string_new_wrapper;
3980                                         break;
3981                                 case MONO_MARSHAL_CONV_STR_LPTSTR:
3982                                 case MONO_MARSHAL_CONV_STR_LPSTR:
3983                                         func = mono_string_to_utf8;
3984                                         break;
3985                                 case MONO_MARSHAL_CONV_STR_BSTR:
3986                                         func = mono_string_to_bstr;
3987                                         break;
3988                                 case MONO_MARSHAL_CONV_STR_TBSTR:
3989                                 case MONO_MARSHAL_CONV_STR_ANSIBSTR:
3990                                         func = mono_string_to_ansibstr;
3991                                         break;
3992                                 case MONO_MARSHAL_CONV_SB_LPSTR:
3993                                         func = mono_string_builder_to_utf8;
3994                                         break;
3995                                 case MONO_MARSHAL_CONV_ARRAY_SAVEARRAY:
3996                                         func = mono_array_to_savearray;
3997                                         break;
3998                                 case MONO_MARSHAL_CONV_ARRAY_LPARRAY:
3999                                         func = mono_array_to_lparray;
4000                                         break;
4001                                 case MONO_MARSHAL_CONV_DEL_FTN:
4002                                         func = mono_delegate_to_ftnptr;
4003                                         break;
4004                                 case MONO_MARSHAL_CONV_STRARRAY_STRLPARRAY:
4005                                         func = mono_marshal_string_array;
4006                                         break;
4007                                 default:
4008                                         g_warning ("unknown conversion %d\n", ip [2]);
4009                                         g_assert_not_reached ();
4010                                 }
4011
4012                                 temp = mono_emit_jit_icall (cfg, bblock, func, sp, ip);
4013                                 NEW_TEMPLOAD (cfg, *sp, temp);
4014                                 sp++;
4015
4016                                 ip += 3;
4017                                 inline_costs += 10 * num_calls++;
4018                                 break;
4019                         }
4020                         case CEE_MONO_PROC2: {
4021                                 gpointer func = NULL;
4022                                 CHECK_STACK (2);
4023                                 sp -= 2;
4024
4025                                 switch (ip [2]) {
4026                                 case MONO_MARSHAL_CONV_LPSTR_SB:
4027                                         func = mono_string_utf8_to_builder;
4028                                         break;
4029                                 case MONO_MARSHAL_FREE_ARRAY:
4030                                         func = mono_marshal_free_array;
4031                                         break;
4032                                 default:
4033                                         g_assert_not_reached ();
4034                                 }
4035
4036                                 mono_emit_jit_icall (cfg, bblock, func, sp, ip);
4037                                 ip += 3;
4038                                 inline_costs += 10 * num_calls++;
4039                                 break;
4040                         }
4041                         case CEE_MONO_PROC3: {
4042                                 gpointer func = NULL;
4043                                 CHECK_STACK (3);
4044                                 sp -= 3;
4045
4046                                 switch (ip [2]) {
4047                                 case MONO_MARSHAL_CONV_STR_BYVALSTR:
4048                                         func = mono_string_to_byvalstr;
4049                                         break;
4050                                 case MONO_MARSHAL_CONV_STR_BYVALWSTR:
4051                                         func = mono_string_to_byvalwstr;
4052                                         break;
4053                                 default:
4054                                         g_assert_not_reached ();
4055                                 }
4056
4057                                 mono_emit_jit_icall (cfg, bblock, func, sp, ip);
4058                                 ip += 3;
4059                                 inline_costs += 10 * num_calls++;
4060                                 break;
4061                         }
4062                         case CEE_MONO_FREE:
4063                                 CHECK_STACK (1);
4064                                 sp -= 1;
4065                                 mono_emit_jit_icall (cfg, bblock, g_free, sp, ip);
4066                                 ip += 2;
4067                                 inline_costs += 10 * num_calls++;
4068                                 break;
4069                         case CEE_MONO_LDPTR:
4070                                 CHECK_STACK_OVF (1);
4071                                 token = read32 (ip + 2);
4072                                 NEW_PCONST (cfg, ins, mono_method_get_wrapper_data (method, token));
4073                                 ins->cil_code = ip;
4074                                 *sp++ = ins;
4075                                 ip += 6;
4076                                 inline_costs += 10 * num_calls++;
4077                                 break;
4078                         case CEE_MONO_VTADDR:
4079                                 CHECK_STACK (1);
4080                                 --sp;
4081                                 MONO_INST_NEW (cfg, ins, OP_VTADDR);
4082                                 ins->cil_code = ip;
4083                                 ins->type = STACK_MP;
4084                                 ins->inst_left = *sp;
4085                                 *sp++ = ins;
4086                                 ip += 2;
4087                                 break;
4088                         case CEE_MONO_NEWOBJ: {
4089                                 MonoInst *iargs [2];
4090                                 int temp;
4091                                 CHECK_STACK_OVF (1);
4092                                 token = read32 (ip + 2);
4093                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
4094                                 mono_class_init (klass);
4095                                 NEW_DOMAINCONST (cfg, iargs [0]);
4096                                 NEW_CLASSCONST (cfg, iargs [1], klass);
4097                                 temp = mono_emit_jit_icall (cfg, bblock, mono_object_new, iargs, ip);
4098                                 NEW_TEMPLOAD (cfg, *sp, temp);
4099                                 sp++;
4100                                 ip += 6;
4101                                 inline_costs += 10 * num_calls++;
4102                                 break;
4103                         }
4104                         case CEE_MONO_OBJADDR:
4105                                 CHECK_STACK (1);
4106                                 --sp;
4107                                 MONO_INST_NEW (cfg, ins, OP_OBJADDR);
4108                                 ins->cil_code = ip;
4109                                 ins->type = STACK_MP;
4110                                 ins->inst_left = *sp;
4111                                 *sp++ = ins;
4112                                 ip += 2;
4113                                 break;
4114                         case CEE_MONO_LDNATIVEOBJ:
4115                                 CHECK_STACK (1);
4116                                 token = read32 (ip + 2);
4117                                 klass = mono_method_get_wrapper_data (method, token);
4118                                 g_assert (klass->valuetype);
4119                                 mono_class_init (klass);
4120                                 NEW_INDLOAD (cfg, ins, sp [-1], &klass->byval_arg);
4121                                 sp [-1] = ins;
4122                                 ip += 6;
4123                                 break;
4124                         case CEE_MONO_RETOBJ:
4125                                 g_assert (cfg->ret);
4126                                 g_assert (method->signature->pinvoke); 
4127                                 CHECK_STACK (1);
4128                                 --sp;
4129                                 
4130                                 token = read32 (ip + 2);    
4131                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
4132
4133                                 NEW_RETLOADA (cfg, ins);
4134                                 handle_stobj (cfg, bblock, ins, *sp, ip, klass, FALSE, TRUE);
4135                                 
4136                                 if (sp != stack_start)
4137                                         goto unverified;
4138                                 
4139                                 MONO_INST_NEW (cfg, ins, CEE_BR);
4140                                 ins->cil_code = ip;
4141                                 ins->inst_target_bb = end_bblock;
4142                                 MONO_ADD_INS (bblock, ins);
4143                                 link_bblock (cfg, bblock, end_bblock);
4144                                 start_new_bblock = 1;
4145                                 ip += 6;
4146                                 break;
4147                         default:
4148                                 g_error ("opcode 0x%02x 0x%02x not handled", MONO_CUSTOM_PREFIX, ip [1]);
4149                                 break;
4150                         }
4151                         break;
4152                 }
4153                 case CEE_PREFIX1: {
4154                         switch (ip [1]) {
4155                         case CEE_ARGLIST:
4156                                 g_error ("opcode 0xfe 0x%02x not handled", ip [1]);
4157                                 break;
4158                         case CEE_CEQ:
4159                         case CEE_CGT:
4160                         case CEE_CGT_UN:
4161                         case CEE_CLT:
4162                         case CEE_CLT_UN: {
4163                                 MonoInst *cmp;
4164                                 CHECK_STACK (2);
4165                                 MONO_INST_NEW (cfg, cmp, 256 + ip [1]);
4166                                 MONO_INST_NEW (cfg, ins, cmp->opcode);
4167                                 sp -= 2;
4168                                 cmp->inst_i0 = sp [0];
4169                                 cmp->inst_i1 = sp [1];
4170                                 cmp->cil_code = ip;
4171                                 type_from_op (cmp);
4172                                 CHECK_TYPE (cmp);
4173                                 cmp->opcode = OP_COMPARE;
4174                                 ins->cil_code = ip;
4175                                 ins->type = STACK_I4;
4176                                 ins->inst_i0 = cmp;
4177                                 *sp++ = ins;
4178                                 ip += 2;
4179                                 break;
4180                         }
4181                         case CEE_LDFTN: {
4182                                 MonoInst *argconst;
4183                                 int temp;
4184
4185                                 CHECK_STACK_OVF (1);
4186                                 n = read32 (ip + 2);
4187                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
4188                                         cmethod = mono_method_get_wrapper_data (method, n);
4189                                 else {
4190                                         cmethod = mono_get_method (image, n, NULL);
4191
4192                                         /*
4193                                          * We can't do this in mono_ldftn, since it is used in
4194                                          * the synchronized wrapper, leading to an infinite loop.
4195                                          */
4196                                         if (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED)
4197                                                 cmethod = mono_marshal_get_synchronized_wrapper (cmethod);
4198                                 }
4199
4200                                 mono_class_init (cmethod->klass);
4201                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
4202
4203                                 NEW_METHODCONST (cfg, argconst, cmethod);
4204                                 temp = mono_emit_jit_icall (cfg, bblock, mono_ldftn, &argconst, ip);
4205                                 NEW_TEMPLOAD (cfg, *sp, temp);
4206                                 sp ++;
4207                                 
4208                                 ip += 6;
4209                                 inline_costs += 10 * num_calls++;
4210                                 break;
4211                         }
4212                         case CEE_LDVIRTFTN: {
4213                                 MonoInst *args [2];
4214                                 int temp;
4215
4216                                 CHECK_STACK (1);
4217                                 n = read32 (ip + 2);
4218                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
4219                                         cmethod = mono_method_get_wrapper_data (method, n);
4220                                 else
4221                                         cmethod = mono_get_method (image, n, NULL);
4222
4223                                 mono_class_init (cmethod->klass);
4224                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
4225
4226                                 --sp;
4227                                 args [0] = *sp;
4228                                 NEW_METHODCONST (cfg, args [1], cmethod);
4229                                 temp = mono_emit_jit_icall (cfg, bblock, mono_ldvirtfn, args, ip);
4230                                 NEW_TEMPLOAD (cfg, *sp, temp);
4231                                 sp ++;
4232
4233                                 ip += 6;
4234                                 inline_costs += 10 * num_calls++;
4235                                 break;
4236                         }
4237                         case CEE_LDARG:
4238                                 CHECK_STACK_OVF (1);
4239                                 NEW_ARGLOAD (cfg, ins, read16 (ip + 2));
4240                                 ins->cil_code = ip;
4241                                 *sp++ = ins;
4242                                 ip += 4;
4243                                 break;
4244                         case CEE_LDARGA:
4245                                 CHECK_STACK_OVF (1);
4246                                 NEW_ARGLOADA (cfg, ins, read16 (ip + 2));
4247                                 ins->cil_code = ip;
4248                                 *sp++ = ins;
4249                                 ip += 4;
4250                                 break;
4251                         case CEE_STARG:
4252                                 CHECK_STACK (1);
4253                                 --sp;
4254                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
4255                                 n = read16 (ip + 2);
4256                                 NEW_ARGSTORE (cfg, ins, n, *sp);
4257                                 ins->cil_code = ip;
4258                                 if (ins->opcode == CEE_STOBJ) {
4259                                         NEW_ARGLOADA (cfg, ins, n);
4260                                         handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
4261                                 } else
4262                                         MONO_ADD_INS (bblock, ins);
4263                                 ip += 4;
4264                                 break;
4265                         case CEE_LDLOC:
4266                                 CHECK_STACK_OVF (1);
4267                                 NEW_LOCLOAD (cfg, ins, read16 (ip + 2));
4268                                 ins->cil_code = ip;
4269                                 *sp++ = ins;
4270                                 ip += 4;
4271                                 break;
4272                         case CEE_LDLOCA:
4273                                 CHECK_STACK_OVF (1);
4274                                 NEW_LOCLOADA (cfg, ins, read16 (ip + 2));
4275                                 ins->cil_code = ip;
4276                                 *sp++ = ins;
4277                                 ip += 4;
4278                                 break;
4279                         case CEE_STLOC:
4280                                 CHECK_STACK (1);
4281                                 --sp;
4282                                 n = read16 (ip + 2);
4283                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
4284                                 NEW_LOCSTORE (cfg, ins, n, *sp);
4285                                 ins->cil_code = ip;
4286                                 if (ins->opcode == CEE_STOBJ) {
4287                                         NEW_LOCLOADA (cfg, ins, n);
4288                                         handle_stobj (cfg, bblock, ins, *sp, ip, ins->klass, FALSE, FALSE);
4289                                 } else
4290                                         MONO_ADD_INS (bblock, ins);
4291                                 ip += 4;
4292                                 inline_costs += 1;
4293                                 break;
4294                         case CEE_LOCALLOC:
4295                                 CHECK_STACK (1);
4296                                 --sp;
4297                                 if (sp != stack_start) 
4298                                         goto unverified;
4299                                 MONO_INST_NEW (cfg, ins, 256 + ip [1]);
4300                                 ins->inst_left = *sp;
4301                                 ins->cil_code = ip;
4302
4303                                 if (header->init_locals)
4304                                         ins->flags |= MONO_INST_INIT;
4305
4306                                 *sp++ = ins;
4307                                 ip += 2;
4308                                 /* FIXME: set init flag if locals init is set in this method */
4309                                 break;
4310                         case CEE_ENDFILTER: {
4311                                 MonoExceptionClause *clause, *nearest;
4312                                 int cc, nearest_num;
4313
4314                                 CHECK_STACK (1);
4315                                 --sp;
4316                                 if ((sp != stack_start) || (sp [0]->type != STACK_I4)) 
4317                                         goto unverified;
4318                                 MONO_INST_NEW (cfg, ins, OP_ENDFILTER);
4319                                 ins->inst_left = *sp;
4320                                 ins->cil_code = ip;
4321                                 MONO_ADD_INS (bblock, ins);
4322                                 start_new_bblock = 1;
4323                                 ip += 2;
4324
4325                                 nearest = NULL;
4326                                 for (cc = 0; cc < header->num_clauses; ++cc) {
4327                                         clause = &header->clauses [cc];
4328                                         if ((clause->flags & MONO_EXCEPTION_CLAUSE_FILTER) &&
4329                                             (!nearest || (clause->token_or_filter > nearest->token_or_filter))) {
4330                                                 nearest = clause;
4331                                                 nearest_num = cc;
4332                                         }
4333                                 }
4334                                 g_assert (nearest);
4335                                 filter_lengths [nearest_num] = (ip - header->code) -  nearest->token_or_filter;
4336
4337                                 break;
4338                         }
4339                         case CEE_UNALIGNED_:
4340                                 ins_flag |= MONO_INST_UNALIGNED;
4341                                 ip += 3;
4342                                 break;
4343                         case CEE_VOLATILE_:
4344                                 ins_flag |= MONO_INST_VOLATILE;
4345                                 ip += 2;
4346                                 break;
4347                         case CEE_TAIL_:
4348                                 ins_flag |= MONO_INST_TAILCALL;
4349                                 ip += 2;
4350                                 break;
4351                         case CEE_INITOBJ:
4352                                 CHECK_STACK (1);
4353                                 --sp;
4354                                 token = read32 (ip + 2);
4355                                 if (method->wrapper_type != MONO_WRAPPER_NONE)
4356                                         klass = mono_method_get_wrapper_data (method, token);
4357                                 else
4358                                         klass = mono_class_get (image, token);
4359                                 handle_initobj (cfg, bblock, *sp, NULL, klass, stack_start, sp);
4360                                 ip += 6;
4361                                 inline_costs += 1;
4362                                 break;
4363                         case CEE_CPBLK:
4364                         case CEE_INITBLK: {
4365                                 MonoInst *iargs [3];
4366                                 CHECK_STACK (3);
4367                                 sp -= 3;
4368                                 iargs [0] = sp [0];
4369                                 iargs [1] = sp [1];
4370                                 iargs [2] = sp [2];
4371                                 handle_loaded_temps (cfg, bblock, stack_start, sp);
4372                                 if (ip [1] == CEE_CPBLK) {
4373                                         mono_emit_jit_icall (cfg, bblock, helper_memcpy, iargs, ip);
4374                                 } else {
4375                                         mono_emit_jit_icall (cfg, bblock, helper_memset, iargs, ip);
4376                                 }
4377                                 ip += 2;
4378                                 inline_costs += 1;
4379                                 break;
4380                         }
4381                         case CEE_RETHROW: {
4382                                 MonoInst *load;
4383                                 /* FIXME: check we are in a catch handler */
4384                                 NEW_TEMPLOAD (cfg, load, cfg->exvar->inst_c0);
4385                                 load->cil_code = ip;
4386                                 MONO_INST_NEW (cfg, ins, CEE_THROW);
4387                                 ins->inst_left = load;
4388                                 ins->cil_code = ip;
4389                                 MONO_ADD_INS (bblock, ins);
4390                                 sp = stack_start;
4391                                 start_new_bblock = 1;
4392                                 ip += 2;
4393                                 break;
4394                         }
4395                         case CEE_SIZEOF:
4396                                 CHECK_STACK_OVF (1);
4397                                 token = read32 (ip + 2);
4398                                 if (mono_metadata_token_table (token) == MONO_TABLE_TYPESPEC) {
4399                                         MonoType *type = mono_type_create_from_typespec (image, token);
4400                                         token = mono_type_size (type, &align);
4401                                         mono_metadata_free_type (type);
4402                                 } else {
4403                                         MonoClass *szclass = mono_class_get (image, token);
4404                                         mono_class_init (szclass);
4405                                         token = mono_class_value_size (szclass, &align);
4406                                 }
4407                                 NEW_ICONST (cfg, ins, token);
4408                                 ins->cil_code = ip;
4409                                 *sp++= ins;
4410                                 ip += 6;
4411                                 break;
4412                         case CEE_REFANYTYPE:
4413                                 g_error ("opcode 0xfe 0x%02x not handled", ip [1]);
4414                                 break;
4415                         default:
4416                                 g_error ("opcode 0xfe 0x%02x not handled", ip [1]);
4417                         }
4418                         break;
4419                 }
4420                 default:
4421                         g_error ("opcode 0x%02x not handled", *ip);
4422                 }
4423         }
4424         if (start_new_bblock != 1)
4425                 goto unverified;
4426
4427         bblock->cil_length = ip - bblock->cil_code;
4428         bblock->next_bb = end_bblock;
4429         link_bblock (cfg, bblock, end_bblock);
4430
4431         if (cfg->method == method && cfg->domainvar) {
4432                 MonoCallInst *call;
4433                 MonoInst *store;
4434
4435                 MONO_INST_NEW_CALL (cfg, call, CEE_CALL);
4436                 call->signature = helper_sig_domain_get;
4437                 call->inst.type = STACK_PTR;
4438                 call->fptr = mono_domain_get;
4439                 NEW_TEMPSTORE (cfg, store, cfg->domainvar->inst_c0, (MonoInst*)call);
4440                 
4441                 MONO_ADD_INS (init_localsbb, store);
4442         }
4443
4444         if (header->init_locals) {
4445                 MonoInst *store;
4446                 for (i = 0; i < header->num_locals; ++i) {
4447                         int t = header->locals [i]->type;
4448                         if (t == MONO_TYPE_VALUETYPE && header->locals [i]->data.klass->enumtype)
4449                                 t = header->locals [i]->data.klass->enum_basetype->type;
4450                         /* FIXME: use initobj for valuetypes, handle pointers, long, float. */
4451                         if (t >= MONO_TYPE_BOOLEAN && t <= MONO_TYPE_U4) {
4452                                 NEW_ICONST (cfg, ins, 0);
4453                                 NEW_LOCSTORE (cfg, store, i, ins);
4454                                 MONO_ADD_INS (init_localsbb, store);
4455                         } else if (t == MONO_TYPE_I8 || t == MONO_TYPE_U8) {
4456                                 MONO_INST_NEW (cfg, ins, OP_I8CONST);
4457                                 ins->type = STACK_I8;
4458                                 ins->inst_l = 0;
4459                                 NEW_LOCSTORE (cfg, store, i, ins);
4460                                 MONO_ADD_INS (init_localsbb, store);
4461                         } else if (t == MONO_TYPE_R4 || t == MONO_TYPE_R8) {
4462                                 MONO_INST_NEW (cfg, ins, OP_R8CONST);
4463                                 ins->type = STACK_R8;
4464                                 ins->inst_p0 = (void*)&r8_0;
4465                                 NEW_LOCSTORE (cfg, store, i, ins);
4466                                 MONO_ADD_INS (init_localsbb, store);
4467                         } else if (t == MONO_TYPE_VALUETYPE) {
4468                                 NEW_LOCLOADA (cfg, ins, i);
4469                                 handle_initobj (cfg, init_localsbb, ins, NULL, mono_class_from_mono_type (header->locals [i]), NULL, NULL);
4470                                 break;
4471                         } else {
4472                                 NEW_PCONST (cfg, ins, NULL);
4473                                 NEW_LOCSTORE (cfg, store, i, ins);
4474                                 MONO_ADD_INS (init_localsbb, store);
4475                         }
4476                 }
4477         }
4478
4479         
4480         /* resolve backward branches in the middle of an existing basic block */
4481         for (tmp = bb_recheck; tmp; tmp = tmp->next) {
4482                 bblock = tmp->data;
4483                 /*g_print ("need recheck in %s at IL_%04x\n", method->name, bblock->cil_code - header->code);*/
4484                 tblock = find_previous (bbhash, start_bblock, bblock->cil_code);
4485                 if (tblock != start_bblock) {
4486                         int l;
4487                         split_bblock (cfg, tblock, bblock);
4488                         l = bblock->cil_code - header->code;
4489                         bblock->cil_length = tblock->cil_length - l;
4490                         tblock->cil_length = l;
4491                 } else {
4492                         g_print ("recheck failed.\n");
4493                 }
4494         }
4495
4496         /* we compute regions here, because the length of filter clauses is not known in advance.
4497         * It is computed in the CEE_ENDFILTER case in the above switch statement*/
4498         if (cfg->method == method) {
4499                 MonoBasicBlock *bb;
4500                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
4501                         bb->region = mono_find_block_region (cfg, bb->real_offset, filter_lengths);
4502                         if (cfg->verbose_level > 2)
4503                                 g_print ("REGION BB%d IL_%04x ID_%08X\n", bb->block_num, bb->real_offset, bb->region);
4504                 }
4505         } else {
4506                 g_hash_table_destroy (bbhash);
4507         }
4508
4509         dont_inline = g_list_remove (dont_inline, method);
4510         return inline_costs;
4511
4512  inline_failure:
4513         if (cfg->method != method) 
4514                 g_hash_table_destroy (bbhash);
4515         dont_inline = g_list_remove (dont_inline, method);
4516         return -1;
4517
4518  unverified:
4519         if (cfg->method != method) 
4520                 g_hash_table_destroy (bbhash);
4521         g_error ("Invalid IL code at IL%04x in %s: %s\n", ip - header->code, 
4522                  mono_method_full_name (method, TRUE), mono_disasm_code_one (NULL, method, ip, NULL));
4523         dont_inline = g_list_remove (dont_inline, method);
4524         return -1;
4525 }
4526
4527 void
4528 mono_print_tree (MonoInst *tree) {
4529         int arity;
4530
4531         if (!tree)
4532                 return;
4533
4534         arity = mono_burg_arity [tree->opcode];
4535
4536         printf (" %s%s", arity?"(":"",  mono_inst_name (tree->opcode));
4537
4538         switch (tree->opcode) {
4539         case OP_ICONST:
4540                 printf ("[%d]", tree->inst_c0);
4541                 break;
4542         case OP_I8CONST:
4543                 printf ("[%lld]", tree->inst_l);
4544                 break;
4545         case OP_R8CONST:
4546                 printf ("[%f]", *(double*)tree->inst_p0);
4547                 break;
4548         case OP_R4CONST:
4549                 printf ("[%f]", *(float*)tree->inst_p0);
4550                 break;
4551         case OP_ARG:
4552         case OP_LOCAL:
4553                 printf ("[%d]", tree->inst_c0);
4554                 break;
4555         case OP_REGOFFSET:
4556                 printf ("[0x%x(%s)]", tree->inst_offset, mono_arch_regname (tree->inst_basereg));
4557                 break;
4558         case OP_REGVAR:
4559                 printf ("[%s]", mono_arch_regname (tree->dreg));
4560                 break;
4561         case CEE_NEWARR:
4562                 printf ("[%s]",  tree->inst_newa_class->name);
4563                 mono_print_tree (tree->inst_newa_len);
4564                 break;
4565         case CEE_CALL:
4566         case CEE_CALLVIRT:
4567         case OP_FCALL:
4568         case OP_FCALLVIRT:
4569         case OP_LCALL:
4570         case OP_LCALLVIRT:
4571         case OP_VCALL:
4572         case OP_VCALLVIRT:
4573         case OP_VOIDCALL:
4574         case OP_VOIDCALLVIRT: {
4575                 MonoCallInst *call = (MonoCallInst*)tree;
4576                 if (call->method)
4577                         printf ("[%s]", call->method->name);
4578                 break;
4579         }
4580         case OP_PHI: {
4581                 int i;
4582                 printf ("[%d (", tree->inst_c0);
4583                 for (i = 0; i < tree->inst_phi_args [0]; i++) {
4584                         if (i)
4585                                 printf (", ");
4586                         printf ("%d", tree->inst_phi_args [i + 1]);
4587                 }
4588                 printf (")]");
4589                 break;
4590         }
4591         case OP_RENAME:
4592         case OP_RETARG:
4593         case CEE_NOP:
4594         case CEE_JMP:
4595         case CEE_BREAK:
4596                 break;
4597         case CEE_BR:
4598                 printf ("[B%d]", tree->inst_target_bb->block_num);
4599                 break;
4600         case CEE_SWITCH:
4601         case CEE_ISINST:
4602         case CEE_CASTCLASS:
4603         case OP_OUTARG:
4604         case OP_CALL_REG:
4605         case OP_FCALL_REG:
4606         case OP_LCALL_REG:
4607         case OP_VCALL_REG:
4608         case OP_VOIDCALL_REG:
4609                 mono_print_tree (tree->inst_left);
4610                 break;
4611         case CEE_BNE_UN:
4612         case CEE_BEQ:
4613         case CEE_BLT:
4614         case CEE_BLT_UN:
4615         case CEE_BGT:
4616         case CEE_BGT_UN:
4617         case CEE_BGE:
4618         case CEE_BGE_UN:
4619         case CEE_BLE:
4620         case CEE_BLE_UN:
4621                 printf ("[B%dB%d]", tree->inst_true_bb->block_num, tree->inst_false_bb->block_num);
4622                 mono_print_tree (tree->inst_left);
4623                 break;
4624         default:
4625                 if (arity) {
4626                         mono_print_tree (tree->inst_left);
4627                         if (arity > 1)
4628                                 mono_print_tree (tree->inst_right);
4629                 }
4630                 break;
4631         }
4632
4633         if (arity)
4634                 printf (")");
4635 }
4636
4637 static void
4638 create_helper_signature (void)
4639 {
4640         /* FIXME: set call conv */
4641         /* MonoArray * mono_array_new (MonoDomain *domain, MonoClass *klass, gint32 len) */
4642         helper_sig_newarr = mono_metadata_signature_alloc (mono_defaults.corlib, 3);
4643         helper_sig_newarr->params [0] = helper_sig_newarr->params [1] = &mono_defaults.int_class->byval_arg;
4644         helper_sig_newarr->ret = &mono_defaults.object_class->byval_arg;
4645         helper_sig_newarr->params [2] = &mono_defaults.int32_class->byval_arg;
4646         helper_sig_newarr->pinvoke = 1;
4647
4648         /* MonoArray * mono_array_new_specific (MonoVTable *vtable, guint32 len) */
4649         helper_sig_newarr_specific = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4650         helper_sig_newarr_specific->params [0] = &mono_defaults.int_class->byval_arg;
4651         helper_sig_newarr_specific->params [1] = &mono_defaults.int32_class->byval_arg;
4652         helper_sig_newarr_specific->ret = &mono_defaults.object_class->byval_arg;
4653         helper_sig_newarr_specific->pinvoke = 1;
4654
4655         /* MonoObject * mono_object_new (MonoDomain *domain, MonoClass *klass) */
4656         helper_sig_object_new = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4657         helper_sig_object_new->params [0] = helper_sig_object_new->params [1] = &mono_defaults.int_class->byval_arg;
4658         helper_sig_object_new->ret = &mono_defaults.object_class->byval_arg;
4659         helper_sig_object_new->pinvoke = 1;
4660
4661         /* MonoObject * mono_object_new_specific (MonoVTable *vtable) */
4662         helper_sig_object_new_specific = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4663         helper_sig_object_new_specific->params [0] = &mono_defaults.int_class->byval_arg;
4664         helper_sig_object_new_specific->ret = &mono_defaults.object_class->byval_arg;
4665         helper_sig_object_new_specific->pinvoke = 1;
4666
4667         /* void* mono_method_compile (MonoMethod*) */
4668         helper_sig_compile = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4669         helper_sig_compile->params [0] = helper_sig_compile->ret = &mono_defaults.int_class->byval_arg;
4670         helper_sig_compile->pinvoke = 1;
4671
4672         /* void* mono_ldvirtfn (MonoObject *, MonoMethod*) */
4673         helper_sig_compile_virt = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4674         helper_sig_compile_virt->params [0] = &mono_defaults.object_class->byval_arg;
4675         helper_sig_compile_virt->params [1] = helper_sig_compile_virt->ret = &mono_defaults.int_class->byval_arg;
4676         helper_sig_compile_virt->pinvoke = 1;
4677
4678         /* MonoString* mono_ldstr (MonoDomain *domain, MonoImage *image, guint32 str_index) */
4679         helper_sig_ldstr = mono_metadata_signature_alloc (mono_defaults.corlib, 3);
4680         helper_sig_ldstr->params [0] = helper_sig_ldstr->params [1] = &mono_defaults.int_class->byval_arg;
4681         helper_sig_ldstr->params [2] = &mono_defaults.int32_class->byval_arg;
4682         helper_sig_ldstr->ret = &mono_defaults.object_class->byval_arg;
4683         helper_sig_ldstr->pinvoke = 1;
4684
4685         /* MonoDomain *mono_domain_get (void) */
4686         helper_sig_domain_get = mono_metadata_signature_alloc (mono_defaults.corlib, 0);
4687         helper_sig_domain_get->ret = &mono_defaults.int_class->byval_arg;
4688         helper_sig_domain_get->pinvoke = 1;
4689
4690         /* void* stelem_ref (MonoArray *, int index, MonoObject *) */
4691         helper_sig_stelem_ref = mono_metadata_signature_alloc (mono_defaults.corlib, 3);
4692         helper_sig_stelem_ref->params [0] = &mono_defaults.array_class->byval_arg;
4693         helper_sig_stelem_ref->params [1] = &mono_defaults.int32_class->byval_arg;
4694         helper_sig_stelem_ref->params [2] = &mono_defaults.object_class->byval_arg;
4695         helper_sig_stelem_ref->ret = &mono_defaults.void_class->byval_arg;
4696         helper_sig_stelem_ref->pinvoke = 1;
4697
4698         /* long amethod (long, long) */
4699         helper_sig_long_long_long = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4700         helper_sig_long_long_long->params [0] = helper_sig_long_long_long->params [1] = 
4701                 &mono_defaults.int64_class->byval_arg;
4702         helper_sig_long_long_long->ret = &mono_defaults.int64_class->byval_arg;
4703         helper_sig_long_long_long->pinvoke = 1;
4704
4705         /* object  amethod (intptr) */
4706         helper_sig_obj_ptr = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4707         helper_sig_obj_ptr->params [0] = &mono_defaults.int_class->byval_arg;
4708         helper_sig_obj_ptr->ret = &mono_defaults.object_class->byval_arg;
4709         helper_sig_obj_ptr->pinvoke = 1;
4710
4711         /* void amethod (intptr) */
4712         helper_sig_void_ptr = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4713         helper_sig_void_ptr->params [0] = &mono_defaults.int_class->byval_arg;
4714         helper_sig_void_ptr->ret = &mono_defaults.void_class->byval_arg;
4715         helper_sig_void_ptr->pinvoke = 1;
4716
4717         /* void amethod (MonoObject *obj) */
4718         helper_sig_void_obj = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4719         helper_sig_void_obj->params [0] = &mono_defaults.object_class->byval_arg;
4720         helper_sig_void_obj->ret = &mono_defaults.void_class->byval_arg;
4721         helper_sig_void_obj->pinvoke = 1;
4722
4723         /* intptr amethod (void) */
4724         helper_sig_ptr_void = mono_metadata_signature_alloc (mono_defaults.corlib, 0);
4725         helper_sig_ptr_void->ret = &mono_defaults.int_class->byval_arg;
4726         helper_sig_ptr_void->pinvoke = 1;
4727
4728         /* void  amethod (intptr, intptr) */
4729         helper_sig_void_ptr_ptr = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4730         helper_sig_void_ptr_ptr->params [0] = &mono_defaults.int_class->byval_arg;
4731         helper_sig_void_ptr_ptr->params [1] = &mono_defaults.int_class->byval_arg;
4732         helper_sig_void_ptr_ptr->ret = &mono_defaults.void_class->byval_arg;
4733         helper_sig_void_ptr_ptr->pinvoke = 1;
4734
4735         /* void  amethod (intptr, intptr, intptr) */
4736         helper_sig_void_ptr_ptr_ptr = mono_metadata_signature_alloc (mono_defaults.corlib, 3);
4737         helper_sig_void_ptr_ptr_ptr->params [0] = &mono_defaults.int_class->byval_arg;
4738         helper_sig_void_ptr_ptr_ptr->params [1] = &mono_defaults.int_class->byval_arg;
4739         helper_sig_void_ptr_ptr_ptr->params [2] = &mono_defaults.int_class->byval_arg;
4740         helper_sig_void_ptr_ptr_ptr->ret = &mono_defaults.void_class->byval_arg;
4741         helper_sig_void_ptr_ptr_ptr->pinvoke = 1;
4742
4743         /* intptr  amethod (intptr, intptr) */
4744         helper_sig_ptr_ptr_ptr = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4745         helper_sig_ptr_ptr_ptr->params [0] = &mono_defaults.int_class->byval_arg;
4746         helper_sig_ptr_ptr_ptr->params [1] = &mono_defaults.int_class->byval_arg;
4747         helper_sig_ptr_ptr_ptr->ret = &mono_defaults.int_class->byval_arg;
4748         helper_sig_ptr_ptr_ptr->pinvoke = 1;
4749
4750         /* IntPtr  amethod (object) */
4751         helper_sig_ptr_obj = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4752         helper_sig_ptr_obj->params [0] = &mono_defaults.object_class->byval_arg;
4753         helper_sig_ptr_obj->ret = &mono_defaults.int_class->byval_arg;
4754         helper_sig_ptr_obj->pinvoke = 1;
4755
4756         /* IntPtr  amethod (int) */
4757         helper_sig_ptr_int = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4758         helper_sig_ptr_int->params [0] = &mono_defaults.int32_class->byval_arg;
4759         helper_sig_ptr_int->ret = &mono_defaults.int_class->byval_arg;
4760         helper_sig_ptr_int->pinvoke = 1;
4761
4762         /* long amethod (long, guint32) */
4763         helper_sig_long_long_int = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4764         helper_sig_long_long_int->params [0] = &mono_defaults.int64_class->byval_arg;
4765         helper_sig_long_long_int->params [1] = &mono_defaults.int32_class->byval_arg;
4766         helper_sig_long_long_int->ret = &mono_defaults.int64_class->byval_arg;
4767         helper_sig_long_long_int->pinvoke = 1;
4768
4769         /* ulong amethod (double) */
4770         helper_sig_ulong_double = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4771         helper_sig_ulong_double->params [0] = &mono_defaults.double_class->byval_arg;
4772         helper_sig_ulong_double->ret = &mono_defaults.uint64_class->byval_arg;
4773         helper_sig_ulong_double->pinvoke = 1;
4774
4775         /* long amethod (double) */
4776         helper_sig_long_double = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4777         helper_sig_long_double->params [0] = &mono_defaults.double_class->byval_arg;
4778         helper_sig_long_double->ret = &mono_defaults.int64_class->byval_arg;
4779         helper_sig_long_double->pinvoke = 1;
4780
4781         /* uint amethod (double) */
4782         helper_sig_uint_double = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4783         helper_sig_uint_double->params [0] = &mono_defaults.double_class->byval_arg;
4784         helper_sig_uint_double->ret = &mono_defaults.uint32_class->byval_arg;
4785         helper_sig_uint_double->pinvoke = 1;
4786
4787         /* int amethod (double) */
4788         helper_sig_int_double = mono_metadata_signature_alloc (mono_defaults.corlib, 1);
4789         helper_sig_int_double->params [0] = &mono_defaults.double_class->byval_arg;
4790         helper_sig_int_double->ret = &mono_defaults.int32_class->byval_arg;
4791         helper_sig_int_double->pinvoke = 1;
4792
4793         /* void  initobj (intptr, int size) */
4794         helper_sig_initobj = mono_metadata_signature_alloc (mono_defaults.corlib, 2);
4795         helper_sig_initobj->params [0] = &mono_defaults.int_class->byval_arg;
4796         helper_sig_initobj->params [1] = &mono_defaults.int32_class->byval_arg;
4797         helper_sig_initobj->ret = &mono_defaults.void_class->byval_arg;
4798         helper_sig_initobj->pinvoke = 1;
4799
4800         /* void  memcpy (intptr, intptr, int size) */
4801         helper_sig_memcpy = mono_metadata_signature_alloc (mono_defaults.corlib, 3);
4802         helper_sig_memcpy->params [0] = &mono_defaults.int_class->byval_arg;
4803         helper_sig_memcpy->params [1] = &mono_defaults.int_class->byval_arg;
4804         helper_sig_memcpy->params [2] = &mono_defaults.int32_class->byval_arg;
4805         helper_sig_memcpy->ret = &mono_defaults.void_class->byval_arg;
4806         helper_sig_memcpy->pinvoke = 1;
4807
4808         /* void  memset (intptr, int val, int size) */
4809         helper_sig_memset = mono_metadata_signature_alloc (mono_defaults.corlib, 3);
4810         helper_sig_memset->params [0] = &mono_defaults.int_class->byval_arg;
4811         helper_sig_memset->params [1] = &mono_defaults.int32_class->byval_arg;
4812         helper_sig_memset->params [2] = &mono_defaults.int32_class->byval_arg;
4813         helper_sig_memset->ret = &mono_defaults.void_class->byval_arg;
4814         helper_sig_memset->pinvoke = 1;
4815 }
4816
4817 static GHashTable *jit_icall_hash_name = NULL;
4818 static GHashTable *jit_icall_hash_addr = NULL;
4819
4820 MonoJitICallInfo *
4821 mono_find_jit_icall_by_name (const char *name)
4822 {
4823         g_assert (jit_icall_hash_name);
4824
4825         //printf ("lookup addr %s %p\n", name, g_hash_table_lookup (jit_icall_hash_name, name));
4826         return g_hash_table_lookup (jit_icall_hash_name, name);
4827 }
4828
4829 MonoJitICallInfo *
4830 mono_find_jit_icall_by_addr (gconstpointer addr)
4831 {
4832         g_assert (jit_icall_hash_addr);
4833
4834         return g_hash_table_lookup (jit_icall_hash_addr, (gpointer)addr);
4835 }
4836
4837 MonoJitICallInfo *
4838 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save)
4839 {
4840         MonoJitICallInfo *info;
4841         MonoMethod *wrapper;
4842         char *n;
4843         
4844         g_assert (func);
4845         g_assert (name);
4846
4847         if (!jit_icall_hash_name) {
4848                 jit_icall_hash_name = g_hash_table_new (g_str_hash, g_str_equal);
4849                 jit_icall_hash_addr = g_hash_table_new (NULL, NULL);
4850         }
4851
4852         if (g_hash_table_lookup (jit_icall_hash_name, name)) {
4853                 g_warning ("jit icall already defined \"%s\"\n", name);
4854                 g_assert_not_reached ();
4855         }
4856
4857         info = g_new (MonoJitICallInfo, 1);
4858         
4859         info->name = g_strdup (name);
4860         info->func = func;
4861         info->sig = sig;
4862                 
4863         if (is_save
4864 #ifdef MONO_USE_EXC_TABLES
4865             || mono_arch_has_unwind_info (func)
4866 #endif
4867             ) {
4868                 info->wrapper = func;
4869         } else {
4870                 g_assert (sig);
4871                 n = g_strdup_printf ("__icall_wrapper_%s", name);       
4872                 wrapper = mono_marshal_get_icall_wrapper (sig, n, func);
4873                 info->wrapper = mono_jit_compile_method (wrapper);
4874                 g_free (n);
4875         }
4876
4877         g_hash_table_insert (jit_icall_hash_name, info->name, info);
4878         g_hash_table_insert (jit_icall_hash_addr, (gpointer)func, info);
4879         if (func != info->wrapper)
4880                 g_hash_table_insert (jit_icall_hash_addr, (gpointer)info->wrapper, info);
4881
4882         return info;
4883 }
4884
4885 static GHashTable *emul_opcode_hash = NULL;
4886
4887 static MonoJitICallInfo *
4888 mono_find_jit_opcode_emulation (int opcode)
4889 {
4890         if  (emul_opcode_hash)
4891                 return g_hash_table_lookup (emul_opcode_hash, (gpointer)opcode);
4892         else
4893                 return NULL;
4894 }
4895
4896 void
4897 mono_register_opcode_emulation (int opcode, MonoMethodSignature *sig, gpointer func)
4898 {
4899         MonoJitICallInfo *info;
4900         char *name;
4901
4902         if (!emul_opcode_hash)
4903                 emul_opcode_hash = g_hash_table_new (NULL, NULL);
4904
4905         g_assert (!sig->hasthis);
4906         g_assert (sig->param_count < 3);
4907
4908         name = g_strdup_printf ("__emulate_%s",  mono_inst_name (opcode));
4909
4910         info = mono_register_jit_icall (func, name, sig, FALSE);
4911
4912         g_free (name);
4913
4914         g_hash_table_insert (emul_opcode_hash, (gpointer)opcode, info);
4915 }
4916
4917 static void
4918 decompose_foreach (MonoInst *tree, gpointer data) 
4919 {
4920         static MonoJitICallInfo *newarr_info = NULL;
4921         static MonoJitICallInfo *newarr_specific_info = NULL;
4922         MonoJitICallInfo *info;
4923
4924         switch (tree->opcode) {
4925         case CEE_NEWARR: {
4926                 MonoCompile *cfg = data;
4927                 MonoInst *iargs [3];
4928
4929                 if (!newarr_info) {
4930                         newarr_info = mono_find_jit_icall_by_addr (mono_array_new);
4931                         g_assert (newarr_info);
4932                         newarr_specific_info = mono_find_jit_icall_by_addr (mono_array_new_specific);
4933                         g_assert (newarr_specific_info);
4934                 }
4935
4936                 if ((cfg->opt & MONO_OPT_SHARED) || mono_compile_aot) {
4937                         NEW_DOMAINCONST (cfg, iargs [0]);
4938                         NEW_CLASSCONST (cfg, iargs [1], tree->inst_newa_class);
4939                         iargs [2] = tree->inst_newa_len;
4940
4941                         info = newarr_info;
4942                 }
4943                 else {
4944                         MonoVTable *vtable = mono_class_vtable (cfg->domain, 
4945                                                                                                         mono_array_class_get (&tree->inst_newa_class->byval_arg, 1));
4946
4947                         NEW_PCONST (cfg, iargs [0], vtable);
4948                         iargs [1] = tree->inst_newa_len;
4949
4950                         info = newarr_specific_info;
4951                 }
4952
4953                 mono_emulate_opcode (cfg, tree, iargs, info);
4954                 break;
4955         }
4956
4957         default:
4958                 break;
4959         }
4960 }
4961
4962 void
4963 mono_inst_foreach (MonoInst *tree, MonoInstFunc func, gpointer data) {
4964
4965         switch (mono_burg_arity [tree->opcode]) {
4966         case 0: break;
4967         case 1: 
4968                 mono_inst_foreach (tree->inst_left, func, data);
4969                 break;
4970         case 2: 
4971                 mono_inst_foreach (tree->inst_left, func, data);
4972                 mono_inst_foreach (tree->inst_right, func, data);
4973                 break;
4974         default:
4975                 g_assert_not_reached ();
4976         }
4977         func (tree, data);
4978 }
4979
4980 #if 0
4981 static void
4982 mono_print_bb_code (MonoBasicBlock *bb) {
4983         if (bb->code) {
4984                 MonoInst *c = bb->code;
4985                 while (c) {
4986                         mono_print_tree (c);
4987                         g_print ("\n");
4988                         c = c->next;
4989                 }
4990         }
4991 }
4992 #endif
4993
4994 static void
4995 print_dfn (MonoCompile *cfg) {
4996         int i, j;
4997         char *code;
4998         MonoBasicBlock *bb;
4999
5000         g_print ("IR code for method %s\n", mono_method_full_name (cfg->method, TRUE));
5001
5002         for (i = 0; i < cfg->num_bblocks; ++i) {
5003                 bb = cfg->bblocks [i];
5004                 if (bb->cil_code) {
5005                         char* code1, *code2;
5006                         code1 = mono_disasm_code_one (NULL, cfg->method, bb->cil_code, NULL);
5007                         if (bb->last_ins->cil_code)
5008                                 code2 = mono_disasm_code_one (NULL, cfg->method, bb->last_ins->cil_code, NULL);
5009                         else
5010                                 code2 = g_strdup ("");
5011
5012                         code1 [strlen (code1) - 1] = 0;
5013                         code = g_strdup_printf ("%s -> %s", code1, code2);
5014                         g_free (code1);
5015                         g_free (code2);
5016                 } else
5017                         code = g_strdup ("\n");
5018                 g_print ("\nBB%d DFN%d (len: %d): %s", bb->block_num, i, bb->cil_length, code);
5019                 if (bb->code) {
5020                         MonoInst *c = bb->code;
5021                         while (c) {
5022                                 mono_print_tree (c);
5023                                 g_print ("\n");
5024                                 c = c->next;
5025                         }
5026                 } else {
5027
5028                 }
5029
5030                 g_print ("\tprev:");
5031                 for (j = 0; j < bb->in_count; ++j) {
5032                         g_print (" BB%d", bb->in_bb [j]->block_num);
5033                 }
5034                 g_print ("\t\tsucc:");
5035                 for (j = 0; j < bb->out_count; ++j) {
5036                         g_print (" BB%d", bb->out_bb [j]->block_num);
5037                 }
5038                 g_print ("\n\tidom: BB%d\n", bb->idom? bb->idom->block_num: -1);
5039
5040                 if (bb->idom)
5041                         g_assert (mono_bitset_test_fast (bb->dominators, bb->idom->dfn));
5042
5043                 if (bb->dominators)
5044                         mono_blockset_print (cfg, bb->dominators, "\tdominators", bb->idom? bb->idom->dfn: -1);
5045                 if (bb->dfrontier)
5046                         mono_blockset_print (cfg, bb->dfrontier, "\tdfrontier", -1);
5047                 g_free (code);
5048         }
5049
5050         g_print ("\n");
5051 }
5052
5053 /*
5054  * returns the offset used by spillvar. It allocates a new
5055  * spill variable if necessary. 
5056  */
5057 int
5058 mono_spillvar_offset (MonoCompile *cfg, int spillvar)
5059 {
5060         MonoSpillInfo **si, *info;
5061         int i = 0;
5062
5063         si = &cfg->spill_info; 
5064         
5065         while (i <= spillvar) {
5066
5067                 if (!*si) {
5068                         *si = info = mono_mempool_alloc (cfg->mempool, sizeof (MonoSpillInfo));
5069                         info->next = NULL;
5070                         cfg->stack_offset -= sizeof (gpointer);
5071                         info->offset = cfg->stack_offset;
5072                 }
5073
5074                 if (i == spillvar)
5075                         return (*si)->offset;
5076
5077                 i++;
5078                 si = &(*si)->next;
5079         }
5080
5081         g_assert_not_reached ();
5082         return 0;
5083 }
5084
5085 void
5086 mono_bblock_add_inst (MonoBasicBlock *bb, MonoInst *inst)
5087 {
5088         inst->next = NULL;
5089         if (bb->last_ins) {
5090                 g_assert (bb->code);
5091                 bb->last_ins->next = inst;
5092                 bb->last_ins = inst;
5093         } else {
5094                 bb->last_ins = bb->code = inst;
5095         }
5096 }
5097
5098 void
5099 mono_destroy_compile (MonoCompile *cfg)
5100 {
5101         //mono_mempool_stats (cfg->mempool);
5102         g_hash_table_destroy (cfg->bb_hash);
5103         if (cfg->rs)
5104                 mono_regstate_free (cfg->rs);
5105         mono_mempool_destroy (cfg->mempool);
5106         g_list_free (cfg->ldstr_list);
5107
5108         g_free (cfg->varinfo);
5109         g_free (cfg->vars);
5110         g_free (cfg);
5111 }
5112
5113 gpointer 
5114 mono_get_lmf_addr (void)
5115 {
5116         MonoJitTlsData *jit_tls;        
5117
5118         if ((jit_tls = TlsGetValue (mono_jit_tls_id)))
5119                 return &jit_tls->lmf;
5120
5121         g_assert_not_reached ();
5122         return NULL;
5123 }
5124
5125 /**
5126  * mono_thread_abort:
5127  * @obj: exception object
5128  *
5129  * abort the thread, print exception information and stack trace
5130  */
5131 static void
5132 mono_thread_abort (MonoObject *obj)
5133 {
5134         MonoJitTlsData *jit_tls = TlsGetValue (mono_jit_tls_id);
5135         
5136         g_free (jit_tls);
5137
5138         ExitThread (-1);
5139 }
5140
5141 static void
5142 mono_thread_start_cb (guint32 tid, gpointer stack_start, gpointer func)
5143 {
5144         MonoJitTlsData *jit_tls;
5145         MonoLMF *lmf;
5146
5147         jit_tls = g_new0 (MonoJitTlsData, 1);
5148
5149         TlsSetValue (mono_jit_tls_id, jit_tls);
5150
5151         jit_tls->abort_func = mono_thread_abort;
5152         jit_tls->end_of_stack = stack_start;
5153
5154         lmf = g_new0 (MonoLMF, 1);
5155         lmf->ebp = -1;
5156
5157         jit_tls->lmf = lmf;
5158 }
5159
5160 void (*mono_thread_attach_aborted_cb ) (MonoObject *obj) = NULL;
5161
5162 static void
5163 mono_thread_abort_dummy (MonoObject *obj)
5164 {
5165   if (mono_thread_attach_aborted_cb)
5166     mono_thread_attach_aborted_cb (obj);
5167   else
5168     mono_thread_abort (obj);
5169 }
5170
5171 static void
5172 mono_thread_attach_cb (guint32 tid, gpointer stack_start)
5173 {
5174         MonoJitTlsData *jit_tls;
5175         MonoLMF *lmf;
5176
5177         jit_tls = g_new0 (MonoJitTlsData, 1);
5178
5179         TlsSetValue (mono_jit_tls_id, jit_tls);
5180
5181         jit_tls->abort_func = mono_thread_abort_dummy;
5182         jit_tls->end_of_stack = stack_start;
5183
5184         lmf = g_new0 (MonoLMF, 1);
5185         lmf->ebp = -1;
5186
5187         jit_tls->lmf = lmf;
5188 }
5189
5190 void
5191 mono_add_patch_info (MonoCompile *cfg, int ip, MonoJumpInfoType type, gconstpointer target)
5192 {
5193         MonoJumpInfo *ji = mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfo));
5194
5195         ji->ip.i = ip;
5196         ji->type = type;
5197         ji->data.target = target;
5198         ji->next = cfg->patch_info;
5199
5200         cfg->patch_info = ji;
5201 }
5202
5203 void
5204 mono_remove_patch_info (MonoCompile *cfg, int ip)
5205 {
5206         MonoJumpInfo **ji = &cfg->patch_info;
5207
5208         while (*ji) {
5209                 if ((*ji)->ip.i == ip)
5210                         *ji = (*ji)->next;
5211                 else
5212                         ji = &((*ji)->next);
5213         }
5214 }
5215
5216 static void
5217 dec_foreach (MonoInst *tree, MonoCompile *cfg) {
5218         MonoJitICallInfo *info;
5219
5220         switch (mono_burg_arity [tree->opcode]) {
5221         case 0: break;
5222         case 1: 
5223                 dec_foreach (tree->inst_left, cfg);
5224
5225                 if ((info = mono_find_jit_opcode_emulation (tree->opcode))) {
5226                         MonoInst *iargs [2];
5227                 
5228                         iargs [0] = tree->inst_left;
5229
5230                         mono_emulate_opcode (cfg, tree, iargs, info);
5231                         return;
5232                 }
5233
5234                 break;
5235         case 2: 
5236                 if ((info = mono_find_jit_opcode_emulation (tree->opcode))) {
5237                         MonoInst *iargs [2];
5238                 
5239                         iargs [0] = tree->inst_i0;
5240                         iargs [1] = tree->inst_i1;
5241                 
5242                         mono_emulate_opcode (cfg, tree, iargs, info);
5243
5244                         dec_foreach (iargs [0], cfg);
5245                         dec_foreach (iargs [1], cfg);
5246                         return;
5247                 } else {
5248                         dec_foreach (tree->inst_left, cfg);
5249                         dec_foreach (tree->inst_right, cfg);
5250                 }
5251                 break;
5252         default:
5253                 g_assert_not_reached ();
5254         }
5255         decompose_foreach (tree, cfg);
5256 }
5257
5258 static void
5259 decompose_pass (MonoCompile *cfg) {
5260         MonoBasicBlock *bb;
5261
5262         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5263                 MonoInst *tree;
5264                 cfg->cbb = bb;
5265                 cfg->prev_ins = NULL;
5266                 for (tree = cfg->cbb->code; tree; tree = tree->next) {
5267                         dec_foreach (tree, cfg);
5268                         cfg->prev_ins = tree;
5269                 }
5270         }
5271 }
5272
5273 static void
5274 nullify_basic_block (MonoBasicBlock *bb) 
5275 {
5276         bb->in_count = 0;
5277         bb->out_count = 0;
5278         bb->in_bb = NULL;
5279         bb->out_bb = NULL;
5280         bb->next_bb = NULL;
5281         bb->code = bb->last_ins = NULL;
5282 }
5283
5284 static void 
5285 replace_basic_block (MonoBasicBlock *bb, MonoBasicBlock *orig,  MonoBasicBlock *repl)
5286 {
5287         int i, j;
5288
5289         for (i = 0; i < bb->out_count; i++) {
5290                 MonoBasicBlock *ob = bb->out_bb [i];
5291                 for (j = 0; j < ob->in_count; j++) {
5292                         if (ob->in_bb [j] == orig)
5293                                 ob->in_bb [j] = repl;
5294                 }
5295         }
5296
5297 }
5298
5299 static void
5300 merge_basic_blocks (MonoBasicBlock *bb, MonoBasicBlock *bbn) 
5301 {
5302         bb->out_count = bbn->out_count;
5303         bb->out_bb = bbn->out_bb;
5304
5305         replace_basic_block (bb, bbn, bb);
5306
5307         if (bb->last_ins) {
5308                 if (bbn->code) {
5309                         bb->last_ins->next = bbn->code;
5310                         bb->last_ins = bbn->last_ins;
5311                 }
5312         } else {
5313                 bb->code = bbn->code;
5314                 bb->last_ins = bbn->last_ins;
5315         }
5316         bb->next_bb = bbn->next_bb;
5317         nullify_basic_block (bbn);
5318 }
5319
5320 static void
5321 optimize_branches (MonoCompile *cfg) {
5322         int changed = FALSE;
5323         MonoBasicBlock *bb, *bbn;
5324
5325         do {
5326                 changed = FALSE;
5327
5328                 /* we skip the entry block (exit is handled specially instead ) */
5329                 for (bb = cfg->bb_entry->next_bb; bb; bb = bb->next_bb) {
5330
5331                         /* dont touch code inside exception clauses */
5332                         if (bb->region != -1)
5333                                 continue;
5334
5335                         if (bb->out_count == 1) {
5336                                 bbn = bb->out_bb [0];
5337
5338                                 if (bb->region == bbn->region && bb->next_bb == bbn) {
5339                                 /* the block are in sequence anyway ... */
5340
5341                                         /* 
5342                                          * miguel: I do not understand what the test below does, could we
5343                                          * use a macro, or a comment here?  opcode > CEE_BEQ && <= BLT_UN
5344                                          *
5345                                          * It could also test for bb->last_in only once, and the value
5346                                          * could be cached (last_ins->opcode)
5347                                          */
5348                                         if (bb->last_ins && (bb->last_ins->opcode == CEE_BR || (
5349                                                 (bb->last_ins && bb->last_ins->opcode >= CEE_BEQ && bb->last_ins->opcode <= CEE_BLT_UN)))) {
5350                                                 bb->last_ins->opcode = CEE_NOP;
5351                                                 changed = TRUE;
5352                                                 if (cfg->verbose_level > 2)
5353                                                         g_print ("br removal triggered %d -> %d\n", bb->block_num, bbn->block_num);
5354                                         }
5355                                         /* fixme: this causes problems with inlining */
5356                                         if (bbn->in_count == 1) {
5357
5358                                                 if (bbn != cfg->bb_exit) {
5359                                                         if (cfg->verbose_level > 2)
5360                                                                 g_print ("block merge triggered %d -> %d\n", bb->block_num, bbn->block_num);
5361                                                         merge_basic_blocks (bb, bbn);
5362                                                         changed = TRUE;
5363                                                 }
5364
5365                                                 //mono_print_bb_code (bb);
5366                                         }
5367                                 } else {
5368                                         if (bb->last_ins && bb->last_ins->opcode == CEE_BR) {
5369                                                 bbn = bb->last_ins->inst_target_bb;
5370                                                 if (bb->region == bbn->region && bbn->code && bbn->code->opcode == CEE_BR) {
5371                                                         /*
5372                                                         if (cfg->verbose_level > 2)
5373                                                                 g_print ("in %s branch to branch triggered %d -> %d\n", cfg->method->name, bb->block_num, bbn->block_num);
5374                                                         bb->out_bb [0] = bb->last_ins->inst_target_bb = bbn->code->inst_target_bb;
5375                                                         changed = TRUE;*/
5376                                                 }
5377                                         }
5378                                 }
5379                         } else if (bb->out_count == 2) {
5380                                 /* fixme: this does not correctly unlink the blocks, so we get serious problems in idom code */
5381                                 if (0 && bb->last_ins && bb->last_ins->opcode >= CEE_BEQ && bb->last_ins->opcode <= CEE_BLT_UN) {
5382                                         bbn = bb->last_ins->inst_true_bb;
5383                                         if (bb->region == bbn->region && bbn->code && bbn->code->opcode == CEE_BR) {
5384                                                 if (cfg->verbose_level > 2)
5385                                                         g_print ("cbranch to branch triggered %d -> %d (0x%02x)\n", bb->block_num, 
5386                                                                  bbn->block_num, bbn->code->opcode);
5387                                                  
5388                                                 if (bb->out_bb [0] == bbn) {
5389                                                         bb->out_bb [0] = bbn->code->inst_target_bb;
5390                                                 } else if (bb->out_bb [1] == bbn) {
5391                                                         bb->out_bb [1] = bbn->code->inst_target_bb;
5392                                                 }
5393                                                 bb->last_ins->inst_true_bb = bbn->code->inst_target_bb;
5394                                                 changed = TRUE;
5395                                         }
5396                                 }
5397                         }
5398                 }
5399         } while (changed);
5400 }
5401
5402 static void
5403 mono_compile_create_vars (MonoCompile *cfg)
5404 {
5405         MonoMethodSignature *sig;
5406         MonoMethodHeader *header;
5407         int i;
5408
5409         header = ((MonoMethodNormal *)cfg->method)->header;
5410
5411         sig = cfg->method->signature;
5412         
5413         if (!MONO_TYPE_IS_VOID (sig->ret)) {
5414                 cfg->ret = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst));
5415                 cfg->ret->opcode = OP_RETARG;
5416                 cfg->ret->inst_vtype = sig->ret;
5417                 cfg->ret->klass = mono_class_from_mono_type (sig->ret);
5418         }
5419
5420         if (sig->hasthis)
5421                 mono_compile_create_var (cfg, &cfg->method->klass->this_arg, OP_ARG);
5422
5423         for (i = 0; i < sig->param_count; ++i)
5424                 mono_compile_create_var (cfg, sig->params [i], OP_ARG);
5425
5426         cfg->locals_start = cfg->num_varinfo;
5427
5428         for (i = 0; i < header->num_locals; ++i)
5429                 mono_compile_create_var (cfg, header->locals [i], OP_LOCAL);
5430 }
5431
5432 #if 0
5433 static void
5434 mono_print_code (MonoCompile *cfg)
5435 {
5436         MonoBasicBlock *bb;
5437         
5438         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5439                 MonoInst *tree = bb->code;      
5440
5441                 if (!tree)
5442                         continue;
5443                 
5444                 g_print ("CODE BLOCK %d (nesting %d):\n", bb->block_num, bb->nesting);
5445
5446                 for (; tree; tree = tree->next) {
5447                         mono_print_tree (tree);
5448                         g_print ("\n");
5449                 }
5450
5451                 if (bb->last_ins)
5452                         bb->last_ins->next = NULL;
5453         }
5454 }
5455 #endif
5456
5457 extern const char * const mono_burg_rule_string [];
5458
5459 static void
5460 emit_state (MonoCompile *cfg, MBState *state, int goal)
5461 {
5462         MBState *kids [10];
5463         int ern = mono_burg_rule (state, goal);
5464         const guint16 *nts = mono_burg_nts [ern];
5465         MBEmitFunc emit;
5466
5467         //g_print ("rule: %s\n", mono_burg_rule_string [ern]);
5468         switch (goal) {
5469         case MB_NTERM_reg:
5470                 //if (state->reg2)
5471                 //      state->reg1 = state->reg2; /* chain rule */
5472                 //else
5473                 state->reg1 = mono_regstate_next_int (cfg->rs);
5474                 //g_print ("alloc symbolic R%d (reg2: R%d) in block %d\n", state->reg1, state->reg2, cfg->cbb->block_num);
5475                 break;
5476         case MB_NTERM_lreg:
5477                 state->reg1 = mono_regstate_next_int (cfg->rs);
5478                 state->reg2 = mono_regstate_next_int (cfg->rs);
5479                 break;
5480         case MB_NTERM_freg:
5481                 state->reg1 = mono_regstate_next_float (cfg->rs);
5482                 break;
5483         default:
5484                 /* do nothing */
5485                 break;
5486         }
5487         if (nts [0]) {
5488                 mono_burg_kids (state, ern, kids);
5489
5490                 emit_state (cfg, kids [0], nts [0]);
5491                 if (nts [1]) {
5492                         emit_state (cfg, kids [1], nts [1]);
5493                         if (nts [2]) {
5494                                 g_assert (!nts [3]);
5495                                 emit_state (cfg, kids [2], nts [2]);
5496                         }
5497                 }
5498         }
5499
5500 //      g_print ("emit: %s (%p)\n", mono_burg_rule_string [ern], state);
5501         if ((emit = mono_burg_func [ern]))
5502                 emit (state, state->tree, cfg); 
5503 }
5504
5505 #define DEBUG_SELECTION
5506
5507 static void 
5508 mini_select_instructions (MonoCompile *cfg)
5509 {
5510         MonoBasicBlock *bb;
5511         
5512         cfg->state_pool = mono_mempool_new ();
5513         cfg->rs = mono_regstate_new ();
5514
5515 #ifdef DEBUG_SELECTION
5516         if (cfg->verbose_level >= 4) {
5517         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5518                 MonoInst *tree = bb->code;      
5519                 g_print ("DUMP BLOCK %d:\n", bb->block_num);
5520                 if (!tree)
5521                         continue;
5522                 for (; tree; tree = tree->next) {
5523                         mono_print_tree (tree);
5524                         g_print ("\n");
5525                 }
5526         }
5527         }
5528 #endif
5529
5530         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5531                 MonoInst *tree = bb->code, *next;       
5532                 MBState *mbstate;
5533
5534                 if (!tree)
5535                         continue;
5536                 bb->code = NULL;
5537                 bb->last_ins = NULL;
5538                 
5539                 cfg->cbb = bb;
5540                 mono_regstate_reset (cfg->rs);
5541
5542 #ifdef DEBUG_SELECTION
5543                 if (cfg->verbose_level >= 3)
5544                         g_print ("LABEL BLOCK %d:\n", bb->block_num);
5545 #endif
5546                 for (; tree; tree = next) {
5547                         next = tree->next;
5548 #ifdef DEBUG_SELECTION
5549                         if (cfg->verbose_level >= 3) {
5550                                 mono_print_tree (tree);
5551                                 g_print ("\n");
5552                         }
5553 #endif
5554
5555                         if (!(mbstate = mono_burg_label (tree, cfg))) {
5556                                 g_warning ("unabled to label tree %p", tree);
5557                                 mono_print_tree (tree);
5558                                 g_print ("\n");                         
5559                                 g_assert_not_reached ();
5560                         }
5561                         emit_state (cfg, mbstate, MB_NTERM_stmt);
5562                 }
5563                 bb->max_ireg = cfg->rs->next_vireg;
5564                 bb->max_freg = cfg->rs->next_vfreg;
5565
5566                 if (bb->last_ins)
5567                         bb->last_ins->next = NULL;
5568
5569                 mono_mempool_empty (cfg->state_pool); 
5570         }
5571         mono_mempool_destroy (cfg->state_pool); 
5572 }
5573
5574 void
5575 mono_codegen (MonoCompile *cfg)
5576 {
5577         MonoJumpInfo *patch_info;
5578         MonoBasicBlock *bb;
5579         int i, max_epilog_size;
5580         guint8 *code;
5581
5582         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5583                 cfg->spill_count = 0;
5584                 /* we reuse dfn here */
5585                 /* bb->dfn = bb_count++; */
5586                 mono_arch_local_regalloc (cfg, bb);
5587         }
5588
5589         if (mono_trace_coverage)
5590                 mono_allocate_coverage_info (cfg->method, cfg->num_bblocks);
5591
5592         code = mono_arch_emit_prolog (cfg);
5593
5594         if (mono_jit_profile)
5595                 code = mono_arch_instrument_prolog (cfg, mono_profiler_method_enter, code, FALSE);
5596
5597         cfg->code_len = code - cfg->native_code;
5598         cfg->prolog_end = cfg->code_len;
5599
5600         mono_debug_open_method (cfg);
5601              
5602         /* emit code all basic blocks */
5603         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5604                 bb->native_offset = cfg->code_len;
5605                 mono_arch_output_basic_block (cfg, bb);
5606         }
5607         cfg->bb_exit->native_offset = cfg->code_len;
5608
5609         code = cfg->native_code + cfg->code_len;
5610
5611         max_epilog_size = mono_arch_max_epilog_size (cfg);
5612
5613         /* we always allocate code in cfg->domain->code_mp to increase locality */
5614         cfg->code_size = cfg->code_len + max_epilog_size;
5615         /* fixme: align to MONO_ARCH_CODE_ALIGNMENT */
5616         code = mono_mempool_alloc (cfg->domain->code_mp, cfg->code_size);
5617         memcpy (code, cfg->native_code, cfg->code_len);
5618         g_free (cfg->native_code);
5619         cfg->native_code = code;
5620         code = cfg->native_code + cfg->code_len;
5621   
5622         /* g_assert (((int)cfg->native_code & (MONO_ARCH_CODE_ALIGNMENT - 1)) == 0); */
5623
5624         cfg->epilog_begin = cfg->code_len;
5625
5626         if (mono_jit_profile)
5627                 code = mono_arch_instrument_epilog (cfg, mono_profiler_method_leave, code, FALSE);
5628
5629         cfg->code_len = code - cfg->native_code;
5630
5631         mono_arch_emit_epilog (cfg);
5632
5633         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
5634                 switch (patch_info->type) {
5635                 case MONO_PATCH_INFO_ABS: {
5636                         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (patch_info->data.target);
5637                         if (info) {
5638                                 //printf ("TEST %s %p\n", info->name, patch_info->data.target);
5639                                 patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
5640                                 patch_info->data.name = info->name;
5641                         }
5642                         break;
5643                 }
5644                 case MONO_PATCH_INFO_SWITCH: {
5645                         gpointer *table = g_new (gpointer, patch_info->table_size);
5646                         patch_info->ip.i = patch_info->ip.label->inst_c0;
5647                         for (i = 0; i < patch_info->table_size; i++) {
5648                                 table [i] = (gpointer)patch_info->data.table [i]->native_offset;
5649                         }
5650                         patch_info->data.target = table;
5651                         break;
5652                 }
5653                 default:
5654                         /* do nothing */
5655                         break;
5656                 }
5657         }
5658        
5659         if (cfg->verbose_level > 1)
5660                 g_print ("Method %s::%s emmitted at %p to %p\n", cfg->method->klass->name, 
5661                          cfg->method->name, cfg->native_code, cfg->native_code + cfg->code_len);
5662
5663         mono_arch_patch_code (cfg->method, cfg->domain, cfg->native_code, cfg->patch_info);
5664
5665         mono_debug_close_method (cfg);
5666 }
5667
5668 static void
5669 mono_cprop_copy_values (MonoCompile *cfg, MonoInst *tree, MonoInst **acp)
5670 {
5671         MonoInst *cp;
5672         int arity;
5673
5674         if (tree->ssa_op == MONO_SSA_LOAD && (tree->inst_i0->opcode == OP_LOCAL || tree->inst_i0->opcode == OP_ARG) && 
5675             (cp = acp [tree->inst_i0->inst_c0]) && !tree->inst_i0->flags) {
5676
5677                 if (cp->opcode == OP_ICONST) {
5678                         if (cfg->opt & MONO_OPT_CONSPROP) {
5679                                 //{ static int c = 0; printf ("CCOPY %d %d %s\n", c++, cp->inst_c0, mono_method_full_name (cfg->method, TRUE)); }
5680                                 *tree = *cp;
5681                         }
5682                 } else {
5683                         if (tree->inst_i0->inst_vtype->type == cp->inst_vtype->type) {
5684                                 if (cfg->opt & MONO_OPT_COPYPROP) {
5685                                         //{ static int c = 0; printf ("VCOPY %d\n", ++c); }
5686                                         tree->inst_i0 = cp;
5687                                 } 
5688                         }
5689                 } 
5690         } else {
5691                 arity = mono_burg_arity [tree->opcode];
5692
5693                 if (arity) {
5694                         mono_cprop_copy_values (cfg, tree->inst_i0, acp);
5695                         if (cfg->opt & MONO_OPT_CFOLD)
5696                                 mono_constant_fold_inst (tree, NULL); 
5697                         if (arity > 1) {
5698                                 mono_cprop_copy_values (cfg, tree->inst_i1, acp);
5699                                 if (cfg->opt & MONO_OPT_CFOLD)
5700                                         mono_constant_fold_inst (tree, NULL); 
5701                         }
5702                         mono_constant_fold_inst (tree, NULL); 
5703                 }
5704         }
5705 }
5706
5707 static void
5708 mono_cprop_invalidate_values (MonoInst *tree, MonoInst **acp, int acp_size)
5709 {
5710         int arity;
5711
5712         switch (tree->opcode) {
5713         case CEE_STIND_I:
5714         case CEE_STIND_I1:
5715         case CEE_STIND_I2:
5716         case CEE_STIND_I4:
5717         case CEE_STIND_REF:
5718         case CEE_STIND_I8:
5719         case CEE_STIND_R4:
5720         case CEE_STIND_R8:
5721         case CEE_STOBJ:
5722                 if (tree->ssa_op == MONO_SSA_NOP) {
5723                         memset (acp, 0, sizeof (MonoInst *) * acp_size);
5724                         return;
5725                 }
5726
5727                 break;
5728         case CEE_CALL:
5729         case OP_CALL_REG:
5730         case CEE_CALLVIRT:
5731         case OP_LCALL_REG:
5732         case OP_LCALLVIRT:
5733         case OP_LCALL:
5734         case OP_FCALL_REG:
5735         case OP_FCALLVIRT:
5736         case OP_FCALL:
5737         case OP_VCALL_REG:
5738         case OP_VCALLVIRT:
5739         case OP_VCALL:
5740         case OP_VOIDCALL_REG:
5741         case OP_VOIDCALLVIRT:
5742         case OP_VOIDCALL: {
5743                 MonoCallInst *call = (MonoCallInst *)tree;
5744                 MonoMethodSignature *sig = call->signature;
5745                 int i, byref = FALSE;
5746
5747                 for (i = 0; i < sig->param_count; i++) {
5748                         if (sig->params [i]->byref) {
5749                                 byref = TRUE;
5750                                 break;
5751                         }
5752                 }
5753
5754                 if (byref)
5755                         memset (acp, 0, sizeof (MonoInst *) * acp_size);
5756
5757                 return;
5758         }
5759         default:
5760                 break;
5761         }
5762
5763         arity = mono_burg_arity [tree->opcode];
5764
5765         switch (arity) {
5766         case 0:
5767                 break;
5768         case 1:
5769                 mono_cprop_invalidate_values (tree->inst_i0, acp, acp_size);
5770                 break;
5771         case 2:
5772                 mono_cprop_invalidate_values (tree->inst_i0, acp, acp_size);
5773                 mono_cprop_invalidate_values (tree->inst_i1, acp, acp_size);
5774                 break;
5775         default:
5776                 g_assert_not_reached ();
5777         }
5778 }
5779
5780 static void
5781 mono_local_cprop_bb (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **acp, int acp_size)
5782 {
5783         MonoInst *tree = bb->code;      
5784         int i;
5785
5786         if (!tree)
5787                 return;
5788
5789         for (; tree; tree = tree->next) {
5790
5791                 mono_cprop_copy_values (cfg, tree, acp);
5792
5793                 mono_cprop_invalidate_values (tree, acp, acp_size);
5794
5795                 if (tree->ssa_op == MONO_SSA_STORE  && 
5796                     (tree->inst_i0->opcode == OP_LOCAL || tree->inst_i0->opcode == OP_ARG)) {
5797                         MonoInst *i1 = tree->inst_i1;
5798
5799                         acp [tree->inst_i0->inst_c0] = NULL;
5800
5801                         for (i = 0; i < acp_size; i++) {
5802                                 if (acp [i] && acp [i]->opcode != OP_ICONST && 
5803                                     acp [i]->inst_c0 == tree->inst_i0->inst_c0) {
5804                                         acp [i] = NULL;
5805                                 }
5806                         }
5807
5808                         if (i1->opcode == OP_ICONST) {
5809                                 acp [tree->inst_i0->inst_c0] = i1;
5810                                 //printf ("DEF1 BB%d %d\n", bb->block_num,tree->inst_i0->inst_c0);
5811                         }
5812                         if (i1->ssa_op == MONO_SSA_LOAD && 
5813                             (i1->inst_i0->opcode == OP_LOCAL || i1->inst_i0->opcode == OP_ARG) &&
5814                             (i1->inst_i0->inst_c0 != tree->inst_i0->inst_c0)) {
5815                                 acp [tree->inst_i0->inst_c0] = i1->inst_i0;
5816                                 //printf ("DEF2 BB%d %d %d\n", bb->block_num,tree->inst_i0->inst_c0,i1->inst_i0->inst_c0);
5817                         }
5818                 }
5819
5820                 /*
5821                   if (tree->opcode == CEE_BEQ) {
5822                   g_assert (tree->inst_i0->opcode == OP_COMPARE);
5823                   if (tree->inst_i0->inst_i0->opcode == OP_ICONST &&
5824                   tree->inst_i0->inst_i1->opcode == OP_ICONST) {
5825                   
5826                   tree->opcode = CEE_BR;
5827                   if (tree->inst_i0->inst_i0->opcode == tree->inst_i0->inst_i1->opcode) {
5828                   tree->inst_target_bb = tree->inst_true_bb;
5829                   } else {
5830                   tree->inst_target_bb = tree->inst_false_bb;
5831                   }
5832                   }
5833                   }
5834                 */
5835         }
5836 }
5837
5838 static void
5839 mono_local_cprop (MonoCompile *cfg)
5840 {
5841         MonoBasicBlock *bb;
5842         MonoInst **acp;
5843
5844         acp = alloca (sizeof (MonoInst *) * cfg->num_varinfo);
5845
5846         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
5847                 memset (acp, 0, sizeof (MonoInst *) * cfg->num_varinfo);
5848                 mono_local_cprop_bb (cfg, bb, acp, cfg->num_varinfo);
5849         }
5850 }
5851
5852 MonoCompile*
5853 mini_method_compile (MonoMethod *method, guint32 opts, MonoDomain *domain, int parts)
5854 {
5855         MonoMethodHeader *header = ((MonoMethodNormal *)method)->header;
5856         guint8 *ip = (guint8 *)header->code;
5857         MonoCompile *cfg;
5858         MonoJitInfo *jinfo;
5859         int dfn = 0, i, code_size_ratio;
5860
5861         mono_jit_stats.methods_compiled++;
5862         if (mono_jit_profile)
5863                 mono_profiler_method_jit (method);
5864
5865         cfg = g_new0 (MonoCompile, 1);
5866         cfg->method = method;
5867         cfg->mempool = mono_mempool_new ();
5868         cfg->opt = opts;
5869         cfg->bb_hash = g_hash_table_new (g_direct_hash, NULL);
5870         cfg->domain = domain;
5871         cfg->verbose_level = mini_verbose;
5872         cfg->intvars = mono_mempool_alloc0 (cfg->mempool, sizeof (guint16) * STACK_MAX * 
5873                                             ((MonoMethodNormal *)method)->header->max_stack);
5874
5875         /*
5876          * create MonoInst* which represents arguments and local variables
5877          */
5878         mono_compile_create_vars (cfg);
5879
5880         if (cfg->verbose_level > 2)
5881                 g_print ("converting method %s\n", mono_method_full_name (method, TRUE));
5882
5883         if ((i = mono_method_to_ir (cfg, method, NULL, NULL, cfg->locals_start, NULL, NULL, NULL, 0, FALSE)) < 0) {
5884                 mono_destroy_compile (cfg);
5885                 if (mono_jit_profile)
5886                         mono_profiler_method_end_jit (method, MONO_PROFILE_FAILED);
5887                 return NULL;
5888         }
5889
5890         mono_jit_stats.basic_blocks += cfg->num_bblocks;
5891         mono_jit_stats.max_basic_blocks = MAX (cfg->num_bblocks, mono_jit_stats.max_basic_blocks);
5892
5893         /*g_print ("numblocks = %d\n", cfg->num_bblocks);*/
5894
5895         /* Depth-first ordering on basic blocks */
5896         cfg->bblocks = mono_mempool_alloc (cfg->mempool, sizeof (MonoBasicBlock*) * (cfg->num_bblocks + 1));
5897
5898         if (cfg->opt & MONO_OPT_BRANCH)
5899                 optimize_branches (cfg);
5900
5901         df_visit (cfg->bb_entry, &dfn, cfg->bblocks);
5902         if (cfg->num_bblocks != dfn + 1) {
5903                 if (cfg->verbose_level > 1)
5904                         g_print ("unreachable code?\n");
5905                 cfg->num_bblocks = dfn + 1;
5906         }
5907
5908         if (cfg->opt & MONO_OPT_LOOP) {
5909                 mono_compile_dominator_info (cfg, MONO_COMP_DOM | MONO_COMP_IDOM);
5910                 mono_compute_natural_loops (cfg);
5911         }
5912
5913
5914         /* after method_to_ir */
5915         if (parts == 1)
5916                 return cfg;
5917
5918 //#define DEBUGSSA "logic_run"
5919 #define DEBUGSSA_CLASS "Tests"
5920 #ifdef DEBUGSSA
5921
5922
5923         if (!header->num_clauses && !cfg->disable_ssa) {
5924                 mono_local_cprop (cfg);
5925                 mono_ssa_compute (cfg);
5926         }
5927 #else 
5928
5929         /* fixme: add all optimizations which requires SSA */
5930         if (cfg->opt & (MONO_OPT_DEADCE)) {
5931                 if (!(cfg->comp_done & MONO_COMP_SSA) && !header->num_clauses && !cfg->disable_ssa) {
5932                         mono_local_cprop (cfg);
5933                         mono_ssa_compute (cfg);
5934
5935                         if (cfg->verbose_level >= 2) {
5936                                 print_dfn (cfg);
5937                         }
5938                 }
5939         }
5940 #endif
5941
5942         /* after SSA translation */
5943         if (parts == 2)
5944                 return cfg;
5945
5946         if ((cfg->opt & MONO_OPT_CONSPROP) ||  (cfg->opt & MONO_OPT_COPYPROP)) {
5947                 if (cfg->comp_done & MONO_COMP_SSA) {
5948                         mono_ssa_cprop (cfg);
5949                 } else {
5950                         mono_local_cprop (cfg);
5951                 }
5952         }
5953
5954         if (cfg->comp_done & MONO_COMP_SSA) {                   
5955                 mono_ssa_deadce (cfg);
5956
5957                 //mono_ssa_strength_reduction (cfg);
5958
5959                 mono_ssa_remove (cfg);
5960
5961                 if (cfg->opt & MONO_OPT_BRANCH)
5962                         optimize_branches (cfg);
5963         }
5964
5965         /* after SSA removal */
5966         if (parts == 3)
5967                 return cfg;
5968         
5969         decompose_pass (cfg);
5970
5971         /* FIXME: disabled with exception clauses: bug #42136 */
5972         if ((!header->num_clauses) && (cfg->opt & MONO_OPT_LINEARS)) {
5973                 GList *vars, *regs;
5974
5975                 /* fixme: maybe we can avoid to compute livenesss here if already computed ? */
5976                 cfg->comp_done &= ~MONO_COMP_LIVENESS;
5977                 if (!(cfg->comp_done & MONO_COMP_LIVENESS))
5978                         mono_analyze_liveness (cfg);
5979
5980                 if ((vars = mono_arch_get_allocatable_int_vars (cfg))) {
5981                         regs = mono_arch_get_global_int_regs (cfg);
5982                         mono_linear_scan (cfg, vars, regs, &cfg->used_int_regs);
5983                 }
5984         }
5985
5986         //mono_print_code (cfg);
5987         
5988         //print_dfn (cfg);
5989
5990         /* variables are allocated after decompose, since decompose could create temps */
5991         mono_arch_allocate_vars (cfg);
5992
5993         if (cfg->opt & MONO_OPT_CFOLD)
5994                 mono_constant_fold (cfg);
5995
5996         mini_select_instructions (cfg);
5997
5998         mono_codegen (cfg);
5999         if (cfg->verbose_level >= 2) {
6000                 char *id =  mono_method_full_name (cfg->method, FALSE);
6001                 mono_disassemble_code (cfg->native_code, cfg->code_len, id + 3);
6002                 g_free (id);
6003         }
6004         
6005         jinfo = mono_mempool_alloc0 (cfg->domain->mp, sizeof (MonoJitInfo));
6006
6007         jinfo = g_new0 (MonoJitInfo, 1);
6008         jinfo->method = method;
6009         jinfo->code_start = cfg->native_code;
6010         jinfo->code_size = cfg->code_len;
6011         jinfo->used_regs = cfg->used_int_regs;
6012
6013         if (header->num_clauses) {
6014                 int i;
6015
6016                 jinfo->exvar_offset = cfg->exvar? cfg->exvar->inst_offset: 0;
6017                 jinfo->num_clauses = header->num_clauses;
6018                 jinfo->clauses = mono_mempool_alloc0 (cfg->domain->mp, 
6019                         sizeof (MonoJitExceptionInfo) * header->num_clauses);
6020
6021                 for (i = 0; i < header->num_clauses; i++) {
6022                         MonoExceptionClause *ec = &header->clauses [i];
6023                         MonoJitExceptionInfo *ei = &jinfo->clauses [i];
6024                         MonoBasicBlock *tblock;
6025
6026                         ei->flags = ec->flags;
6027
6028                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
6029                                 tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->token_or_filter);
6030                                 g_assert (tblock);
6031                                 ei->data.filter = cfg->native_code + tblock->native_offset;
6032                         } else {
6033                                 ei->data.token = ec->token_or_filter;
6034                         }
6035
6036                         tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->try_offset);
6037                         g_assert (tblock);
6038                         ei->try_start = cfg->native_code + tblock->native_offset;
6039                         g_assert (tblock->native_offset);
6040                         tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->try_offset + ec->try_len);
6041                         g_assert (tblock);
6042                         ei->try_end = cfg->native_code + tblock->native_offset;
6043                         g_assert (tblock->native_offset);
6044                         tblock = g_hash_table_lookup (cfg->bb_hash, ip + ec->handler_offset);
6045                         g_assert (tblock);
6046                         ei->handler_start = cfg->native_code + tblock->native_offset;
6047                 }
6048         }
6049
6050         mono_jit_info_table_add (cfg->domain, jinfo);
6051
6052         /* collect statistics */
6053         mono_jit_stats.allocated_code_size += cfg->code_len;
6054         code_size_ratio = cfg->code_len;
6055         if (code_size_ratio > mono_jit_stats.biggest_method_size) {
6056                         mono_jit_stats.biggest_method_size = code_size_ratio;
6057                         mono_jit_stats.biggest_method = method;
6058         }
6059         code_size_ratio = (code_size_ratio * 100) / ((MonoMethodNormal *)method)->header->code_size;
6060         if (code_size_ratio > mono_jit_stats.max_code_size_ratio) {
6061                 mono_jit_stats.max_code_size_ratio = code_size_ratio;
6062                 mono_jit_stats.max_ratio_method = method;
6063         }
6064         mono_jit_stats.native_code_size += cfg->code_len;
6065
6066         if (mono_jit_profile)
6067                 mono_profiler_method_end_jit (method, MONO_PROFILE_OK);
6068
6069         return cfg;
6070 }
6071
6072 static gpointer
6073 mono_jit_compile_method (MonoMethod *method)
6074 {
6075         /* FIXME: later copy the code from mono */
6076         MonoDomain *target_domain, *domain = mono_domain_get ();
6077         MonoCompile *cfg;
6078         GHashTable *jit_code_hash;
6079         gpointer code;
6080
6081         if (default_opt & MONO_OPT_SHARED)
6082                 target_domain = mono_root_domain;
6083         else 
6084                 target_domain = domain;
6085
6086         jit_code_hash = target_domain->jit_code_hash;
6087
6088         if ((code = g_hash_table_lookup (jit_code_hash, method))) {
6089                 mono_jit_stats.methods_lookups++;
6090                 return code;
6091         }
6092
6093 #ifdef MONO_USE_AOT_COMPILER
6094         if (!mono_compile_aot) {
6095                 mono_class_init (method->klass);
6096                 if ((code = mono_aot_get_method (method))) {
6097                         g_hash_table_insert (jit_code_hash, method, code);
6098                         return code;
6099                 }
6100         }
6101 #endif
6102
6103         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
6104             (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
6105                 if (!method->info) {
6106                         MonoMethod *nm;
6107
6108                         if (!method->addr && (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))
6109                                 mono_lookup_pinvoke_call (method);
6110 #ifdef MONO_USE_EXC_TABLES
6111                         if (mono_method_blittable (method)) {
6112                                 method->info = method->addr;
6113                         } else {
6114 #endif
6115                                 nm = mono_marshal_get_native_wrapper (method);
6116                                 method->info = mono_compile_method (nm);
6117
6118                                 //if (mono_debug_format != MONO_DEBUG_FORMAT_NONE) 
6119                                 //mono_debug_add_wrapper (method, nm);
6120 #ifdef MONO_USE_EXC_TABLES
6121                         }
6122 #endif
6123                 }
6124                 return method->info;
6125         } else if ((method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME)) {
6126                 const char *name = method->name;
6127                 MonoMethod *nm;
6128
6129                 if (method->klass->parent == mono_defaults.multicastdelegate_class) {
6130                         if (*name == '.' && (strcmp (name, ".ctor") == 0)) {
6131                                 /* FIXME: uhm, we need a wrapper to handle exceptions? */
6132                                 return (gpointer)mono_delegate_ctor;
6133                         } else if (*name == 'I' && (strcmp (name, "Invoke") == 0)) {
6134                                 nm = mono_marshal_get_delegate_invoke (method);
6135                                 return mono_jit_compile_method (nm);
6136                         } else if (*name == 'B' && (strcmp (name, "BeginInvoke") == 0)) {
6137                                 nm = mono_marshal_get_delegate_begin_invoke (method);
6138                                 return mono_jit_compile_method (nm);
6139                         } else if (*name == 'E' && (strcmp (name, "EndInvoke") == 0)) {
6140                                 nm = mono_marshal_get_delegate_end_invoke (method);
6141                                 return mono_jit_compile_method (nm);
6142                         }
6143                 }
6144                 return NULL;
6145         }
6146
6147         cfg = mini_method_compile (method, default_opt, target_domain, 0);
6148         code = cfg->native_code;
6149         mono_destroy_compile (cfg);
6150
6151         g_hash_table_insert (jit_code_hash, method, code);
6152
6153         if (target_domain->jump_target_hash) {
6154                 MonoJumpInfo patch_info;
6155                 GSList *list, *tmp;
6156                 list = g_hash_table_lookup (target_domain->jump_target_hash, method);
6157                 if (list) {
6158                         patch_info.next = NULL;
6159                         patch_info.ip.i = 0;
6160                         patch_info.type = MONO_PATCH_INFO_METHOD_JUMP;
6161                         patch_info.data.method = method;
6162                         g_hash_table_remove (target_domain->jump_target_hash, method);
6163                 }
6164                 for (tmp = list; tmp; tmp = tmp->next)
6165                         mono_arch_patch_code (NULL, target_domain, tmp->data, &patch_info);
6166                 g_slist_free (list);
6167         }
6168         /* make sure runtime_init is called */
6169         mono_class_vtable (target_domain, method->klass);
6170
6171         return code;
6172 }
6173
6174 /**
6175  * mono_jit_runtime_invoke:
6176  * @method: the method to invoke
6177  * @obj: this pointer
6178  * @params: array of parameter values.
6179  * @exc: used to catch exceptions objects
6180  */
6181 static MonoObject*
6182 mono_jit_runtime_invoke (MonoMethod *method, void *obj, void **params, MonoObject **exc)
6183 {
6184         MonoMethod *invoke;
6185         MonoObject *(*runtime_invoke) (MonoObject *this, void **params, MonoObject **exc);
6186         invoke = mono_marshal_get_runtime_invoke (method);
6187         runtime_invoke = mono_jit_compile_method (invoke);      
6188         return runtime_invoke (obj, params, exc);
6189 }
6190
6191 #ifdef PLATFORM_WIN32
6192 #define GET_CONTEXT \
6193         struct sigcontext *ctx = (struct sigcontext*)_dummy;
6194 #else
6195 #define GET_CONTEXT \
6196         void **_p = (void **)&_dummy; \
6197         struct sigcontext *ctx = (struct sigcontext *)++_p;
6198 #endif
6199
6200 static void
6201 sigfpe_signal_handler (int _dummy)
6202 {
6203         MonoException *exc;
6204         GET_CONTEXT
6205
6206         exc = mono_get_exception_divide_by_zero ();
6207         
6208         mono_arch_handle_exception (ctx, exc, FALSE);
6209 }
6210
6211 static void
6212 sigill_signal_handler (int _dummy)
6213 {
6214         MonoException *exc;
6215         GET_CONTEXT
6216         exc = mono_get_exception_execution_engine ("SIGILL");
6217         
6218         mono_arch_handle_exception (ctx, exc, FALSE);
6219 }
6220
6221 static void
6222 sigsegv_signal_handler (int _dummy)
6223 {
6224         MonoException *exc;
6225         GET_CONTEXT
6226
6227         exc = mono_get_exception_null_reference ();
6228         
6229         mono_arch_handle_exception (ctx, exc, FALSE);
6230 }
6231
6232 static void
6233 sigusr1_signal_handler (int _dummy)
6234 {
6235         MonoThread *thread;
6236         GET_CONTEXT
6237         
6238         thread = mono_thread_current ();
6239         
6240         g_assert (thread->abort_exc);
6241
6242         mono_arch_handle_exception (ctx, thread->abort_exc, FALSE);
6243 }
6244
6245 static void
6246 mono_runtime_install_handlers (void)
6247 {
6248 #ifndef PLATFORM_WIN32
6249         struct sigaction sa;
6250 #endif
6251
6252 #ifdef PLATFORM_WIN32
6253         win32_seh_init();
6254         win32_seh_set_handler(SIGFPE, sigfpe_signal_handler);
6255         win32_seh_set_handler(SIGILL, sigill_signal_handler);
6256         win32_seh_set_handler(SIGSEGV, sigsegv_signal_handler);
6257 #else /* !PLATFORM_WIN32 */
6258
6259         /* libpthreads has its own implementation of sigaction(),
6260          * but it seems to work well with our current exception
6261          * handlers. If not we must call syscall directly instead 
6262          * of sigaction */
6263         
6264         /* catch SIGFPE */
6265         sa.sa_handler = sigfpe_signal_handler;
6266         sigemptyset (&sa.sa_mask);
6267         sa.sa_flags = 0;
6268         //g_assert (syscall (SYS_sigaction, SIGFPE, &sa, NULL) != -1);
6269         g_assert (sigaction (SIGFPE, &sa, NULL) != -1);
6270
6271         /* catch SIGILL */
6272         sa.sa_handler = sigill_signal_handler;
6273         sigemptyset (&sa.sa_mask);
6274         sa.sa_flags = 0;
6275         //g_assert (syscall (SYS_sigaction, SIGILL, &sa, NULL) != -1);
6276         g_assert (sigaction (SIGILL, &sa, NULL) != -1);
6277
6278         /* catch thread abort signal */
6279         sa.sa_handler = sigusr1_signal_handler;
6280         sigemptyset (&sa.sa_mask);
6281         sa.sa_flags = 0;
6282         //g_assert (syscall (SYS_sigaction, SIGILL, &sa, NULL) != -1);
6283         g_assert (sigaction (mono_thread_get_abort_signal (), &sa, NULL) != -1);
6284
6285 #if 1
6286         /* catch SIGSEGV */
6287         sa.sa_handler = sigsegv_signal_handler;
6288         sigemptyset (&sa.sa_mask);
6289         sa.sa_flags = 0;
6290         //g_assert (syscall (SYS_sigaction, SIGSEGV, &sa, NULL) != -1);
6291         g_assert (sigaction (SIGSEGV, &sa, NULL) != -1);
6292 #endif
6293 #endif /* PLATFORM_WIN32 */
6294 }
6295
6296 /* mono_jit_create_remoting_trampoline:
6297  * @method: pointer to the method info
6298  *
6299  * Creates a trampoline which calls the remoting functions. This
6300  * is used in the vtable of transparent proxies.
6301  * 
6302  * Returns: a pointer to the newly created code 
6303  */
6304 static gpointer
6305 mono_jit_create_remoting_trampoline (MonoMethod *method)
6306 {
6307         MonoMethod *nm;
6308         guint8 *addr = NULL;
6309
6310         if ((method->flags & METHOD_ATTRIBUTE_ABSTRACT) || 
6311             (method->signature->hasthis && (method->klass->marshalbyref || method->klass == mono_defaults.object_class))) {
6312                 nm = mono_marshal_get_remoting_invoke (method);
6313                 addr = mono_compile_method (nm);
6314         } else {
6315                 addr = mono_compile_method (method);
6316         }
6317         return addr;
6318 }
6319
6320 static CRITICAL_SECTION ms;
6321
6322 MonoDomain *
6323 mini_init (const char *filename)
6324 {
6325         MonoDomain *domain;
6326         
6327         metadata_section = &ms;
6328         InitializeCriticalSection (metadata_section);
6329
6330         mono_jit_tls_id = TlsAlloc ();
6331         mono_thread_start_cb (GetCurrentThreadId (), (gpointer)-1, NULL);
6332
6333         mono_burg_init ();
6334
6335         mono_runtime_install_handlers ();
6336
6337         mono_install_compile_method (mono_jit_compile_method);
6338         mono_install_trampoline (mono_arch_create_jit_trampoline);
6339         mono_install_remoting_trampoline (mono_jit_create_remoting_trampoline);
6340         mono_install_runtime_invoke (mono_jit_runtime_invoke);
6341         mono_install_handler (mono_arch_get_throw_exception ());
6342         mono_install_stack_walk (mono_jit_walk_stack);
6343         mono_install_get_config_dir ();
6344
6345         domain = mono_init (filename);
6346         mono_init_icall ();
6347
6348         mono_add_internal_call ("System.Diagnostics.StackFrame::get_frame_info", 
6349                                 ves_icall_get_frame_info);
6350         mono_add_internal_call ("System.Diagnostics.StackTrace::get_trace", 
6351                                 ves_icall_get_trace);
6352         mono_add_internal_call ("Mono.Runtime::mono_runtime_install_handlers", 
6353                                 mono_runtime_install_handlers);
6354
6355
6356         create_helper_signature ();
6357
6358         mono_arch_register_lowlevel_calls ();
6359         mono_register_jit_icall (mono_profiler_method_enter, "mono_profiler_method_enter", NULL, TRUE);
6360         mono_register_jit_icall (mono_profiler_method_leave, "mono_profiler_method_leave", NULL, TRUE);
6361
6362         mono_register_jit_icall (mono_get_lmf_addr, "mono_get_lmf_addr", helper_sig_ptr_void, TRUE);
6363         mono_register_jit_icall (mono_domain_get, "mono_domain_get", helper_sig_domain_get, TRUE);
6364
6365         /* fixme: we cant hanlde vararg methods this way, because the signature is not constant */
6366         //mono_register_jit_icall (ves_array_element_address, "ves_array_element_address", NULL);
6367         //mono_register_jit_icall (mono_array_new_va, "mono_array_new_va", NULL);
6368
6369         mono_register_jit_icall (mono_arch_get_throw_exception (), "mono_arch_throw_exception", helper_sig_void_obj, TRUE);
6370         mono_register_jit_icall (mono_arch_get_throw_exception_by_name (), "mono_arch_throw_exception_by_name", 
6371                                  helper_sig_void_ptr, TRUE);
6372
6373         /* 
6374          * NOTE, NOTE, NOTE, NOTE:
6375          * when adding emulation for some opcodes, remember to also add a dummy
6376          * rule to the burg files, because we need the arity information to be correct.
6377          */
6378         mono_register_opcode_emulation (OP_LMUL, helper_sig_long_long_long, mono_llmult);
6379         mono_register_opcode_emulation (OP_LMUL_OVF_UN, helper_sig_long_long_long, mono_llmult_ovf_un);
6380         mono_register_opcode_emulation (OP_LMUL_OVF, helper_sig_long_long_long, mono_llmult_ovf);
6381         mono_register_opcode_emulation (OP_LDIV, helper_sig_long_long_long, mono_lldiv);
6382         mono_register_opcode_emulation (OP_LDIV_UN, helper_sig_long_long_long, mono_lldiv_un);
6383         mono_register_opcode_emulation (OP_LREM, helper_sig_long_long_long, mono_llrem);
6384         mono_register_opcode_emulation (OP_LREM_UN, helper_sig_long_long_long, mono_llrem_un);
6385
6386         mono_register_opcode_emulation (OP_LSHL, helper_sig_long_long_int, mono_lshl);
6387         mono_register_opcode_emulation (OP_LSHR, helper_sig_long_long_int, mono_lshr);
6388         mono_register_opcode_emulation (OP_LSHR_UN, helper_sig_long_long_int, mono_lshr_un);
6389
6390         mono_register_opcode_emulation (OP_FCONV_TO_U8, helper_sig_ulong_double, mono_fconv_u8);
6391         mono_register_opcode_emulation (OP_FCONV_TO_U4, helper_sig_uint_double, mono_fconv_u4);
6392         mono_register_opcode_emulation (OP_FCONV_TO_OVF_I8, helper_sig_long_double, mono_fconv_ovf_i8);
6393         mono_register_opcode_emulation (OP_FCONV_TO_OVF_U8, helper_sig_ulong_double, mono_fconv_ovf_u8);
6394
6395 #if SIZEOF_VOID_P == 4
6396         mono_register_opcode_emulation (OP_FCONV_TO_U, helper_sig_uint_double, mono_fconv_u4);
6397 #else
6398 #warning "fixme: add opcode emulation"
6399 #endif
6400
6401         /* other jit icalls */
6402         mono_register_jit_icall (mono_class_static_field_address , "mono_class_static_field_address", 
6403                                  helper_sig_ptr_ptr_ptr, FALSE);
6404         mono_register_jit_icall (mono_ldtoken_wrapper, "mono_ldtoken_wrapper", helper_sig_ptr_ptr_ptr, FALSE);
6405         mono_register_jit_icall (mono_threads_get_static_data, "mono_threads_get_static_data", helper_sig_ptr_int, FALSE);
6406         mono_register_jit_icall (mono_ldstr, "mono_ldstr", helper_sig_ldstr, FALSE);
6407         mono_register_jit_icall (helper_memcpy, "helper_memcpy", helper_sig_memcpy, FALSE);
6408         mono_register_jit_icall (helper_memset, "helper_memset", helper_sig_memset, FALSE);
6409         mono_register_jit_icall (helper_initobj, "helper_initobj", helper_sig_initobj, FALSE);
6410         mono_register_jit_icall (helper_stelem_ref, "helper_stelem_ref", helper_sig_stelem_ref, FALSE);
6411         mono_register_jit_icall (mono_object_new, "mono_object_new", helper_sig_object_new, FALSE);
6412         mono_register_jit_icall (mono_object_new_specific, "mono_object_new_specific", helper_sig_object_new_specific, FALSE);
6413         mono_register_jit_icall (mono_array_new, "mono_array_new", helper_sig_newarr, FALSE);
6414         mono_register_jit_icall (mono_array_new_specific, "mono_array_new_specific", helper_sig_newarr_specific, FALSE);
6415         mono_register_jit_icall (mono_string_to_utf16, "mono_string_to_utf16", helper_sig_ptr_obj, FALSE);
6416         mono_register_jit_icall (mono_string_from_utf16, "mono_string_from_utf16", helper_sig_obj_ptr, FALSE);
6417         mono_register_jit_icall (mono_string_new_wrapper, "mono_string_new_wrapper", helper_sig_obj_ptr, FALSE);
6418         mono_register_jit_icall (mono_string_to_utf8, "mono_string_to_utf8", helper_sig_ptr_obj, FALSE);
6419         mono_register_jit_icall (mono_string_to_bstr, "mono_string_to_bstr", helper_sig_ptr_obj, FALSE);
6420         mono_register_jit_icall (mono_string_to_ansibstr, "mono_string_to_ansibstr", helper_sig_ptr_obj, FALSE);
6421         mono_register_jit_icall (mono_string_builder_to_utf8, "mono_string_builder_to_utf8", helper_sig_ptr_obj, FALSE);
6422         mono_register_jit_icall (mono_array_to_savearray, "mono_array_to_savearray", helper_sig_ptr_obj, FALSE);
6423         mono_register_jit_icall (mono_array_to_lparray, "mono_array_to_lparray", helper_sig_ptr_obj, FALSE);
6424         mono_register_jit_icall (mono_delegate_to_ftnptr, "mono_delegate_to_ftnptr", helper_sig_ptr_obj, FALSE);
6425         mono_register_jit_icall (mono_marshal_string_array, "mono_marshal_string_array", helper_sig_ptr_obj, FALSE);
6426         mono_register_jit_icall (mono_string_utf8_to_builder, "mono_string_utf8_to_builder", helper_sig_void_ptr_ptr, FALSE);
6427         mono_register_jit_icall (mono_marshal_free_array, "mono_marshal_free_array", helper_sig_void_ptr_ptr, FALSE);
6428         mono_register_jit_icall (mono_string_to_byvalstr, "mono_string_to_byvalstr", helper_sig_void_ptr_ptr_ptr, FALSE);
6429         mono_register_jit_icall (mono_string_to_byvalwstr, "mono_string_to_byvalwstr", helper_sig_void_ptr_ptr_ptr, FALSE);
6430         mono_register_jit_icall (g_free, "g_free", helper_sig_void_ptr, FALSE);
6431         mono_register_jit_icall (mono_ldftn, "mono_ldftn", helper_sig_compile, FALSE);
6432         mono_register_jit_icall (mono_ldvirtfn, "mono_ldvirtfn", helper_sig_compile_virt, FALSE);
6433
6434         mono_runtime_init (domain, mono_thread_start_cb,
6435                            mono_thread_attach_cb);
6436
6437         //mono_thread_attach (domain);
6438         return domain;
6439 }
6440
6441 MonoJitStats mono_jit_stats = {0};
6442
6443 static void 
6444 print_jit_stats (void)
6445 {
6446         if (mono_jit_stats.enabled) {
6447                 g_print ("Mono Jit statistics\n");
6448                 g_print ("Compiled methods:       %ld\n", mono_jit_stats.methods_compiled);
6449                 g_print ("Methods from AOT:       %ld\n", mono_jit_stats.methods_aot);
6450                 g_print ("Methods cache lookup:   %ld\n", mono_jit_stats.methods_lookups);
6451                 g_print ("Method trampolines:     %ld\n", mono_jit_stats.method_trampolines);
6452                 g_print ("Basic blocks:           %ld\n", mono_jit_stats.basic_blocks);
6453                 g_print ("Max basic blocks:       %ld\n", mono_jit_stats.max_basic_blocks);
6454                 g_print ("Allocated vars:         %ld\n", mono_jit_stats.allocate_var);
6455                 g_print ("Analyze stack repeat:   %ld\n", mono_jit_stats.analyze_stack_repeat);
6456                 g_print ("Compiled CIL code size: %ld\n", mono_jit_stats.cil_code_size);
6457                 g_print ("Native code size:       %ld\n", mono_jit_stats.native_code_size);
6458                 g_print ("Max code size ratio:    %.2f (%s::%s)\n", mono_jit_stats.max_code_size_ratio/100.0,
6459                                 mono_jit_stats.max_ratio_method->klass->name, mono_jit_stats.max_ratio_method->name);
6460                 g_print ("Biggest method:         %ld (%s::%s)\n", mono_jit_stats.biggest_method_size,
6461                                 mono_jit_stats.biggest_method->klass->name, mono_jit_stats.biggest_method->name);
6462                 g_print ("Code reallocs:          %ld\n", mono_jit_stats.code_reallocs);
6463                 g_print ("Allocated code size:    %ld\n", mono_jit_stats.allocated_code_size);
6464                 g_print ("Inlineable methods:     %ld\n", mono_jit_stats.inlineable_methods);
6465                 g_print ("Inlined methods:        %ld\n", mono_jit_stats.inlined_methods);
6466                 
6467                 g_print ("\nCreated object count:   %ld\n", mono_stats.new_object_count);
6468                 g_print ("Initialized classes:    %ld\n", mono_stats.initialized_class_count);
6469                 g_print ("Used classes:           %ld\n", mono_stats.used_class_count);
6470                 g_print ("Static data size:       %ld\n", mono_stats.class_static_data_size);
6471                 g_print ("VTable data size:       %ld\n", mono_stats.class_vtable_size);
6472         }
6473 }
6474
6475 void
6476 mini_cleanup (MonoDomain *domain)
6477 {
6478         /* 
6479          * mono_runtime_cleanup() and mono_domain_finalize () need to
6480          * be called early since they need the execution engine still
6481          * fully working (mono_domain_finalize may invoke managed finalizers
6482          * and mono_runtime_cleanup will wait for other threads to finish).
6483          */
6484         mono_domain_finalize (domain);
6485
6486         mono_runtime_cleanup (domain);
6487
6488         mono_profiler_shutdown ();
6489
6490         mono_debug_cleanup ();
6491 #ifdef PLATFORM_WIN32
6492         win32_seh_cleanup();
6493 #endif
6494
6495         mono_domain_unload (domain, TRUE);
6496
6497         print_jit_stats ();
6498         DeleteCriticalSection (metadata_section);
6499 }
6500
6501 void
6502 mono_set_defaults (int verbose_level, guint32 opts)
6503 {
6504         mini_verbose = verbose_level;
6505         default_opt = opts;
6506 }
6507