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