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