[System] UriKind.RelativeOrAbsolute workaround.
[mono.git] / mono / mini / mini.c
1 /*
2  * mini.c: The new Mono code generator.
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * Copyright 2002-2003 Ximian, Inc.
9  * Copyright 2003-2010 Novell, Inc.
10  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
11  */
12
13 #include <config.h>
14 #ifdef HAVE_ALLOCA_H
15 #include <alloca.h>
16 #endif
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
20 #include <math.h>
21 #ifdef HAVE_SYS_TIME_H
22 #include <sys/time.h>
23 #endif
24
25 #include <mono/utils/memcheck.h>
26
27 #include <mono/metadata/assembly.h>
28 #include <mono/metadata/loader.h>
29 #include <mono/metadata/tabledefs.h>
30 #include <mono/metadata/class.h>
31 #include <mono/metadata/object.h>
32 #include <mono/metadata/tokentype.h>
33 #include <mono/metadata/tabledefs.h>
34 #include <mono/metadata/threads.h>
35 #include <mono/metadata/appdomain.h>
36 #include <mono/metadata/debug-helpers.h>
37 #include "mono/metadata/profiler.h"
38 #include <mono/metadata/profiler-private.h>
39 #include <mono/metadata/mono-config.h>
40 #include <mono/metadata/environment.h>
41 #include <mono/metadata/mono-debug.h>
42 #include <mono/metadata/gc-internal.h>
43 #include <mono/metadata/threads-types.h>
44 #include <mono/metadata/verify.h>
45 #include <mono/metadata/verify-internals.h>
46 #include <mono/metadata/mempool-internals.h>
47 #include <mono/metadata/attach.h>
48 #include <mono/metadata/runtime.h>
49 #include <mono/utils/mono-math.h>
50 #include <mono/utils/mono-compiler.h>
51 #include <mono/utils/mono-counters.h>
52 #include <mono/utils/mono-error-internals.h>
53 #include <mono/utils/mono-logger-internal.h>
54 #include <mono/utils/mono-mmap.h>
55 #include <mono/utils/mono-path.h>
56 #include <mono/utils/mono-tls.h>
57 #include <mono/utils/mono-hwcap.h>
58 #include <mono/utils/dtrace.h>
59 #include <mono/utils/mono-threads.h>
60 #include <mono/io-layer/io-layer.h>
61
62 #include "mini.h"
63 #include "seq-points.h"
64 #include "tasklets.h"
65 #include <string.h>
66 #include <ctype.h>
67 #include "trace.h"
68 #include "version.h"
69 #include "ir-emit.h"
70
71 #include "jit-icalls.h"
72
73 #include "mini-gc.h"
74 #include "debugger-agent.h"
75
76 MonoTraceSpec *mono_jit_trace_calls;
77 MonoMethodDesc *mono_inject_async_exc_method;
78 int mono_inject_async_exc_pos;
79 MonoMethodDesc *mono_break_at_bb_method;
80 int mono_break_at_bb_bb_num;
81 gboolean mono_do_x86_stack_align = TRUE;
82 gboolean mono_using_xdebug;
83
84 #define mono_jit_lock() mono_mutex_lock (&jit_mutex)
85 #define mono_jit_unlock() mono_mutex_unlock (&jit_mutex)
86 static mono_mutex_t jit_mutex;
87
88 /* Whenever to check for pending exceptions in managed-to-native wrappers */
89 gboolean check_for_pending_exc = TRUE;
90
91 gpointer
92 mono_realloc_native_code (MonoCompile *cfg)
93 {
94 #if defined(__default_codegen__)
95         return g_realloc (cfg->native_code, cfg->code_size);
96 #elif defined(__native_client_codegen__)
97         guint old_padding;
98         gpointer native_code;
99         guint alignment_check;
100
101         /* Save the old alignment offset so we can re-align after the realloc. */
102         old_padding = (guint)(cfg->native_code - cfg->native_code_alloc);
103         cfg->code_size = NACL_BUNDLE_ALIGN_UP (cfg->code_size);
104
105         cfg->native_code_alloc = g_realloc ( cfg->native_code_alloc,
106                                                                                  cfg->code_size + kNaClAlignment );
107
108         /* Align native_code to next nearest kNaClAlignment byte. */
109         native_code = (guint)cfg->native_code_alloc + kNaClAlignment;
110         native_code = (guint)native_code & ~kNaClAlignmentMask;
111
112         /* Shift the data to be 32-byte aligned again. */
113         memmove (native_code, cfg->native_code_alloc + old_padding, cfg->code_size);
114
115         alignment_check = (guint)native_code & kNaClAlignmentMask;
116         g_assert (alignment_check == 0);
117         return native_code;
118 #else
119         g_assert_not_reached ();
120         return cfg->native_code;
121 #endif
122 }
123
124 #ifdef __native_client_codegen__
125
126 /* Prevent instructions from straddling a 32-byte alignment boundary.   */
127 /* Instructions longer than 32 bytes must be aligned internally.        */
128 /* IN: pcode, instlen                                                   */
129 /* OUT: pcode                                                           */
130 void mono_nacl_align_inst(guint8 **pcode, int instlen) {
131   int space_in_block;
132
133   space_in_block = kNaClAlignment - ((uintptr_t)(*pcode) & kNaClAlignmentMask);
134
135   if (G_UNLIKELY (instlen >= kNaClAlignment)) {
136     g_assert_not_reached();
137   } else if (instlen > space_in_block) {
138     *pcode = mono_arch_nacl_pad(*pcode, space_in_block);
139   }
140 }
141
142 /* Move emitted call sequence to the end of a kNaClAlignment-byte block.  */
143 /* IN: start    pointer to start of call sequence                         */
144 /* IN: pcode    pointer to end of call sequence (current "IP")            */
145 /* OUT: start   pointer to the start of the call sequence after padding   */
146 /* OUT: pcode   pointer to the end of the call sequence after padding     */
147 void mono_nacl_align_call(guint8 **start, guint8 **pcode) {
148   const size_t MAX_NACL_CALL_LENGTH = kNaClAlignment;
149   guint8 copy_of_call[MAX_NACL_CALL_LENGTH];
150   guint8 *temp;
151
152   const size_t length = (size_t)((*pcode)-(*start));
153   g_assert(length < MAX_NACL_CALL_LENGTH);
154
155   memcpy(copy_of_call, *start, length);
156   temp = mono_nacl_pad_call(*start, (guint8)length);
157   memcpy(temp, copy_of_call, length);
158   (*start) = temp;
159   (*pcode) = temp + length;
160 }
161
162 /* mono_nacl_pad_call(): Insert padding for Native Client call instructions */
163 /*    code     pointer to buffer for emitting code                          */
164 /*    ilength  length of call instruction                                   */
165 guint8 *mono_nacl_pad_call(guint8 *code, guint8 ilength) {
166   int freeSpaceInBlock = kNaClAlignment - ((uintptr_t)code & kNaClAlignmentMask);
167   int padding = freeSpaceInBlock - ilength;
168
169   if (padding < 0) {
170     /* There isn't enough space in this block for the instruction. */
171     /* Fill this block and start a new one.                        */
172     code = mono_arch_nacl_pad(code, freeSpaceInBlock);
173     freeSpaceInBlock = kNaClAlignment;
174     padding = freeSpaceInBlock - ilength;
175   }
176   g_assert(ilength > 0);
177   g_assert(padding >= 0);
178   g_assert(padding < kNaClAlignment);
179   if (0 == padding) return code;
180   return mono_arch_nacl_pad(code, padding);
181 }
182
183 guint8 *mono_nacl_align(guint8 *code) {
184   int padding = kNaClAlignment - ((uintptr_t)code & kNaClAlignmentMask);
185   if (padding != kNaClAlignment) code = mono_arch_nacl_pad(code, padding);
186   return code;
187 }
188
189 void mono_nacl_fix_patches(const guint8 *code, MonoJumpInfo *ji)
190 {
191 #ifndef USE_JUMP_TABLES
192   MonoJumpInfo *patch_info;
193   for (patch_info = ji; patch_info; patch_info = patch_info->next) {
194     unsigned char *ip = patch_info->ip.i + code;
195     ip = mono_arch_nacl_skip_nops(ip);
196     patch_info->ip.i = ip - code;
197   }
198 #endif
199 }
200 #endif  /* __native_client_codegen__ */
201
202 typedef struct {
203         MonoExceptionClause *clause;
204         MonoBasicBlock *basic_block;
205         int start_offset;
206 } TryBlockHole;
207
208 /**
209  * mono_emit_unwind_op:
210  *
211  *   Add an unwind op with the given parameters for the list of unwind ops stored in
212  * cfg->unwind_ops.
213  */
214 void
215 mono_emit_unwind_op (MonoCompile *cfg, int when, int tag, int reg, int val)
216 {
217         MonoUnwindOp *op = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoUnwindOp));
218
219         op->op = tag;
220         op->reg = reg;
221         op->val = val;
222         op->when = when;
223         
224         cfg->unwind_ops = g_slist_append_mempool (cfg->mempool, cfg->unwind_ops, op);
225         if (cfg->verbose_level > 1) {
226                 switch (tag) {
227                 case DW_CFA_def_cfa:
228                         printf ("CFA: [%x] def_cfa: %s+0x%x\n", when, mono_arch_regname (reg), val);
229                         break;
230                 case DW_CFA_def_cfa_register:
231                         printf ("CFA: [%x] def_cfa_reg: %s\n", when, mono_arch_regname (reg));
232                         break;
233                 case DW_CFA_def_cfa_offset:
234                         printf ("CFA: [%x] def_cfa_offset: 0x%x\n", when, val);
235                         break;
236                 case DW_CFA_offset:
237                         printf ("CFA: [%x] offset: %s at cfa-0x%x\n", when, mono_arch_regname (reg), -val);
238                         break;
239                 }
240         }
241 }
242
243 #define MONO_INIT_VARINFO(vi,id) do { \
244         (vi)->range.first_use.pos.bid = 0xffff; \
245         (vi)->reg = -1; \
246         (vi)->idx = (id); \
247 } while (0)
248
249 /**
250  * mono_unlink_bblock:
251  *
252  *   Unlink two basic blocks.
253  */
254 void
255 mono_unlink_bblock (MonoCompile *cfg, MonoBasicBlock *from, MonoBasicBlock* to)
256 {
257         int i, pos;
258         gboolean found;
259
260         found = FALSE;
261         for (i = 0; i < from->out_count; ++i) {
262                 if (to == from->out_bb [i]) {
263                         found = TRUE;
264                         break;
265                 }
266         }
267         if (found) {
268                 pos = 0;
269                 for (i = 0; i < from->out_count; ++i) {
270                         if (from->out_bb [i] != to)
271                                 from->out_bb [pos ++] = from->out_bb [i];
272                 }
273                 g_assert (pos == from->out_count - 1);
274                 from->out_count--;
275         }
276
277         found = FALSE;
278         for (i = 0; i < to->in_count; ++i) {
279                 if (from == to->in_bb [i]) {
280                         found = TRUE;
281                         break;
282                 }
283         }
284         if (found) {
285                 pos = 0;
286                 for (i = 0; i < to->in_count; ++i) {
287                         if (to->in_bb [i] != from)
288                                 to->in_bb [pos ++] = to->in_bb [i];
289                 }
290                 g_assert (pos == to->in_count - 1);
291                 to->in_count--;
292         }
293 }
294
295 /*
296  * mono_bblocks_linked:
297  *
298  *   Return whenever BB1 and BB2 are linked in the CFG.
299  */
300 gboolean
301 mono_bblocks_linked (MonoBasicBlock *bb1, MonoBasicBlock *bb2)
302 {
303         int i;
304
305         for (i = 0; i < bb1->out_count; ++i) {
306                 if (bb1->out_bb [i] == bb2)
307                         return TRUE;
308         }
309
310         return FALSE;
311 }
312
313 static int
314 mono_find_block_region_notry (MonoCompile *cfg, int offset)
315 {
316         MonoMethodHeader *header = cfg->header;
317         MonoExceptionClause *clause;
318         int i;
319
320         for (i = 0; i < header->num_clauses; ++i) {
321                 clause = &header->clauses [i];
322                 if ((clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) && (offset >= clause->data.filter_offset) &&
323                     (offset < (clause->handler_offset)))
324                         return ((i + 1) << 8) | MONO_REGION_FILTER | clause->flags;
325                            
326                 if (MONO_OFFSET_IN_HANDLER (clause, offset)) {
327                         if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
328                                 return ((i + 1) << 8) | MONO_REGION_FINALLY | clause->flags;
329                         else if (clause->flags == MONO_EXCEPTION_CLAUSE_FAULT)
330                                 return ((i + 1) << 8) | MONO_REGION_FAULT | clause->flags;
331                         else
332                                 return ((i + 1) << 8) | MONO_REGION_CATCH | clause->flags;
333                 }
334         }
335
336         return -1;
337 }
338
339 /*
340  * mono_get_block_region_notry:
341  *
342  *   Return the region corresponding to REGION, ignoring try clauses nested inside
343  * finally clauses.
344  */
345 int
346 mono_get_block_region_notry (MonoCompile *cfg, int region)
347 {
348         if ((region & (0xf << 4)) == MONO_REGION_TRY) {
349                 MonoMethodHeader *header = cfg->header;
350                 
351                 /*
352                  * This can happen if a try clause is nested inside a finally clause.
353                  */
354                 int clause_index = (region >> 8) - 1;
355                 g_assert (clause_index >= 0 && clause_index < header->num_clauses);
356                 
357                 region = mono_find_block_region_notry (cfg, header->clauses [clause_index].try_offset);
358         }
359
360         return region;
361 }
362
363 MonoInst *
364 mono_find_spvar_for_region (MonoCompile *cfg, int region)
365 {
366         region = mono_get_block_region_notry (cfg, region);
367
368         return g_hash_table_lookup (cfg->spvars, GINT_TO_POINTER (region));
369 }
370
371 static void
372 df_visit (MonoBasicBlock *start, int *dfn, MonoBasicBlock **array)
373 {
374         int i;
375
376         array [*dfn] = start;
377         /* g_print ("visit %d at %p (BB%ld)\n", *dfn, start->cil_code, start->block_num); */
378         for (i = 0; i < start->out_count; ++i) {
379                 if (start->out_bb [i]->dfn)
380                         continue;
381                 (*dfn)++;
382                 start->out_bb [i]->dfn = *dfn;
383                 start->out_bb [i]->df_parent = start;
384                 array [*dfn] = start->out_bb [i];
385                 df_visit (start->out_bb [i], dfn, array);
386         }
387 }
388
389 guint32
390 mono_reverse_branch_op (guint32 opcode)
391 {
392         static const int reverse_map [] = {
393                 CEE_BNE_UN, CEE_BLT, CEE_BLE, CEE_BGT, CEE_BGE,
394                 CEE_BEQ, CEE_BLT_UN, CEE_BLE_UN, CEE_BGT_UN, CEE_BGE_UN
395         };
396         static const int reverse_fmap [] = {
397                 OP_FBNE_UN, OP_FBLT, OP_FBLE, OP_FBGT, OP_FBGE,
398                 OP_FBEQ, OP_FBLT_UN, OP_FBLE_UN, OP_FBGT_UN, OP_FBGE_UN
399         };
400         static const int reverse_lmap [] = {
401                 OP_LBNE_UN, OP_LBLT, OP_LBLE, OP_LBGT, OP_LBGE,
402                 OP_LBEQ, OP_LBLT_UN, OP_LBLE_UN, OP_LBGT_UN, OP_LBGE_UN
403         };
404         static const int reverse_imap [] = {
405                 OP_IBNE_UN, OP_IBLT, OP_IBLE, OP_IBGT, OP_IBGE,
406                 OP_IBEQ, OP_IBLT_UN, OP_IBLE_UN, OP_IBGT_UN, OP_IBGE_UN
407         };
408                                 
409         if (opcode >= CEE_BEQ && opcode <= CEE_BLT_UN) {
410                 opcode = reverse_map [opcode - CEE_BEQ];
411         } else if (opcode >= OP_FBEQ && opcode <= OP_FBLT_UN) {
412                 opcode = reverse_fmap [opcode - OP_FBEQ];
413         } else if (opcode >= OP_LBEQ && opcode <= OP_LBLT_UN) {
414                 opcode = reverse_lmap [opcode - OP_LBEQ];
415         } else if (opcode >= OP_IBEQ && opcode <= OP_IBLT_UN) {
416                 opcode = reverse_imap [opcode - OP_IBEQ];
417         } else
418                 g_assert_not_reached ();
419
420         return opcode;
421 }
422
423 guint
424 mono_type_to_store_membase (MonoCompile *cfg, MonoType *type)
425 {
426         type = mini_get_underlying_type (cfg, type);
427
428 handle_enum:
429         switch (type->type) {
430         case MONO_TYPE_I1:
431         case MONO_TYPE_U1:
432                 return OP_STOREI1_MEMBASE_REG;
433         case MONO_TYPE_I2:
434         case MONO_TYPE_U2:
435                 return OP_STOREI2_MEMBASE_REG;
436         case MONO_TYPE_I4:
437         case MONO_TYPE_U4:
438                 return OP_STOREI4_MEMBASE_REG;
439         case MONO_TYPE_I:
440         case MONO_TYPE_U:
441         case MONO_TYPE_PTR:
442         case MONO_TYPE_FNPTR:
443                 return OP_STORE_MEMBASE_REG;
444         case MONO_TYPE_CLASS:
445         case MONO_TYPE_STRING:
446         case MONO_TYPE_OBJECT:
447         case MONO_TYPE_SZARRAY:
448         case MONO_TYPE_ARRAY:    
449                 return OP_STORE_MEMBASE_REG;
450         case MONO_TYPE_I8:
451         case MONO_TYPE_U8:
452                 return OP_STOREI8_MEMBASE_REG;
453         case MONO_TYPE_R4:
454                 return OP_STORER4_MEMBASE_REG;
455         case MONO_TYPE_R8:
456                 return OP_STORER8_MEMBASE_REG;
457         case MONO_TYPE_VALUETYPE:
458                 if (type->data.klass->enumtype) {
459                         type = mono_class_enum_basetype (type->data.klass);
460                         goto handle_enum;
461                 }
462                 if (MONO_CLASS_IS_SIMD (cfg, mono_class_from_mono_type (type)))
463                         return OP_STOREX_MEMBASE;
464                 return OP_STOREV_MEMBASE;
465         case MONO_TYPE_TYPEDBYREF:
466                 return OP_STOREV_MEMBASE;
467         case MONO_TYPE_GENERICINST:
468                 type = &type->data.generic_class->container_class->byval_arg;
469                 goto handle_enum;
470         case MONO_TYPE_VAR:
471         case MONO_TYPE_MVAR:
472                 g_assert (mini_type_var_is_vt (cfg, type));
473                 return OP_STOREV_MEMBASE;
474         default:
475                 g_error ("unknown type 0x%02x in type_to_store_membase", type->type);
476         }
477         return -1;
478 }
479
480 guint
481 mono_type_to_load_membase (MonoCompile *cfg, MonoType *type)
482 {
483         type = mini_get_underlying_type (cfg, type);
484
485         switch (type->type) {
486         case MONO_TYPE_I1:
487                 return OP_LOADI1_MEMBASE;
488         case MONO_TYPE_U1:
489                 return OP_LOADU1_MEMBASE;
490         case MONO_TYPE_I2:
491                 return OP_LOADI2_MEMBASE;
492         case MONO_TYPE_U2:
493                 return OP_LOADU2_MEMBASE;
494         case MONO_TYPE_I4:
495                 return OP_LOADI4_MEMBASE;
496         case MONO_TYPE_U4:
497                 return OP_LOADU4_MEMBASE;
498         case MONO_TYPE_I:
499         case MONO_TYPE_U:
500         case MONO_TYPE_PTR:
501         case MONO_TYPE_FNPTR:
502                 return OP_LOAD_MEMBASE;
503         case MONO_TYPE_CLASS:
504         case MONO_TYPE_STRING:
505         case MONO_TYPE_OBJECT:
506         case MONO_TYPE_SZARRAY:
507         case MONO_TYPE_ARRAY:    
508                 return OP_LOAD_MEMBASE;
509         case MONO_TYPE_I8:
510         case MONO_TYPE_U8:
511                 return OP_LOADI8_MEMBASE;
512         case MONO_TYPE_R4:
513                 return OP_LOADR4_MEMBASE;
514         case MONO_TYPE_R8:
515                 return OP_LOADR8_MEMBASE;
516         case MONO_TYPE_VALUETYPE:
517                 if (MONO_CLASS_IS_SIMD (cfg, mono_class_from_mono_type (type)))
518                         return OP_LOADX_MEMBASE;
519         case MONO_TYPE_TYPEDBYREF:
520                 return OP_LOADV_MEMBASE;
521         case MONO_TYPE_GENERICINST:
522                 if (mono_type_generic_inst_is_valuetype (type))
523                         return OP_LOADV_MEMBASE;
524                 else
525                         return OP_LOAD_MEMBASE;
526                 break;
527         case MONO_TYPE_VAR:
528         case MONO_TYPE_MVAR:
529                 g_assert (cfg->generic_sharing_context);
530                 g_assert (mini_type_var_is_vt (cfg, type));
531                 return OP_LOADV_MEMBASE;
532         default:
533                 g_error ("unknown type 0x%02x in type_to_load_membase", type->type);
534         }
535         return -1;
536 }
537
538 static guint
539 mini_type_to_ldind (MonoCompile* cfg, MonoType *type)
540 {
541         type = mini_get_underlying_type (cfg, type);
542         if (cfg->generic_sharing_context && !type->byref && (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR)) {
543                 g_assert (mini_type_var_is_vt (cfg, type));
544                 return CEE_LDOBJ;
545         }
546         return mono_type_to_ldind (type);
547 }
548
549 #ifndef DISABLE_JIT
550
551 guint
552 mini_type_to_stind (MonoCompile* cfg, MonoType *type)
553 {
554         type = mini_get_underlying_type (cfg, type);
555         if (cfg->generic_sharing_context && !type->byref && (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR)) {
556                 g_assert (mini_type_var_is_vt (cfg, type));
557                 return CEE_STOBJ;
558         }
559         return mono_type_to_stind (type);
560 }
561
562 int
563 mono_op_imm_to_op (int opcode)
564 {
565         switch (opcode) {
566         case OP_ADD_IMM:
567 #if SIZEOF_REGISTER == 4
568                 return OP_IADD;
569 #else
570                 return OP_LADD;
571 #endif
572         case OP_IADD_IMM:
573                 return OP_IADD;
574         case OP_LADD_IMM:
575                 return OP_LADD;
576         case OP_ISUB_IMM:
577                 return OP_ISUB;
578         case OP_LSUB_IMM:
579                 return OP_LSUB;
580         case OP_IMUL_IMM:
581                 return OP_IMUL;
582         case OP_AND_IMM:
583 #if SIZEOF_REGISTER == 4
584                 return OP_IAND;
585 #else
586                 return OP_LAND;
587 #endif
588         case OP_OR_IMM:
589 #if SIZEOF_REGISTER == 4
590                 return OP_IOR;
591 #else
592                 return OP_LOR;
593 #endif
594         case OP_XOR_IMM:
595 #if SIZEOF_REGISTER == 4
596                 return OP_IXOR;
597 #else
598                 return OP_LXOR;
599 #endif
600         case OP_IAND_IMM:
601                 return OP_IAND;
602         case OP_LAND_IMM:
603                 return OP_LAND;
604         case OP_IOR_IMM:
605                 return OP_IOR;
606         case OP_LOR_IMM:
607                 return OP_LOR;
608         case OP_IXOR_IMM:
609                 return OP_IXOR;
610         case OP_LXOR_IMM:
611                 return OP_LXOR;
612         case OP_ISHL_IMM:
613                 return OP_ISHL;
614         case OP_LSHL_IMM:
615                 return OP_LSHL;
616         case OP_ISHR_IMM:
617                 return OP_ISHR;
618         case OP_LSHR_IMM:
619                 return OP_LSHR;
620         case OP_ISHR_UN_IMM:
621                 return OP_ISHR_UN;
622         case OP_LSHR_UN_IMM:
623                 return OP_LSHR_UN;
624         case OP_IDIV_IMM:
625                 return OP_IDIV;
626         case OP_IDIV_UN_IMM:
627                 return OP_IDIV_UN;
628         case OP_IREM_UN_IMM:
629                 return OP_IREM_UN;
630         case OP_IREM_IMM:
631                 return OP_IREM;
632         case OP_LREM_IMM:
633                 return OP_LREM;
634         case OP_DIV_IMM:
635 #if SIZEOF_REGISTER == 4
636                 return OP_IDIV;
637 #else
638                 return OP_LDIV;
639 #endif
640         case OP_REM_IMM:
641 #if SIZEOF_REGISTER == 4
642                 return OP_IREM;
643 #else
644                 return OP_LREM;
645 #endif
646         case OP_ADDCC_IMM:
647                 return OP_ADDCC;
648         case OP_ADC_IMM:
649                 return OP_ADC;
650         case OP_SUBCC_IMM:
651                 return OP_SUBCC;
652         case OP_SBB_IMM:
653                 return OP_SBB;
654         case OP_IADC_IMM:
655                 return OP_IADC;
656         case OP_ISBB_IMM:
657                 return OP_ISBB;
658         case OP_COMPARE_IMM:
659                 return OP_COMPARE;
660         case OP_ICOMPARE_IMM:
661                 return OP_ICOMPARE;
662         case OP_LOCALLOC_IMM:
663                 return OP_LOCALLOC;
664         default:
665                 printf ("%s\n", mono_inst_name (opcode));
666                 g_assert_not_reached ();
667                 return -1;
668         }
669 }
670
671 /*
672  * mono_decompose_op_imm:
673  *
674  *   Replace the OP_.._IMM INS with its non IMM variant.
675  */
676 void
677 mono_decompose_op_imm (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *ins)
678 {
679         MonoInst *temp;
680
681         MONO_INST_NEW (cfg, temp, OP_ICONST);
682         temp->inst_c0 = ins->inst_imm;
683         temp->dreg = mono_alloc_ireg (cfg);
684         mono_bblock_insert_before_ins (bb, ins, temp);
685         ins->opcode = mono_op_imm_to_op (ins->opcode);
686         if (ins->opcode == OP_LOCALLOC)
687                 ins->sreg1 = temp->dreg;
688         else
689                 ins->sreg2 = temp->dreg;
690
691         bb->max_vreg = MAX (bb->max_vreg, cfg->next_vreg);
692 }
693
694 #endif
695
696 static void
697 set_vreg_to_inst (MonoCompile *cfg, int vreg, MonoInst *inst)
698 {
699         if (vreg >= cfg->vreg_to_inst_len) {
700                 MonoInst **tmp = cfg->vreg_to_inst;
701                 int size = cfg->vreg_to_inst_len;
702
703                 while (vreg >= cfg->vreg_to_inst_len)
704                         cfg->vreg_to_inst_len = cfg->vreg_to_inst_len ? cfg->vreg_to_inst_len * 2 : 32;
705                 cfg->vreg_to_inst = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst*) * cfg->vreg_to_inst_len);
706                 if (size)
707                         memcpy (cfg->vreg_to_inst, tmp, size * sizeof (MonoInst*));
708         }
709         cfg->vreg_to_inst [vreg] = inst;
710 }
711
712 #define mono_type_is_long(type) (!(type)->byref && ((mono_type_get_underlying_type (type)->type == MONO_TYPE_I8) || (mono_type_get_underlying_type (type)->type == MONO_TYPE_U8)))
713 #define mono_type_is_float(type) (!(type)->byref && (((type)->type == MONO_TYPE_R8) || ((type)->type == MONO_TYPE_R4)))
714
715 #ifdef DISABLE_JIT
716
717 MonoInst*
718 mono_compile_create_var (MonoCompile *cfg, MonoType *type, int opcode)
719 {
720         return NULL;
721 }
722
723 #else
724
725 MonoInst*
726 mono_compile_create_var_for_vreg (MonoCompile *cfg, MonoType *type, int opcode, int vreg)
727 {
728         MonoInst *inst;
729         int num = cfg->num_varinfo;
730         gboolean regpair;
731
732         type = mini_get_underlying_type (cfg, type);
733
734         if ((num + 1) >= cfg->varinfo_count) {
735                 int orig_count = cfg->varinfo_count;
736                 cfg->varinfo_count = cfg->varinfo_count ? (cfg->varinfo_count * 2) : 32;
737                 cfg->varinfo = (MonoInst **)g_realloc (cfg->varinfo, sizeof (MonoInst*) * cfg->varinfo_count);
738                 cfg->vars = (MonoMethodVar *)g_realloc (cfg->vars, sizeof (MonoMethodVar) * cfg->varinfo_count);
739                 memset (&cfg->vars [orig_count], 0, (cfg->varinfo_count - orig_count) * sizeof (MonoMethodVar));
740         }
741
742         cfg->stat_allocate_var++;
743
744         MONO_INST_NEW (cfg, inst, opcode);
745         inst->inst_c0 = num;
746         inst->inst_vtype = type;
747         inst->klass = mono_class_from_mono_type (type);
748         type_to_eval_stack_type (cfg, type, inst);
749         /* if set to 1 the variable is native */
750         inst->backend.is_pinvoke = 0;
751         inst->dreg = vreg;
752
753         if (inst->klass->exception_type)
754                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD);
755
756         if (cfg->compute_gc_maps) {
757                 if (type->byref) {
758                         mono_mark_vreg_as_mp (cfg, vreg);
759                 } else {
760                         if ((MONO_TYPE_ISSTRUCT (type) && inst->klass->has_references) || mini_type_is_reference (cfg, type)) {
761                                 inst->flags |= MONO_INST_GC_TRACK;
762                                 mono_mark_vreg_as_ref (cfg, vreg);
763                         }
764                 }
765         }
766         
767         cfg->varinfo [num] = inst;
768
769         MONO_INIT_VARINFO (&cfg->vars [num], num);
770         MONO_VARINFO (cfg, num)->vreg = vreg;
771
772         if (vreg != -1)
773                 set_vreg_to_inst (cfg, vreg, inst);
774
775 #if SIZEOF_REGISTER == 4
776         if (mono_arch_is_soft_float ()) {
777                 regpair = mono_type_is_long (type) || mono_type_is_float (type);
778         } else {
779                 regpair = mono_type_is_long (type);
780         }
781 #else
782         regpair = FALSE;
783 #endif
784
785         if (regpair) {
786                 MonoInst *tree;
787
788                 /* 
789                  * These two cannot be allocated using create_var_for_vreg since that would
790                  * put it into the cfg->varinfo array, confusing many parts of the JIT.
791                  */
792
793                 /* 
794                  * Set flags to VOLATILE so SSA skips it.
795                  */
796
797                 if (cfg->verbose_level >= 4) {
798                         printf ("  Create LVAR R%d (R%d, R%d)\n", inst->dreg, inst->dreg + 1, inst->dreg + 2);
799                 }
800
801                 if (mono_arch_is_soft_float () && cfg->opt & MONO_OPT_SSA) {
802                         if (mono_type_is_float (type))
803                                 inst->flags = MONO_INST_VOLATILE;
804                 }
805
806                 /* Allocate a dummy MonoInst for the first vreg */
807                 MONO_INST_NEW (cfg, tree, OP_LOCAL);
808                 tree->dreg = inst->dreg + 1;
809                 if (cfg->opt & MONO_OPT_SSA)
810                         tree->flags = MONO_INST_VOLATILE;
811                 tree->inst_c0 = num;
812                 tree->type = STACK_I4;
813                 tree->inst_vtype = &mono_defaults.int32_class->byval_arg;
814                 tree->klass = mono_class_from_mono_type (tree->inst_vtype);
815
816                 set_vreg_to_inst (cfg, inst->dreg + 1, tree);
817
818                 /* Allocate a dummy MonoInst for the second vreg */
819                 MONO_INST_NEW (cfg, tree, OP_LOCAL);
820                 tree->dreg = inst->dreg + 2;
821                 if (cfg->opt & MONO_OPT_SSA)
822                         tree->flags = MONO_INST_VOLATILE;
823                 tree->inst_c0 = num;
824                 tree->type = STACK_I4;
825                 tree->inst_vtype = &mono_defaults.int32_class->byval_arg;
826                 tree->klass = mono_class_from_mono_type (tree->inst_vtype);
827
828                 set_vreg_to_inst (cfg, inst->dreg + 2, tree);
829         }
830
831         cfg->num_varinfo++;
832         if (cfg->verbose_level > 2)
833                 g_print ("created temp %d (R%d) of type %s\n", num, vreg, mono_type_get_name (type));
834         return inst;
835 }
836
837 MonoInst*
838 mono_compile_create_var (MonoCompile *cfg, MonoType *type, int opcode)
839 {
840         int dreg;
841         type = mini_get_underlying_type (cfg, type);
842
843         if (mono_type_is_long (type))
844                 dreg = mono_alloc_dreg (cfg, STACK_I8);
845         else if (mono_arch_is_soft_float () && mono_type_is_float (type))
846                 dreg = mono_alloc_dreg (cfg, STACK_R8);
847         else
848                 /* All the others are unified */
849                 dreg = mono_alloc_preg (cfg);
850
851         return mono_compile_create_var_for_vreg (cfg, type, opcode, dreg);
852 }
853
854 /*
855  * Transform a MonoInst into a load from the variable of index var_index.
856  */
857 void
858 mono_compile_make_var_load (MonoCompile *cfg, MonoInst *dest, gssize var_index)
859 {
860         memset (dest, 0, sizeof (MonoInst));
861         dest->inst_i0 = cfg->varinfo [var_index];
862         dest->opcode = mini_type_to_ldind (cfg, dest->inst_i0->inst_vtype);
863         type_to_eval_stack_type (cfg, dest->inst_i0->inst_vtype, dest);
864         dest->klass = dest->inst_i0->klass;
865 }
866
867 MonoInst*
868 mini_get_int_to_float_spill_area (MonoCompile *cfg)
869 {
870 #ifdef TARGET_X86
871         if (!cfg->iconv_raw_var) {
872                 cfg->iconv_raw_var = mono_compile_create_var (cfg, &mono_defaults.int32_class->byval_arg, OP_LOCAL);
873                 cfg->iconv_raw_var->flags |= MONO_INST_VOLATILE; /*FIXME, use the don't regalloc flag*/
874         }
875         return cfg->iconv_raw_var;
876 #else
877         return NULL;
878 #endif
879 }
880
881 #endif
882
883 void
884 mono_mark_vreg_as_ref (MonoCompile *cfg, int vreg)
885 {
886         if (vreg >= cfg->vreg_is_ref_len) {
887                 gboolean *tmp = cfg->vreg_is_ref;
888                 int size = cfg->vreg_is_ref_len;
889
890                 while (vreg >= cfg->vreg_is_ref_len)
891                         cfg->vreg_is_ref_len = cfg->vreg_is_ref_len ? cfg->vreg_is_ref_len * 2 : 32;
892                 cfg->vreg_is_ref = mono_mempool_alloc0 (cfg->mempool, sizeof (gboolean) * cfg->vreg_is_ref_len);
893                 if (size)
894                         memcpy (cfg->vreg_is_ref, tmp, size * sizeof (gboolean));
895         }
896         cfg->vreg_is_ref [vreg] = TRUE;
897 }       
898
899 void
900 mono_mark_vreg_as_mp (MonoCompile *cfg, int vreg)
901 {
902         if (vreg >= cfg->vreg_is_mp_len) {
903                 gboolean *tmp = cfg->vreg_is_mp;
904                 int size = cfg->vreg_is_mp_len;
905
906                 while (vreg >= cfg->vreg_is_mp_len)
907                         cfg->vreg_is_mp_len = cfg->vreg_is_mp_len ? cfg->vreg_is_mp_len * 2 : 32;
908                 cfg->vreg_is_mp = mono_mempool_alloc0 (cfg->mempool, sizeof (gboolean) * cfg->vreg_is_mp_len);
909                 if (size)
910                         memcpy (cfg->vreg_is_mp, tmp, size * sizeof (gboolean));
911         }
912         cfg->vreg_is_mp [vreg] = TRUE;
913 }       
914
915 static MonoType*
916 type_from_stack_type (MonoInst *ins) {
917         switch (ins->type) {
918         case STACK_I4: return &mono_defaults.int32_class->byval_arg;
919         case STACK_I8: return &mono_defaults.int64_class->byval_arg;
920         case STACK_PTR: return &mono_defaults.int_class->byval_arg;
921         case STACK_R8: return &mono_defaults.double_class->byval_arg;
922         case STACK_MP:
923                 /* 
924                  * this if used to be commented without any specific reason, but
925                  * it breaks #80235 when commented
926                  */
927                 if (ins->klass)
928                         return &ins->klass->this_arg;
929                 else
930                         return &mono_defaults.object_class->this_arg;
931         case STACK_OBJ:
932                 /* ins->klass may not be set for ldnull.
933                  * Also, if we have a boxed valuetype, we want an object lass,
934                  * not the valuetype class
935                  */
936                 if (ins->klass && !ins->klass->valuetype)
937                         return &ins->klass->byval_arg;
938                 return &mono_defaults.object_class->byval_arg;
939         case STACK_VTYPE: return &ins->klass->byval_arg;
940         default:
941                 g_error ("stack type %d to montype not handled\n", ins->type);
942         }
943         return NULL;
944 }
945
946 MonoType*
947 mono_type_from_stack_type (MonoInst *ins) {
948         return type_from_stack_type (ins);
949 }
950
951 /*
952  * mono_add_ins_to_end:
953  *
954  *   Same as MONO_ADD_INS, but add INST before any branches at the end of BB.
955  */
956 void
957 mono_add_ins_to_end (MonoBasicBlock *bb, MonoInst *inst)
958 {
959         int opcode;
960
961         if (!bb->code) {
962                 MONO_ADD_INS (bb, inst);
963                 return;
964         }
965
966         switch (bb->last_ins->opcode) {
967         case OP_BR:
968         case OP_BR_REG:
969         case CEE_BEQ:
970         case CEE_BGE:
971         case CEE_BGT:
972         case CEE_BLE:
973         case CEE_BLT:
974         case CEE_BNE_UN:
975         case CEE_BGE_UN:
976         case CEE_BGT_UN:
977         case CEE_BLE_UN:
978         case CEE_BLT_UN:
979         case OP_SWITCH:
980                 mono_bblock_insert_before_ins (bb, bb->last_ins, inst);
981                 break;
982         default:
983                 if (MONO_IS_COND_BRANCH_OP (bb->last_ins)) {
984                         /* Need to insert the ins before the compare */
985                         if (bb->code == bb->last_ins) {
986                                 mono_bblock_insert_before_ins (bb, bb->last_ins, inst);
987                                 return;
988                         }
989
990                         if (bb->code->next == bb->last_ins) {
991                                 /* Only two instructions */
992                                 opcode = bb->code->opcode;
993
994                                 if ((opcode == OP_COMPARE) || (opcode == OP_COMPARE_IMM) || (opcode == OP_ICOMPARE) || (opcode == OP_ICOMPARE_IMM) || (opcode == OP_FCOMPARE) || (opcode == OP_LCOMPARE) || (opcode == OP_LCOMPARE_IMM) || (opcode == OP_RCOMPARE)) {
995                                         /* NEW IR */
996                                         mono_bblock_insert_before_ins (bb, bb->code, inst);
997                                 } else {
998                                         mono_bblock_insert_before_ins (bb, bb->last_ins, inst);
999                                 }
1000                         } else {
1001                                 opcode = bb->last_ins->prev->opcode;
1002
1003                                 if ((opcode == OP_COMPARE) || (opcode == OP_COMPARE_IMM) || (opcode == OP_ICOMPARE) || (opcode == OP_ICOMPARE_IMM) || (opcode == OP_FCOMPARE) || (opcode == OP_LCOMPARE) || (opcode == OP_LCOMPARE_IMM) || (opcode == OP_RCOMPARE)) {
1004                                         /* NEW IR */
1005                                         mono_bblock_insert_before_ins (bb, bb->last_ins->prev, inst);
1006                                 } else {
1007                                         mono_bblock_insert_before_ins (bb, bb->last_ins, inst);
1008                                 }                                       
1009                         }
1010                 }
1011                 else
1012                         MONO_ADD_INS (bb, inst);
1013                 break;
1014         }
1015 }
1016
1017 void
1018 mono_create_jump_table (MonoCompile *cfg, MonoInst *label, MonoBasicBlock **bbs, int num_blocks)
1019 {
1020         MonoJumpInfo *ji = mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfo));
1021         MonoJumpInfoBBTable *table;
1022
1023         table = mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfoBBTable));
1024         table->table = bbs;
1025         table->table_size = num_blocks;
1026         
1027         ji->ip.label = label;
1028         ji->type = MONO_PATCH_INFO_SWITCH;
1029         ji->data.table = table;
1030         ji->next = cfg->patch_info;
1031         cfg->patch_info = ji;
1032 }
1033
1034 static MonoMethodSignature *
1035 mono_get_array_new_va_signature (int arity)
1036 {
1037         static GHashTable *sighash;
1038         MonoMethodSignature *res;
1039         int i;
1040
1041         mono_jit_lock ();
1042         if (!sighash) {
1043                 sighash = g_hash_table_new (NULL, NULL);
1044         }
1045         else if ((res = g_hash_table_lookup (sighash, GINT_TO_POINTER (arity)))) {
1046                 mono_jit_unlock ();
1047                 return res;
1048         }
1049
1050         res = mono_metadata_signature_alloc (mono_defaults.corlib, arity + 1);
1051
1052         res->pinvoke = 1;
1053         if (ARCH_VARARG_ICALLS)
1054                 /* Only set this only some archs since not all backends can handle varargs+pinvoke */
1055                 res->call_convention = MONO_CALL_VARARG;
1056
1057 #ifdef TARGET_WIN32
1058         res->call_convention = MONO_CALL_C;
1059 #endif
1060
1061         res->params [0] = &mono_defaults.int_class->byval_arg;  
1062         for (i = 0; i < arity; i++)
1063                 res->params [i + 1] = &mono_defaults.int_class->byval_arg;
1064
1065         res->ret = &mono_defaults.object_class->byval_arg;
1066
1067         g_hash_table_insert (sighash, GINT_TO_POINTER (arity), res);
1068         mono_jit_unlock ();
1069
1070         return res;
1071 }
1072
1073 MonoJitICallInfo *
1074 mono_get_array_new_va_icall (int rank)
1075 {
1076         MonoMethodSignature *esig;
1077         char icall_name [256];
1078         char *name;
1079         MonoJitICallInfo *info;
1080
1081         /* Need to register the icall so it gets an icall wrapper */
1082         sprintf (icall_name, "ves_array_new_va_%d", rank);
1083
1084         mono_jit_lock ();
1085         info = mono_find_jit_icall_by_name (icall_name);
1086         if (info == NULL) {
1087                 esig = mono_get_array_new_va_signature (rank);
1088                 name = g_strdup (icall_name);
1089                 info = mono_register_jit_icall (mono_array_new_va, name, esig, FALSE);
1090         }
1091         mono_jit_unlock ();
1092
1093         return info;
1094 }
1095
1096 gboolean
1097 mini_class_is_system_array (MonoClass *klass)
1098 {
1099         if (klass->parent == mono_defaults.array_class)
1100                 return TRUE;
1101         else
1102                 return FALSE;
1103 }
1104
1105 gboolean
1106 mini_assembly_can_skip_verification (MonoDomain *domain, MonoMethod *method)
1107 {
1108         MonoAssembly *assembly = method->klass->image->assembly;
1109         if (method->wrapper_type != MONO_WRAPPER_NONE && method->wrapper_type != MONO_WRAPPER_DYNAMIC_METHOD)
1110                 return FALSE;
1111         if (assembly->in_gac || assembly->image == mono_defaults.corlib)
1112                 return FALSE;
1113         return mono_assembly_has_skip_verification (assembly);
1114 }
1115
1116 /*
1117  * mini_method_verify:
1118  * 
1119  * Verify the method using the new verfier.
1120  * 
1121  * Returns true if the method is invalid. 
1122  */
1123 static gboolean
1124 mini_method_verify (MonoCompile *cfg, MonoMethod *method, gboolean fail_compile)
1125 {
1126         GSList *tmp, *res;
1127         gboolean is_fulltrust;
1128         MonoLoaderError *error;
1129
1130         if (method->verification_success)
1131                 return FALSE;
1132
1133         if (!mono_verifier_is_enabled_for_method (method))
1134                 return FALSE;
1135
1136         /*skip verification implies the assembly must be */
1137         is_fulltrust = mono_verifier_is_method_full_trust (method) ||  mini_assembly_can_skip_verification (cfg->domain, method);
1138
1139         res = mono_method_verify_with_current_settings (method, cfg->skip_visibility, is_fulltrust);
1140
1141         if ((error = mono_loader_get_last_error ())) {
1142                 if (fail_compile)
1143                         cfg->exception_type = error->exception_type;
1144                 else
1145                         mono_loader_clear_error ();
1146                 if (res)
1147                         mono_free_verify_list (res);
1148                 return TRUE;
1149         }
1150
1151         if (res) { 
1152                 for (tmp = res; tmp; tmp = tmp->next) {
1153                         MonoVerifyInfoExtended *info = (MonoVerifyInfoExtended *)tmp->data;
1154                         if (info->info.status == MONO_VERIFY_ERROR) {
1155                                 if (fail_compile) {
1156                                 char *method_name = mono_method_full_name (method, TRUE);
1157                                         cfg->exception_type = info->exception_type;
1158                                         cfg->exception_message = g_strdup_printf ("Error verifying %s: %s", method_name, info->info.message);
1159                                         g_free (method_name);
1160                                 }
1161                                 mono_free_verify_list (res);
1162                                 return TRUE;
1163                         }
1164                         if (info->info.status == MONO_VERIFY_NOT_VERIFIABLE && (!is_fulltrust || info->exception_type == MONO_EXCEPTION_METHOD_ACCESS || info->exception_type == MONO_EXCEPTION_FIELD_ACCESS)) {
1165                                 if (fail_compile) {
1166                                         char *method_name = mono_method_full_name (method, TRUE);
1167                                         cfg->exception_type = info->exception_type;
1168                                         cfg->exception_message = g_strdup_printf ("Error verifying %s: %s", method_name, info->info.message);
1169                                         g_free (method_name);
1170                                 }
1171                                 mono_free_verify_list (res);
1172                                 return TRUE;
1173                         }
1174                 }
1175                 mono_free_verify_list (res);
1176         }
1177         method->verification_success = 1;
1178         return FALSE;
1179 }
1180
1181 /*Returns true if something went wrong*/
1182 gboolean
1183 mono_compile_is_broken (MonoCompile *cfg, MonoMethod *method, gboolean fail_compile)
1184 {
1185         MonoMethod *method_definition = method;
1186         gboolean dont_verify = method->klass->image->assembly->corlib_internal;
1187
1188         while (method_definition->is_inflated) {
1189                 MonoMethodInflated *imethod = (MonoMethodInflated *) method_definition;
1190                 method_definition = imethod->declaring;
1191         }
1192
1193         return !dont_verify && mini_method_verify (cfg, method_definition, fail_compile);
1194 }
1195
1196 static void
1197 mono_dynamic_code_hash_insert (MonoDomain *domain, MonoMethod *method, MonoJitDynamicMethodInfo *ji)
1198 {
1199         if (!domain_jit_info (domain)->dynamic_code_hash)
1200                 domain_jit_info (domain)->dynamic_code_hash = g_hash_table_new (NULL, NULL);
1201         g_hash_table_insert (domain_jit_info (domain)->dynamic_code_hash, method, ji);
1202 }
1203
1204 static MonoJitDynamicMethodInfo*
1205 mono_dynamic_code_hash_lookup (MonoDomain *domain, MonoMethod *method)
1206 {
1207         MonoJitDynamicMethodInfo *res;
1208
1209         if (domain_jit_info (domain)->dynamic_code_hash)
1210                 res = g_hash_table_lookup (domain_jit_info (domain)->dynamic_code_hash, method);
1211         else
1212                 res = NULL;
1213         return res;
1214 }
1215
1216 typedef struct {
1217         MonoClass *vtype;
1218         GList *active, *inactive;
1219         GSList *slots;
1220 } StackSlotInfo;
1221
1222 static gint 
1223 compare_by_interval_start_pos_func (gconstpointer a, gconstpointer b)
1224 {
1225         MonoMethodVar *v1 = (MonoMethodVar*)a;
1226         MonoMethodVar *v2 = (MonoMethodVar*)b;
1227
1228         if (v1 == v2)
1229                 return 0;
1230         else if (v1->interval->range && v2->interval->range)
1231                 return v1->interval->range->from - v2->interval->range->from;
1232         else if (v1->interval->range)
1233                 return -1;
1234         else
1235                 return 1;
1236 }
1237
1238 #ifndef DISABLE_JIT
1239
1240 #if 0
1241 #define LSCAN_DEBUG(a) do { a; } while (0)
1242 #else
1243 #define LSCAN_DEBUG(a)
1244 #endif
1245
1246 static gint32*
1247 mono_allocate_stack_slots2 (MonoCompile *cfg, gboolean backward, guint32 *stack_size, guint32 *stack_align)
1248 {
1249         int i, slot, offset, size;
1250         guint32 align;
1251         MonoMethodVar *vmv;
1252         MonoInst *inst;
1253         gint32 *offsets;
1254         GList *vars = NULL, *l, *unhandled;
1255         StackSlotInfo *scalar_stack_slots, *vtype_stack_slots, *slot_info;
1256         MonoType *t;
1257         int nvtypes;
1258         gboolean reuse_slot;
1259
1260         LSCAN_DEBUG (printf ("Allocate Stack Slots 2 for %s:\n", mono_method_full_name (cfg->method, TRUE)));
1261
1262         scalar_stack_slots = mono_mempool_alloc0 (cfg->mempool, sizeof (StackSlotInfo) * MONO_TYPE_PINNED);
1263         vtype_stack_slots = NULL;
1264         nvtypes = 0;
1265
1266         offsets = mono_mempool_alloc (cfg->mempool, sizeof (gint32) * cfg->num_varinfo);
1267         for (i = 0; i < cfg->num_varinfo; ++i)
1268                 offsets [i] = -1;
1269
1270         for (i = cfg->locals_start; i < cfg->num_varinfo; i++) {
1271                 inst = cfg->varinfo [i];
1272                 vmv = MONO_VARINFO (cfg, i);
1273
1274                 if ((inst->flags & MONO_INST_IS_DEAD) || inst->opcode == OP_REGVAR || inst->opcode == OP_REGOFFSET)
1275                         continue;
1276
1277                 vars = g_list_prepend (vars, vmv);
1278         }
1279
1280         vars = g_list_sort (g_list_copy (vars), compare_by_interval_start_pos_func);
1281
1282         /* Sanity check */
1283         /*
1284         i = 0;
1285         for (unhandled = vars; unhandled; unhandled = unhandled->next) {
1286                 MonoMethodVar *current = unhandled->data;
1287
1288                 if (current->interval->range) {
1289                         g_assert (current->interval->range->from >= i);
1290                         i = current->interval->range->from;
1291                 }
1292         }
1293         */
1294
1295         offset = 0;
1296         *stack_align = 0;
1297         for (unhandled = vars; unhandled; unhandled = unhandled->next) {
1298                 MonoMethodVar *current = unhandled->data;
1299
1300                 vmv = current;
1301                 inst = cfg->varinfo [vmv->idx];
1302
1303                 t = mono_type_get_underlying_type (inst->inst_vtype);
1304                 if (cfg->gsharedvt && mini_is_gsharedvt_variable_type (cfg, t))
1305                         continue;
1306
1307                 /* inst->backend.is_pinvoke indicates native sized value types, this is used by the
1308                 * pinvoke wrappers when they call functions returning structures */
1309                 if (inst->backend.is_pinvoke && MONO_TYPE_ISSTRUCT (t) && t->type != MONO_TYPE_TYPEDBYREF) {
1310                         size = mono_class_native_size (mono_class_from_mono_type (t), &align);
1311                 }
1312                 else {
1313                         int ialign;
1314
1315                         size = mini_type_stack_size (NULL, t, &ialign);
1316                         align = ialign;
1317
1318                         if (MONO_CLASS_IS_SIMD (cfg, mono_class_from_mono_type (t)))
1319                                 align = 16;
1320                 }
1321
1322                 reuse_slot = TRUE;
1323                 if (cfg->disable_reuse_stack_slots)
1324                         reuse_slot = FALSE;
1325
1326                 t = mini_get_underlying_type (cfg, t);
1327                 switch (t->type) {
1328                 case MONO_TYPE_GENERICINST:
1329                         if (!mono_type_generic_inst_is_valuetype (t)) {
1330                                 slot_info = &scalar_stack_slots [t->type];
1331                                 break;
1332                         }
1333                         /* Fall through */
1334                 case MONO_TYPE_VALUETYPE:
1335                         if (!vtype_stack_slots)
1336                                 vtype_stack_slots = mono_mempool_alloc0 (cfg->mempool, sizeof (StackSlotInfo) * 256);
1337                         for (i = 0; i < nvtypes; ++i)
1338                                 if (t->data.klass == vtype_stack_slots [i].vtype)
1339                                         break;
1340                         if (i < nvtypes)
1341                                 slot_info = &vtype_stack_slots [i];
1342                         else {
1343                                 g_assert (nvtypes < 256);
1344                                 vtype_stack_slots [nvtypes].vtype = t->data.klass;
1345                                 slot_info = &vtype_stack_slots [nvtypes];
1346                                 nvtypes ++;
1347                         }
1348                         if (cfg->disable_reuse_ref_stack_slots)
1349                                 reuse_slot = FALSE;
1350                         break;
1351
1352                 case MONO_TYPE_PTR:
1353                 case MONO_TYPE_I:
1354                 case MONO_TYPE_U:
1355 #if SIZEOF_VOID_P == 4
1356                 case MONO_TYPE_I4:
1357 #else
1358                 case MONO_TYPE_I8:
1359 #endif
1360                         if (cfg->disable_ref_noref_stack_slot_share) {
1361                                 slot_info = &scalar_stack_slots [MONO_TYPE_I];
1362                                 break;
1363                         }
1364                         /* Fall through */
1365
1366                 case MONO_TYPE_CLASS:
1367                 case MONO_TYPE_OBJECT:
1368                 case MONO_TYPE_ARRAY:
1369                 case MONO_TYPE_SZARRAY:
1370                 case MONO_TYPE_STRING:
1371                         /* Share non-float stack slots of the same size */
1372                         slot_info = &scalar_stack_slots [MONO_TYPE_CLASS];
1373                         if (cfg->disable_reuse_ref_stack_slots)
1374                                 reuse_slot = FALSE;
1375                         break;
1376
1377                 default:
1378                         slot_info = &scalar_stack_slots [t->type];
1379                 }
1380
1381                 slot = 0xffffff;
1382                 if (cfg->comp_done & MONO_COMP_LIVENESS) {
1383                         int pos;
1384                         gboolean changed;
1385
1386                         //printf ("START  %2d %08x %08x\n",  vmv->idx, vmv->range.first_use.abs_pos, vmv->range.last_use.abs_pos);
1387
1388                         if (!current->interval->range) {
1389                                 if (inst->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT))
1390                                         pos = ~0;
1391                                 else {
1392                                         /* Dead */
1393                                         inst->flags |= MONO_INST_IS_DEAD;
1394                                         continue;
1395                                 }
1396                         }
1397                         else
1398                                 pos = current->interval->range->from;
1399
1400                         LSCAN_DEBUG (printf ("process R%d ", inst->dreg));
1401                         if (current->interval->range)
1402                                 LSCAN_DEBUG (mono_linterval_print (current->interval));
1403                         LSCAN_DEBUG (printf ("\n"));
1404
1405                         /* Check for intervals in active which expired or inactive */
1406                         changed = TRUE;
1407                         /* FIXME: Optimize this */
1408                         while (changed) {
1409                                 changed = FALSE;
1410                                 for (l = slot_info->active; l != NULL; l = l->next) {
1411                                         MonoMethodVar *v = (MonoMethodVar*)l->data;
1412
1413                                         if (v->interval->last_range->to < pos) {
1414                                                 slot_info->active = g_list_delete_link (slot_info->active, l);
1415                                                 slot_info->slots = g_slist_prepend_mempool (cfg->mempool, slot_info->slots, GINT_TO_POINTER (offsets [v->idx]));
1416                                                 LSCAN_DEBUG (printf ("Interval R%d has expired, adding 0x%x to slots\n", cfg->varinfo [v->idx]->dreg, offsets [v->idx]));
1417                                                 changed = TRUE;
1418                                                 break;
1419                                         }
1420                                         else if (!mono_linterval_covers (v->interval, pos)) {
1421                                                 slot_info->inactive = g_list_append (slot_info->inactive, v);
1422                                                 slot_info->active = g_list_delete_link (slot_info->active, l);
1423                                                 LSCAN_DEBUG (printf ("Interval R%d became inactive\n", cfg->varinfo [v->idx]->dreg));
1424                                                 changed = TRUE;
1425                                                 break;
1426                                         }
1427                                 }
1428                         }
1429
1430                         /* Check for intervals in inactive which expired or active */
1431                         changed = TRUE;
1432                         /* FIXME: Optimize this */
1433                         while (changed) {
1434                                 changed = FALSE;
1435                                 for (l = slot_info->inactive; l != NULL; l = l->next) {
1436                                         MonoMethodVar *v = (MonoMethodVar*)l->data;
1437
1438                                         if (v->interval->last_range->to < pos) {
1439                                                 slot_info->inactive = g_list_delete_link (slot_info->inactive, l);
1440                                                 // FIXME: Enabling this seems to cause impossible to debug crashes
1441                                                 //slot_info->slots = g_slist_prepend_mempool (cfg->mempool, slot_info->slots, GINT_TO_POINTER (offsets [v->idx]));
1442                                                 LSCAN_DEBUG (printf ("Interval R%d has expired, adding 0x%x to slots\n", cfg->varinfo [v->idx]->dreg, offsets [v->idx]));
1443                                                 changed = TRUE;
1444                                                 break;
1445                                         }
1446                                         else if (mono_linterval_covers (v->interval, pos)) {
1447                                                 slot_info->active = g_list_append (slot_info->active, v);
1448                                                 slot_info->inactive = g_list_delete_link (slot_info->inactive, l);
1449                                                 LSCAN_DEBUG (printf ("\tInterval R%d became active\n", cfg->varinfo [v->idx]->dreg));
1450                                                 changed = TRUE;
1451                                                 break;
1452                                         }
1453                                 }
1454                         }
1455
1456                         /* 
1457                          * This also handles the case when the variable is used in an
1458                          * exception region, as liveness info is not computed there.
1459                          */
1460                         /* 
1461                          * FIXME: All valuetypes are marked as INDIRECT because of LDADDR
1462                          * opcodes.
1463                          */
1464                         if (! (inst->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT))) {
1465                                 if (slot_info->slots) {
1466                                         slot = GPOINTER_TO_INT (slot_info->slots->data);
1467
1468                                         slot_info->slots = slot_info->slots->next;
1469                                 }
1470
1471                                 /* FIXME: We might want to consider the inactive intervals as well if slot_info->slots is empty */
1472
1473                                 slot_info->active = mono_varlist_insert_sorted (cfg, slot_info->active, vmv, TRUE);
1474                         }
1475                 }
1476
1477 #if 0
1478                 {
1479                         static int count = 0;
1480                         count ++;
1481
1482                         if (count == atoi (g_getenv ("COUNT3")))
1483                                 printf ("LAST: %s\n", mono_method_full_name (cfg->method, TRUE));
1484                         if (count > atoi (g_getenv ("COUNT3")))
1485                                 slot = 0xffffff;
1486                         else {
1487                                 mono_print_ins (inst);
1488                                 }
1489                 }
1490 #endif
1491
1492                 LSCAN_DEBUG (printf ("R%d %s -> 0x%x\n", inst->dreg, mono_type_full_name (t), slot));
1493
1494                 if (inst->flags & MONO_INST_LMF) {
1495                         size = sizeof (MonoLMF);
1496                         align = sizeof (mgreg_t);
1497                         reuse_slot = FALSE;
1498                 }
1499
1500                 if (!reuse_slot)
1501                         slot = 0xffffff;
1502
1503                 if (slot == 0xffffff) {
1504                         /*
1505                          * Allways allocate valuetypes to sizeof (gpointer) to allow more
1506                          * efficient copying (and to work around the fact that OP_MEMCPY
1507                          * and OP_MEMSET ignores alignment).
1508                          */
1509                         if (MONO_TYPE_ISSTRUCT (t)) {
1510                                 align = MAX (align, sizeof (gpointer));
1511                                 align = MAX (align, mono_class_min_align (mono_class_from_mono_type (t)));
1512                         }
1513
1514                         if (backward) {
1515                                 offset += size;
1516                                 offset += align - 1;
1517                                 offset &= ~(align - 1);
1518                                 slot = offset;
1519                         }
1520                         else {
1521                                 offset += align - 1;
1522                                 offset &= ~(align - 1);
1523                                 slot = offset;
1524                                 offset += size;
1525                         }
1526
1527                         if (*stack_align == 0)
1528                                 *stack_align = align;
1529                 }
1530
1531                 offsets [vmv->idx] = slot;
1532         }
1533         g_list_free (vars);
1534         for (i = 0; i < MONO_TYPE_PINNED; ++i) {
1535                 if (scalar_stack_slots [i].active)
1536                         g_list_free (scalar_stack_slots [i].active);
1537         }
1538         for (i = 0; i < nvtypes; ++i) {
1539                 if (vtype_stack_slots [i].active)
1540                         g_list_free (vtype_stack_slots [i].active);
1541         }
1542
1543         cfg->stat_locals_stack_size += offset;
1544
1545         *stack_size = offset;
1546         return offsets;
1547 }
1548
1549 /*
1550  *  mono_allocate_stack_slots:
1551  *
1552  *  Allocate stack slots for all non register allocated variables using a
1553  * linear scan algorithm.
1554  * Returns: an array of stack offsets.
1555  * STACK_SIZE is set to the amount of stack space needed.
1556  * STACK_ALIGN is set to the alignment needed by the locals area.
1557  */
1558 gint32*
1559 mono_allocate_stack_slots (MonoCompile *cfg, gboolean backward, guint32 *stack_size, guint32 *stack_align)
1560 {
1561         int i, slot, offset, size;
1562         guint32 align;
1563         MonoMethodVar *vmv;
1564         MonoInst *inst;
1565         gint32 *offsets;
1566         GList *vars = NULL, *l;
1567         StackSlotInfo *scalar_stack_slots, *vtype_stack_slots, *slot_info;
1568         MonoType *t;
1569         int nvtypes;
1570         gboolean reuse_slot;
1571
1572         if ((cfg->num_varinfo > 0) && MONO_VARINFO (cfg, 0)->interval)
1573                 return mono_allocate_stack_slots2 (cfg, backward, stack_size, stack_align);
1574
1575         scalar_stack_slots = mono_mempool_alloc0 (cfg->mempool, sizeof (StackSlotInfo) * MONO_TYPE_PINNED);
1576         vtype_stack_slots = NULL;
1577         nvtypes = 0;
1578
1579         offsets = mono_mempool_alloc (cfg->mempool, sizeof (gint32) * cfg->num_varinfo);
1580         for (i = 0; i < cfg->num_varinfo; ++i)
1581                 offsets [i] = -1;
1582
1583         for (i = cfg->locals_start; i < cfg->num_varinfo; i++) {
1584                 inst = cfg->varinfo [i];
1585                 vmv = MONO_VARINFO (cfg, i);
1586
1587                 if ((inst->flags & MONO_INST_IS_DEAD) || inst->opcode == OP_REGVAR || inst->opcode == OP_REGOFFSET)
1588                         continue;
1589
1590                 vars = g_list_prepend (vars, vmv);
1591         }
1592
1593         vars = mono_varlist_sort (cfg, vars, 0);
1594         offset = 0;
1595         *stack_align = sizeof(mgreg_t);
1596         for (l = vars; l; l = l->next) {
1597                 vmv = l->data;
1598                 inst = cfg->varinfo [vmv->idx];
1599
1600                 t = mono_type_get_underlying_type (inst->inst_vtype);
1601                 if (cfg->gsharedvt && mini_is_gsharedvt_variable_type (cfg, t))
1602                         continue;
1603
1604                 /* inst->backend.is_pinvoke indicates native sized value types, this is used by the
1605                 * pinvoke wrappers when they call functions returning structures */
1606                 if (inst->backend.is_pinvoke && MONO_TYPE_ISSTRUCT (t) && t->type != MONO_TYPE_TYPEDBYREF) {
1607                         size = mono_class_native_size (mono_class_from_mono_type (t), &align);
1608                 } else {
1609                         int ialign;
1610
1611                         size = mini_type_stack_size (NULL, t, &ialign);
1612                         align = ialign;
1613
1614                         if (mono_class_from_mono_type (t)->exception_type)
1615                                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD);
1616
1617                         if (MONO_CLASS_IS_SIMD (cfg, mono_class_from_mono_type (t)))
1618                                 align = 16;
1619                 }
1620
1621                 reuse_slot = TRUE;
1622                 if (cfg->disable_reuse_stack_slots)
1623                         reuse_slot = FALSE;
1624
1625                 t = mini_get_underlying_type (cfg, t);
1626                 switch (t->type) {
1627                 case MONO_TYPE_GENERICINST:
1628                         if (!mono_type_generic_inst_is_valuetype (t)) {
1629                                 slot_info = &scalar_stack_slots [t->type];
1630                                 break;
1631                         }
1632                         /* Fall through */
1633                 case MONO_TYPE_VALUETYPE:
1634                         if (!vtype_stack_slots)
1635                                 vtype_stack_slots = mono_mempool_alloc0 (cfg->mempool, sizeof (StackSlotInfo) * 256);
1636                         for (i = 0; i < nvtypes; ++i)
1637                                 if (t->data.klass == vtype_stack_slots [i].vtype)
1638                                         break;
1639                         if (i < nvtypes)
1640                                 slot_info = &vtype_stack_slots [i];
1641                         else {
1642                                 g_assert (nvtypes < 256);
1643                                 vtype_stack_slots [nvtypes].vtype = t->data.klass;
1644                                 slot_info = &vtype_stack_slots [nvtypes];
1645                                 nvtypes ++;
1646                         }
1647                         if (cfg->disable_reuse_ref_stack_slots)
1648                                 reuse_slot = FALSE;
1649                         break;
1650
1651                 case MONO_TYPE_PTR:
1652                 case MONO_TYPE_I:
1653                 case MONO_TYPE_U:
1654 #if SIZEOF_VOID_P == 4
1655                 case MONO_TYPE_I4:
1656 #else
1657                 case MONO_TYPE_I8:
1658 #endif
1659                         if (cfg->disable_ref_noref_stack_slot_share) {
1660                                 slot_info = &scalar_stack_slots [MONO_TYPE_I];
1661                                 break;
1662                         }
1663                         /* Fall through */
1664
1665                 case MONO_TYPE_CLASS:
1666                 case MONO_TYPE_OBJECT:
1667                 case MONO_TYPE_ARRAY:
1668                 case MONO_TYPE_SZARRAY:
1669                 case MONO_TYPE_STRING:
1670                         /* Share non-float stack slots of the same size */
1671                         slot_info = &scalar_stack_slots [MONO_TYPE_CLASS];
1672                         if (cfg->disable_reuse_ref_stack_slots)
1673                                 reuse_slot = FALSE;
1674                         break;
1675                 case MONO_TYPE_VAR:
1676                 case MONO_TYPE_MVAR:
1677                         slot_info = &scalar_stack_slots [t->type];
1678                         break;
1679                 default:
1680                         slot_info = &scalar_stack_slots [t->type];
1681                         break;
1682                 }
1683
1684                 slot = 0xffffff;
1685                 if (cfg->comp_done & MONO_COMP_LIVENESS) {
1686                         //printf ("START  %2d %08x %08x\n",  vmv->idx, vmv->range.first_use.abs_pos, vmv->range.last_use.abs_pos);
1687                         
1688                         /* expire old intervals in active */
1689                         while (slot_info->active) {
1690                                 MonoMethodVar *amv = (MonoMethodVar *)slot_info->active->data;
1691
1692                                 if (amv->range.last_use.abs_pos > vmv->range.first_use.abs_pos)
1693                                         break;
1694
1695                                 //printf ("EXPIR  %2d %08x %08x C%d R%d\n", amv->idx, amv->range.first_use.abs_pos, amv->range.last_use.abs_pos, amv->spill_costs, amv->reg);
1696
1697                                 slot_info->active = g_list_delete_link (slot_info->active, slot_info->active);
1698                                 slot_info->slots = g_slist_prepend_mempool (cfg->mempool, slot_info->slots, GINT_TO_POINTER (offsets [amv->idx]));
1699                         }
1700
1701                         /* 
1702                          * This also handles the case when the variable is used in an
1703                          * exception region, as liveness info is not computed there.
1704                          */
1705                         /* 
1706                          * FIXME: All valuetypes are marked as INDIRECT because of LDADDR
1707                          * opcodes.
1708                          */
1709                         if (! (inst->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT))) {
1710                                 if (slot_info->slots) {
1711                                         slot = GPOINTER_TO_INT (slot_info->slots->data);
1712
1713                                         slot_info->slots = slot_info->slots->next;
1714                                 }
1715
1716                                 slot_info->active = mono_varlist_insert_sorted (cfg, slot_info->active, vmv, TRUE);
1717                         }
1718                 }
1719
1720                 {
1721                         static int count = 0;
1722                         count ++;
1723
1724                         /*
1725                         if (count == atoi (g_getenv ("COUNT")))
1726                                 printf ("LAST: %s\n", mono_method_full_name (cfg->method, TRUE));
1727                         if (count > atoi (g_getenv ("COUNT")))
1728                                 slot = 0xffffff;
1729                         else {
1730                                 mono_print_ins (inst);
1731                                 }
1732                         */
1733                 }
1734
1735                 if (inst->flags & MONO_INST_LMF) {
1736                         /*
1737                          * This variable represents a MonoLMF structure, which has no corresponding
1738                          * CLR type, so hard-code its size/alignment.
1739                          */
1740                         size = sizeof (MonoLMF);
1741                         align = sizeof (mgreg_t);
1742                         reuse_slot = FALSE;
1743                 }
1744
1745                 if (!reuse_slot)
1746                         slot = 0xffffff;
1747
1748                 if (slot == 0xffffff) {
1749                         /*
1750                          * Allways allocate valuetypes to sizeof (gpointer) to allow more
1751                          * efficient copying (and to work around the fact that OP_MEMCPY
1752                          * and OP_MEMSET ignores alignment).
1753                          */
1754                         if (MONO_TYPE_ISSTRUCT (t)) {
1755                                 align = MAX (align, sizeof (gpointer));
1756                                 align = MAX (align, mono_class_min_align (mono_class_from_mono_type (t)));
1757                                 /* 
1758                                  * Align the size too so the code generated for passing vtypes in
1759                                  * registers doesn't overwrite random locals.
1760                                  */
1761                                 size = (size + (align - 1)) & ~(align -1);
1762                         }
1763
1764                         if (backward) {
1765                                 offset += size;
1766                                 offset += align - 1;
1767                                 offset &= ~(align - 1);
1768                                 slot = offset;
1769                         }
1770                         else {
1771                                 offset += align - 1;
1772                                 offset &= ~(align - 1);
1773                                 slot = offset;
1774                                 offset += size;
1775                         }
1776
1777                         *stack_align = MAX (*stack_align, align);
1778                 }
1779
1780                 offsets [vmv->idx] = slot;
1781         }
1782         g_list_free (vars);
1783         for (i = 0; i < MONO_TYPE_PINNED; ++i) {
1784                 if (scalar_stack_slots [i].active)
1785                         g_list_free (scalar_stack_slots [i].active);
1786         }
1787         for (i = 0; i < nvtypes; ++i) {
1788                 if (vtype_stack_slots [i].active)
1789                         g_list_free (vtype_stack_slots [i].active);
1790         }
1791
1792         cfg->stat_locals_stack_size += offset;
1793
1794         *stack_size = offset;
1795         return offsets;
1796 }
1797
1798 #else
1799
1800 gint32*
1801 mono_allocate_stack_slots (MonoCompile *cfg, gboolean backward, guint32 *stack_size, guint32 *stack_align)
1802 {
1803         g_assert_not_reached ();
1804         return NULL;
1805 }
1806
1807 #endif /* DISABLE_JIT */
1808
1809 #define EMUL_HIT_SHIFT 3
1810 #define EMUL_HIT_MASK ((1 << EMUL_HIT_SHIFT) - 1)
1811 /* small hit bitmap cache */
1812 static mono_byte emul_opcode_hit_cache [(OP_LAST>>EMUL_HIT_SHIFT) + 1] = {0};
1813 static short emul_opcode_num = 0;
1814 static short emul_opcode_alloced = 0;
1815 static short *emul_opcode_opcodes;
1816 static MonoJitICallInfo **emul_opcode_map;
1817
1818 MonoJitICallInfo *
1819 mono_find_jit_opcode_emulation (int opcode)
1820 {
1821         g_assert (opcode >= 0 && opcode <= OP_LAST);
1822         if (emul_opcode_hit_cache [opcode >> (EMUL_HIT_SHIFT + 3)] & (1 << (opcode & EMUL_HIT_MASK))) {
1823                 int i;
1824                 for (i = 0; i < emul_opcode_num; ++i) {
1825                         if (emul_opcode_opcodes [i] == opcode)
1826                                 return emul_opcode_map [i];
1827                 }
1828         }
1829         return NULL;
1830 }
1831
1832 void
1833 mini_register_opcode_emulation (int opcode, const char *name, const char *sigstr, gpointer func, const char *symbol, gboolean no_throw)
1834 {
1835         MonoJitICallInfo *info;
1836         MonoMethodSignature *sig = mono_create_icall_signature (sigstr);
1837
1838         g_assert (!sig->hasthis);
1839         g_assert (sig->param_count < 3);
1840
1841         /* Opcode emulation functions are assumed to don't call mono_raise_exception () */
1842         info = mono_register_jit_icall_full (func, name, sig, no_throw, TRUE, symbol);
1843
1844         if (emul_opcode_num >= emul_opcode_alloced) {
1845                 int incr = emul_opcode_alloced? emul_opcode_alloced/2: 16;
1846                 emul_opcode_alloced += incr;
1847                 emul_opcode_map = g_realloc (emul_opcode_map, sizeof (emul_opcode_map [0]) * emul_opcode_alloced);
1848                 emul_opcode_opcodes = g_realloc (emul_opcode_opcodes, sizeof (emul_opcode_opcodes [0]) * emul_opcode_alloced);
1849         }
1850         emul_opcode_map [emul_opcode_num] = info;
1851         emul_opcode_opcodes [emul_opcode_num] = opcode;
1852         emul_opcode_num++;
1853         emul_opcode_hit_cache [opcode >> (EMUL_HIT_SHIFT + 3)] |= (1 << (opcode & EMUL_HIT_MASK));
1854 }
1855
1856 static void
1857 print_dfn (MonoCompile *cfg) {
1858         int i, j;
1859         char *code;
1860         MonoBasicBlock *bb;
1861         MonoInst *c;
1862
1863         {
1864                 char *method_name = mono_method_full_name (cfg->method, TRUE);
1865                 g_print ("IR code for method %s\n", method_name);
1866                 g_free (method_name);
1867         }
1868
1869         for (i = 0; i < cfg->num_bblocks; ++i) {
1870                 bb = cfg->bblocks [i];
1871                 /*if (bb->cil_code) {
1872                         char* code1, *code2;
1873                         code1 = mono_disasm_code_one (NULL, cfg->method, bb->cil_code, NULL);
1874                         if (bb->last_ins->cil_code)
1875                                 code2 = mono_disasm_code_one (NULL, cfg->method, bb->last_ins->cil_code, NULL);
1876                         else
1877                                 code2 = g_strdup ("");
1878
1879                         code1 [strlen (code1) - 1] = 0;
1880                         code = g_strdup_printf ("%s -> %s", code1, code2);
1881                         g_free (code1);
1882                         g_free (code2);
1883                 } else*/
1884                         code = g_strdup ("\n");
1885                 g_print ("\nBB%d (%d) (len: %d): %s", bb->block_num, i, bb->cil_length, code);
1886                 MONO_BB_FOR_EACH_INS (bb, c) {
1887                         mono_print_ins_index (-1, c);
1888                 }
1889
1890                 g_print ("\tprev:");
1891                 for (j = 0; j < bb->in_count; ++j) {
1892                         g_print (" BB%d", bb->in_bb [j]->block_num);
1893                 }
1894                 g_print ("\t\tsucc:");
1895                 for (j = 0; j < bb->out_count; ++j) {
1896                         g_print (" BB%d", bb->out_bb [j]->block_num);
1897                 }
1898                 g_print ("\n\tidom: BB%d\n", bb->idom? bb->idom->block_num: -1);
1899
1900                 if (bb->idom)
1901                         g_assert (mono_bitset_test_fast (bb->dominators, bb->idom->dfn));
1902
1903                 if (bb->dominators)
1904                         mono_blockset_print (cfg, bb->dominators, "\tdominators", bb->idom? bb->idom->dfn: -1);
1905                 if (bb->dfrontier)
1906                         mono_blockset_print (cfg, bb->dfrontier, "\tdfrontier", -1);
1907                 g_free (code);
1908         }
1909
1910         g_print ("\n");
1911 }
1912
1913 void
1914 mono_bblock_add_inst (MonoBasicBlock *bb, MonoInst *inst)
1915 {
1916         MONO_ADD_INS (bb, inst);
1917 }
1918
1919 void
1920 mono_bblock_insert_after_ins (MonoBasicBlock *bb, MonoInst *ins, MonoInst *ins_to_insert)
1921 {
1922         if (ins == NULL) {
1923                 ins = bb->code;
1924                 bb->code = ins_to_insert;
1925
1926                 /* Link with next */
1927                 ins_to_insert->next = ins;
1928                 if (ins)
1929                         ins->prev = ins_to_insert;
1930
1931                 if (bb->last_ins == NULL)
1932                         bb->last_ins = ins_to_insert;
1933         } else {
1934                 /* Link with next */
1935                 ins_to_insert->next = ins->next;
1936                 if (ins->next)
1937                         ins->next->prev = ins_to_insert;
1938
1939                 /* Link with previous */
1940                 ins->next = ins_to_insert;
1941                 ins_to_insert->prev = ins;
1942
1943                 if (bb->last_ins == ins)
1944                         bb->last_ins = ins_to_insert;
1945         }
1946 }
1947
1948 void
1949 mono_bblock_insert_before_ins (MonoBasicBlock *bb, MonoInst *ins, MonoInst *ins_to_insert)
1950 {
1951         if (ins == NULL) {
1952                 ins = bb->code;
1953                 if (ins)
1954                         ins->prev = ins_to_insert;
1955                 bb->code = ins_to_insert;
1956                 ins_to_insert->next = ins;
1957                 if (bb->last_ins == NULL)
1958                         bb->last_ins = ins_to_insert;
1959         } else {
1960                 /* Link with previous */
1961                 if (ins->prev)
1962                         ins->prev->next = ins_to_insert;
1963                 ins_to_insert->prev = ins->prev;
1964
1965                 /* Link with next */
1966                 ins->prev = ins_to_insert;
1967                 ins_to_insert->next = ins;
1968
1969                 if (bb->code == ins)
1970                         bb->code = ins_to_insert;
1971         }
1972 }
1973
1974 /*
1975  * mono_verify_bblock:
1976  *
1977  *   Verify that the next and prev pointers are consistent inside the instructions in BB.
1978  */
1979 void
1980 mono_verify_bblock (MonoBasicBlock *bb)
1981 {
1982         MonoInst *ins, *prev;
1983
1984         prev = NULL;
1985         for (ins = bb->code; ins; ins = ins->next) {
1986                 g_assert (ins->prev == prev);
1987                 prev = ins;
1988         }
1989         if (bb->last_ins)
1990                 g_assert (!bb->last_ins->next);
1991 }
1992
1993 /*
1994  * mono_verify_cfg:
1995  *
1996  *   Perform consistency checks on the JIT data structures and the IR
1997  */
1998 void
1999 mono_verify_cfg (MonoCompile *cfg)
2000 {
2001         MonoBasicBlock *bb;
2002
2003         for (bb = cfg->bb_entry; bb; bb = bb->next_bb)
2004                 mono_verify_bblock (bb);
2005 }
2006
2007 void
2008 mono_destroy_compile (MonoCompile *cfg)
2009 {
2010 #ifndef DISABLE_JIT
2011         GSList *l;
2012
2013         if (cfg->header)
2014                 mono_metadata_free_mh (cfg->header);
2015         //mono_mempool_stats (cfg->mempool);
2016         mono_free_loop_info (cfg);
2017         if (cfg->rs)
2018                 mono_regstate_free (cfg->rs);
2019         if (cfg->spvars)
2020                 g_hash_table_destroy (cfg->spvars);
2021         if (cfg->exvars)
2022                 g_hash_table_destroy (cfg->exvars);
2023         for (l = cfg->headers_to_free; l; l = l->next)
2024                 mono_metadata_free_mh (l->data);
2025         g_list_free (cfg->ldstr_list);
2026         g_hash_table_destroy (cfg->token_info_hash);
2027         if (cfg->abs_patches)
2028                 g_hash_table_destroy (cfg->abs_patches);
2029         mono_mempool_destroy (cfg->mempool);
2030
2031         mono_debug_free_method (cfg);
2032
2033         g_free (cfg->varinfo);
2034         g_free (cfg->vars);
2035         g_free (cfg->exception_message);
2036         g_free (cfg);
2037 #endif
2038 }
2039
2040 #ifndef DISABLE_JIT
2041
2042 static MonoInst*
2043 mono_create_tls_get_offset (MonoCompile *cfg, int offset)
2044 {
2045         MonoInst* ins;
2046
2047         if (!MONO_ARCH_HAVE_TLS_GET)
2048                 return NULL;
2049
2050         if (offset == -1)
2051                 return NULL;
2052
2053         MONO_INST_NEW (cfg, ins, OP_TLS_GET);
2054         ins->dreg = mono_alloc_preg (cfg);
2055         ins->inst_offset = offset;
2056         return ins;
2057 }
2058
2059 gboolean
2060 mini_tls_get_supported (MonoCompile *cfg, MonoTlsKey key)
2061 {
2062         if (!MONO_ARCH_HAVE_TLS_GET)
2063                 return FALSE;
2064
2065         if (cfg->compile_aot)
2066                 return ARCH_HAVE_TLS_GET_REG;
2067         else
2068                 return mini_get_tls_offset (key) != -1;
2069 }
2070
2071 MonoInst*
2072 mono_create_tls_get (MonoCompile *cfg, MonoTlsKey key)
2073 {
2074         /*
2075          * TLS offsets might be different at AOT time, so load them from a GOT slot and
2076          * use a different opcode.
2077          */
2078         if (cfg->compile_aot) {
2079                 if (MONO_ARCH_HAVE_TLS_GET && ARCH_HAVE_TLS_GET_REG) {
2080                         MonoInst *ins, *c;
2081
2082                         EMIT_NEW_TLS_OFFSETCONST (cfg, c, key);
2083                         MONO_INST_NEW (cfg, ins, OP_TLS_GET_REG);
2084                         ins->dreg = mono_alloc_preg (cfg);
2085                         ins->sreg1 = c->dreg;
2086                         return ins;
2087                 } else {
2088                         return NULL;
2089                 }
2090         }
2091
2092         return mono_create_tls_get_offset (cfg, mini_get_tls_offset (key));
2093 }
2094
2095 MonoInst*
2096 mono_get_jit_tls_intrinsic (MonoCompile *cfg)
2097 {
2098         return mono_create_tls_get (cfg, TLS_KEY_JIT_TLS);
2099 }
2100
2101 MonoInst*
2102 mono_get_domain_intrinsic (MonoCompile* cfg)
2103 {
2104         return mono_create_tls_get (cfg, TLS_KEY_DOMAIN);
2105 }
2106
2107 MonoInst*
2108 mono_get_thread_intrinsic (MonoCompile* cfg)
2109 {
2110         return mono_create_tls_get (cfg, TLS_KEY_THREAD);
2111 }
2112
2113 MonoInst*
2114 mono_get_lmf_intrinsic (MonoCompile* cfg)
2115 {
2116         return mono_create_tls_get (cfg, TLS_KEY_LMF);
2117 }
2118
2119 MonoInst*
2120 mono_get_lmf_addr_intrinsic (MonoCompile* cfg)
2121 {
2122         return mono_create_tls_get (cfg, TLS_KEY_LMF_ADDR);
2123 }
2124
2125 #endif /* !DISABLE_JIT */
2126
2127
2128 void
2129 mono_add_patch_info (MonoCompile *cfg, int ip, MonoJumpInfoType type, gconstpointer target)
2130 {
2131         MonoJumpInfo *ji = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfo));
2132
2133         ji->ip.i = ip;
2134         ji->type = type;
2135         ji->data.target = target;
2136         ji->next = cfg->patch_info;
2137
2138         cfg->patch_info = ji;
2139 }
2140
2141 void
2142 mono_add_patch_info_rel (MonoCompile *cfg, int ip, MonoJumpInfoType type, gconstpointer target, int relocation)
2143 {
2144         MonoJumpInfo *ji = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfo));
2145
2146         ji->ip.i = ip;
2147         ji->type = type;
2148         ji->relocation = relocation;
2149         ji->data.target = target;
2150         ji->next = cfg->patch_info;
2151
2152         cfg->patch_info = ji;
2153 }
2154
2155 void
2156 mono_remove_patch_info (MonoCompile *cfg, int ip)
2157 {
2158         MonoJumpInfo **ji = &cfg->patch_info;
2159
2160         while (*ji) {
2161                 if ((*ji)->ip.i == ip)
2162                         *ji = (*ji)->next;
2163                 else
2164                         ji = &((*ji)->next);
2165         }
2166 }
2167
2168 void
2169 mono_add_seq_point (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *ins, int native_offset)
2170 {
2171         ins->inst_offset = native_offset;
2172         g_ptr_array_add (cfg->seq_points, ins);
2173         if (bb) {
2174                 bb->seq_points = g_slist_prepend_mempool (cfg->mempool, bb->seq_points, ins);
2175                 bb->last_seq_point = ins;
2176         }
2177 }
2178
2179 void
2180 mono_add_var_location (MonoCompile *cfg, MonoInst *var, gboolean is_reg, int reg, int offset, int from, int to)
2181 {
2182         MonoDwarfLocListEntry *entry = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoDwarfLocListEntry));
2183
2184         if (is_reg)
2185                 g_assert (offset == 0);
2186
2187         entry->is_reg = is_reg;
2188         entry->reg = reg;
2189         entry->offset = offset;
2190         entry->from = from;
2191         entry->to = to;
2192
2193         if (var == cfg->args [0])
2194                 cfg->this_loclist = g_slist_append_mempool (cfg->mempool, cfg->this_loclist, entry);
2195         else if (var == cfg->rgctx_var)
2196                 cfg->rgctx_loclist = g_slist_append_mempool (cfg->mempool, cfg->rgctx_loclist, entry);
2197 }
2198
2199 #ifndef DISABLE_JIT
2200
2201 static void
2202 mono_compile_create_vars (MonoCompile *cfg)
2203 {
2204         MonoMethodSignature *sig;
2205         MonoMethodHeader *header;
2206         int i;
2207
2208         header = cfg->header;
2209
2210         sig = mono_method_signature (cfg->method);
2211         
2212         if (!MONO_TYPE_IS_VOID (sig->ret)) {
2213                 cfg->ret = mono_compile_create_var (cfg, sig->ret, OP_ARG);
2214                 /* Inhibit optimizations */
2215                 cfg->ret->flags |= MONO_INST_VOLATILE;
2216         }
2217         if (cfg->verbose_level > 2)
2218                 g_print ("creating vars\n");
2219
2220         cfg->args = mono_mempool_alloc0 (cfg->mempool, (sig->param_count + sig->hasthis) * sizeof (MonoInst*));
2221
2222         if (sig->hasthis)
2223                 cfg->args [0] = mono_compile_create_var (cfg, &cfg->method->klass->this_arg, OP_ARG);
2224
2225         for (i = 0; i < sig->param_count; ++i) {
2226                 cfg->args [i + sig->hasthis] = mono_compile_create_var (cfg, sig->params [i], OP_ARG);
2227         }
2228
2229         if (cfg->verbose_level > 2) {
2230                 if (cfg->ret) {
2231                         printf ("\treturn : ");
2232                         mono_print_ins (cfg->ret);
2233                 }
2234
2235                 if (sig->hasthis) {
2236                         printf ("\tthis: ");
2237                         mono_print_ins (cfg->args [0]);
2238                 }
2239
2240                 for (i = 0; i < sig->param_count; ++i) {
2241                         printf ("\targ [%d]: ", i);
2242                         mono_print_ins (cfg->args [i + sig->hasthis]);
2243                 }
2244         }
2245
2246         cfg->locals_start = cfg->num_varinfo;
2247         cfg->locals = mono_mempool_alloc0 (cfg->mempool, header->num_locals * sizeof (MonoInst*));
2248
2249         if (cfg->verbose_level > 2)
2250                 g_print ("creating locals\n");
2251
2252         for (i = 0; i < header->num_locals; ++i)
2253                 cfg->locals [i] = mono_compile_create_var (cfg, header->locals [i], OP_LOCAL);
2254
2255         if (cfg->verbose_level > 2)
2256                 g_print ("locals done\n");
2257
2258         mono_arch_create_vars (cfg);
2259
2260         if (cfg->method->save_lmf && cfg->create_lmf_var) {
2261                 MonoInst *lmf_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2262                 lmf_var->flags |= MONO_INST_VOLATILE;
2263                 lmf_var->flags |= MONO_INST_LMF;
2264                 cfg->lmf_var = lmf_var;
2265         }
2266 }
2267
2268 void
2269 mono_print_code (MonoCompile *cfg, const char* msg)
2270 {
2271         MonoBasicBlock *bb;
2272         
2273         for (bb = cfg->bb_entry; bb; bb = bb->next_bb)
2274                 mono_print_bb (bb, msg);
2275 }
2276
2277 static void
2278 mono_postprocess_patches (MonoCompile *cfg)
2279 {
2280         MonoJumpInfo *patch_info;
2281         int i;
2282
2283         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
2284                 switch (patch_info->type) {
2285                 case MONO_PATCH_INFO_ABS: {
2286                         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (patch_info->data.target);
2287
2288                         /*
2289                          * Change patches of type MONO_PATCH_INFO_ABS into patches describing the 
2290                          * absolute address.
2291                          */
2292                         if (info) {
2293                                 //printf ("TEST %s %p\n", info->name, patch_info->data.target);
2294                                 /* for these array methods we currently register the same function pointer
2295                                  * since it's a vararg function. But this means that mono_find_jit_icall_by_addr ()
2296                                  * will return the incorrect one depending on the order they are registered.
2297                                  * See tests/test-arr.cs
2298                                  */
2299                                 if (strstr (info->name, "ves_array_new_va_") == NULL && strstr (info->name, "ves_array_element_address_") == NULL) {
2300                                         patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
2301                                         patch_info->data.name = info->name;
2302                                 }
2303                         }
2304
2305                         if (patch_info->type == MONO_PATCH_INFO_ABS) {
2306                                 if (cfg->abs_patches) {
2307                                         MonoJumpInfo *abs_ji = g_hash_table_lookup (cfg->abs_patches, patch_info->data.target);
2308                                         if (abs_ji) {
2309                                                 patch_info->type = abs_ji->type;
2310                                                 patch_info->data.target = abs_ji->data.target;
2311                                         }
2312                                 }
2313                         }
2314
2315                         break;
2316                 }
2317                 case MONO_PATCH_INFO_SWITCH: {
2318                         gpointer *table;
2319 #if defined(__native_client__) && defined(__native_client_codegen__)
2320                         /* This memory will leak.  */
2321                         /* TODO: can we free this when  */
2322                         /* making the final jump table? */
2323                         table = g_malloc0 (sizeof(gpointer) * patch_info->data.table->table_size);
2324 #else
2325                         if (cfg->method->dynamic) {
2326                                 table = mono_code_manager_reserve (cfg->dynamic_info->code_mp, sizeof (gpointer) * patch_info->data.table->table_size);
2327                         } else {
2328                                 table = mono_domain_code_reserve (cfg->domain, sizeof (gpointer) * patch_info->data.table->table_size);
2329                         }
2330 #endif
2331
2332                         for (i = 0; i < patch_info->data.table->table_size; i++) {
2333                                 /* Might be NULL if the switch is eliminated */
2334                                 if (patch_info->data.table->table [i]) {
2335                                         g_assert (patch_info->data.table->table [i]->native_offset);
2336                                         table [i] = GINT_TO_POINTER (patch_info->data.table->table [i]->native_offset);
2337                                 } else {
2338                                         table [i] = NULL;
2339                                 }
2340                         }
2341                         patch_info->data.table->table = (MonoBasicBlock**)table;
2342                         break;
2343                 }
2344                 case MONO_PATCH_INFO_METHOD_JUMP: {
2345                         MonoJumpList *jlist;
2346                         MonoDomain *domain = cfg->domain;
2347                         unsigned char *ip = cfg->native_code + patch_info->ip.i;
2348 #if defined(__native_client__) && defined(__native_client_codegen__)
2349                         /* When this jump target gets evaluated, the method */
2350                         /* will be installed in the dynamic code section,   */
2351                         /* not at the location of cfg->native_code.         */
2352                         ip = nacl_inverse_modify_patch_target (cfg->native_code) + patch_info->ip.i;
2353 #endif
2354
2355                         mono_domain_lock (domain);
2356                         jlist = g_hash_table_lookup (domain_jit_info (domain)->jump_target_hash, patch_info->data.method);
2357                         if (!jlist) {
2358                                 jlist = mono_domain_alloc0 (domain, sizeof (MonoJumpList));
2359                                 g_hash_table_insert (domain_jit_info (domain)->jump_target_hash, patch_info->data.method, jlist);
2360                         }
2361                         jlist->list = g_slist_prepend (jlist->list, ip);
2362                         mono_domain_unlock (domain);
2363                         break;
2364                 }
2365                 default:
2366                         /* do nothing */
2367                         break;
2368                 }
2369         }
2370 }
2371
2372 void
2373 mono_codegen (MonoCompile *cfg)
2374 {
2375         MonoBasicBlock *bb;
2376         int max_epilog_size;
2377         guint8 *code;
2378         MonoDomain *code_domain;
2379         guint unwindlen = 0;
2380
2381         if (mono_using_xdebug)
2382                 /*
2383                  * Recent gdb versions have trouble processing symbol files containing
2384                  * overlapping address ranges, so allocate all code from the code manager
2385                  * of the root domain. (#666152).
2386                  */
2387                 code_domain = mono_get_root_domain ();
2388         else
2389                 code_domain = cfg->domain;
2390
2391 #if defined(__native_client_codegen__) && defined(__native_client__)
2392         void *code_dest;
2393
2394         /* This keeps patch targets from being transformed during
2395          * ordinary method compilation, for local branches and jumps.
2396          */
2397         nacl_allow_target_modification (FALSE);
2398 #endif
2399
2400         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
2401                 cfg->spill_count = 0;
2402                 /* we reuse dfn here */
2403                 /* bb->dfn = bb_count++; */
2404
2405                 mono_arch_lowering_pass (cfg, bb);
2406
2407                 if (cfg->opt & MONO_OPT_PEEPHOLE)
2408                         mono_arch_peephole_pass_1 (cfg, bb);
2409
2410                 mono_local_regalloc (cfg, bb);
2411
2412                 if (cfg->opt & MONO_OPT_PEEPHOLE)
2413                         mono_arch_peephole_pass_2 (cfg, bb);
2414
2415                 if (cfg->gen_seq_points && !cfg->gen_sdb_seq_points)
2416                         mono_bb_deduplicate_op_il_seq_points (cfg, bb);
2417         }
2418
2419         if (cfg->prof_options & MONO_PROFILE_COVERAGE)
2420                 cfg->coverage_info = mono_profiler_coverage_alloc (cfg->method, cfg->num_bblocks);
2421
2422         code = mono_arch_emit_prolog (cfg);
2423
2424         cfg->code_len = code - cfg->native_code;
2425         cfg->prolog_end = cfg->code_len;
2426         cfg->cfa_reg = cfg->cur_cfa_reg;
2427         cfg->cfa_offset = cfg->cur_cfa_offset;
2428
2429         mono_debug_open_method (cfg);
2430
2431         /* emit code all basic blocks */
2432         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
2433                 bb->native_offset = cfg->code_len;
2434                 bb->real_native_offset = cfg->code_len;
2435                 //if ((bb == cfg->bb_entry) || !(bb->region == -1 && !bb->dfn))
2436                         mono_arch_output_basic_block (cfg, bb);
2437                 bb->native_length = cfg->code_len - bb->native_offset;
2438
2439                 if (bb == cfg->bb_exit) {
2440                         cfg->epilog_begin = cfg->code_len;
2441                         mono_arch_emit_epilog (cfg);
2442                         cfg->epilog_end = cfg->code_len;
2443                 }
2444         }
2445
2446 #ifdef __native_client_codegen__
2447         mono_nacl_fix_patches (cfg->native_code, cfg->patch_info);
2448 #endif
2449         mono_arch_emit_exceptions (cfg);
2450
2451         max_epilog_size = 0;
2452
2453         /* we always allocate code in cfg->domain->code_mp to increase locality */
2454         cfg->code_size = cfg->code_len + max_epilog_size;
2455 #ifdef __native_client_codegen__
2456         cfg->code_size = NACL_BUNDLE_ALIGN_UP (cfg->code_size);
2457 #endif
2458         /* fixme: align to MONO_ARCH_CODE_ALIGNMENT */
2459
2460 #ifdef MONO_ARCH_HAVE_UNWIND_TABLE
2461         unwindlen = mono_arch_unwindinfo_get_size (cfg->arch.unwindinfo);
2462 #endif
2463
2464         if (cfg->method->dynamic) {
2465                 /* Allocate the code into a separate memory pool so it can be freed */
2466                 cfg->dynamic_info = g_new0 (MonoJitDynamicMethodInfo, 1);
2467                 cfg->dynamic_info->code_mp = mono_code_manager_new_dynamic ();
2468                 mono_domain_lock (cfg->domain);
2469                 mono_dynamic_code_hash_insert (cfg->domain, cfg->method, cfg->dynamic_info);
2470                 mono_domain_unlock (cfg->domain);
2471
2472                 if (mono_using_xdebug)
2473                         /* See the comment for cfg->code_domain */
2474                         code = mono_domain_code_reserve (code_domain, cfg->code_size + cfg->thunk_area + unwindlen);
2475                 else
2476                         code = mono_code_manager_reserve (cfg->dynamic_info->code_mp, cfg->code_size + cfg->thunk_area + unwindlen);
2477         } else {
2478                 code = mono_domain_code_reserve (code_domain, cfg->code_size + cfg->thunk_area + unwindlen);
2479         }
2480 #if defined(__native_client_codegen__) && defined(__native_client__)
2481         nacl_allow_target_modification (TRUE);
2482 #endif
2483         if (cfg->thunk_area) {
2484                 cfg->thunks_offset = cfg->code_size + unwindlen;
2485                 cfg->thunks = code + cfg->thunks_offset;
2486                 memset (cfg->thunks, 0, cfg->thunk_area);
2487         }
2488
2489         g_assert (code);
2490         memcpy (code, cfg->native_code, cfg->code_len);
2491 #if defined(__default_codegen__)
2492         g_free (cfg->native_code);
2493 #elif defined(__native_client_codegen__)
2494         if (cfg->native_code_alloc) {
2495                 g_free (cfg->native_code_alloc);
2496                 cfg->native_code_alloc = 0;
2497         }
2498         else if (cfg->native_code) {
2499                 g_free (cfg->native_code);
2500         }
2501 #endif /* __native_client_codegen__ */
2502         cfg->native_code = code;
2503         code = cfg->native_code + cfg->code_len;
2504   
2505         /* g_assert (((int)cfg->native_code & (MONO_ARCH_CODE_ALIGNMENT - 1)) == 0); */
2506         mono_postprocess_patches (cfg);
2507
2508 #ifdef VALGRIND_JIT_REGISTER_MAP
2509         if (valgrind_register){
2510                 char* nm = mono_method_full_name (cfg->method, TRUE);
2511                 VALGRIND_JIT_REGISTER_MAP (nm, cfg->native_code, cfg->native_code + cfg->code_len);
2512                 g_free (nm);
2513         }
2514 #endif
2515  
2516         if (cfg->verbose_level > 0) {
2517                 char* nm = mono_method_full_name (cfg->method, TRUE);
2518                 g_print ("Method %s emitted at %p to %p (code length %d) [%s]\n", 
2519                                  nm, 
2520                                  cfg->native_code, cfg->native_code + cfg->code_len, cfg->code_len, cfg->domain->friendly_name);
2521                 g_free (nm);
2522         }
2523
2524         {
2525                 gboolean is_generic = FALSE;
2526
2527                 if (cfg->method->is_inflated || mono_method_get_generic_container (cfg->method) ||
2528                                 cfg->method->klass->generic_container || cfg->method->klass->generic_class) {
2529                         is_generic = TRUE;
2530                 }
2531
2532                 if (cfg->generic_sharing_context)
2533                         g_assert (is_generic);
2534         }
2535
2536 #ifdef MONO_ARCH_HAVE_SAVE_UNWIND_INFO
2537         mono_arch_save_unwind_info (cfg);
2538 #endif
2539
2540 #if defined(__native_client_codegen__) && defined(__native_client__)
2541         if (!cfg->compile_aot) {
2542                 if (cfg->method->dynamic) {
2543                         code_dest = nacl_code_manager_get_code_dest(cfg->dynamic_info->code_mp, cfg->native_code);
2544                 } else {
2545                         code_dest = nacl_domain_get_code_dest(cfg->domain, cfg->native_code);
2546                 }
2547         }
2548 #endif
2549
2550 #if defined(__native_client_codegen__)
2551         mono_nacl_fix_patches (cfg->native_code, cfg->patch_info);
2552 #endif
2553
2554 #ifdef MONO_ARCH_HAVE_PATCH_CODE_NEW
2555         {
2556                 MonoJumpInfo *ji;
2557                 gpointer target;
2558
2559                 for (ji = cfg->patch_info; ji; ji = ji->next) {
2560                         if (cfg->compile_aot) {
2561                                 switch (ji->type) {
2562                                 case MONO_PATCH_INFO_BB:
2563                                 case MONO_PATCH_INFO_LABEL:
2564                                         break;
2565                                 default:
2566                                         /* No need to patch these */
2567                                         continue;
2568                                 }
2569                         }
2570
2571                         if (ji->type == MONO_PATCH_INFO_NONE)
2572                                 continue;
2573
2574                         target = mono_resolve_patch_target (cfg->method, cfg->domain, cfg->native_code, ji, cfg->run_cctors);
2575                         mono_arch_patch_code_new (cfg, cfg->domain, cfg->native_code, ji, target);
2576                 }
2577         }
2578 #else
2579         mono_arch_patch_code (cfg, cfg->method, cfg->domain, cfg->native_code, cfg->patch_info, cfg->run_cctors);
2580 #endif
2581
2582         if (cfg->method->dynamic) {
2583                 if (mono_using_xdebug)
2584                         mono_domain_code_commit (code_domain, cfg->native_code, cfg->code_size, cfg->code_len);
2585                 else
2586                         mono_code_manager_commit (cfg->dynamic_info->code_mp, cfg->native_code, cfg->code_size, cfg->code_len);
2587         } else {
2588                 mono_domain_code_commit (code_domain, cfg->native_code, cfg->code_size, cfg->code_len);
2589         }
2590 #if defined(__native_client_codegen__) && defined(__native_client__)
2591         cfg->native_code = code_dest;
2592 #endif
2593         mono_profiler_code_buffer_new (cfg->native_code, cfg->code_len, MONO_PROFILER_CODE_BUFFER_METHOD, cfg->method);
2594         
2595         mono_arch_flush_icache (cfg->native_code, cfg->code_len);
2596
2597         mono_debug_close_method (cfg);
2598
2599 #ifdef MONO_ARCH_HAVE_UNWIND_TABLE
2600         mono_arch_unwindinfo_install_unwind_info (&cfg->arch.unwindinfo, cfg->native_code, cfg->code_len);
2601 #endif
2602 }
2603
2604 static void
2605 compute_reachable (MonoBasicBlock *bb)
2606 {
2607         int i;
2608
2609         if (!(bb->flags & BB_VISITED)) {
2610                 bb->flags |= BB_VISITED;
2611                 for (i = 0; i < bb->out_count; ++i)
2612                         compute_reachable (bb->out_bb [i]);
2613         }
2614 }
2615
2616 static void
2617 mono_handle_out_of_line_bblock (MonoCompile *cfg)
2618 {
2619         MonoBasicBlock *bb;
2620         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
2621                 if (bb->next_bb && bb->next_bb->out_of_line && bb->last_ins && !MONO_IS_BRANCH_OP (bb->last_ins)) {
2622                         MonoInst *ins;
2623                         MONO_INST_NEW (cfg, ins, OP_BR);
2624                         MONO_ADD_INS (bb, ins);
2625                         ins->inst_target_bb = bb->next_bb;
2626                 }
2627         }
2628 }
2629
2630 #endif /* #ifndef DISABLE_JIT */
2631
2632 static MonoJitInfo*
2633 create_jit_info_for_trampoline (MonoMethod *wrapper, MonoTrampInfo *info)
2634 {
2635         MonoDomain *domain = mono_get_root_domain ();
2636         MonoJitInfo *jinfo;
2637         guint8 *uw_info;
2638         guint32 info_len;
2639
2640         if (info->uw_info) {
2641                 uw_info = info->uw_info;
2642                 info_len = info->uw_info_len;
2643         } else {
2644                 uw_info = mono_unwind_ops_encode (info->unwind_ops, &info_len);
2645         }
2646
2647         jinfo = mono_domain_alloc0 (domain, MONO_SIZEOF_JIT_INFO);
2648         jinfo->d.method = wrapper;
2649         jinfo->code_start = info->code;
2650         jinfo->code_size = info->code_size;
2651         jinfo->unwind_info = mono_cache_unwind_info (uw_info, info_len);
2652
2653         if (!info->uw_info)
2654                 g_free (uw_info);
2655
2656         return jinfo;
2657 }
2658
2659 #ifndef DISABLE_JIT
2660
2661 static MonoJitInfo*
2662 create_jit_info (MonoCompile *cfg, MonoMethod *method_to_compile)
2663 {
2664         GSList *tmp;
2665         MonoMethodHeader *header;
2666         MonoJitInfo *jinfo;
2667         MonoJitInfoFlags flags = JIT_INFO_NONE;
2668         int num_clauses, num_holes = 0;
2669         guint32 stack_size = 0;
2670
2671         g_assert (method_to_compile == cfg->method);
2672         header = cfg->header;
2673
2674         if (cfg->generic_sharing_context)
2675                 flags |= JIT_INFO_HAS_GENERIC_JIT_INFO;
2676
2677         if (cfg->arch_eh_jit_info) {
2678                 MonoJitArgumentInfo *arg_info;
2679                 MonoMethodSignature *sig = mono_method_signature (cfg->method_to_register);
2680
2681                 /*
2682                  * This cannot be computed during stack walking, as
2683                  * mono_arch_get_argument_info () is not signal safe.
2684                  */
2685                 arg_info = g_newa (MonoJitArgumentInfo, sig->param_count + 1);
2686                 stack_size = mono_arch_get_argument_info (cfg->generic_sharing_context, sig, sig->param_count, arg_info);
2687
2688                 if (stack_size)
2689                         flags |= JIT_INFO_HAS_ARCH_EH_INFO;
2690         }
2691
2692         if (cfg->has_unwind_info_for_epilog && !(flags & JIT_INFO_HAS_ARCH_EH_INFO))
2693                 flags |= JIT_INFO_HAS_ARCH_EH_INFO;
2694
2695         if (cfg->thunk_area)
2696                 flags |= JIT_INFO_HAS_THUNK_INFO;
2697
2698         if (cfg->try_block_holes) {
2699                 for (tmp = cfg->try_block_holes; tmp; tmp = tmp->next) {
2700                         TryBlockHole *hole = tmp->data;
2701                         MonoExceptionClause *ec = hole->clause;
2702                         int hole_end = hole->basic_block->native_offset + hole->basic_block->native_length;
2703                         MonoBasicBlock *clause_last_bb = cfg->cil_offset_to_bb [ec->try_offset + ec->try_len];
2704                         g_assert (clause_last_bb);
2705
2706                         /* Holes at the end of a try region can be represented by simply reducing the size of the block itself.*/
2707                         if (clause_last_bb->native_offset != hole_end)
2708                                 ++num_holes;
2709                 }
2710                 if (num_holes)
2711                         flags |= JIT_INFO_HAS_TRY_BLOCK_HOLES;
2712                 if (G_UNLIKELY (cfg->verbose_level >= 4))
2713                         printf ("Number of try block holes %d\n", num_holes);
2714         }
2715
2716         if (COMPILE_LLVM (cfg))
2717                 num_clauses = cfg->llvm_ex_info_len;
2718         else
2719                 num_clauses = header->num_clauses;
2720
2721         if (cfg->method->dynamic)
2722                 jinfo = g_malloc0 (mono_jit_info_size (flags, num_clauses, num_holes));
2723         else
2724                 jinfo = mono_domain_alloc0 (cfg->domain, mono_jit_info_size (flags, num_clauses, num_holes));
2725         mono_jit_info_init (jinfo, cfg->method_to_register, cfg->native_code, cfg->code_len, flags, num_clauses, num_holes);
2726         jinfo->domain_neutral = (cfg->opt & MONO_OPT_SHARED) != 0;
2727
2728         if (COMPILE_LLVM (cfg))
2729                 jinfo->from_llvm = TRUE;
2730
2731         if (cfg->generic_sharing_context) {
2732                 MonoInst *inst;
2733                 MonoGenericJitInfo *gi;
2734                 GSList *loclist = NULL;
2735
2736                 gi = mono_jit_info_get_generic_jit_info (jinfo);
2737                 g_assert (gi);
2738
2739                 if (cfg->method->dynamic)
2740                         gi->generic_sharing_context = g_new0 (MonoGenericSharingContext, 1);
2741                 else
2742                         gi->generic_sharing_context = mono_domain_alloc0 (cfg->domain, sizeof (MonoGenericSharingContext));
2743                 mini_init_gsctx (cfg->method->dynamic ? NULL : cfg->domain, NULL, cfg->gsctx_context, gi->generic_sharing_context);
2744
2745                 if ((method_to_compile->flags & METHOD_ATTRIBUTE_STATIC) ||
2746                                 mini_method_get_context (method_to_compile)->method_inst ||
2747                                 method_to_compile->klass->valuetype) {
2748                         g_assert (cfg->rgctx_var);
2749                 }
2750
2751                 gi->has_this = 1;
2752
2753                 if ((method_to_compile->flags & METHOD_ATTRIBUTE_STATIC) ||
2754                                 mini_method_get_context (method_to_compile)->method_inst ||
2755                                 method_to_compile->klass->valuetype) {
2756                         inst = cfg->rgctx_var;
2757                         if (!COMPILE_LLVM (cfg))
2758                                 g_assert (inst->opcode == OP_REGOFFSET);
2759                         loclist = cfg->rgctx_loclist;
2760                 } else {
2761                         inst = cfg->args [0];
2762                         loclist = cfg->this_loclist;
2763                 }
2764
2765                 if (loclist) {
2766                         /* Needed to handle async exceptions */
2767                         GSList *l;
2768                         int i;
2769
2770                         gi->nlocs = g_slist_length (loclist);
2771                         if (cfg->method->dynamic)
2772                                 gi->locations = g_malloc0 (gi->nlocs * sizeof (MonoDwarfLocListEntry));
2773                         else
2774                                 gi->locations = mono_domain_alloc0 (cfg->domain, gi->nlocs * sizeof (MonoDwarfLocListEntry));
2775                         i = 0;
2776                         for (l = loclist; l; l = l->next) {
2777                                 memcpy (&(gi->locations [i]), l->data, sizeof (MonoDwarfLocListEntry));
2778                                 i ++;
2779                         }
2780                 }
2781
2782                 if (COMPILE_LLVM (cfg)) {
2783                         g_assert (cfg->llvm_this_reg != -1);
2784                         gi->this_in_reg = 0;
2785                         gi->this_reg = cfg->llvm_this_reg;
2786                         gi->this_offset = cfg->llvm_this_offset;
2787                 } else if (inst->opcode == OP_REGVAR) {
2788                         gi->this_in_reg = 1;
2789                         gi->this_reg = inst->dreg;
2790                 } else {
2791                         g_assert (inst->opcode == OP_REGOFFSET);
2792 #ifdef TARGET_X86
2793                         g_assert (inst->inst_basereg == X86_EBP);
2794 #elif defined(TARGET_AMD64)
2795                         g_assert (inst->inst_basereg == X86_EBP || inst->inst_basereg == X86_ESP);
2796 #endif
2797                         g_assert (inst->inst_offset >= G_MININT32 && inst->inst_offset <= G_MAXINT32);
2798
2799                         gi->this_in_reg = 0;
2800                         gi->this_reg = inst->inst_basereg;
2801                         gi->this_offset = inst->inst_offset;
2802                 }
2803         }
2804
2805         if (num_holes) {
2806                 MonoTryBlockHoleTableJitInfo *table;
2807                 int i;
2808
2809                 table = mono_jit_info_get_try_block_hole_table_info (jinfo);
2810                 table->num_holes = (guint16)num_holes;
2811                 i = 0;
2812                 for (tmp = cfg->try_block_holes; tmp; tmp = tmp->next) {
2813                         guint32 start_bb_offset;
2814                         MonoTryBlockHoleJitInfo *hole;
2815                         TryBlockHole *hole_data = tmp->data;
2816                         MonoExceptionClause *ec = hole_data->clause;
2817                         int hole_end = hole_data->basic_block->native_offset + hole_data->basic_block->native_length;
2818                         MonoBasicBlock *clause_last_bb = cfg->cil_offset_to_bb [ec->try_offset + ec->try_len];
2819                         g_assert (clause_last_bb);
2820
2821                         /* Holes at the end of a try region can be represented by simply reducing the size of the block itself.*/
2822                         if (clause_last_bb->native_offset == hole_end)
2823                                 continue;
2824
2825                         start_bb_offset = hole_data->start_offset - hole_data->basic_block->native_offset;
2826                         hole = &table->holes [i++];
2827                         hole->clause = hole_data->clause - &header->clauses [0];
2828                         hole->offset = (guint32)hole_data->start_offset;
2829                         hole->length = (guint16)(hole_data->basic_block->native_length - start_bb_offset);
2830
2831                         if (G_UNLIKELY (cfg->verbose_level >= 4))
2832                                 printf ("\tTry block hole at eh clause %d offset %x length %x\n", hole->clause, hole->offset, hole->length);
2833                 }
2834                 g_assert (i == num_holes);
2835         }
2836
2837         if (jinfo->has_arch_eh_info) {
2838                 MonoArchEHJitInfo *info;
2839
2840                 info = mono_jit_info_get_arch_eh_info (jinfo);
2841
2842                 info->stack_size = stack_size;
2843         }
2844
2845         if (cfg->thunk_area) {
2846                 MonoThunkJitInfo *info;
2847
2848                 info = mono_jit_info_get_thunk_info (jinfo);
2849                 info->thunks_offset = cfg->thunks_offset;
2850                 info->thunks_size = cfg->thunk_area;
2851         }
2852
2853         if (COMPILE_LLVM (cfg)) {
2854                 if (num_clauses)
2855                         memcpy (&jinfo->clauses [0], &cfg->llvm_ex_info [0], num_clauses * sizeof (MonoJitExceptionInfo));
2856         } else if (header->num_clauses) {
2857                 int i;
2858
2859                 for (i = 0; i < header->num_clauses; i++) {
2860                         MonoExceptionClause *ec = &header->clauses [i];
2861                         MonoJitExceptionInfo *ei = &jinfo->clauses [i];
2862                         MonoBasicBlock *tblock;
2863                         MonoInst *exvar, *spvar;
2864
2865                         ei->flags = ec->flags;
2866
2867                         if (G_UNLIKELY (cfg->verbose_level >= 4))
2868                                 printf ("IL clause: try 0x%x-0x%x handler 0x%x-0x%x filter 0x%x\n", ec->try_offset, ec->try_offset + ec->try_len, ec->handler_offset, ec->handler_offset + ec->handler_len, ec->flags == MONO_EXCEPTION_CLAUSE_FILTER ? ec->data.filter_offset : 0);
2869
2870                         /*
2871                          * The spvars are needed by mono_arch_install_handler_block_guard ().
2872                          */
2873                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY) {
2874                                 int region;
2875
2876                                 region = ((i + 1) << 8) | MONO_REGION_FINALLY | ec->flags;
2877                                 spvar = mono_find_spvar_for_region (cfg, region);
2878                                 g_assert (spvar);
2879                                 ei->exvar_offset = spvar->inst_offset;
2880                         } else {
2881                                 exvar = mono_find_exvar_for_offset (cfg, ec->handler_offset);
2882                                 ei->exvar_offset = exvar ? exvar->inst_offset : 0;
2883                         }
2884
2885                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2886                                 tblock = cfg->cil_offset_to_bb [ec->data.filter_offset];
2887                                 g_assert (tblock);
2888                                 ei->data.filter = cfg->native_code + tblock->native_offset;
2889                         } else {
2890                                 ei->data.catch_class = ec->data.catch_class;
2891                         }
2892
2893                         tblock = cfg->cil_offset_to_bb [ec->try_offset];
2894                         g_assert (tblock);
2895                         g_assert (tblock->native_offset);
2896                         ei->try_start = cfg->native_code + tblock->native_offset;
2897                         if (tblock->extend_try_block) {
2898                                 /*
2899                                  * Extend the try block backwards to include parts of the previous call
2900                                  * instruction.
2901                                  */
2902                                 ei->try_start = (guint8*)ei->try_start - MONO_ARCH_MONITOR_ENTER_ADJUSTMENT;
2903                         }
2904                         tblock = cfg->cil_offset_to_bb [ec->try_offset + ec->try_len];
2905                         g_assert (tblock);
2906                         if (!tblock->native_offset) {
2907                                 int j, end;
2908                                 for (j = ec->try_offset + ec->try_len, end = ec->try_offset; j >= end; --j) {
2909                                         MonoBasicBlock *bb = cfg->cil_offset_to_bb [j];
2910                                         if (bb && bb->native_offset) {
2911                                                 tblock = bb;
2912                                                 break;
2913                                         }
2914                                 }
2915                         }
2916                         ei->try_end = cfg->native_code + tblock->native_offset;
2917                         g_assert (tblock->native_offset);
2918                         tblock = cfg->cil_offset_to_bb [ec->handler_offset];
2919                         g_assert (tblock);
2920                         ei->handler_start = cfg->native_code + tblock->native_offset;
2921
2922                         for (tmp = cfg->try_block_holes; tmp; tmp = tmp->next) {
2923                                 TryBlockHole *hole = tmp->data;
2924                                 gpointer hole_end = cfg->native_code + (hole->basic_block->native_offset + hole->basic_block->native_length);
2925                                 if (hole->clause == ec && hole_end == ei->try_end) {
2926                                         if (G_UNLIKELY (cfg->verbose_level >= 4))
2927                                                 printf ("\tShortening try block %d from %x to %x\n", i, (int)((guint8*)ei->try_end - cfg->native_code), hole->start_offset);
2928
2929                                         ei->try_end = cfg->native_code + hole->start_offset;
2930                                         break;
2931                                 }
2932                         }
2933
2934                         if (ec->flags == MONO_EXCEPTION_CLAUSE_FINALLY) {
2935                                 int end_offset;
2936                                 if (ec->handler_offset + ec->handler_len < header->code_size) {
2937                                         tblock = cfg->cil_offset_to_bb [ec->handler_offset + ec->handler_len];
2938                                         if (tblock->native_offset) {
2939                                                 end_offset = tblock->native_offset;
2940                                         } else {
2941                                                 int j, end;
2942
2943                                                 for (j = ec->handler_offset + ec->handler_len, end = ec->handler_offset; j >= end; --j) {
2944                                                         MonoBasicBlock *bb = cfg->cil_offset_to_bb [j];
2945                                                         if (bb && bb->native_offset) {
2946                                                                 tblock = bb;
2947                                                                 break;
2948                                                         }
2949                                                 }
2950                                                 end_offset = tblock->native_offset +  tblock->native_length;
2951                                         }
2952                                 } else {
2953                                         end_offset = cfg->epilog_begin;
2954                                 }
2955                                 ei->data.handler_end = cfg->native_code + end_offset;
2956                         }
2957                 }
2958         }
2959
2960         if (G_UNLIKELY (cfg->verbose_level >= 4)) {
2961                 int i;
2962                 for (i = 0; i < jinfo->num_clauses; i++) {
2963                         MonoJitExceptionInfo *ei = &jinfo->clauses [i];
2964                         int start = (guint8*)ei->try_start - cfg->native_code;
2965                         int end = (guint8*)ei->try_end - cfg->native_code;
2966                         int handler = (guint8*)ei->handler_start - cfg->native_code;
2967                         int handler_end = (guint8*)ei->data.handler_end - cfg->native_code;
2968
2969                         printf ("JitInfo EH clause %d flags %x try %x-%x handler %x-%x\n", i, ei->flags, start, end, handler, handler_end);
2970                 }
2971         }
2972
2973         if (cfg->encoded_unwind_ops) {
2974                 /* Generated by LLVM */
2975                 jinfo->unwind_info = mono_cache_unwind_info (cfg->encoded_unwind_ops, cfg->encoded_unwind_ops_len);
2976                 g_free (cfg->encoded_unwind_ops);
2977         } else if (cfg->unwind_ops) {
2978                 guint32 info_len;
2979                 guint8 *unwind_info = mono_unwind_ops_encode (cfg->unwind_ops, &info_len);
2980                 guint32 unwind_desc;
2981
2982                 unwind_desc = mono_cache_unwind_info (unwind_info, info_len);
2983
2984                 if (cfg->has_unwind_info_for_epilog) {
2985                         MonoArchEHJitInfo *info;
2986
2987                         info = mono_jit_info_get_arch_eh_info (jinfo);
2988                         g_assert (info);
2989                         info->epilog_size = cfg->code_len - cfg->epilog_begin;
2990                 }
2991                 jinfo->unwind_info = unwind_desc;
2992                 g_free (unwind_info);
2993         } else {
2994                 jinfo->unwind_info = cfg->used_int_regs;
2995         }
2996
2997         return jinfo;
2998 }
2999 #endif
3000
3001 /* Return whenever METHOD is a gsharedvt method */
3002 static gboolean
3003 is_gsharedvt_method (MonoMethod *method)
3004 {
3005         MonoGenericContext *context;
3006         MonoGenericInst *inst;
3007         int i;
3008
3009         if (!method->is_inflated)
3010                 return FALSE;
3011         context = mono_method_get_context (method);
3012         inst = context->class_inst;
3013         if (inst) {
3014                 for (i = 0; i < inst->type_argc; ++i)
3015                         if (mini_is_gsharedvt_gparam (inst->type_argv [i]))
3016                                 return TRUE;
3017         }
3018         inst = context->method_inst;
3019         if (inst) {
3020                 for (i = 0; i < inst->type_argc; ++i)
3021                         if (mini_is_gsharedvt_gparam (inst->type_argv [i]))
3022                                 return TRUE;
3023         }
3024         return FALSE;
3025 }
3026
3027 static gboolean
3028 is_open_method (MonoMethod *method)
3029 {
3030         MonoGenericContext *context;
3031
3032         if (!method->is_inflated)
3033                 return FALSE;
3034         context = mono_method_get_context (method);
3035         if (context->class_inst && context->class_inst->is_open)
3036                 return TRUE;
3037         if (context->method_inst && context->method_inst->is_open)
3038                 return TRUE;
3039         return FALSE;
3040 }
3041
3042 #ifndef DISABLE_JIT
3043
3044 #if defined(__native_client_codegen__) || USE_COOP_GC
3045
3046 static void
3047 mono_create_gc_safepoint (MonoCompile *cfg, MonoBasicBlock *bblock)
3048 {
3049         MonoInst *poll_addr, *ins;
3050         if (cfg->verbose_level > 1)
3051                 printf ("ADDING SAFE POINT TO BB %d\n", bblock->block_num);
3052
3053 #if defined(__native_client_codegen__)
3054         NEW_AOTCONST (cfg, poll_addr, MONO_PATCH_INFO_GC_SAFE_POINT_FLAG, (gpointer)&__nacl_thread_suspension_needed);
3055 #else
3056         NEW_AOTCONST (cfg, poll_addr, MONO_PATCH_INFO_GC_SAFE_POINT_FLAG, (gpointer)&mono_polling_required);
3057 #endif
3058
3059         MONO_INST_NEW (cfg, ins, OP_GC_SAFE_POINT);
3060         ins->sreg1 = poll_addr->dreg;
3061
3062          if (bblock->flags & BB_EXCEPTION_HANDLER) {
3063                 MonoInst *eh_op = bblock->code;
3064
3065                 if (eh_op && eh_op->opcode != OP_START_HANDLER && eh_op->opcode != OP_GET_EX_OBJ) {
3066                         eh_op = NULL;
3067                 } else {
3068                         MonoInst *next_eh_op = eh_op ? eh_op->next : NULL;
3069                         // skip all EH relateds ops
3070                         while (next_eh_op && (next_eh_op->opcode == OP_START_HANDLER || next_eh_op->opcode == OP_GET_EX_OBJ)) {
3071                                 eh_op = next_eh_op;
3072                                 next_eh_op = eh_op->next;
3073                         }
3074                 }
3075
3076                 mono_bblock_insert_after_ins (bblock, eh_op, poll_addr);
3077                 mono_bblock_insert_after_ins (bblock, poll_addr, ins);
3078         } else if (bblock == cfg->bb_entry) {
3079                 mono_bblock_insert_after_ins (bblock, bblock->last_ins, poll_addr);
3080                 mono_bblock_insert_after_ins (bblock, poll_addr, ins);
3081
3082         } else {
3083                 mono_bblock_insert_before_ins (bblock, NULL, poll_addr);
3084                 mono_bblock_insert_after_ins (bblock, poll_addr, ins);
3085         }
3086 }
3087
3088 /*
3089 This code inserts safepoints into managed code at important code paths.
3090 Those are:
3091
3092 -the first basic block
3093 -landing BB for exception handlers
3094 -loop body starts.
3095
3096 */
3097 static void
3098 mono_insert_safepoints (MonoCompile *cfg)
3099 {
3100         MonoBasicBlock *bb;
3101
3102         if (cfg->verbose_level > 1)
3103                 printf ("INSERTING SAFEPOINTS\n");
3104         if (cfg->verbose_level > 2)
3105                 mono_print_code (cfg, "BEFORE SAFEPOINTS");
3106
3107         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
3108                 if (bb->loop_body_start || bb == cfg->bb_entry || bb->flags & BB_EXCEPTION_HANDLER)
3109                         mono_create_gc_safepoint (cfg, bb);
3110         }
3111
3112         if (cfg->verbose_level > 2)
3113                 mono_print_code (cfg, "AFTER SAFEPOINTS");
3114
3115 }
3116
3117 #else
3118
3119 static void
3120 mono_insert_safepoints (MonoCompile *cfg)
3121 {
3122 }
3123
3124 #endif
3125
3126 /*
3127  * mini_method_compile:
3128  * @method: the method to compile
3129  * @opts: the optimization flags to use
3130  * @domain: the domain where the method will be compiled in
3131  * @flags: compilation flags
3132  * @parts: debug flag
3133  *
3134  * Returns: a MonoCompile* pointer. Caller must check the exception_type
3135  * field in the returned struct to see if compilation succeded.
3136  */
3137 MonoCompile*
3138 mini_method_compile (MonoMethod *method, guint32 opts, MonoDomain *domain, JitFlags flags, int parts, int aot_method_index)
3139 {
3140         MonoMethodHeader *header;
3141         MonoMethodSignature *sig;
3142         MonoError err;
3143         MonoCompile *cfg;
3144         int dfn, i, code_size_ratio;
3145         gboolean try_generic_shared, try_llvm = FALSE;
3146         MonoMethod *method_to_compile, *method_to_register;
3147         gboolean method_is_gshared = FALSE;
3148         gboolean run_cctors = (flags & JIT_FLAG_RUN_CCTORS) ? 1 : 0;
3149         gboolean compile_aot = (flags & JIT_FLAG_AOT) ? 1 : 0;
3150         gboolean full_aot = (flags & JIT_FLAG_FULL_AOT) ? 1 : 0;
3151         gboolean disable_direct_icalls = (flags & JIT_FLAG_NO_DIRECT_ICALLS) ? 1 : 0;
3152         gboolean gsharedvt_method = FALSE;
3153 #ifdef ENABLE_LLVM
3154         gboolean llvm = (flags & JIT_FLAG_LLVM) ? 1 : 0;
3155 #endif
3156         static gboolean verbose_method_inited;
3157         static const char *verbose_method_name;
3158
3159         InterlockedIncrement (&mono_jit_stats.methods_compiled);
3160         if (mono_profiler_get_events () & MONO_PROFILE_JIT_COMPILATION)
3161                 mono_profiler_method_jit (method);
3162         if (MONO_METHOD_COMPILE_BEGIN_ENABLED ())
3163                 MONO_PROBE_METHOD_COMPILE_BEGIN (method);
3164
3165         gsharedvt_method = is_gsharedvt_method (method);
3166
3167         /*
3168          * In AOT mode, method can be the following:
3169          * - a gsharedvt method.
3170          * - a method inflated with type parameters. This is for ref/partial sharing.
3171          * - a method inflated with concrete types.
3172          */
3173         if (compile_aot) {
3174                 if (is_open_method (method)) {
3175                         try_generic_shared = TRUE;
3176                         method_is_gshared = TRUE;
3177                 } else {
3178                         try_generic_shared = FALSE;
3179                 }
3180                 g_assert (opts & MONO_OPT_GSHARED);
3181         } else {
3182                 try_generic_shared = mono_class_generic_sharing_enabled (method->klass) &&
3183                         (opts & MONO_OPT_GSHARED) && mono_method_is_generic_sharable (method, FALSE);
3184                 if (mini_is_gsharedvt_sharable_method (method)) {
3185                         if (!mono_debug_count ())
3186                                 try_generic_shared = FALSE;
3187                 }
3188         }
3189
3190         /*
3191         if (try_generic_shared && !mono_debug_count ())
3192                 try_generic_shared = FALSE;
3193         */
3194
3195         if (opts & MONO_OPT_GSHARED) {
3196                 if (try_generic_shared)
3197                         mono_stats.generics_sharable_methods++;
3198                 else if (mono_method_is_generic_impl (method))
3199                         mono_stats.generics_unsharable_methods++;
3200         }
3201
3202 #ifdef ENABLE_LLVM
3203         try_llvm = mono_use_llvm || llvm;
3204 #endif
3205
3206  restart_compile:
3207         if (method_is_gshared) {
3208                 method_to_compile = method;
3209         } else {
3210                 if (try_generic_shared) {
3211                         method_to_compile = mini_get_shared_method (method);
3212                         g_assert (method_to_compile);
3213                 } else {
3214                         method_to_compile = method;
3215                 }
3216         }
3217
3218         cfg = g_new0 (MonoCompile, 1);
3219         cfg->method = method_to_compile;
3220         cfg->header = mono_method_get_header (cfg->method);
3221         cfg->mempool = mono_mempool_new ();
3222         cfg->opt = opts;
3223         cfg->prof_options = mono_profiler_get_events ();
3224         cfg->run_cctors = run_cctors;
3225         cfg->domain = domain;
3226         cfg->verbose_level = mini_verbose;
3227         cfg->compile_aot = compile_aot;
3228         cfg->full_aot = full_aot;
3229         cfg->skip_visibility = method->skip_visibility;
3230         cfg->orig_method = method;
3231         cfg->gen_seq_points = debug_options.gen_seq_points_compact_data || debug_options.gen_sdb_seq_points;
3232         cfg->gen_sdb_seq_points = debug_options.gen_sdb_seq_points;
3233         cfg->flags = flags;
3234
3235 #ifdef PLATFORM_ANDROID
3236         if (cfg->method->wrapper_type != MONO_WRAPPER_NONE) {
3237                 /* FIXME: Why is this needed */
3238                 cfg->gen_seq_points = FALSE;
3239                 cfg->gen_sdb_seq_points = FALSE;
3240         }
3241 #endif
3242         /* coop / nacl requires loop detection to happen */
3243 #if defined(__native_client_codegen__) || defined(USE_COOP_GC)
3244         cfg->opt |= MONO_OPT_LOOP;
3245 #endif
3246
3247         cfg->explicit_null_checks = debug_options.explicit_null_checks;
3248         cfg->soft_breakpoints = debug_options.soft_breakpoints;
3249         cfg->check_pinvoke_callconv = debug_options.check_pinvoke_callconv;
3250         cfg->disable_direct_icalls = disable_direct_icalls;
3251         if (try_generic_shared)
3252                 cfg->generic_sharing_context = (MonoGenericSharingContext*)&cfg->gsctx;
3253         cfg->compile_llvm = try_llvm;
3254         cfg->token_info_hash = g_hash_table_new (NULL, NULL);
3255         if (cfg->compile_aot)
3256                 cfg->method_index = aot_method_index;
3257
3258         if (!mono_debug_count ())
3259                 cfg->opt &= ~MONO_OPT_FLOAT32;
3260         cfg->r4fp = (cfg->opt & MONO_OPT_FLOAT32) ? 1 : 0;
3261         cfg->r4_stack_type = cfg->r4fp ? STACK_R4 : STACK_R8;
3262
3263         if (cfg->gen_seq_points)
3264                 cfg->seq_points = g_ptr_array_new ();
3265         mono_error_init (&cfg->error);
3266
3267         if (cfg->compile_aot && !try_generic_shared && (method->is_generic || method->klass->generic_container || method_is_gshared)) {
3268                 cfg->exception_type = MONO_EXCEPTION_GENERIC_SHARING_FAILED;
3269                 return cfg;
3270         }
3271
3272         if (cfg->generic_sharing_context && (gsharedvt_method || mini_is_gsharedvt_sharable_method (method))) {
3273                 MonoMethodInflated *inflated;
3274                 MonoGenericContext *context;
3275
3276                 if (gsharedvt_method) {
3277                         g_assert (method->is_inflated);
3278                         inflated = (MonoMethodInflated*)method;
3279                         context = &inflated->context;
3280
3281                         /* We are compiling a gsharedvt method directly */
3282                         g_assert (compile_aot);
3283                 } else {
3284                         g_assert (method_to_compile->is_inflated);
3285                         inflated = (MonoMethodInflated*)method_to_compile;
3286                         context = &inflated->context;
3287                 }
3288
3289                 mini_init_gsctx (NULL, cfg->mempool, context, &cfg->gsctx);
3290                 cfg->gsctx_context = context;
3291
3292                 cfg->gsharedvt = TRUE;
3293                 // FIXME:
3294                 cfg->disable_llvm = TRUE;
3295         }
3296
3297         if (cfg->generic_sharing_context) {
3298                 method_to_register = method_to_compile;
3299                 cfg->gshared = TRUE;
3300         } else {
3301                 g_assert (method == method_to_compile);
3302                 method_to_register = method;
3303         }
3304         cfg->method_to_register = method_to_register;
3305
3306         mono_error_init (&err);
3307         sig = mono_method_signature_checked (cfg->method, &err);        
3308         if (!sig) {
3309                 cfg->exception_type = MONO_EXCEPTION_TYPE_LOAD;
3310                 cfg->exception_message = g_strdup (mono_error_get_message (&err));
3311                 mono_error_cleanup (&err);
3312                 if (MONO_METHOD_COMPILE_END_ENABLED ())
3313                         MONO_PROBE_METHOD_COMPILE_END (method, FALSE);
3314                 return cfg;
3315         }
3316
3317         header = cfg->header;
3318         if (!header) {
3319                 MonoLoaderError *error;
3320
3321                 if ((error = mono_loader_get_last_error ())) {
3322                         cfg->exception_type = error->exception_type;
3323                 } else {
3324                         cfg->exception_type = MONO_EXCEPTION_INVALID_PROGRAM;
3325                         cfg->exception_message = g_strdup_printf ("Missing or incorrect header for method %s", cfg->method->name);
3326                 }
3327                 if (MONO_METHOD_COMPILE_END_ENABLED ())
3328                         MONO_PROBE_METHOD_COMPILE_END (method, FALSE);
3329                 return cfg;
3330         }
3331
3332 #ifdef ENABLE_LLVM
3333         {
3334                 static gboolean inited;
3335
3336                 if (!inited)
3337                         inited = TRUE;
3338
3339                 /* 
3340                  * Check for methods which cannot be compiled by LLVM early, to avoid
3341                  * the extra compilation pass.
3342                  */
3343                 if (COMPILE_LLVM (cfg)) {
3344                         mono_llvm_check_method_supported (cfg);
3345                         if (cfg->disable_llvm) {
3346                                 if (cfg->verbose_level >= 1) {
3347                                         //nm = mono_method_full_name (cfg->method, TRUE);
3348                                         printf ("LLVM failed for '%s': %s\n", method->name, cfg->exception_message);
3349                                         //g_free (nm);
3350                                 }
3351                                 mono_destroy_compile (cfg);
3352                                 try_llvm = FALSE;
3353                                 goto restart_compile;
3354                         }
3355                 }
3356         }
3357 #endif
3358
3359         /* The debugger has no liveness information, so avoid sharing registers/stack slots */
3360         if (debug_options.mdb_optimizations) {
3361                 cfg->disable_reuse_registers = TRUE;
3362                 cfg->disable_reuse_stack_slots = TRUE;
3363                 /* 
3364                  * This decreases the change the debugger will read registers/stack slots which are
3365                  * not yet initialized.
3366                  */
3367                 cfg->disable_initlocals_opt = TRUE;
3368
3369                 cfg->extend_live_ranges = TRUE;
3370
3371                 /* Temporarily disable this when running in the debugger until we have support
3372                  * for this in the debugger. */
3373                 /* This is no longer needed with sdb */
3374                 //cfg->disable_omit_fp = TRUE;
3375
3376                 /* The debugger needs all locals to be on the stack or in a global register */
3377                 cfg->disable_vreg_to_lvreg = TRUE;
3378
3379                 /* Don't remove unused variables when running inside the debugger since the user
3380                  * may still want to view them. */
3381                 cfg->disable_deadce_vars = TRUE;
3382
3383                 // cfg->opt |= MONO_OPT_SHARED;
3384                 cfg->opt &= ~MONO_OPT_DEADCE;
3385                 cfg->opt &= ~MONO_OPT_INLINE;
3386                 cfg->opt &= ~MONO_OPT_COPYPROP;
3387                 cfg->opt &= ~MONO_OPT_CONSPROP;
3388                 /* This is no longer needed with sdb */
3389                 //cfg->opt &= ~MONO_OPT_GSHARED;
3390
3391                 /* This is needed for the soft debugger, which doesn't like code after the epilog */
3392                 cfg->disable_out_of_line_bblocks = TRUE;
3393         }
3394
3395         if (mono_using_xdebug) {
3396                 /* 
3397                  * Make each variable use its own register/stack slot and extend 
3398                  * their liveness to cover the whole method, making them displayable
3399                  * in gdb even after they are dead.
3400                  */
3401                 cfg->disable_reuse_registers = TRUE;
3402                 cfg->disable_reuse_stack_slots = TRUE;
3403                 cfg->extend_live_ranges = TRUE;
3404                 cfg->compute_precise_live_ranges = TRUE;
3405         }
3406
3407         mini_gc_init_cfg (cfg);
3408
3409         if (COMPILE_LLVM (cfg)) {
3410                 cfg->opt |= MONO_OPT_ABCREM;
3411         }
3412
3413         if (!verbose_method_inited) {
3414                 verbose_method_name = g_getenv ("MONO_VERBOSE_METHOD");
3415                 verbose_method_inited = TRUE;
3416         }
3417         if (verbose_method_name) {
3418                 const char *name = verbose_method_name;
3419
3420                 if ((strchr (name, '.') > name) || strchr (name, ':')) {
3421                         MonoMethodDesc *desc;
3422                         
3423                         desc = mono_method_desc_new (name, TRUE);
3424                         if (mono_method_desc_full_match (desc, cfg->method)) {
3425                                 cfg->verbose_level = 4;
3426                         }
3427                         mono_method_desc_free (desc);
3428                 } else {
3429                         if (strcmp (cfg->method->name, name) == 0)
3430                                 cfg->verbose_level = 4;
3431                 }
3432         }
3433
3434         cfg->intvars = mono_mempool_alloc0 (cfg->mempool, sizeof (guint16) * STACK_MAX * header->max_stack);
3435
3436         if (cfg->verbose_level > 0) {
3437                 char *method_name;
3438
3439                 method_name = mono_method_full_name (method, TRUE);
3440                 g_print ("converting %s%s%smethod %s\n", COMPILE_LLVM (cfg) ? "llvm " : "", cfg->gsharedvt ? "gsharedvt " : "", (cfg->generic_sharing_context && !cfg->gsharedvt) ? "gshared " : "", method_name);
3441                 /*
3442                 if (COMPILE_LLVM (cfg))
3443                         g_print ("converting llvm method %s\n", method_name = mono_method_full_name (method, TRUE));
3444                 else if (cfg->gsharedvt)
3445                         g_print ("converting gsharedvt method %s\n", method_name = mono_method_full_name (method_to_compile, TRUE));
3446                 else if (cfg->generic_sharing_context)
3447                         g_print ("converting shared method %s\n", method_name = mono_method_full_name (method_to_compile, TRUE));
3448                 else
3449                         g_print ("converting method %s\n", method_name = mono_method_full_name (method, TRUE));
3450                 */
3451                 g_free (method_name);
3452         }
3453
3454         if (cfg->opt & MONO_OPT_ABCREM)
3455                 cfg->opt |= MONO_OPT_SSA;
3456
3457         cfg->rs = mono_regstate_new ();
3458         cfg->next_vreg = cfg->rs->next_vreg;
3459
3460         /* FIXME: Fix SSA to handle branches inside bblocks */
3461         if (cfg->opt & MONO_OPT_SSA)
3462                 cfg->enable_extended_bblocks = FALSE;
3463
3464         /*
3465          * FIXME: This confuses liveness analysis because variables which are assigned after
3466          * a branch inside a bblock become part of the kill set, even though the assignment
3467          * might not get executed. This causes the optimize_initlocals pass to delete some
3468          * assignments which are needed.
3469          * Also, the mono_if_conversion pass needs to be modified to recognize the code
3470          * created by this.
3471          */
3472         //cfg->enable_extended_bblocks = TRUE;
3473
3474         /*We must verify the method before doing any IR generation as mono_compile_create_vars can assert.*/
3475         if (mono_compile_is_broken (cfg, cfg->method, TRUE)) {
3476                 if (mini_get_debug_options ()->break_on_unverified)
3477                         G_BREAKPOINT ();
3478                 return cfg;
3479         }
3480
3481         /*
3482          * create MonoInst* which represents arguments and local variables
3483          */
3484         mono_compile_create_vars (cfg);
3485
3486         i = mono_method_to_ir (cfg, method_to_compile, NULL, NULL, NULL, NULL, 0, FALSE);
3487
3488         if (i < 0) {
3489                 if (try_generic_shared && cfg->exception_type == MONO_EXCEPTION_GENERIC_SHARING_FAILED) {
3490                         if (compile_aot) {
3491                                 if (MONO_METHOD_COMPILE_END_ENABLED ())
3492                                         MONO_PROBE_METHOD_COMPILE_END (method, FALSE);
3493                                 return cfg;
3494                         }
3495                         mono_destroy_compile (cfg);
3496                         try_generic_shared = FALSE;
3497                         goto restart_compile;
3498                 }
3499                 g_assert (cfg->exception_type != MONO_EXCEPTION_GENERIC_SHARING_FAILED);
3500
3501                 if (MONO_METHOD_COMPILE_END_ENABLED ())
3502                         MONO_PROBE_METHOD_COMPILE_END (method, FALSE);
3503                 /* cfg contains the details of the failure, so let the caller cleanup */
3504                 return cfg;
3505         }
3506
3507         cfg->stat_basic_blocks += cfg->num_bblocks;
3508
3509         if (COMPILE_LLVM (cfg)) {
3510                 MonoInst *ins;
3511
3512                 /* The IR has to be in SSA form for LLVM */
3513                 cfg->opt |= MONO_OPT_SSA;
3514
3515                 // FIXME:
3516                 if (cfg->ret) {
3517                         // Allow SSA on the result value
3518                         cfg->ret->flags &= ~MONO_INST_VOLATILE;
3519
3520                         // Add an explicit return instruction referencing the return value
3521                         MONO_INST_NEW (cfg, ins, OP_SETRET);
3522                         ins->sreg1 = cfg->ret->dreg;
3523
3524                         MONO_ADD_INS (cfg->bb_exit, ins);
3525                 }
3526
3527                 cfg->opt &= ~MONO_OPT_LINEARS;
3528
3529                 /* FIXME: */
3530                 cfg->opt &= ~MONO_OPT_BRANCH;
3531         }
3532
3533         /* todo: remove code when we have verified that the liveness for try/catch blocks
3534          * works perfectly 
3535          */
3536         /* 
3537          * Currently, this can't be commented out since exception blocks are not
3538          * processed during liveness analysis.
3539          * It is also needed, because otherwise the local optimization passes would
3540          * delete assignments in cases like this:
3541          * r1 <- 1
3542          * <something which throws>
3543          * r1 <- 2
3544          * This also allows SSA to be run on methods containing exception clauses, since
3545          * SSA will ignore variables marked VOLATILE.
3546          */
3547         mono_liveness_handle_exception_clauses (cfg);
3548
3549         mono_handle_out_of_line_bblock (cfg);
3550
3551         /*g_print ("numblocks = %d\n", cfg->num_bblocks);*/
3552
3553         if (!COMPILE_LLVM (cfg))
3554                 mono_decompose_long_opts (cfg);
3555
3556         /* Should be done before branch opts */
3557         if (cfg->opt & (MONO_OPT_CONSPROP | MONO_OPT_COPYPROP))
3558                 mono_local_cprop (cfg);
3559
3560         if (cfg->opt & MONO_OPT_BRANCH)
3561                 mono_optimize_branches (cfg);
3562
3563         /* This must be done _before_ global reg alloc and _after_ decompose */
3564         mono_handle_global_vregs (cfg);
3565         if (cfg->opt & MONO_OPT_DEADCE)
3566                 mono_local_deadce (cfg);
3567         if (cfg->opt & MONO_OPT_ALIAS_ANALYSIS)
3568                 mono_local_alias_analysis (cfg);
3569         /* Disable this for LLVM to make the IR easier to handle */
3570         if (!COMPILE_LLVM (cfg))
3571                 mono_if_conversion (cfg);
3572
3573         /* Depth-first ordering on basic blocks */
3574         cfg->bblocks = mono_mempool_alloc (cfg->mempool, sizeof (MonoBasicBlock*) * (cfg->num_bblocks + 1));
3575
3576         cfg->max_block_num = cfg->num_bblocks;
3577
3578         dfn = 0;
3579         df_visit (cfg->bb_entry, &dfn, cfg->bblocks);
3580         if (cfg->num_bblocks != dfn + 1) {
3581                 MonoBasicBlock *bb;
3582
3583                 cfg->num_bblocks = dfn + 1;
3584
3585                 /* remove unreachable code, because the code in them may be 
3586                  * inconsistent  (access to dead variables for example) */
3587                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb)
3588                         bb->flags &= ~BB_VISITED;
3589                 compute_reachable (cfg->bb_entry);
3590                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb)
3591                         if (bb->flags & BB_EXCEPTION_HANDLER)
3592                                 compute_reachable (bb);
3593                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
3594                         if (!(bb->flags & BB_VISITED)) {
3595                                 if (cfg->verbose_level > 1)
3596                                         g_print ("found unreachable code in BB%d\n", bb->block_num);
3597                                 bb->code = bb->last_ins = NULL;
3598                                 while (bb->out_count)
3599                                         mono_unlink_bblock (cfg, bb, bb->out_bb [0]);
3600                         }
3601                 }
3602                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb)
3603                         bb->flags &= ~BB_VISITED;
3604         }
3605
3606         if (((cfg->num_varinfo > 2000) || (cfg->num_bblocks > 1000)) && !cfg->compile_aot) {
3607                 /* 
3608                  * we disable some optimizations if there are too many variables
3609                  * because JIT time may become too expensive. The actual number needs 
3610                  * to be tweaked and eventually the non-linear algorithms should be fixed.
3611                  */
3612                 cfg->opt &= ~ (MONO_OPT_LINEARS | MONO_OPT_COPYPROP | MONO_OPT_CONSPROP);
3613                 cfg->disable_ssa = TRUE;
3614         }
3615
3616         if (cfg->opt & MONO_OPT_LOOP) {
3617                 mono_compile_dominator_info (cfg, MONO_COMP_DOM | MONO_COMP_IDOM);
3618                 mono_compute_natural_loops (cfg);
3619         }
3620
3621         mono_insert_safepoints (cfg);
3622
3623         /* after method_to_ir */
3624         if (parts == 1) {
3625                 if (MONO_METHOD_COMPILE_END_ENABLED ())
3626                         MONO_PROBE_METHOD_COMPILE_END (method, TRUE);
3627                 return cfg;
3628         }
3629
3630         /*
3631           if (header->num_clauses)
3632           cfg->disable_ssa = TRUE;
3633         */
3634
3635 //#define DEBUGSSA "logic_run"
3636 //#define DEBUGSSA_CLASS "Tests"
3637 #ifdef DEBUGSSA
3638
3639         if (!cfg->disable_ssa) {
3640                 mono_local_cprop (cfg);
3641
3642 #ifndef DISABLE_SSA
3643                 mono_ssa_compute (cfg);
3644 #endif
3645         }
3646 #else 
3647         if (cfg->opt & MONO_OPT_SSA) {
3648                 if (!(cfg->comp_done & MONO_COMP_SSA) && !cfg->disable_ssa) {
3649 #ifndef DISABLE_SSA
3650                         mono_ssa_compute (cfg);
3651 #endif
3652
3653                         if (cfg->verbose_level >= 2) {
3654                                 print_dfn (cfg);
3655                         }
3656                 }
3657         }
3658 #endif
3659
3660         /* after SSA translation */
3661         if (parts == 2) {
3662                 if (MONO_METHOD_COMPILE_END_ENABLED ())
3663                         MONO_PROBE_METHOD_COMPILE_END (method, TRUE);
3664                 return cfg;
3665         }
3666
3667         if ((cfg->opt & MONO_OPT_CONSPROP) || (cfg->opt & MONO_OPT_COPYPROP)) {
3668                 if (cfg->comp_done & MONO_COMP_SSA && !COMPILE_LLVM (cfg)) {
3669 #ifndef DISABLE_SSA
3670                         mono_ssa_cprop (cfg);
3671 #endif
3672                 }
3673         }
3674
3675 #ifndef DISABLE_SSA
3676         if (cfg->comp_done & MONO_COMP_SSA && !COMPILE_LLVM (cfg)) {
3677                 //mono_ssa_strength_reduction (cfg);
3678
3679                 if (cfg->opt & MONO_OPT_DEADCE)
3680                         mono_ssa_deadce (cfg);
3681
3682                 if ((cfg->flags & (MONO_CFG_HAS_LDELEMA|MONO_CFG_HAS_CHECK_THIS)) && (cfg->opt & MONO_OPT_ABCREM))
3683                         mono_perform_abc_removal (cfg);
3684
3685                 mono_ssa_remove (cfg);
3686                 mono_local_cprop (cfg);
3687                 mono_handle_global_vregs (cfg);
3688                 if (cfg->opt & MONO_OPT_DEADCE)
3689                         mono_local_deadce (cfg);
3690
3691                 if (cfg->opt & MONO_OPT_BRANCH)
3692                         mono_optimize_branches (cfg);
3693         }
3694 #endif
3695
3696         if (cfg->comp_done & MONO_COMP_SSA && COMPILE_LLVM (cfg)) {
3697                 mono_ssa_loop_invariant_code_motion (cfg);
3698                 /* This removes MONO_INST_FAULT flags too so perform it unconditionally */
3699                 if (cfg->opt & MONO_OPT_ABCREM)
3700                         mono_perform_abc_removal (cfg);
3701         }
3702
3703         /* after SSA removal */
3704         if (parts == 3) {
3705                 if (MONO_METHOD_COMPILE_END_ENABLED ())
3706                         MONO_PROBE_METHOD_COMPILE_END (method, TRUE);
3707                 return cfg;
3708         }
3709
3710 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
3711         if (COMPILE_SOFT_FLOAT (cfg))
3712                 mono_decompose_soft_float (cfg);
3713 #endif
3714         if (COMPILE_LLVM (cfg))
3715                 mono_decompose_vtype_opts_llvm (cfg);
3716         else
3717                 mono_decompose_vtype_opts (cfg);
3718         if (cfg->flags & MONO_CFG_HAS_ARRAY_ACCESS)
3719                 mono_decompose_array_access_opts (cfg);
3720
3721         if (cfg->got_var) {
3722 #ifndef MONO_ARCH_GOT_REG
3723                 GList *regs;
3724 #endif
3725                 int got_reg;
3726
3727                 g_assert (cfg->got_var_allocated);
3728
3729                 /* 
3730                  * Allways allocate the GOT var to a register, because keeping it
3731                  * in memory will increase the number of live temporaries in some
3732                  * code created by inssel.brg, leading to the well known spills+
3733                  * branches problem. Testcase: mcs crash in 
3734                  * System.MonoCustomAttrs:GetCustomAttributes.
3735                  */
3736 #ifdef MONO_ARCH_GOT_REG
3737                 got_reg = MONO_ARCH_GOT_REG;
3738 #else
3739                 regs = mono_arch_get_global_int_regs (cfg);
3740                 g_assert (regs);
3741                 got_reg = GPOINTER_TO_INT (regs->data);
3742                 g_list_free (regs);
3743 #endif
3744                 cfg->got_var->opcode = OP_REGVAR;
3745                 cfg->got_var->dreg = got_reg;
3746                 cfg->used_int_regs |= 1LL << cfg->got_var->dreg;
3747         }
3748
3749         /*
3750          * Have to call this again to process variables added since the first call.
3751          */
3752         mono_liveness_handle_exception_clauses (cfg);
3753
3754         if (cfg->opt & MONO_OPT_LINEARS) {
3755                 GList *vars, *regs, *l;
3756                 
3757                 /* fixme: maybe we can avoid to compute livenesss here if already computed ? */
3758                 cfg->comp_done &= ~MONO_COMP_LIVENESS;
3759                 if (!(cfg->comp_done & MONO_COMP_LIVENESS))
3760                         mono_analyze_liveness (cfg);
3761
3762                 if ((vars = mono_arch_get_allocatable_int_vars (cfg))) {
3763                         regs = mono_arch_get_global_int_regs (cfg);
3764                         /* Remove the reg reserved for holding the GOT address */
3765                         if (cfg->got_var) {
3766                                 for (l = regs; l; l = l->next) {
3767                                         if (GPOINTER_TO_UINT (l->data) == cfg->got_var->dreg) {
3768                                                 regs = g_list_delete_link (regs, l);
3769                                                 break;
3770                                         }
3771                                 }
3772                         }
3773                         mono_linear_scan (cfg, vars, regs, &cfg->used_int_regs);
3774                 }
3775         }
3776
3777         //mono_print_code (cfg, "");
3778
3779     //print_dfn (cfg);
3780         
3781         /* variables are allocated after decompose, since decompose could create temps */
3782         if (!COMPILE_LLVM (cfg)) {
3783                 mono_arch_allocate_vars (cfg);
3784                 if (cfg->exception_type)
3785                         return cfg;
3786         }
3787
3788         {
3789                 MonoBasicBlock *bb;
3790                 gboolean need_local_opts;
3791
3792                 if (!COMPILE_LLVM (cfg)) {
3793                         mono_spill_global_vars (cfg, &need_local_opts);
3794
3795                         if (need_local_opts || cfg->compile_aot) {
3796                                 /* To optimize code created by spill_global_vars */
3797                                 mono_local_cprop (cfg);
3798                                 if (cfg->opt & MONO_OPT_DEADCE)
3799                                         mono_local_deadce (cfg);
3800                         }
3801                 }
3802
3803                 /* Add branches between non-consecutive bblocks */
3804                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
3805                         if (bb->last_ins && MONO_IS_COND_BRANCH_OP (bb->last_ins) &&
3806                                 bb->last_ins->inst_false_bb && bb->next_bb != bb->last_ins->inst_false_bb) {
3807                                 /* we are careful when inverting, since bugs like #59580
3808                                  * could show up when dealing with NaNs.
3809                                  */
3810                                 if (MONO_IS_COND_BRANCH_NOFP(bb->last_ins) && bb->next_bb == bb->last_ins->inst_true_bb) {
3811                                         MonoBasicBlock *tmp =  bb->last_ins->inst_true_bb;
3812                                         bb->last_ins->inst_true_bb = bb->last_ins->inst_false_bb;
3813                                         bb->last_ins->inst_false_bb = tmp;
3814
3815                                         bb->last_ins->opcode = mono_reverse_branch_op (bb->last_ins->opcode);
3816                                 } else {                        
3817                                         MonoInst *inst = mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst));
3818                                         inst->opcode = OP_BR;
3819                                         inst->inst_target_bb = bb->last_ins->inst_false_bb;
3820                                         mono_bblock_add_inst (bb, inst);
3821                                 }
3822                         }
3823                 }
3824
3825                 if (cfg->verbose_level >= 4) {
3826                         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
3827                                 MonoInst *tree = bb->code;      
3828                                 g_print ("DUMP BLOCK %d:\n", bb->block_num);
3829                                 if (!tree)
3830                                         continue;
3831                                 for (; tree; tree = tree->next) {
3832                                         mono_print_ins_index (-1, tree);
3833                                 }
3834                         }
3835                 }
3836
3837                 /* FIXME: */
3838                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
3839                         bb->max_vreg = cfg->next_vreg;
3840                 }
3841         }
3842
3843         if (COMPILE_LLVM (cfg)) {
3844 #ifdef ENABLE_LLVM
3845                 char *nm;
3846
3847                 /* The IR has to be in SSA form for LLVM */
3848                 if (!(cfg->comp_done & MONO_COMP_SSA)) {
3849                         cfg->exception_message = g_strdup ("SSA disabled.");
3850                         cfg->disable_llvm = TRUE;
3851                 }
3852
3853                 if (cfg->flags & MONO_CFG_HAS_ARRAY_ACCESS)
3854                         mono_decompose_array_access_opts (cfg);
3855
3856                 if (!cfg->disable_llvm)
3857                         mono_llvm_emit_method (cfg);
3858                 if (cfg->disable_llvm) {
3859                         if (cfg->verbose_level >= 1) {
3860                                 //nm = mono_method_full_name (cfg->method, TRUE);
3861                                 printf ("LLVM failed for '%s': %s\n", method->name, cfg->exception_message);
3862                                 //g_free (nm);
3863                         }
3864                         mono_destroy_compile (cfg);
3865                         try_llvm = FALSE;
3866                         goto restart_compile;
3867                 }
3868
3869                 if (cfg->verbose_level > 0 && !cfg->compile_aot) {
3870                         nm = mono_method_full_name (cfg->method, TRUE);
3871                         g_print ("LLVM Method %s emitted at %p to %p (code length %d) [%s]\n", 
3872                                          nm, 
3873                                          cfg->native_code, cfg->native_code + cfg->code_len, cfg->code_len, cfg->domain->friendly_name);
3874                         g_free (nm);
3875                 }
3876 #endif
3877         } else {
3878                 mono_codegen (cfg);
3879         }
3880
3881         if (COMPILE_LLVM (cfg))
3882                 InterlockedIncrement (&mono_jit_stats.methods_with_llvm);
3883         else
3884                 InterlockedIncrement (&mono_jit_stats.methods_without_llvm);
3885
3886         cfg->jit_info = create_jit_info (cfg, method_to_compile);
3887
3888 #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS
3889         if (cfg->extend_live_ranges) {
3890                 /* Extend live ranges to cover the whole method */
3891                 for (i = 0; i < cfg->num_varinfo; ++i)
3892                         MONO_VARINFO (cfg, i)->live_range_end = cfg->code_len;
3893         }
3894 #endif
3895
3896         if (!cfg->compile_aot)
3897                 mono_save_xdebug_info (cfg);
3898
3899         mini_gc_create_gc_map (cfg);
3900  
3901         mono_save_seq_point_info (cfg);
3902
3903         if (cfg->verbose_level >= 2) {
3904                 char *id =  mono_method_full_name (cfg->method, FALSE);
3905                 mono_disassemble_code (cfg, cfg->native_code, cfg->code_len, id + 3);
3906                 g_free (id);
3907         }
3908
3909         if (!cfg->compile_aot) {
3910                 mono_domain_lock (cfg->domain);
3911                 mono_jit_info_table_add (cfg->domain, cfg->jit_info);
3912
3913                 if (cfg->method->dynamic)
3914                         mono_dynamic_code_hash_lookup (cfg->domain, cfg->method)->ji = cfg->jit_info;
3915                 mono_domain_unlock (cfg->domain);
3916         }
3917
3918 #if 0
3919         if (cfg->gsharedvt)
3920                 printf ("GSHAREDVT: %s\n", mono_method_full_name (cfg->method, TRUE));
3921 #endif
3922
3923         /* collect statistics */
3924 #ifndef DISABLE_PERFCOUNTERS
3925         mono_perfcounters->jit_methods++;
3926         mono_perfcounters->jit_bytes += header->code_size;
3927 #endif
3928         mono_jit_stats.allocated_code_size += cfg->code_len;
3929         code_size_ratio = cfg->code_len;
3930         if (code_size_ratio > mono_jit_stats.biggest_method_size && mono_jit_stats.enabled) {
3931                 mono_jit_stats.biggest_method_size = code_size_ratio;
3932                 g_free (mono_jit_stats.biggest_method);
3933                 mono_jit_stats.biggest_method = g_strdup_printf ("%s::%s)", method->klass->name, method->name);
3934         }
3935         code_size_ratio = (code_size_ratio * 100) / header->code_size;
3936         if (code_size_ratio > mono_jit_stats.max_code_size_ratio && mono_jit_stats.enabled) {
3937                 mono_jit_stats.max_code_size_ratio = code_size_ratio;
3938                 g_free (mono_jit_stats.max_ratio_method);
3939                 mono_jit_stats.max_ratio_method = g_strdup_printf ("%s::%s)", method->klass->name, method->name);
3940         }
3941         mono_jit_stats.native_code_size += cfg->code_len;
3942
3943         if (MONO_METHOD_COMPILE_END_ENABLED ())
3944                 MONO_PROBE_METHOD_COMPILE_END (method, TRUE);
3945
3946         return cfg;
3947 }
3948
3949 #else
3950
3951 MonoCompile*
3952 mini_method_compile (MonoMethod *method, guint32 opts, MonoDomain *domain, JitFlags flags, int parts, int aot_method_index)
3953 {
3954         g_assert_not_reached ();
3955         return NULL;
3956 }
3957
3958 #endif /* DISABLE_JIT */
3959
3960 gpointer
3961 mono_jit_compile_method_inner (MonoMethod *method, MonoDomain *target_domain, int opt, MonoException **jit_ex)
3962 {
3963         MonoCompile *cfg;
3964         gpointer code = NULL;
3965         MonoJitInfo *jinfo, *info;
3966         MonoVTable *vtable;
3967         MonoException *ex = NULL;
3968         guint32 prof_options;
3969         GTimer *jit_timer;
3970         MonoMethod *prof_method, *shared;
3971
3972         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
3973             (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
3974                 MonoMethod *nm;
3975                 MonoMethodPInvoke* piinfo = (MonoMethodPInvoke *) method;
3976
3977                 if (!piinfo->addr) {
3978                         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
3979                                 piinfo->addr = mono_lookup_internal_call (method);
3980                         else if (method->iflags & METHOD_IMPL_ATTRIBUTE_NATIVE)
3981 #ifdef HOST_WIN32
3982                                 g_warning ("Method '%s' in assembly '%s' contains native code that cannot be executed by Mono in modules loaded from byte arrays. The assembly was probably created using C++/CLI.\n", mono_method_full_name (method, TRUE), method->klass->image->name);
3983 #else
3984                                 g_warning ("Method '%s' in assembly '%s' contains native code that cannot be executed by Mono on this platform. The assembly was probably created using C++/CLI.\n", mono_method_full_name (method, TRUE), method->klass->image->name);
3985 #endif
3986                         else
3987                                 mono_lookup_pinvoke_call (method, NULL, NULL);
3988                 }
3989                 nm = mono_marshal_get_native_wrapper (method, check_for_pending_exc, mono_aot_only);
3990                 code = mono_get_addr_from_ftnptr (mono_compile_method (nm));
3991                 jinfo = mono_jit_info_table_find (target_domain, code);
3992                 if (!jinfo)
3993                         jinfo = mono_jit_info_table_find (mono_domain_get (), code);
3994                 if (jinfo)
3995                         mono_profiler_method_end_jit (method, jinfo, MONO_PROFILE_OK);
3996                 return code;
3997         } else if ((method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME)) {
3998                 const char *name = method->name;
3999                 char *full_name, *msg;
4000                 MonoMethod *nm;
4001
4002                 if (method->klass->parent == mono_defaults.multicastdelegate_class) {
4003                         if (*name == '.' && (strcmp (name, ".ctor") == 0)) {
4004                                 MonoJitICallInfo *mi = mono_find_jit_icall_by_name ("mono_delegate_ctor");
4005                                 g_assert (mi);
4006                                 /*
4007                                  * We need to make sure this wrapper
4008                                  * is compiled because it might end up
4009                                  * in an (M)RGCTX if generic sharing
4010                                  * is enabled, and would be called
4011                                  * indirectly.  If it were a
4012                                  * trampoline we'd try to patch that
4013                                  * indirect call, which is not
4014                                  * possible.
4015                                  */
4016                                 return mono_get_addr_from_ftnptr ((gpointer)mono_icall_get_wrapper_full (mi, TRUE));
4017                         } else if (*name == 'I' && (strcmp (name, "Invoke") == 0)) {
4018                                 return mono_create_delegate_trampoline (target_domain, method->klass);
4019                         } else if (*name == 'B' && (strcmp (name, "BeginInvoke") == 0)) {
4020                                 nm = mono_marshal_get_delegate_begin_invoke (method);
4021                                 return mono_get_addr_from_ftnptr (mono_compile_method (nm));
4022                         } else if (*name == 'E' && (strcmp (name, "EndInvoke") == 0)) {
4023                                 nm = mono_marshal_get_delegate_end_invoke (method);
4024                                 return mono_get_addr_from_ftnptr (mono_compile_method (nm));
4025                         }
4026                 }
4027
4028                 full_name = mono_method_full_name (method, TRUE);
4029                 msg = g_strdup_printf ("Unrecognizable runtime implemented method '%s'", full_name);
4030                 *jit_ex = mono_exception_from_name_msg (mono_defaults.corlib, "System", "InvalidProgramException", msg);
4031                 g_free (full_name);
4032                 g_free (msg);
4033                 return NULL;
4034         }
4035
4036         if (method->wrapper_type == MONO_WRAPPER_UNKNOWN) {
4037                 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
4038
4039                 if (info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN || info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT) {
4040                         static MonoTrampInfo *in_tinfo, *out_tinfo;
4041                         MonoTrampInfo *tinfo;
4042                         MonoJitInfo *jinfo;
4043                         gboolean is_in = info->subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN;
4044
4045                         if (is_in && in_tinfo)
4046                                 return in_tinfo->code;
4047                         else if (!is_in && out_tinfo)
4048                                 return out_tinfo->code;
4049
4050                         /*
4051                          * This is a special wrapper whose body is implemented in assembly, like a trampoline. We use a wrapper so EH
4052                          * works.
4053                          * FIXME: The caller signature doesn't match the callee, which might cause problems on some platforms
4054                          */
4055                         if (mono_aot_only)
4056                                 mono_aot_get_trampoline_full (is_in ? "gsharedvt_trampoline" : "gsharedvt_out_trampoline", &tinfo);
4057                         else
4058                                 mono_arch_get_gsharedvt_trampoline (&tinfo, FALSE);
4059                         jinfo = create_jit_info_for_trampoline (method, tinfo);
4060                         mono_jit_info_table_add (mono_get_root_domain (), jinfo);
4061                         if (is_in)
4062                                 in_tinfo = tinfo;
4063                         else
4064                                 out_tinfo = tinfo;
4065                         return tinfo->code;
4066                 }
4067         }
4068
4069         if (mono_aot_only) {
4070                 char *fullname = mono_method_full_name (method, TRUE);
4071                 char *msg = g_strdup_printf ("Attempting to JIT compile method '%s' while running with --aot-only. See http://docs.xamarin.com/ios/about/limitations for more information.\n", fullname);
4072
4073                 *jit_ex = mono_get_exception_execution_engine (msg);
4074                 g_free (fullname);
4075                 g_free (msg);
4076                 
4077                 return NULL;
4078         }
4079
4080         jit_timer = g_timer_new ();
4081
4082         cfg = mini_method_compile (method, opt, target_domain, JIT_FLAG_RUN_CCTORS, 0, -1);
4083         prof_method = cfg->method;
4084
4085         g_timer_stop (jit_timer);
4086         mono_jit_stats.jit_time += g_timer_elapsed (jit_timer, NULL);
4087         g_timer_destroy (jit_timer);
4088
4089         switch (cfg->exception_type) {
4090         case MONO_EXCEPTION_NONE:
4091                 break;
4092         case MONO_EXCEPTION_TYPE_LOAD:
4093         case MONO_EXCEPTION_MISSING_FIELD:
4094         case MONO_EXCEPTION_MISSING_METHOD:
4095         case MONO_EXCEPTION_FILE_NOT_FOUND:
4096         case MONO_EXCEPTION_BAD_IMAGE: {
4097                 /* Throw a type load exception if needed */
4098                 MonoLoaderError *error = mono_loader_get_last_error ();
4099
4100                 if (error) {
4101                         ex = mono_loader_error_prepare_exception (error);
4102                 } else {
4103                         if (cfg->exception_ptr) {
4104                                 ex = mono_class_get_exception_for_failure (cfg->exception_ptr);
4105                         } else {
4106                                 if (cfg->exception_type == MONO_EXCEPTION_MISSING_FIELD)
4107                                         ex = mono_exception_from_name_msg (mono_defaults.corlib, "System", "MissingFieldException", cfg->exception_message);
4108                                 else if (cfg->exception_type == MONO_EXCEPTION_MISSING_METHOD)
4109                                         ex = mono_exception_from_name_msg (mono_defaults.corlib, "System", "MissingMethodException", cfg->exception_message);
4110                                 else if (cfg->exception_type == MONO_EXCEPTION_TYPE_LOAD)
4111                                         ex = mono_exception_from_name_msg (mono_defaults.corlib, "System", "TypeLoadException", cfg->exception_message);
4112                                 else if (cfg->exception_type == MONO_EXCEPTION_FILE_NOT_FOUND)
4113                                         ex = mono_exception_from_name_msg (mono_defaults.corlib, "System.IO", "FileNotFoundException", cfg->exception_message);
4114                                 else if (cfg->exception_type == MONO_EXCEPTION_BAD_IMAGE)
4115                                         ex = mono_get_exception_bad_image_format (cfg->exception_message);
4116                                 else
4117                                         g_assert_not_reached ();
4118                         }
4119                 }
4120                 break;
4121         }
4122         case MONO_EXCEPTION_INVALID_PROGRAM:
4123                 ex = mono_exception_from_name_msg (mono_defaults.corlib, "System", "InvalidProgramException", cfg->exception_message);
4124                 break;
4125         case MONO_EXCEPTION_UNVERIFIABLE_IL:
4126                 ex = mono_exception_from_name_msg (mono_defaults.corlib, "System.Security", "VerificationException", cfg->exception_message);
4127                 break;
4128         case MONO_EXCEPTION_METHOD_ACCESS:
4129                 ex = mono_exception_from_name_msg (mono_defaults.corlib, "System", "MethodAccessException", cfg->exception_message);
4130                 break;
4131         case MONO_EXCEPTION_FIELD_ACCESS:
4132                 ex = mono_exception_from_name_msg (mono_defaults.corlib, "System", "FieldAccessException", cfg->exception_message);
4133                 break;
4134         case MONO_EXCEPTION_OBJECT_SUPPLIED: {
4135                 MonoException *exp = cfg->exception_ptr;
4136                 MONO_GC_UNREGISTER_ROOT (cfg->exception_ptr);
4137
4138                 ex = exp;
4139                 break;
4140         }
4141         case MONO_EXCEPTION_OUT_OF_MEMORY:
4142                 ex = mono_domain_get ()->out_of_memory_ex;
4143                 break;
4144         case MONO_EXCEPTION_MONO_ERROR:
4145                 g_assert (!mono_error_ok (&cfg->error));
4146                 ex = mono_error_convert_to_exception (&cfg->error);
4147                 break;
4148         default:
4149                 g_assert_not_reached ();
4150         }
4151
4152         if (ex) {
4153                 if (cfg->prof_options & MONO_PROFILE_JIT_COMPILATION)
4154                         mono_profiler_method_end_jit (method, NULL, MONO_PROFILE_FAILED);
4155
4156                 mono_destroy_compile (cfg);
4157                 *jit_ex = ex;
4158
4159                 return NULL;
4160         }
4161
4162         if (mono_method_is_generic_sharable (method, FALSE))
4163                 shared = mini_get_shared_method (method);
4164         else
4165                 shared = NULL;
4166
4167         mono_domain_lock (target_domain);
4168
4169         /* Check if some other thread already did the job. In this case, we can
4170        discard the code this thread generated. */
4171
4172         info = mini_lookup_method (target_domain, method, shared);
4173         if (info) {
4174                 /* We can't use a domain specific method in another domain */
4175                 if ((target_domain == mono_domain_get ()) || info->domain_neutral) {
4176                         code = info->code_start;
4177 //                      printf("Discarding code for method %s\n", method->name);
4178                 }
4179         }
4180         if (code == NULL) {
4181                 /* The lookup + insert is atomic since this is done inside the domain lock */
4182                 mono_domain_jit_code_hash_lock (target_domain);
4183                 mono_internal_hash_table_insert (&target_domain->jit_code_hash, cfg->jit_info->d.method, cfg->jit_info);
4184                 mono_domain_jit_code_hash_unlock (target_domain);
4185
4186                 code = cfg->native_code;
4187
4188                 if (cfg->generic_sharing_context && mono_method_is_generic_sharable (method, FALSE))
4189                         mono_stats.generics_shared_methods++;
4190                 if (cfg->gsharedvt)
4191                         mono_stats.gsharedvt_methods++;
4192         }
4193
4194         jinfo = cfg->jit_info;
4195
4196         prof_options = cfg->prof_options;
4197
4198         /*
4199          * Update global stats while holding a lock, instead of doing many
4200          * InterlockedIncrement operations during JITting.
4201          */
4202         mono_jit_stats.allocate_var += cfg->stat_allocate_var;
4203         mono_jit_stats.locals_stack_size += cfg->stat_locals_stack_size;
4204         mono_jit_stats.basic_blocks += cfg->stat_basic_blocks;
4205         mono_jit_stats.max_basic_blocks = MAX (cfg->stat_basic_blocks, mono_jit_stats.max_basic_blocks);
4206         mono_jit_stats.cil_code_size += cfg->stat_cil_code_size;
4207         mono_jit_stats.regvars += cfg->stat_n_regvars;
4208         mono_jit_stats.inlineable_methods += cfg->stat_inlineable_methods;
4209         mono_jit_stats.inlined_methods += cfg->stat_inlined_methods;
4210         mono_jit_stats.code_reallocs += cfg->stat_code_reallocs;
4211
4212         mono_destroy_compile (cfg);
4213
4214 #ifndef DISABLE_JIT
4215         if (domain_jit_info (target_domain)->jump_target_hash) {
4216                 MonoJumpInfo patch_info;
4217                 MonoJumpList *jlist;
4218                 GSList *tmp;
4219                 jlist = g_hash_table_lookup (domain_jit_info (target_domain)->jump_target_hash, method);
4220                 if (jlist) {
4221                         patch_info.next = NULL;
4222                         patch_info.ip.i = 0;
4223                         patch_info.type = MONO_PATCH_INFO_METHOD_JUMP;
4224                         patch_info.data.method = method;
4225                         g_hash_table_remove (domain_jit_info (target_domain)->jump_target_hash, method);
4226
4227 #if defined(__native_client_codegen__) && defined(__native_client__)
4228                         /* These patches are applied after a method has been installed, no target munging is needed. */
4229                         nacl_allow_target_modification (FALSE);
4230 #endif
4231 #ifdef MONO_ARCH_HAVE_PATCH_CODE_NEW
4232                         for (tmp = jlist->list; tmp; tmp = tmp->next) {
4233                                 gpointer target = mono_resolve_patch_target (NULL, target_domain, tmp->data, &patch_info, TRUE);
4234                                 mono_arch_patch_code_new (NULL, target_domain, tmp->data, &patch_info, target);
4235                         }
4236 #else
4237                         for (tmp = jlist->list; tmp; tmp = tmp->next)
4238                                 mono_arch_patch_code (NULL, NULL, target_domain, tmp->data, &patch_info, TRUE);
4239 #endif
4240 #if defined(__native_client_codegen__) && defined(__native_client__)
4241                         nacl_allow_target_modification (TRUE);
4242 #endif
4243                 }
4244         }
4245
4246         mono_emit_jit_map (jinfo);
4247 #endif
4248         mono_domain_unlock (target_domain);
4249
4250         vtable = mono_class_vtable (target_domain, method->klass);
4251         if (!vtable) {
4252                 ex = mono_class_get_exception_for_failure (method->klass);
4253                 g_assert (ex);
4254                 *jit_ex = ex;
4255                 return NULL;
4256         }
4257
4258         if (prof_options & MONO_PROFILE_JIT_COMPILATION) {
4259                 if (method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) {
4260                         if (mono_marshal_method_from_wrapper (method)) {
4261                                 /* Native func wrappers have no method */
4262                                 /* The profiler doesn't know about wrappers, so pass the original icall method */
4263                                 mono_profiler_method_end_jit (mono_marshal_method_from_wrapper (method), jinfo, MONO_PROFILE_OK);
4264                         }
4265                 }
4266                 mono_profiler_method_end_jit (method, jinfo, MONO_PROFILE_OK);
4267                 if (prof_method != method) {
4268                         mono_profiler_method_end_jit (prof_method, jinfo, MONO_PROFILE_OK);
4269                 }
4270         }
4271
4272         ex = mono_runtime_class_init_full (vtable, FALSE);
4273         if (ex) {
4274                 *jit_ex = ex;
4275                 return NULL;
4276         }
4277         return code;
4278 }
4279
4280 #ifndef DISABLE_JIT
4281
4282 void*
4283 mono_arch_instrument_epilog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments) {
4284         return mono_arch_instrument_epilog_full (cfg, func, p, enable_arguments, FALSE);
4285 }
4286
4287 void
4288 mono_cfg_add_try_hole (MonoCompile *cfg, MonoExceptionClause *clause, guint8 *start, MonoBasicBlock *bb)
4289 {
4290         TryBlockHole *hole = mono_mempool_alloc (cfg->mempool, sizeof (TryBlockHole));
4291         hole->clause = clause;
4292         hole->start_offset = start - cfg->native_code;
4293         hole->basic_block = bb;
4294
4295         cfg->try_block_holes = g_slist_append_mempool (cfg->mempool, cfg->try_block_holes, hole);
4296 }
4297
4298 void
4299 mono_cfg_set_exception (MonoCompile *cfg, int type)
4300 {
4301         cfg->exception_type = type;
4302 }
4303
4304 #endif
4305
4306 /* Dummy versions of some arch specific functions to avoid ifdefs at call sites */
4307
4308 #ifndef MONO_ARCH_GSHAREDVT_SUPPORTED
4309
4310 gboolean
4311 mono_arch_gsharedvt_sig_supported (MonoMethodSignature *sig)
4312 {
4313         return FALSE;
4314 }
4315
4316 gpointer
4317 mono_arch_get_gsharedvt_call_info (gpointer addr, MonoMethodSignature *normal_sig, MonoMethodSignature *gsharedvt_sig, MonoGenericSharingContext *gsctx, gboolean gsharedvt_in, gint32 vcall_offset, gboolean calli)
4318 {
4319         g_assert_not_reached ();
4320         return NULL;
4321 }
4322
4323 gpointer
4324 mono_arch_get_gsharedvt_arg_trampoline (MonoDomain *domain, gpointer arg, gpointer addr)
4325 {
4326         g_assert_not_reached ();
4327         return NULL;
4328 }
4329
4330 gpointer
4331 mono_arch_get_gsharedvt_trampoline (MonoTrampInfo **info, gboolean aot)
4332 {
4333         g_assert_not_reached ();
4334         return NULL;
4335 }
4336
4337 #endif
4338
4339 #if defined(MONO_ARCH_GSHAREDVT_SUPPORTED) && !defined(ENABLE_GSHAREDVT)
4340
4341 gboolean
4342 mono_arch_gsharedvt_sig_supported (MonoMethodSignature *sig)
4343 {
4344         return FALSE;
4345 }
4346
4347 gpointer
4348 mono_arch_get_gsharedvt_call_info (gpointer addr, MonoMethodSignature *normal_sig, MonoMethodSignature *gsharedvt_sig, MonoGenericSharingContext *gsctx, gboolean gsharedvt_in, gint32 vcall_offset, gboolean calli)
4349 {
4350         NOT_IMPLEMENTED;
4351         return NULL;
4352 }
4353
4354 #endif
4355
4356 #ifndef ENABLE_LLVM
4357 void
4358 mono_llvm_emit_aot_file_info (MonoAotFileInfo *info, gboolean has_jitted_code)
4359 {
4360         g_assert_not_reached ();
4361 }
4362
4363 void mono_llvm_emit_aot_data (const char *symbol, guint8 *data, int data_len)
4364 {
4365         g_assert_not_reached ();
4366 }
4367 #endif
4368
4369 #ifdef USE_JUMP_TABLES
4370 #define DEFAULT_JUMPTABLE_CHUNK_ELEMENTS 128
4371
4372 typedef struct MonoJumpTableChunk {
4373         guint32 total;
4374         guint32 active;
4375         struct MonoJumpTableChunk *previous;
4376         /* gpointer entries[total]; */
4377 } MonoJumpTableChunk;
4378
4379 static MonoJumpTableChunk* g_jumptable;
4380 #define mono_jumptable_lock() mono_mutex_lock (&jumptable_mutex)
4381 #define mono_jumptable_unlock() mono_mutex_unlock (&jumptable_mutex)
4382 static mono_mutex_t jumptable_mutex;
4383
4384 static  MonoJumpTableChunk*
4385 mono_create_jumptable_chunk (guint32 max_entries)
4386 {
4387         guint32 size = sizeof (MonoJumpTableChunk) + max_entries * sizeof(gpointer);
4388         MonoJumpTableChunk *chunk = (MonoJumpTableChunk*) g_new0 (guchar, size);
4389         chunk->total = max_entries;
4390         return chunk;
4391 }
4392
4393 void
4394 mono_jumptable_init (void)
4395 {
4396         if (g_jumptable == NULL) {
4397                 mono_mutex_init_recursive (&jumptable_mutex);
4398                 g_jumptable = mono_create_jumptable_chunk (DEFAULT_JUMPTABLE_CHUNK_ELEMENTS);
4399         }
4400 }
4401
4402 gpointer*
4403 mono_jumptable_add_entry (void)
4404 {
4405         return mono_jumptable_add_entries (1);
4406 }
4407
4408 gpointer*
4409 mono_jumptable_add_entries (guint32 entries)
4410 {
4411         guint32 index;
4412         gpointer *result;
4413
4414         mono_jumptable_init ();
4415         mono_jumptable_lock ();
4416         index = g_jumptable->active;
4417         if (index + entries >= g_jumptable->total) {
4418                 /*
4419                  * Grow jumptable, by adding one more chunk.
4420                  * We cannot realloc jumptable, as there could be pointers
4421                  * to existing jump table entries in the code, so instead
4422                  * we just add one more chunk.
4423                  */
4424                 guint32 max_entries = entries;
4425                 MonoJumpTableChunk *new_chunk;
4426
4427                 if (max_entries < DEFAULT_JUMPTABLE_CHUNK_ELEMENTS)
4428                         max_entries = DEFAULT_JUMPTABLE_CHUNK_ELEMENTS;
4429                 new_chunk = mono_create_jumptable_chunk (max_entries);
4430                 /* Link old jumptable, so that we could free it up later. */
4431                 new_chunk->previous = g_jumptable;
4432                 g_jumptable = new_chunk;
4433                 index = 0;
4434         }
4435         g_jumptable->active = index + entries;
4436         result = (gpointer*)((guchar*)g_jumptable + sizeof(MonoJumpTableChunk)) + index;
4437         mono_jumptable_unlock();
4438
4439         return result;
4440 }
4441
4442 void
4443 mono_jumptable_cleanup (void)
4444 {
4445         if (g_jumptable) {
4446                 MonoJumpTableChunk *current = g_jumptable, *prev;
4447                 while (current != NULL) {
4448                         prev = current->previous;
4449                         g_free (current);
4450                         current = prev;
4451                 }
4452                 g_jumptable = NULL;
4453                 mono_mutex_destroy (&jumptable_mutex);
4454         }
4455 }
4456
4457 gpointer*
4458 mono_jumptable_get_entry (guint8 *code_ptr)
4459 {
4460         return mono_arch_jumptable_entry_from_code (code_ptr);
4461 }
4462 #endif
4463
4464 /*
4465  * mini_replace_type:
4466  *
4467  * Replace the type used in the metadata stream with what the JIT will actually use during compilation.
4468 */
4469 MonoType*
4470 mini_replace_type (MonoType *type)
4471 {
4472         type = mono_type_get_underlying_type (type);
4473         return mini_native_type_replace_type (type);
4474 }
4475
4476 /*
4477  * mini_get_underlying_type:
4478  *
4479  *   Return the type the JIT will use during compilation.
4480  * Handles: byref, enums, native types, generic sharing.
4481  * For gsharedvt types, it will return the original VAR/MVAR.
4482  */
4483 MonoType*
4484 mini_get_underlying_type (MonoCompile *cfg, MonoType *type)
4485 {
4486         type = mini_type_get_underlying_type (cfg->generic_sharing_context, type);
4487         return mini_native_type_replace_type (type);
4488 }
4489
4490 void
4491 mini_jit_init (void)
4492 {
4493         mono_mutex_init_recursive (&jit_mutex);
4494 }
4495
4496 void
4497 mini_jit_cleanup (void)
4498 {
4499         g_free (emul_opcode_map);
4500         g_free (emul_opcode_opcodes);
4501 }