[jit] Add ref types to mini_get_underlying_type (), use it to simplify the switch...
[mono.git] / mono / mini / method-to-ir.c
1 /**
2  * \file
3  * Convert CIL to the JIT internal representation
4  *
5  * Author:
6  *   Paolo Molaro (lupus@ximian.com)
7  *   Dietmar Maurer (dietmar@ximian.com)
8  *
9  * (C) 2002 Ximian, Inc.
10  * Copyright 2003-2010 Novell, Inc (http://www.novell.com)
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 #include <mono/utils/mono-compiler.h>
17 #include "mini.h"
18
19 #ifndef DISABLE_JIT
20
21 #include <signal.h>
22
23 #ifdef HAVE_UNISTD_H
24 #include <unistd.h>
25 #endif
26
27 #include <math.h>
28 #include <string.h>
29 #include <ctype.h>
30
31 #ifdef HAVE_SYS_TIME_H
32 #include <sys/time.h>
33 #endif
34
35 #ifdef HAVE_ALLOCA_H
36 #include <alloca.h>
37 #endif
38
39 #include <mono/utils/memcheck.h>
40 #include <mono/metadata/abi-details.h>
41 #include <mono/metadata/assembly.h>
42 #include <mono/metadata/attrdefs.h>
43 #include <mono/metadata/loader.h>
44 #include <mono/metadata/tabledefs.h>
45 #include <mono/metadata/class.h>
46 #include <mono/metadata/object.h>
47 #include <mono/metadata/exception.h>
48 #include <mono/metadata/opcodes.h>
49 #include <mono/metadata/mono-endian.h>
50 #include <mono/metadata/tokentype.h>
51 #include <mono/metadata/tabledefs.h>
52 #include <mono/metadata/marshal.h>
53 #include <mono/metadata/debug-helpers.h>
54 #include <mono/metadata/debug-internals.h>
55 #include <mono/metadata/gc-internals.h>
56 #include <mono/metadata/security-manager.h>
57 #include <mono/metadata/threads-types.h>
58 #include <mono/metadata/security-core-clr.h>
59 #include <mono/metadata/profiler-private.h>
60 #include <mono/metadata/profiler.h>
61 #include <mono/metadata/monitor.h>
62 #include <mono/utils/mono-memory-model.h>
63 #include <mono/utils/mono-error-internals.h>
64 #include <mono/metadata/mono-basic-block.h>
65 #include <mono/metadata/reflection-internals.h>
66 #include <mono/utils/mono-threads-coop.h>
67
68 #include "trace.h"
69
70 #include "ir-emit.h"
71
72 #include "jit-icalls.h"
73 #include "jit.h"
74 #include "debugger-agent.h"
75 #include "seq-points.h"
76 #include "aot-compiler.h"
77 #include "mini-llvm.h"
78
79 #define BRANCH_COST 10
80 #define INLINE_LENGTH_LIMIT 20
81
82 /* These have 'cfg' as an implicit argument */
83 #define INLINE_FAILURE(msg) do {                                                                        \
84         if ((cfg->method != cfg->current_method) && (cfg->current_method->wrapper_type == MONO_WRAPPER_NONE)) { \
85                 inline_failure (cfg, msg);                                                                              \
86                 goto exception_exit;                                                                                    \
87         } \
88         } while (0)
89 #define CHECK_CFG_EXCEPTION do {\
90                 if (cfg->exception_type != MONO_EXCEPTION_NONE) \
91                         goto exception_exit;                                            \
92         } while (0)
93 #define FIELD_ACCESS_FAILURE(method, field) do {                                        \
94                 field_access_failure ((cfg), (method), (field));                        \
95                 goto exception_exit;    \
96         } while (0)
97 #define GENERIC_SHARING_FAILURE(opcode) do {            \
98                 if (cfg->gshared) {                                                                     \
99                         gshared_failure (cfg, opcode, __FILE__, __LINE__);      \
100                         goto exception_exit;    \
101                 }                       \
102         } while (0)
103 #define GSHAREDVT_FAILURE(opcode) do {          \
104         if (cfg->gsharedvt) {                                                                                           \
105                 gsharedvt_failure (cfg, opcode, __FILE__, __LINE__);                    \
106                 goto exception_exit;                                                                                    \
107         }                                                                                                                                       \
108         } while (0)
109 #define OUT_OF_MEMORY_FAILURE do {      \
110                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);                \
111                 mono_error_set_out_of_memory (&cfg->error, "");                                 \
112                 goto exception_exit;    \
113         } while (0)
114 #define DISABLE_AOT(cfg) do { \
115                 if ((cfg)->verbose_level >= 2)                                            \
116                         printf ("AOT disabled: %s:%d\n", __FILE__, __LINE__);   \
117                 (cfg)->disable_aot = TRUE;                                                        \
118         } while (0)
119 #define LOAD_ERROR do { \
120                 break_on_unverified ();                                                         \
121                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD); \
122                 goto exception_exit;                                                                    \
123         } while (0)
124
125 #define TYPE_LOAD_ERROR(klass) do { \
126                 cfg->exception_ptr = klass; \
127                 LOAD_ERROR;                                     \
128         } while (0)
129
130 #define CHECK_CFG_ERROR do {\
131                 if (!mono_error_ok (&cfg->error)) { \
132                         mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);        \
133                         goto mono_error_exit; \
134                 } \
135         } while (0)
136
137 /* Determine whenever 'ins' represents a load of the 'this' argument */
138 #define MONO_CHECK_THIS(ins) (mono_method_signature (cfg->method)->hasthis && ((ins)->opcode == OP_MOVE) && ((ins)->sreg1 == cfg->args [0]->dreg))
139
140 static int ldind_to_load_membase (int opcode);
141 static int stind_to_store_membase (int opcode);
142
143 int mono_op_to_op_imm (int opcode);
144 int mono_op_to_op_imm_noemul (int opcode);
145
146 static int inline_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **sp,
147                                                   guchar *ip, guint real_offset, gboolean inline_always);
148 static MonoInst*
149 emit_llvmonly_virtual_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, int context_used, MonoInst **sp);
150
151 inline static MonoInst*
152 mono_emit_calli (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **args, MonoInst *addr, MonoInst *imt_arg, MonoInst *rgctx_arg);
153
154 /* helper methods signatures */
155 static MonoMethodSignature *helper_sig_domain_get;
156 static MonoMethodSignature *helper_sig_rgctx_lazy_fetch_trampoline;
157 static MonoMethodSignature *helper_sig_llvmonly_imt_trampoline;
158 static MonoMethodSignature *helper_sig_jit_thread_attach;
159 static MonoMethodSignature *helper_sig_get_tls_tramp;
160 static MonoMethodSignature *helper_sig_set_tls_tramp;
161
162 /* type loading helpers */
163 static GENERATE_GET_CLASS_WITH_CACHE (runtime_helpers, "System.Runtime.CompilerServices", "RuntimeHelpers")
164 static GENERATE_TRY_GET_CLASS_WITH_CACHE (debuggable_attribute, "System.Diagnostics", "DebuggableAttribute")
165
166 /*
167  * Instruction metadata
168  */
169 #ifdef MINI_OP
170 #undef MINI_OP
171 #endif
172 #ifdef MINI_OP3
173 #undef MINI_OP3
174 #endif
175 #define MINI_OP(a,b,dest,src1,src2) dest, src1, src2, ' ',
176 #define MINI_OP3(a,b,dest,src1,src2,src3) dest, src1, src2, src3,
177 #define NONE ' '
178 #define IREG 'i'
179 #define FREG 'f'
180 #define VREG 'v'
181 #define XREG 'x'
182 #if SIZEOF_REGISTER == 8 && SIZEOF_REGISTER == SIZEOF_VOID_P
183 #define LREG IREG
184 #else
185 #define LREG 'l'
186 #endif
187 /* keep in sync with the enum in mini.h */
188 const char
189 ins_info[] = {
190 #include "mini-ops.h"
191 };
192 #undef MINI_OP
193 #undef MINI_OP3
194
195 #define MINI_OP(a,b,dest,src1,src2) ((src2) != NONE ? 2 : ((src1) != NONE ? 1 : 0)),
196 #define MINI_OP3(a,b,dest,src1,src2,src3) ((src3) != NONE ? 3 : ((src2) != NONE ? 2 : ((src1) != NONE ? 1 : 0))),
197 /* 
198  * This should contain the index of the last sreg + 1. This is not the same
199  * as the number of sregs for opcodes like IA64_CMP_EQ_IMM.
200  */
201 const gint8 ins_sreg_counts[] = {
202 #include "mini-ops.h"
203 };
204 #undef MINI_OP
205 #undef MINI_OP3
206
207 guint32
208 mono_alloc_ireg (MonoCompile *cfg)
209 {
210         return alloc_ireg (cfg);
211 }
212
213 guint32
214 mono_alloc_lreg (MonoCompile *cfg)
215 {
216         return alloc_lreg (cfg);
217 }
218
219 guint32
220 mono_alloc_freg (MonoCompile *cfg)
221 {
222         return alloc_freg (cfg);
223 }
224
225 guint32
226 mono_alloc_preg (MonoCompile *cfg)
227 {
228         return alloc_preg (cfg);
229 }
230
231 guint32
232 mono_alloc_dreg (MonoCompile *cfg, MonoStackType stack_type)
233 {
234         return alloc_dreg (cfg, stack_type);
235 }
236
237 /*
238  * mono_alloc_ireg_ref:
239  *
240  *   Allocate an IREG, and mark it as holding a GC ref.
241  */
242 guint32
243 mono_alloc_ireg_ref (MonoCompile *cfg)
244 {
245         return alloc_ireg_ref (cfg);
246 }
247
248 /*
249  * mono_alloc_ireg_mp:
250  *
251  *   Allocate an IREG, and mark it as holding a managed pointer.
252  */
253 guint32
254 mono_alloc_ireg_mp (MonoCompile *cfg)
255 {
256         return alloc_ireg_mp (cfg);
257 }
258
259 /*
260  * mono_alloc_ireg_copy:
261  *
262  *   Allocate an IREG with the same GC type as VREG.
263  */
264 guint32
265 mono_alloc_ireg_copy (MonoCompile *cfg, guint32 vreg)
266 {
267         if (vreg_is_ref (cfg, vreg))
268                 return alloc_ireg_ref (cfg);
269         else if (vreg_is_mp (cfg, vreg))
270                 return alloc_ireg_mp (cfg);
271         else
272                 return alloc_ireg (cfg);
273 }
274
275 guint
276 mono_type_to_regmove (MonoCompile *cfg, MonoType *type)
277 {
278         if (type->byref)
279                 return OP_MOVE;
280
281         type = mini_get_underlying_type (type);
282 handle_enum:
283         switch (type->type) {
284         case MONO_TYPE_I1:
285         case MONO_TYPE_U1:
286                 return OP_MOVE;
287         case MONO_TYPE_I2:
288         case MONO_TYPE_U2:
289                 return OP_MOVE;
290         case MONO_TYPE_I4:
291         case MONO_TYPE_U4:
292                 return OP_MOVE;
293         case MONO_TYPE_I:
294         case MONO_TYPE_U:
295         case MONO_TYPE_PTR:
296         case MONO_TYPE_FNPTR:
297                 return OP_MOVE;
298         case MONO_TYPE_CLASS:
299         case MONO_TYPE_STRING:
300         case MONO_TYPE_OBJECT:
301         case MONO_TYPE_SZARRAY:
302         case MONO_TYPE_ARRAY:    
303                 return OP_MOVE;
304         case MONO_TYPE_I8:
305         case MONO_TYPE_U8:
306 #if SIZEOF_REGISTER == 8
307                 return OP_MOVE;
308 #else
309                 return OP_LMOVE;
310 #endif
311         case MONO_TYPE_R4:
312                 return cfg->r4fp ? OP_RMOVE : OP_FMOVE;
313         case MONO_TYPE_R8:
314                 return OP_FMOVE;
315         case MONO_TYPE_VALUETYPE:
316                 if (type->data.klass->enumtype) {
317                         type = mono_class_enum_basetype (type->data.klass);
318                         goto handle_enum;
319                 }
320                 if (MONO_CLASS_IS_SIMD (cfg, mono_class_from_mono_type (type)))
321                         return OP_XMOVE;
322                 return OP_VMOVE;
323         case MONO_TYPE_TYPEDBYREF:
324                 return OP_VMOVE;
325         case MONO_TYPE_GENERICINST:
326                 if (MONO_CLASS_IS_SIMD (cfg, mono_class_from_mono_type (type)))
327                         return OP_XMOVE;
328                 type = &type->data.generic_class->container_class->byval_arg;
329                 goto handle_enum;
330         case MONO_TYPE_VAR:
331         case MONO_TYPE_MVAR:
332                 g_assert (cfg->gshared);
333                 if (mini_type_var_is_vt (type))
334                         return OP_VMOVE;
335                 else
336                         return mono_type_to_regmove (cfg, mini_get_underlying_type (type));
337         default:
338                 g_error ("unknown type 0x%02x in type_to_regstore", type->type);
339         }
340         return -1;
341 }
342
343 void
344 mono_print_bb (MonoBasicBlock *bb, const char *msg)
345 {
346         int i;
347         MonoInst *tree;
348         GString *str = g_string_new ("");
349
350         g_string_append_printf (str, "%s %d: [IN: ", msg, bb->block_num);
351         for (i = 0; i < bb->in_count; ++i)
352                 g_string_append_printf (str, " BB%d(%d)", bb->in_bb [i]->block_num, bb->in_bb [i]->dfn);
353         g_string_append_printf (str, ", OUT: ");
354         for (i = 0; i < bb->out_count; ++i)
355                 g_string_append_printf (str, " BB%d(%d)", bb->out_bb [i]->block_num, bb->out_bb [i]->dfn);
356         g_string_append_printf (str, " ]\n");
357
358         g_print ("%s", str->str);
359         g_string_free (str, TRUE);
360
361         for (tree = bb->code; tree; tree = tree->next)
362                 mono_print_ins_index (-1, tree);
363 }
364
365 void
366 mono_create_helper_signatures (void)
367 {
368         helper_sig_domain_get = mono_create_icall_signature ("ptr");
369         helper_sig_rgctx_lazy_fetch_trampoline = mono_create_icall_signature ("ptr ptr");
370         helper_sig_llvmonly_imt_trampoline = mono_create_icall_signature ("ptr ptr ptr");
371         helper_sig_jit_thread_attach = mono_create_icall_signature ("ptr ptr");
372         helper_sig_get_tls_tramp = mono_create_icall_signature ("ptr");
373         helper_sig_set_tls_tramp = mono_create_icall_signature ("void ptr");
374 }
375
376 static MONO_NEVER_INLINE void
377 break_on_unverified (void)
378 {
379         if (mini_get_debug_options ()->break_on_unverified)
380                 G_BREAKPOINT ();
381 }
382
383 static MONO_NEVER_INLINE void
384 field_access_failure (MonoCompile *cfg, MonoMethod *method, MonoClassField *field)
385 {
386         char *method_fname = mono_method_full_name (method, TRUE);
387         char *field_fname = mono_field_full_name (field);
388         mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
389         mono_error_set_generic_error (&cfg->error, "System", "FieldAccessException", "Field `%s' is inaccessible from method `%s'\n", field_fname, method_fname);
390         g_free (method_fname);
391         g_free (field_fname);
392 }
393
394 static MONO_NEVER_INLINE void
395 inline_failure (MonoCompile *cfg, const char *msg)
396 {
397         if (cfg->verbose_level >= 2)
398                 printf ("inline failed: %s\n", msg);
399         mono_cfg_set_exception (cfg, MONO_EXCEPTION_INLINE_FAILED);
400 }
401
402 static MONO_NEVER_INLINE void
403 gshared_failure (MonoCompile *cfg, int opcode, const char *file, int line)
404 {
405         if (cfg->verbose_level > 2)                                                                                     \
406                 printf ("sharing failed for method %s.%s.%s/%d opcode %s line %d\n", cfg->current_method->klass->name_space, cfg->current_method->klass->name, cfg->current_method->name, cfg->current_method->signature->param_count, mono_opcode_name ((opcode)), line);
407         mono_cfg_set_exception (cfg, MONO_EXCEPTION_GENERIC_SHARING_FAILED);
408 }
409
410 static MONO_NEVER_INLINE void
411 gsharedvt_failure (MonoCompile *cfg, int opcode, const char *file, int line)
412 {
413         cfg->exception_message = g_strdup_printf ("gsharedvt failed for method %s.%s.%s/%d opcode %s %s:%d", cfg->current_method->klass->name_space, cfg->current_method->klass->name, cfg->current_method->name, cfg->current_method->signature->param_count, mono_opcode_name ((opcode)), file, line);
414         if (cfg->verbose_level >= 2)
415                 printf ("%s\n", cfg->exception_message);
416         mono_cfg_set_exception (cfg, MONO_EXCEPTION_GENERIC_SHARING_FAILED);
417 }
418
419 /*
420  * When using gsharedvt, some instatiations might be verifiable, and some might be not. i.e. 
421  * foo<T> (int i) { ldarg.0; box T; }
422  */
423 #define UNVERIFIED do { \
424         if (cfg->gsharedvt) { \
425                 if (cfg->verbose_level > 2)                                                                     \
426                         printf ("gsharedvt method failed to verify, falling back to instantiation.\n"); \
427                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_GENERIC_SHARING_FAILED); \
428                 goto exception_exit;                                                                                    \
429         }                                                                                                                                       \
430         break_on_unverified ();                                                                                         \
431         goto unverified;                                                                                                        \
432 } while (0)
433
434 #define GET_BBLOCK(cfg,tblock,ip) do {  \
435                 (tblock) = cfg->cil_offset_to_bb [(ip) - cfg->cil_start]; \
436                 if (!(tblock)) {        \
437                         if ((ip) >= end || (ip) < header->code) UNVERIFIED; \
438             NEW_BBLOCK (cfg, (tblock)); \
439                         (tblock)->cil_code = (ip);      \
440                         ADD_BBLOCK (cfg, (tblock));     \
441                 } \
442         } while (0)
443
444 #if defined(TARGET_X86) || defined(TARGET_AMD64)
445 #define EMIT_NEW_X86_LEA(cfg,dest,sr1,sr2,shift,imm) do { \
446                 MONO_INST_NEW (cfg, dest, OP_X86_LEA); \
447                 (dest)->dreg = alloc_ireg_mp ((cfg)); \
448                 (dest)->sreg1 = (sr1); \
449                 (dest)->sreg2 = (sr2); \
450                 (dest)->inst_imm = (imm); \
451                 (dest)->backend.shift_amount = (shift); \
452                 MONO_ADD_INS ((cfg)->cbb, (dest)); \
453         } while (0)
454 #endif
455
456 /* Emit conversions so both operands of a binary opcode are of the same type */
457 static void
458 add_widen_op (MonoCompile *cfg, MonoInst *ins, MonoInst **arg1_ref, MonoInst **arg2_ref)
459 {
460         MonoInst *arg1 = *arg1_ref;
461         MonoInst *arg2 = *arg2_ref;
462
463         if (cfg->r4fp &&
464                 ((arg1->type == STACK_R4 && arg2->type == STACK_R8) ||
465                  (arg1->type == STACK_R8 && arg2->type == STACK_R4))) {
466                 MonoInst *conv;
467
468                 /* Mixing r4/r8 is allowed by the spec */
469                 if (arg1->type == STACK_R4) {
470                         int dreg = alloc_freg (cfg);
471
472                         EMIT_NEW_UNALU (cfg, conv, OP_RCONV_TO_R8, dreg, arg1->dreg);
473                         conv->type = STACK_R8;
474                         ins->sreg1 = dreg;
475                         *arg1_ref = conv;
476                 }
477                 if (arg2->type == STACK_R4) {
478                         int dreg = alloc_freg (cfg);
479
480                         EMIT_NEW_UNALU (cfg, conv, OP_RCONV_TO_R8, dreg, arg2->dreg);
481                         conv->type = STACK_R8;
482                         ins->sreg2 = dreg;
483                         *arg2_ref = conv;
484                 }
485         }
486
487 #if SIZEOF_REGISTER == 8
488         /* FIXME: Need to add many more cases */
489         if ((arg1)->type == STACK_PTR && (arg2)->type == STACK_I4) {
490                 MonoInst *widen;
491
492                 int dr = alloc_preg (cfg);
493                 EMIT_NEW_UNALU (cfg, widen, OP_SEXT_I4, dr, (arg2)->dreg);
494                 (ins)->sreg2 = widen->dreg;
495         }
496 #endif
497 }
498
499 #define ADD_BINOP(op) do {      \
500                 MONO_INST_NEW (cfg, ins, (op)); \
501                 sp -= 2;        \
502                 ins->sreg1 = sp [0]->dreg;      \
503                 ins->sreg2 = sp [1]->dreg;      \
504                 type_from_op (cfg, ins, sp [0], sp [1]);        \
505                 CHECK_TYPE (ins);       \
506                 /* Have to insert a widening op */               \
507         add_widen_op (cfg, ins, &sp [0], &sp [1]);               \
508         ins->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type); \
509         MONO_ADD_INS ((cfg)->cbb, (ins)); \
510         *sp++ = mono_decompose_opcode ((cfg), (ins));   \
511         } while (0)
512
513 #define ADD_UNOP(op) do {       \
514                 MONO_INST_NEW (cfg, ins, (op)); \
515                 sp--;   \
516                 ins->sreg1 = sp [0]->dreg;      \
517                 type_from_op (cfg, ins, sp [0], NULL);  \
518                 CHECK_TYPE (ins);       \
519         (ins)->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type); \
520         MONO_ADD_INS ((cfg)->cbb, (ins)); \
521                 *sp++ = mono_decompose_opcode (cfg, ins);       \
522         } while (0)
523
524 #define ADD_BINCOND(next_block) do {    \
525                 MonoInst *cmp;  \
526                 sp -= 2; \
527                 MONO_INST_NEW(cfg, cmp, OP_COMPARE);    \
528                 cmp->sreg1 = sp [0]->dreg;      \
529                 cmp->sreg2 = sp [1]->dreg;      \
530                 type_from_op (cfg, cmp, sp [0], sp [1]);        \
531                 CHECK_TYPE (cmp);       \
532                 add_widen_op (cfg, cmp, &sp [0], &sp [1]);                                              \
533                 type_from_op (cfg, ins, sp [0], sp [1]);                                                        \
534                 ins->inst_many_bb = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);   \
535                 GET_BBLOCK (cfg, tblock, target);               \
536                 link_bblock (cfg, cfg->cbb, tblock);    \
537                 ins->inst_true_bb = tblock;     \
538                 if ((next_block)) {     \
539                         link_bblock (cfg, cfg->cbb, (next_block));      \
540                         ins->inst_false_bb = (next_block);      \
541                         start_new_bblock = 1;   \
542                 } else {        \
543                         GET_BBLOCK (cfg, tblock, ip);           \
544                         link_bblock (cfg, cfg->cbb, tblock);    \
545                         ins->inst_false_bb = tblock;    \
546                         start_new_bblock = 2;   \
547                 }       \
548                 if (sp != stack_start) {                                                                        \
549                     handle_stack_args (cfg, stack_start, sp - stack_start); \
550                         CHECK_UNVERIFIABLE (cfg); \
551                 } \
552         MONO_ADD_INS (cfg->cbb, cmp); \
553                 MONO_ADD_INS (cfg->cbb, ins);   \
554         } while (0)
555
556 /* *
557  * link_bblock: Links two basic blocks
558  *
559  * links two basic blocks in the control flow graph, the 'from'
560  * argument is the starting block and the 'to' argument is the block
561  * the control flow ends to after 'from'.
562  */
563 static void
564 link_bblock (MonoCompile *cfg, MonoBasicBlock *from, MonoBasicBlock* to)
565 {
566         MonoBasicBlock **newa;
567         int i, found;
568
569 #if 0
570         if (from->cil_code) {
571                 if (to->cil_code)
572                         printf ("edge from IL%04x to IL_%04x\n", from->cil_code - cfg->cil_code, to->cil_code - cfg->cil_code);
573                 else
574                         printf ("edge from IL%04x to exit\n", from->cil_code - cfg->cil_code);
575         } else {
576                 if (to->cil_code)
577                         printf ("edge from entry to IL_%04x\n", to->cil_code - cfg->cil_code);
578                 else
579                         printf ("edge from entry to exit\n");
580         }
581 #endif
582
583         found = FALSE;
584         for (i = 0; i < from->out_count; ++i) {
585                 if (to == from->out_bb [i]) {
586                         found = TRUE;
587                         break;
588                 }
589         }
590         if (!found) {
591                 newa = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (from->out_count + 1));
592                 for (i = 0; i < from->out_count; ++i) {
593                         newa [i] = from->out_bb [i];
594                 }
595                 newa [i] = to;
596                 from->out_count++;
597                 from->out_bb = newa;
598         }
599
600         found = FALSE;
601         for (i = 0; i < to->in_count; ++i) {
602                 if (from == to->in_bb [i]) {
603                         found = TRUE;
604                         break;
605                 }
606         }
607         if (!found) {
608                 newa = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (to->in_count + 1));
609                 for (i = 0; i < to->in_count; ++i) {
610                         newa [i] = to->in_bb [i];
611                 }
612                 newa [i] = from;
613                 to->in_count++;
614                 to->in_bb = newa;
615         }
616 }
617
618 void
619 mono_link_bblock (MonoCompile *cfg, MonoBasicBlock *from, MonoBasicBlock* to)
620 {
621         link_bblock (cfg, from, to);
622 }
623
624 /**
625  * mono_find_block_region:
626  *
627  *   We mark each basic block with a region ID. We use that to avoid BB
628  *   optimizations when blocks are in different regions.
629  *
630  * Returns:
631  *   A region token that encodes where this region is, and information
632  *   about the clause owner for this block.
633  *
634  *   The region encodes the try/catch/filter clause that owns this block
635  *   as well as the type.  -1 is a special value that represents a block
636  *   that is in none of try/catch/filter.
637  */
638 static int
639 mono_find_block_region (MonoCompile *cfg, int offset)
640 {
641         MonoMethodHeader *header = cfg->header;
642         MonoExceptionClause *clause;
643         int i;
644
645         for (i = 0; i < header->num_clauses; ++i) {
646                 clause = &header->clauses [i];
647                 if ((clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) && (offset >= clause->data.filter_offset) &&
648                     (offset < (clause->handler_offset)))
649                         return ((i + 1) << 8) | MONO_REGION_FILTER | clause->flags;
650                            
651                 if (MONO_OFFSET_IN_HANDLER (clause, offset)) {
652                         if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
653                                 return ((i + 1) << 8) | MONO_REGION_FINALLY | clause->flags;
654                         else if (clause->flags == MONO_EXCEPTION_CLAUSE_FAULT)
655                                 return ((i + 1) << 8) | MONO_REGION_FAULT | clause->flags;
656                         else
657                                 return ((i + 1) << 8) | MONO_REGION_CATCH | clause->flags;
658                 }
659         }
660         for (i = 0; i < header->num_clauses; ++i) {
661                 clause = &header->clauses [i];
662
663                 if (MONO_OFFSET_IN_CLAUSE (clause, offset))
664                         return ((i + 1) << 8) | clause->flags;
665         }
666
667         return -1;
668 }
669
670 static gboolean
671 ip_in_finally_clause (MonoCompile *cfg, int offset)
672 {
673         MonoMethodHeader *header = cfg->header;
674         MonoExceptionClause *clause;
675         int i;
676
677         for (i = 0; i < header->num_clauses; ++i) {
678                 clause = &header->clauses [i];
679                 if (clause->flags != MONO_EXCEPTION_CLAUSE_FINALLY && clause->flags != MONO_EXCEPTION_CLAUSE_FAULT)
680                         continue;
681
682                 if (MONO_OFFSET_IN_HANDLER (clause, offset))
683                         return TRUE;
684         }
685         return FALSE;
686 }
687
688 static GList*
689 mono_find_final_block (MonoCompile *cfg, unsigned char *ip, unsigned char *target, int type)
690 {
691         MonoMethodHeader *header = cfg->header;
692         MonoExceptionClause *clause;
693         int i;
694         GList *res = NULL;
695
696         for (i = 0; i < header->num_clauses; ++i) {
697                 clause = &header->clauses [i];
698                 if (MONO_OFFSET_IN_CLAUSE (clause, (ip - header->code)) && 
699                     (!MONO_OFFSET_IN_CLAUSE (clause, (target - header->code)))) {
700                         if (clause->flags == type)
701                                 res = g_list_append (res, clause);
702                 }
703         }
704         return res;
705 }
706
707 static void
708 mono_create_spvar_for_region (MonoCompile *cfg, int region)
709 {
710         MonoInst *var;
711
712         var = (MonoInst *)g_hash_table_lookup (cfg->spvars, GINT_TO_POINTER (region));
713         if (var)
714                 return;
715
716         var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
717         /* prevent it from being register allocated */
718         var->flags |= MONO_INST_VOLATILE;
719
720         g_hash_table_insert (cfg->spvars, GINT_TO_POINTER (region), var);
721 }
722
723 MonoInst *
724 mono_find_exvar_for_offset (MonoCompile *cfg, int offset)
725 {
726         return (MonoInst *)g_hash_table_lookup (cfg->exvars, GINT_TO_POINTER (offset));
727 }
728
729 static MonoInst*
730 mono_create_exvar_for_offset (MonoCompile *cfg, int offset)
731 {
732         MonoInst *var;
733
734         var = (MonoInst *)g_hash_table_lookup (cfg->exvars, GINT_TO_POINTER (offset));
735         if (var)
736                 return var;
737
738         var = mono_compile_create_var (cfg, &mono_defaults.object_class->byval_arg, OP_LOCAL);
739         /* prevent it from being register allocated */
740         var->flags |= MONO_INST_VOLATILE;
741
742         g_hash_table_insert (cfg->exvars, GINT_TO_POINTER (offset), var);
743
744         return var;
745 }
746
747 /*
748  * Returns the type used in the eval stack when @type is loaded.
749  * FIXME: return a MonoType/MonoClass for the byref and VALUETYPE cases.
750  */
751 void
752 type_to_eval_stack_type (MonoCompile *cfg, MonoType *type, MonoInst *inst)
753 {
754         MonoClass *klass;
755
756         type = mini_get_underlying_type (type);
757         inst->klass = klass = mono_class_from_mono_type (type);
758         if (type->byref) {
759                 inst->type = STACK_MP;
760                 return;
761         }
762
763 handle_enum:
764         switch (type->type) {
765         case MONO_TYPE_VOID:
766                 inst->type = STACK_INV;
767                 return;
768         case MONO_TYPE_I1:
769         case MONO_TYPE_U1:
770         case MONO_TYPE_I2:
771         case MONO_TYPE_U2:
772         case MONO_TYPE_I4:
773         case MONO_TYPE_U4:
774                 inst->type = STACK_I4;
775                 return;
776         case MONO_TYPE_I:
777         case MONO_TYPE_U:
778         case MONO_TYPE_PTR:
779         case MONO_TYPE_FNPTR:
780                 inst->type = STACK_PTR;
781                 return;
782         case MONO_TYPE_CLASS:
783         case MONO_TYPE_STRING:
784         case MONO_TYPE_OBJECT:
785         case MONO_TYPE_SZARRAY:
786         case MONO_TYPE_ARRAY:    
787                 inst->type = STACK_OBJ;
788                 return;
789         case MONO_TYPE_I8:
790         case MONO_TYPE_U8:
791                 inst->type = STACK_I8;
792                 return;
793         case MONO_TYPE_R4:
794                 inst->type = cfg->r4_stack_type;
795                 break;
796         case MONO_TYPE_R8:
797                 inst->type = STACK_R8;
798                 return;
799         case MONO_TYPE_VALUETYPE:
800                 if (type->data.klass->enumtype) {
801                         type = mono_class_enum_basetype (type->data.klass);
802                         goto handle_enum;
803                 } else {
804                         inst->klass = klass;
805                         inst->type = STACK_VTYPE;
806                         return;
807                 }
808         case MONO_TYPE_TYPEDBYREF:
809                 inst->klass = mono_defaults.typed_reference_class;
810                 inst->type = STACK_VTYPE;
811                 return;
812         case MONO_TYPE_GENERICINST:
813                 type = &type->data.generic_class->container_class->byval_arg;
814                 goto handle_enum;
815         case MONO_TYPE_VAR:
816         case MONO_TYPE_MVAR:
817                 g_assert (cfg->gshared);
818                 if (mini_is_gsharedvt_type (type)) {
819                         g_assert (cfg->gsharedvt);
820                         inst->type = STACK_VTYPE;
821                 } else {
822                         type_to_eval_stack_type (cfg, mini_get_underlying_type (type), inst);
823                 }
824                 return;
825         default:
826                 g_error ("unknown type 0x%02x in eval stack type", type->type);
827         }
828 }
829
830 /*
831  * The following tables are used to quickly validate the IL code in type_from_op ().
832  */
833 static const char
834 bin_num_table [STACK_MAX] [STACK_MAX] = {
835         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
836         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
837         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
838         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
839         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_R8,  STACK_INV, STACK_INV, STACK_INV, STACK_R8},
840         {STACK_INV, STACK_MP,  STACK_INV, STACK_MP,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV},
841         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
842         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
843         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_R8, STACK_INV, STACK_INV, STACK_INV, STACK_R4}
844 };
845
846 static const char 
847 neg_table [] = {
848         STACK_INV, STACK_I4, STACK_I8, STACK_PTR, STACK_R8, STACK_INV, STACK_INV, STACK_INV, STACK_R4
849 };
850
851 /* reduce the size of this table */
852 static const char
853 bin_int_table [STACK_MAX] [STACK_MAX] = {
854         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
855         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
856         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
857         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
858         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
859         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
860         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
861         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
862 };
863
864 static const char
865 bin_comp_table [STACK_MAX] [STACK_MAX] = {
866 /*      Inv i  L  p  F  &  O  vt r4 */
867         {0},
868         {0, 1, 0, 1, 0, 0, 0, 0}, /* i, int32 */
869         {0, 0, 1, 0, 0, 0, 0, 0}, /* L, int64 */
870         {0, 1, 0, 1, 0, 2, 4, 0}, /* p, ptr */
871         {0, 0, 0, 0, 1, 0, 0, 0, 1}, /* F, R8 */
872         {0, 0, 0, 2, 0, 1, 0, 0}, /* &, managed pointer */
873         {0, 0, 0, 4, 0, 0, 3, 0}, /* O, reference */
874         {0, 0, 0, 0, 0, 0, 0, 0}, /* vt value type */
875         {0, 0, 0, 0, 1, 0, 0, 0, 1}, /* r, r4 */
876 };
877
878 /* reduce the size of this table */
879 static const char
880 shift_table [STACK_MAX] [STACK_MAX] = {
881         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
882         {STACK_INV, STACK_I4,  STACK_INV, STACK_I4,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
883         {STACK_INV, STACK_I8,  STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
884         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
885         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
886         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
887         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
888         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
889 };
890
891 /*
892  * Tables to map from the non-specific opcode to the matching
893  * type-specific opcode.
894  */
895 /* handles from CEE_ADD to CEE_SHR_UN (CEE_REM_UN for floats) */
896 static const guint16
897 binops_op_map [STACK_MAX] = {
898         0, OP_IADD-CEE_ADD, OP_LADD-CEE_ADD, OP_PADD-CEE_ADD, OP_FADD-CEE_ADD, OP_PADD-CEE_ADD, 0, 0, OP_RADD-CEE_ADD
899 };
900
901 /* handles from CEE_NEG to CEE_CONV_U8 */
902 static const guint16
903 unops_op_map [STACK_MAX] = {
904         0, OP_INEG-CEE_NEG, OP_LNEG-CEE_NEG, OP_PNEG-CEE_NEG, OP_FNEG-CEE_NEG, OP_PNEG-CEE_NEG, 0, 0, OP_RNEG-CEE_NEG
905 };
906
907 /* handles from CEE_CONV_U2 to CEE_SUB_OVF_UN */
908 static const guint16
909 ovfops_op_map [STACK_MAX] = {
910         0, OP_ICONV_TO_U2-CEE_CONV_U2, OP_LCONV_TO_U2-CEE_CONV_U2, OP_PCONV_TO_U2-CEE_CONV_U2, OP_FCONV_TO_U2-CEE_CONV_U2, OP_PCONV_TO_U2-CEE_CONV_U2, OP_PCONV_TO_U2-CEE_CONV_U2, 0, OP_RCONV_TO_U2-CEE_CONV_U2
911 };
912
913 /* handles from CEE_CONV_OVF_I1_UN to CEE_CONV_OVF_U_UN */
914 static const guint16
915 ovf2ops_op_map [STACK_MAX] = {
916         0, OP_ICONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, OP_LCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, OP_PCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, OP_FCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, OP_PCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN, 0, 0, OP_RCONV_TO_OVF_I1_UN-CEE_CONV_OVF_I1_UN
917 };
918
919 /* handles from CEE_CONV_OVF_I1 to CEE_CONV_OVF_U8 */
920 static const guint16
921 ovf3ops_op_map [STACK_MAX] = {
922         0, OP_ICONV_TO_OVF_I1-CEE_CONV_OVF_I1, OP_LCONV_TO_OVF_I1-CEE_CONV_OVF_I1, OP_PCONV_TO_OVF_I1-CEE_CONV_OVF_I1, OP_FCONV_TO_OVF_I1-CEE_CONV_OVF_I1, OP_PCONV_TO_OVF_I1-CEE_CONV_OVF_I1, 0, 0, OP_RCONV_TO_OVF_I1-CEE_CONV_OVF_I1
923 };
924
925 /* handles from CEE_BEQ to CEE_BLT_UN */
926 static const guint16
927 beqops_op_map [STACK_MAX] = {
928         0, OP_IBEQ-CEE_BEQ, OP_LBEQ-CEE_BEQ, OP_PBEQ-CEE_BEQ, OP_FBEQ-CEE_BEQ, OP_PBEQ-CEE_BEQ, OP_PBEQ-CEE_BEQ, 0, OP_FBEQ-CEE_BEQ
929 };
930
931 /* handles from CEE_CEQ to CEE_CLT_UN */
932 static const guint16
933 ceqops_op_map [STACK_MAX] = {
934         0, OP_ICEQ-OP_CEQ, OP_LCEQ-OP_CEQ, OP_PCEQ-OP_CEQ, OP_FCEQ-OP_CEQ, OP_PCEQ-OP_CEQ, OP_PCEQ-OP_CEQ, 0, OP_RCEQ-OP_CEQ
935 };
936
937 /*
938  * Sets ins->type (the type on the eval stack) according to the
939  * type of the opcode and the arguments to it.
940  * Invalid IL code is marked by setting ins->type to the invalid value STACK_INV.
941  *
942  * FIXME: this function sets ins->type unconditionally in some cases, but
943  * it should set it to invalid for some types (a conv.x on an object)
944  */
945 static void
946 type_from_op (MonoCompile *cfg, MonoInst *ins, MonoInst *src1, MonoInst *src2)
947 {
948         switch (ins->opcode) {
949         /* binops */
950         case CEE_ADD:
951         case CEE_SUB:
952         case CEE_MUL:
953         case CEE_DIV:
954         case CEE_REM:
955                 /* FIXME: check unverifiable args for STACK_MP */
956                 ins->type = bin_num_table [src1->type] [src2->type];
957                 ins->opcode += binops_op_map [ins->type];
958                 break;
959         case CEE_DIV_UN:
960         case CEE_REM_UN:
961         case CEE_AND:
962         case CEE_OR:
963         case CEE_XOR:
964                 ins->type = bin_int_table [src1->type] [src2->type];
965                 ins->opcode += binops_op_map [ins->type];
966                 break;
967         case CEE_SHL:
968         case CEE_SHR:
969         case CEE_SHR_UN:
970                 ins->type = shift_table [src1->type] [src2->type];
971                 ins->opcode += binops_op_map [ins->type];
972                 break;
973         case OP_COMPARE:
974         case OP_LCOMPARE:
975         case OP_ICOMPARE:
976                 ins->type = bin_comp_table [src1->type] [src2->type] ? STACK_I4: STACK_INV;
977                 if ((src1->type == STACK_I8) || ((SIZEOF_VOID_P == 8) && ((src1->type == STACK_PTR) || (src1->type == STACK_OBJ) || (src1->type == STACK_MP))))
978                         ins->opcode = OP_LCOMPARE;
979                 else if (src1->type == STACK_R4)
980                         ins->opcode = OP_RCOMPARE;
981                 else if (src1->type == STACK_R8)
982                         ins->opcode = OP_FCOMPARE;
983                 else
984                         ins->opcode = OP_ICOMPARE;
985                 break;
986         case OP_ICOMPARE_IMM:
987                 ins->type = bin_comp_table [src1->type] [src1->type] ? STACK_I4 : STACK_INV;
988                 if ((src1->type == STACK_I8) || ((SIZEOF_VOID_P == 8) && ((src1->type == STACK_PTR) || (src1->type == STACK_OBJ) || (src1->type == STACK_MP))))
989                         ins->opcode = OP_LCOMPARE_IMM;          
990                 break;
991         case CEE_BEQ:
992         case CEE_BGE:
993         case CEE_BGT:
994         case CEE_BLE:
995         case CEE_BLT:
996         case CEE_BNE_UN:
997         case CEE_BGE_UN:
998         case CEE_BGT_UN:
999         case CEE_BLE_UN:
1000         case CEE_BLT_UN:
1001                 ins->opcode += beqops_op_map [src1->type];
1002                 break;
1003         case OP_CEQ:
1004                 ins->type = bin_comp_table [src1->type] [src2->type] ? STACK_I4: STACK_INV;
1005                 ins->opcode += ceqops_op_map [src1->type];
1006                 break;
1007         case OP_CGT:
1008         case OP_CGT_UN:
1009         case OP_CLT:
1010         case OP_CLT_UN:
1011                 ins->type = (bin_comp_table [src1->type] [src2->type] & 1) ? STACK_I4: STACK_INV;
1012                 ins->opcode += ceqops_op_map [src1->type];
1013                 break;
1014         /* unops */
1015         case CEE_NEG:
1016                 ins->type = neg_table [src1->type];
1017                 ins->opcode += unops_op_map [ins->type];
1018                 break;
1019         case CEE_NOT:
1020                 if (src1->type >= STACK_I4 && src1->type <= STACK_PTR)
1021                         ins->type = src1->type;
1022                 else
1023                         ins->type = STACK_INV;
1024                 ins->opcode += unops_op_map [ins->type];
1025                 break;
1026         case CEE_CONV_I1:
1027         case CEE_CONV_I2:
1028         case CEE_CONV_I4:
1029         case CEE_CONV_U4:
1030                 ins->type = STACK_I4;
1031                 ins->opcode += unops_op_map [src1->type];
1032                 break;
1033         case CEE_CONV_R_UN:
1034                 ins->type = STACK_R8;
1035                 switch (src1->type) {
1036                 case STACK_I4:
1037                 case STACK_PTR:
1038                         ins->opcode = OP_ICONV_TO_R_UN;
1039                         break;
1040                 case STACK_I8:
1041                         ins->opcode = OP_LCONV_TO_R_UN; 
1042                         break;
1043                 }
1044                 break;
1045         case CEE_CONV_OVF_I1:
1046         case CEE_CONV_OVF_U1:
1047         case CEE_CONV_OVF_I2:
1048         case CEE_CONV_OVF_U2:
1049         case CEE_CONV_OVF_I4:
1050         case CEE_CONV_OVF_U4:
1051                 ins->type = STACK_I4;
1052                 ins->opcode += ovf3ops_op_map [src1->type];
1053                 break;
1054         case CEE_CONV_OVF_I_UN:
1055         case CEE_CONV_OVF_U_UN:
1056                 ins->type = STACK_PTR;
1057                 ins->opcode += ovf2ops_op_map [src1->type];
1058                 break;
1059         case CEE_CONV_OVF_I1_UN:
1060         case CEE_CONV_OVF_I2_UN:
1061         case CEE_CONV_OVF_I4_UN:
1062         case CEE_CONV_OVF_U1_UN:
1063         case CEE_CONV_OVF_U2_UN:
1064         case CEE_CONV_OVF_U4_UN:
1065                 ins->type = STACK_I4;
1066                 ins->opcode += ovf2ops_op_map [src1->type];
1067                 break;
1068         case CEE_CONV_U:
1069                 ins->type = STACK_PTR;
1070                 switch (src1->type) {
1071                 case STACK_I4:
1072                         ins->opcode = OP_ICONV_TO_U;
1073                         break;
1074                 case STACK_PTR:
1075                 case STACK_MP:
1076 #if SIZEOF_VOID_P == 8
1077                         ins->opcode = OP_LCONV_TO_U;
1078 #else
1079                         ins->opcode = OP_MOVE;
1080 #endif
1081                         break;
1082                 case STACK_I8:
1083                         ins->opcode = OP_LCONV_TO_U;
1084                         break;
1085                 case STACK_R8:
1086                         ins->opcode = OP_FCONV_TO_U;
1087                         break;
1088                 }
1089                 break;
1090         case CEE_CONV_I8:
1091         case CEE_CONV_U8:
1092                 ins->type = STACK_I8;
1093                 ins->opcode += unops_op_map [src1->type];
1094                 break;
1095         case CEE_CONV_OVF_I8:
1096         case CEE_CONV_OVF_U8:
1097                 ins->type = STACK_I8;
1098                 ins->opcode += ovf3ops_op_map [src1->type];
1099                 break;
1100         case CEE_CONV_OVF_U8_UN:
1101         case CEE_CONV_OVF_I8_UN:
1102                 ins->type = STACK_I8;
1103                 ins->opcode += ovf2ops_op_map [src1->type];
1104                 break;
1105         case CEE_CONV_R4:
1106                 ins->type = cfg->r4_stack_type;
1107                 ins->opcode += unops_op_map [src1->type];
1108                 break;
1109         case CEE_CONV_R8:
1110                 ins->type = STACK_R8;
1111                 ins->opcode += unops_op_map [src1->type];
1112                 break;
1113         case OP_CKFINITE:
1114                 ins->type = STACK_R8;           
1115                 break;
1116         case CEE_CONV_U2:
1117         case CEE_CONV_U1:
1118                 ins->type = STACK_I4;
1119                 ins->opcode += ovfops_op_map [src1->type];
1120                 break;
1121         case CEE_CONV_I:
1122         case CEE_CONV_OVF_I:
1123         case CEE_CONV_OVF_U:
1124                 ins->type = STACK_PTR;
1125                 ins->opcode += ovfops_op_map [src1->type];
1126                 break;
1127         case CEE_ADD_OVF:
1128         case CEE_ADD_OVF_UN:
1129         case CEE_MUL_OVF:
1130         case CEE_MUL_OVF_UN:
1131         case CEE_SUB_OVF:
1132         case CEE_SUB_OVF_UN:
1133                 ins->type = bin_num_table [src1->type] [src2->type];
1134                 ins->opcode += ovfops_op_map [src1->type];
1135                 if (ins->type == STACK_R8)
1136                         ins->type = STACK_INV;
1137                 break;
1138         case OP_LOAD_MEMBASE:
1139                 ins->type = STACK_PTR;
1140                 break;
1141         case OP_LOADI1_MEMBASE:
1142         case OP_LOADU1_MEMBASE:
1143         case OP_LOADI2_MEMBASE:
1144         case OP_LOADU2_MEMBASE:
1145         case OP_LOADI4_MEMBASE:
1146         case OP_LOADU4_MEMBASE:
1147                 ins->type = STACK_PTR;
1148                 break;
1149         case OP_LOADI8_MEMBASE:
1150                 ins->type = STACK_I8;
1151                 break;
1152         case OP_LOADR4_MEMBASE:
1153                 ins->type = cfg->r4_stack_type;
1154                 break;
1155         case OP_LOADR8_MEMBASE:
1156                 ins->type = STACK_R8;
1157                 break;
1158         default:
1159                 g_error ("opcode 0x%04x not handled in type from op", ins->opcode);
1160                 break;
1161         }
1162
1163         if (ins->type == STACK_MP)
1164                 ins->klass = mono_defaults.object_class;
1165 }
1166
1167 static const char 
1168 ldind_type [] = {
1169         STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I8, STACK_PTR, STACK_R8, STACK_R8, STACK_OBJ
1170 };
1171
1172 #if 0
1173
1174 static const char
1175 param_table [STACK_MAX] [STACK_MAX] = {
1176         {0},
1177 };
1178
1179 static int
1180 check_values_to_signature (MonoInst *args, MonoType *this_ins, MonoMethodSignature *sig)
1181 {
1182         int i;
1183
1184         if (sig->hasthis) {
1185                 switch (args->type) {
1186                 case STACK_I4:
1187                 case STACK_I8:
1188                 case STACK_R8:
1189                 case STACK_VTYPE:
1190                 case STACK_INV:
1191                         return 0;
1192                 }
1193                 args++;
1194         }
1195         for (i = 0; i < sig->param_count; ++i) {
1196                 switch (args [i].type) {
1197                 case STACK_INV:
1198                         return 0;
1199                 case STACK_MP:
1200                         if (!sig->params [i]->byref)
1201                                 return 0;
1202                         continue;
1203                 case STACK_OBJ:
1204                         if (sig->params [i]->byref)
1205                                 return 0;
1206                         switch (sig->params [i]->type) {
1207                         case MONO_TYPE_CLASS:
1208                         case MONO_TYPE_STRING:
1209                         case MONO_TYPE_OBJECT:
1210                         case MONO_TYPE_SZARRAY:
1211                         case MONO_TYPE_ARRAY:
1212                                 break;
1213                         default:
1214                                 return 0;
1215                         }
1216                         continue;
1217                 case STACK_R8:
1218                         if (sig->params [i]->byref)
1219                                 return 0;
1220                         if (sig->params [i]->type != MONO_TYPE_R4 && sig->params [i]->type != MONO_TYPE_R8)
1221                                 return 0;
1222                         continue;
1223                 case STACK_PTR:
1224                 case STACK_I4:
1225                 case STACK_I8:
1226                 case STACK_VTYPE:
1227                         break;
1228                 }
1229                 /*if (!param_table [args [i].type] [sig->params [i]->type])
1230                         return 0;*/
1231         }
1232         return 1;
1233 }
1234 #endif
1235
1236 /*
1237  * When we need a pointer to the current domain many times in a method, we
1238  * call mono_domain_get() once and we store the result in a local variable.
1239  * This function returns the variable that represents the MonoDomain*.
1240  */
1241 inline static MonoInst *
1242 mono_get_domainvar (MonoCompile *cfg)
1243 {
1244         if (!cfg->domainvar)
1245                 cfg->domainvar = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1246         return cfg->domainvar;
1247 }
1248
1249 /*
1250  * The got_var contains the address of the Global Offset Table when AOT 
1251  * compiling.
1252  */
1253 MonoInst *
1254 mono_get_got_var (MonoCompile *cfg)
1255 {
1256         if (!cfg->compile_aot || !cfg->backend->need_got_var)
1257                 return NULL;
1258         if (!cfg->got_var) {
1259                 cfg->got_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1260         }
1261         return cfg->got_var;
1262 }
1263
1264 static MonoInst *
1265 mono_get_vtable_var (MonoCompile *cfg)
1266 {
1267         g_assert (cfg->gshared);
1268
1269         if (!cfg->rgctx_var) {
1270                 cfg->rgctx_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1271                 /* force the var to be stack allocated */
1272                 cfg->rgctx_var->flags |= MONO_INST_VOLATILE;
1273         }
1274
1275         return cfg->rgctx_var;
1276 }
1277
1278 static MonoType*
1279 type_from_stack_type (MonoInst *ins) {
1280         switch (ins->type) {
1281         case STACK_I4: return &mono_defaults.int32_class->byval_arg;
1282         case STACK_I8: return &mono_defaults.int64_class->byval_arg;
1283         case STACK_PTR: return &mono_defaults.int_class->byval_arg;
1284         case STACK_R4: return &mono_defaults.single_class->byval_arg;
1285         case STACK_R8: return &mono_defaults.double_class->byval_arg;
1286         case STACK_MP:
1287                 return &ins->klass->this_arg;
1288         case STACK_OBJ: return &mono_defaults.object_class->byval_arg;
1289         case STACK_VTYPE: return &ins->klass->byval_arg;
1290         default:
1291                 g_error ("stack type %d to monotype not handled\n", ins->type);
1292         }
1293         return NULL;
1294 }
1295
1296 static G_GNUC_UNUSED int
1297 type_to_stack_type (MonoCompile *cfg, MonoType *t)
1298 {
1299         t = mono_type_get_underlying_type (t);
1300         switch (t->type) {
1301         case MONO_TYPE_I1:
1302         case MONO_TYPE_U1:
1303         case MONO_TYPE_I2:
1304         case MONO_TYPE_U2:
1305         case MONO_TYPE_I4:
1306         case MONO_TYPE_U4:
1307                 return STACK_I4;
1308         case MONO_TYPE_I:
1309         case MONO_TYPE_U:
1310         case MONO_TYPE_PTR:
1311         case MONO_TYPE_FNPTR:
1312                 return STACK_PTR;
1313         case MONO_TYPE_CLASS:
1314         case MONO_TYPE_STRING:
1315         case MONO_TYPE_OBJECT:
1316         case MONO_TYPE_SZARRAY:
1317         case MONO_TYPE_ARRAY:    
1318                 return STACK_OBJ;
1319         case MONO_TYPE_I8:
1320         case MONO_TYPE_U8:
1321                 return STACK_I8;
1322         case MONO_TYPE_R4:
1323                 return cfg->r4_stack_type;
1324         case MONO_TYPE_R8:
1325                 return STACK_R8;
1326         case MONO_TYPE_VALUETYPE:
1327         case MONO_TYPE_TYPEDBYREF:
1328                 return STACK_VTYPE;
1329         case MONO_TYPE_GENERICINST:
1330                 if (mono_type_generic_inst_is_valuetype (t))
1331                         return STACK_VTYPE;
1332                 else
1333                         return STACK_OBJ;
1334                 break;
1335         default:
1336                 g_assert_not_reached ();
1337         }
1338
1339         return -1;
1340 }
1341
1342 static MonoClass*
1343 array_access_to_klass (int opcode)
1344 {
1345         switch (opcode) {
1346         case CEE_LDELEM_U1:
1347                 return mono_defaults.byte_class;
1348         case CEE_LDELEM_U2:
1349                 return mono_defaults.uint16_class;
1350         case CEE_LDELEM_I:
1351         case CEE_STELEM_I:
1352                 return mono_defaults.int_class;
1353         case CEE_LDELEM_I1:
1354         case CEE_STELEM_I1:
1355                 return mono_defaults.sbyte_class;
1356         case CEE_LDELEM_I2:
1357         case CEE_STELEM_I2:
1358                 return mono_defaults.int16_class;
1359         case CEE_LDELEM_I4:
1360         case CEE_STELEM_I4:
1361                 return mono_defaults.int32_class;
1362         case CEE_LDELEM_U4:
1363                 return mono_defaults.uint32_class;
1364         case CEE_LDELEM_I8:
1365         case CEE_STELEM_I8:
1366                 return mono_defaults.int64_class;
1367         case CEE_LDELEM_R4:
1368         case CEE_STELEM_R4:
1369                 return mono_defaults.single_class;
1370         case CEE_LDELEM_R8:
1371         case CEE_STELEM_R8:
1372                 return mono_defaults.double_class;
1373         case CEE_LDELEM_REF:
1374         case CEE_STELEM_REF:
1375                 return mono_defaults.object_class;
1376         default:
1377                 g_assert_not_reached ();
1378         }
1379         return NULL;
1380 }
1381
1382 /*
1383  * We try to share variables when possible
1384  */
1385 static MonoInst *
1386 mono_compile_get_interface_var (MonoCompile *cfg, int slot, MonoInst *ins)
1387 {
1388         MonoInst *res;
1389         int pos, vnum;
1390
1391         /* inlining can result in deeper stacks */ 
1392         if (slot >= cfg->header->max_stack)
1393                 return mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1394
1395         pos = ins->type - 1 + slot * STACK_MAX;
1396
1397         switch (ins->type) {
1398         case STACK_I4:
1399         case STACK_I8:
1400         case STACK_R8:
1401         case STACK_PTR:
1402         case STACK_MP:
1403         case STACK_OBJ:
1404                 if ((vnum = cfg->intvars [pos]))
1405                         return cfg->varinfo [vnum];
1406                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1407                 cfg->intvars [pos] = res->inst_c0;
1408                 break;
1409         default:
1410                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1411         }
1412         return res;
1413 }
1414
1415 static void
1416 mono_save_token_info (MonoCompile *cfg, MonoImage *image, guint32 token, gpointer key)
1417 {
1418         /* 
1419          * Don't use this if a generic_context is set, since that means AOT can't
1420          * look up the method using just the image+token.
1421          * table == 0 means this is a reference made from a wrapper.
1422          */
1423         if (cfg->compile_aot && !cfg->generic_context && (mono_metadata_token_table (token) > 0)) {
1424                 MonoJumpInfoToken *jump_info_token = (MonoJumpInfoToken *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfoToken));
1425                 jump_info_token->image = image;
1426                 jump_info_token->token = token;
1427                 g_hash_table_insert (cfg->token_info_hash, key, jump_info_token);
1428         }
1429 }
1430
1431 /*
1432  * This function is called to handle items that are left on the evaluation stack
1433  * at basic block boundaries. What happens is that we save the values to local variables
1434  * and we reload them later when first entering the target basic block (with the
1435  * handle_loaded_temps () function).
1436  * A single joint point will use the same variables (stored in the array bb->out_stack or
1437  * bb->in_stack, if the basic block is before or after the joint point).
1438  *
1439  * This function needs to be called _before_ emitting the last instruction of
1440  * the bb (i.e. before emitting a branch).
1441  * If the stack merge fails at a join point, cfg->unverifiable is set.
1442  */
1443 static void
1444 handle_stack_args (MonoCompile *cfg, MonoInst **sp, int count)
1445 {
1446         int i, bindex;
1447         MonoBasicBlock *bb = cfg->cbb;
1448         MonoBasicBlock *outb;
1449         MonoInst *inst, **locals;
1450         gboolean found;
1451
1452         if (!count)
1453                 return;
1454         if (cfg->verbose_level > 3)
1455                 printf ("%d item(s) on exit from B%d\n", count, bb->block_num);
1456         if (!bb->out_scount) {
1457                 bb->out_scount = count;
1458                 //printf ("bblock %d has out:", bb->block_num);
1459                 found = FALSE;
1460                 for (i = 0; i < bb->out_count; ++i) {
1461                         outb = bb->out_bb [i];
1462                         /* exception handlers are linked, but they should not be considered for stack args */
1463                         if (outb->flags & BB_EXCEPTION_HANDLER)
1464                                 continue;
1465                         //printf (" %d", outb->block_num);
1466                         if (outb->in_stack) {
1467                                 found = TRUE;
1468                                 bb->out_stack = outb->in_stack;
1469                                 break;
1470                         }
1471                 }
1472                 //printf ("\n");
1473                 if (!found) {
1474                         bb->out_stack = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * count);
1475                         for (i = 0; i < count; ++i) {
1476                                 /* 
1477                                  * try to reuse temps already allocated for this purpouse, if they occupy the same
1478                                  * stack slot and if they are of the same type.
1479                                  * This won't cause conflicts since if 'local' is used to 
1480                                  * store one of the values in the in_stack of a bblock, then
1481                                  * the same variable will be used for the same outgoing stack 
1482                                  * slot as well. 
1483                                  * This doesn't work when inlining methods, since the bblocks
1484                                  * in the inlined methods do not inherit their in_stack from
1485                                  * the bblock they are inlined to. See bug #58863 for an
1486                                  * example.
1487                                  */
1488                                 if (cfg->inlined_method)
1489                                         bb->out_stack [i] = mono_compile_create_var (cfg, type_from_stack_type (sp [i]), OP_LOCAL);
1490                                 else
1491                                         bb->out_stack [i] = mono_compile_get_interface_var (cfg, i, sp [i]);
1492                         }
1493                 }
1494         }
1495
1496         for (i = 0; i < bb->out_count; ++i) {
1497                 outb = bb->out_bb [i];
1498                 /* exception handlers are linked, but they should not be considered for stack args */
1499                 if (outb->flags & BB_EXCEPTION_HANDLER)
1500                         continue;
1501                 if (outb->in_scount) {
1502                         if (outb->in_scount != bb->out_scount) {
1503                                 cfg->unverifiable = TRUE;
1504                                 return;
1505                         }
1506                         continue; /* check they are the same locals */
1507                 }
1508                 outb->in_scount = count;
1509                 outb->in_stack = bb->out_stack;
1510         }
1511
1512         locals = bb->out_stack;
1513         cfg->cbb = bb;
1514         for (i = 0; i < count; ++i) {
1515                 EMIT_NEW_TEMPSTORE (cfg, inst, locals [i]->inst_c0, sp [i]);
1516                 inst->cil_code = sp [i]->cil_code;
1517                 sp [i] = locals [i];
1518                 if (cfg->verbose_level > 3)
1519                         printf ("storing %d to temp %d\n", i, (int)locals [i]->inst_c0);
1520         }
1521
1522         /*
1523          * It is possible that the out bblocks already have in_stack assigned, and
1524          * the in_stacks differ. In this case, we will store to all the different 
1525          * in_stacks.
1526          */
1527
1528         found = TRUE;
1529         bindex = 0;
1530         while (found) {
1531                 /* Find a bblock which has a different in_stack */
1532                 found = FALSE;
1533                 while (bindex < bb->out_count) {
1534                         outb = bb->out_bb [bindex];
1535                         /* exception handlers are linked, but they should not be considered for stack args */
1536                         if (outb->flags & BB_EXCEPTION_HANDLER) {
1537                                 bindex++;
1538                                 continue;
1539                         }
1540                         if (outb->in_stack != locals) {
1541                                 for (i = 0; i < count; ++i) {
1542                                         EMIT_NEW_TEMPSTORE (cfg, inst, outb->in_stack [i]->inst_c0, sp [i]);
1543                                         inst->cil_code = sp [i]->cil_code;
1544                                         sp [i] = locals [i];
1545                                         if (cfg->verbose_level > 3)
1546                                                 printf ("storing %d to temp %d\n", i, (int)outb->in_stack [i]->inst_c0);
1547                                 }
1548                                 locals = outb->in_stack;
1549                                 found = TRUE;
1550                                 break;
1551                         }
1552                         bindex ++;
1553                 }
1554         }
1555 }
1556
1557 static MonoInst*
1558 emit_runtime_constant (MonoCompile *cfg, MonoJumpInfoType patch_type, gpointer data)
1559 {
1560         MonoInst *ins;
1561
1562         if (cfg->compile_aot) {
1563                 EMIT_NEW_AOTCONST (cfg, ins, patch_type, data);
1564         } else {
1565                 MonoJumpInfo ji;
1566                 gpointer target;
1567                 MonoError error;
1568
1569                 ji.type = patch_type;
1570                 ji.data.target = data;
1571                 target = mono_resolve_patch_target (NULL, cfg->domain, NULL, &ji, FALSE, &error);
1572                 mono_error_assert_ok (&error);
1573
1574                 EMIT_NEW_PCONST (cfg, ins, target);
1575         }
1576         return ins;
1577 }
1578
1579 MonoInst*
1580 mini_emit_runtime_constant (MonoCompile *cfg, MonoJumpInfoType patch_type, gpointer data)
1581 {
1582         return emit_runtime_constant (cfg, patch_type, data);
1583 }
1584
1585 static void 
1586 mini_emit_memset (MonoCompile *cfg, int destreg, int offset, int size, int val, int align)
1587 {
1588         int val_reg;
1589
1590         g_assert (val == 0);
1591
1592         if (align == 0)
1593                 align = 4;
1594
1595         if ((size <= SIZEOF_REGISTER) && (size <= align)) {
1596                 switch (size) {
1597                 case 1:
1598                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI1_MEMBASE_IMM, destreg, offset, val);
1599                         return;
1600                 case 2:
1601                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI2_MEMBASE_IMM, destreg, offset, val);
1602                         return;
1603                 case 4:
1604                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI4_MEMBASE_IMM, destreg, offset, val);
1605                         return;
1606 #if SIZEOF_REGISTER == 8
1607                 case 8:
1608                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI8_MEMBASE_IMM, destreg, offset, val);
1609                         return;
1610 #endif
1611                 }
1612         }
1613
1614         val_reg = alloc_preg (cfg);
1615
1616         if (SIZEOF_REGISTER == 8)
1617                 MONO_EMIT_NEW_I8CONST (cfg, val_reg, val);
1618         else
1619                 MONO_EMIT_NEW_ICONST (cfg, val_reg, val);
1620
1621         if (align < 4) {
1622                 /* This could be optimized further if neccesary */
1623                 while (size >= 1) {
1624                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, offset, val_reg);
1625                         offset += 1;
1626                         size -= 1;
1627                 }
1628                 return;
1629         }       
1630
1631         if (!cfg->backend->no_unaligned_access && SIZEOF_REGISTER == 8) {
1632                 if (offset % 8) {
1633                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, offset, val_reg);
1634                         offset += 4;
1635                         size -= 4;
1636                 }
1637                 while (size >= 8) {
1638                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, destreg, offset, val_reg);
1639                         offset += 8;
1640                         size -= 8;
1641                 }
1642         }       
1643
1644         while (size >= 4) {
1645                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, offset, val_reg);
1646                 offset += 4;
1647                 size -= 4;
1648         }
1649         while (size >= 2) {
1650                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI2_MEMBASE_REG, destreg, offset, val_reg);
1651                 offset += 2;
1652                 size -= 2;
1653         }
1654         while (size >= 1) {
1655                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, offset, val_reg);
1656                 offset += 1;
1657                 size -= 1;
1658         }
1659 }
1660
1661 void 
1662 mini_emit_memcpy (MonoCompile *cfg, int destreg, int doffset, int srcreg, int soffset, int size, int align)
1663 {
1664         int cur_reg;
1665
1666         if (align == 0)
1667                 align = 4;
1668
1669         /*FIXME arbitrary hack to avoid unbound code expansion.*/
1670         g_assert (size < 10000);
1671
1672         if (align < 4) {
1673                 /* This could be optimized further if neccesary */
1674                 while (size >= 1) {
1675                         cur_reg = alloc_preg (cfg);
1676                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, cur_reg, srcreg, soffset);
1677                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, doffset, cur_reg);
1678                         doffset += 1;
1679                         soffset += 1;
1680                         size -= 1;
1681                 }
1682         }
1683
1684         if (!cfg->backend->no_unaligned_access && SIZEOF_REGISTER == 8) {
1685                 while (size >= 8) {
1686                         cur_reg = alloc_preg (cfg);
1687                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI8_MEMBASE, cur_reg, srcreg, soffset);
1688                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, destreg, doffset, cur_reg);
1689                         doffset += 8;
1690                         soffset += 8;
1691                         size -= 8;
1692                 }
1693         }       
1694
1695         while (size >= 4) {
1696                 cur_reg = alloc_preg (cfg);
1697                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, cur_reg, srcreg, soffset);
1698                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, doffset, cur_reg);
1699                 doffset += 4;
1700                 soffset += 4;
1701                 size -= 4;
1702         }
1703         while (size >= 2) {
1704                 cur_reg = alloc_preg (cfg);
1705                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI2_MEMBASE, cur_reg, srcreg, soffset);
1706                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI2_MEMBASE_REG, destreg, doffset, cur_reg);
1707                 doffset += 2;
1708                 soffset += 2;
1709                 size -= 2;
1710         }
1711         while (size >= 1) {
1712                 cur_reg = alloc_preg (cfg);
1713                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, cur_reg, srcreg, soffset);
1714                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, doffset, cur_reg);
1715                 doffset += 1;
1716                 soffset += 1;
1717                 size -= 1;
1718         }
1719 }
1720
1721 static MonoInst*
1722 mono_create_fast_tls_getter (MonoCompile *cfg, MonoTlsKey key)
1723 {
1724         int tls_offset = mono_tls_get_tls_offset (key);
1725
1726         if (cfg->compile_aot)
1727                 return NULL;
1728
1729         if (tls_offset != -1 && mono_arch_have_fast_tls ()) {
1730                 MonoInst *ins;
1731                 MONO_INST_NEW (cfg, ins, OP_TLS_GET);
1732                 ins->dreg = mono_alloc_preg (cfg);
1733                 ins->inst_offset = tls_offset;
1734                 return ins;
1735         }
1736         return NULL;
1737 }
1738
1739 static MonoInst*
1740 mono_create_fast_tls_setter (MonoCompile *cfg, MonoInst* value, MonoTlsKey key)
1741 {
1742         int tls_offset = mono_tls_get_tls_offset (key);
1743
1744         if (cfg->compile_aot)
1745                 return NULL;
1746
1747         if (tls_offset != -1 && mono_arch_have_fast_tls ()) {
1748                 MonoInst *ins;
1749                 MONO_INST_NEW (cfg, ins, OP_TLS_SET);
1750                 ins->sreg1 = value->dreg;
1751                 ins->inst_offset = tls_offset;
1752                 return ins;
1753         }
1754         return NULL;
1755 }
1756
1757
1758 MonoInst*
1759 mono_create_tls_get (MonoCompile *cfg, MonoTlsKey key)
1760 {
1761         MonoInst *fast_tls = NULL;
1762
1763         if (!mini_get_debug_options ()->use_fallback_tls)
1764                 fast_tls = mono_create_fast_tls_getter (cfg, key);
1765
1766         if (fast_tls) {
1767                 MONO_ADD_INS (cfg->cbb, fast_tls);
1768                 return fast_tls;
1769         }
1770
1771         if (cfg->compile_aot) {
1772                 MonoInst *addr;
1773                 /*
1774                  * tls getters are critical pieces of code and we don't want to resolve them
1775                  * through the standard plt/tramp mechanism since we might expose ourselves
1776                  * to crashes and infinite recursions.
1777                  */
1778                 EMIT_NEW_AOTCONST (cfg, addr, MONO_PATCH_INFO_GET_TLS_TRAMP, (void*)key);
1779                 return mono_emit_calli (cfg, helper_sig_get_tls_tramp, NULL, addr, NULL, NULL);
1780         } else {
1781                 gpointer getter = mono_tls_get_tls_getter (key, FALSE);
1782                 return mono_emit_jit_icall (cfg, getter, NULL);
1783         }
1784 }
1785
1786 static MonoInst*
1787 mono_create_tls_set (MonoCompile *cfg, MonoInst *value, MonoTlsKey key)
1788 {
1789         MonoInst *fast_tls = NULL;
1790
1791         if (!mini_get_debug_options ()->use_fallback_tls)
1792                 fast_tls = mono_create_fast_tls_setter (cfg, value, key);
1793
1794         if (fast_tls) {
1795                 MONO_ADD_INS (cfg->cbb, fast_tls);
1796                 return fast_tls;
1797         }
1798
1799         if (cfg->compile_aot) {
1800                 MonoInst *addr;
1801                 EMIT_NEW_AOTCONST (cfg, addr, MONO_PATCH_INFO_SET_TLS_TRAMP, (void*)key);
1802                 return mono_emit_calli (cfg, helper_sig_set_tls_tramp, &value, addr, NULL, NULL);
1803         } else {
1804                 gpointer setter = mono_tls_get_tls_setter (key, FALSE);
1805                 return mono_emit_jit_icall (cfg, setter, &value);
1806         }
1807 }
1808
1809 /*
1810  * emit_push_lmf:
1811  *
1812  *   Emit IR to push the current LMF onto the LMF stack.
1813  */
1814 static void
1815 emit_push_lmf (MonoCompile *cfg)
1816 {
1817         /*
1818          * Emit IR to push the LMF:
1819          * lmf_addr = <lmf_addr from tls>
1820          * lmf->lmf_addr = lmf_addr
1821          * lmf->prev_lmf = *lmf_addr
1822          * *lmf_addr = lmf
1823          */
1824         MonoInst *ins, *lmf_ins;
1825
1826         if (!cfg->lmf_ir)
1827                 return;
1828
1829         int lmf_reg, prev_lmf_reg;
1830         /*
1831          * Store lmf_addr in a variable, so it can be allocated to a global register.
1832          */
1833         if (!cfg->lmf_addr_var)
1834                 cfg->lmf_addr_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1835
1836 #ifdef HOST_WIN32
1837         ins = mono_create_tls_get (cfg, TLS_KEY_JIT_TLS);
1838         g_assert (ins);
1839         int jit_tls_dreg = ins->dreg;
1840
1841         lmf_reg = alloc_preg (cfg);
1842         EMIT_NEW_BIALU_IMM (cfg, lmf_ins, OP_PADD_IMM, lmf_reg, jit_tls_dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, lmf));
1843 #else
1844         lmf_ins = mono_create_tls_get (cfg, TLS_KEY_LMF_ADDR);
1845         g_assert (lmf_ins);
1846 #endif
1847         lmf_ins->dreg = cfg->lmf_addr_var->dreg;
1848
1849         EMIT_NEW_VARLOADA (cfg, ins, cfg->lmf_var, NULL);
1850         lmf_reg = ins->dreg;
1851
1852         prev_lmf_reg = alloc_preg (cfg);
1853         /* Save previous_lmf */
1854         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, prev_lmf_reg, cfg->lmf_addr_var->dreg, 0);
1855         EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, lmf_reg, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf), prev_lmf_reg);
1856         /* Set new lmf */
1857         EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, cfg->lmf_addr_var->dreg, 0, lmf_reg);
1858 }
1859
1860 /*
1861  * emit_pop_lmf:
1862  *
1863  *   Emit IR to pop the current LMF from the LMF stack.
1864  */
1865 static void
1866 emit_pop_lmf (MonoCompile *cfg)
1867 {
1868         int lmf_reg, lmf_addr_reg;
1869         MonoInst *ins;
1870
1871         if (!cfg->lmf_ir)
1872                 return;
1873
1874         EMIT_NEW_VARLOADA (cfg, ins, cfg->lmf_var, NULL);
1875         lmf_reg = ins->dreg;
1876
1877         int prev_lmf_reg;
1878         /*
1879          * Emit IR to pop the LMF:
1880          * *(lmf->lmf_addr) = lmf->prev_lmf
1881          */
1882         /* This could be called before emit_push_lmf () */
1883         if (!cfg->lmf_addr_var)
1884                 cfg->lmf_addr_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1885         lmf_addr_reg = cfg->lmf_addr_var->dreg;
1886
1887         prev_lmf_reg = alloc_preg (cfg);
1888         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, prev_lmf_reg, lmf_reg, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
1889         EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, lmf_addr_reg, 0, prev_lmf_reg);
1890 }
1891
1892 static void
1893 emit_instrumentation_call (MonoCompile *cfg, void *func)
1894 {
1895         MonoInst *iargs [1];
1896
1897         /*
1898          * Avoid instrumenting inlined methods since it can
1899          * distort profiling results.
1900          */
1901         if (cfg->method != cfg->current_method)
1902                 return;
1903
1904         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE) {
1905                 EMIT_NEW_METHODCONST (cfg, iargs [0], cfg->method);
1906                 mono_emit_jit_icall (cfg, func, iargs);
1907         }
1908 }
1909
1910 static int
1911 ret_type_to_call_opcode (MonoCompile *cfg, MonoType *type, int calli, int virt)
1912 {
1913 handle_enum:
1914         type = mini_get_underlying_type (type);
1915         switch (type->type) {
1916         case MONO_TYPE_VOID:
1917                 return calli? OP_VOIDCALL_REG: virt? OP_VOIDCALL_MEMBASE: OP_VOIDCALL;
1918         case MONO_TYPE_I1:
1919         case MONO_TYPE_U1:
1920         case MONO_TYPE_I2:
1921         case MONO_TYPE_U2:
1922         case MONO_TYPE_I4:
1923         case MONO_TYPE_U4:
1924                 return calli? OP_CALL_REG: virt? OP_CALL_MEMBASE: OP_CALL;
1925         case MONO_TYPE_I:
1926         case MONO_TYPE_U:
1927         case MONO_TYPE_PTR:
1928         case MONO_TYPE_FNPTR:
1929                 return calli? OP_CALL_REG: virt? OP_CALL_MEMBASE: OP_CALL;
1930         case MONO_TYPE_CLASS:
1931         case MONO_TYPE_STRING:
1932         case MONO_TYPE_OBJECT:
1933         case MONO_TYPE_SZARRAY:
1934         case MONO_TYPE_ARRAY:    
1935                 return calli? OP_CALL_REG: virt? OP_CALL_MEMBASE: OP_CALL;
1936         case MONO_TYPE_I8:
1937         case MONO_TYPE_U8:
1938                 return calli? OP_LCALL_REG: virt? OP_LCALL_MEMBASE: OP_LCALL;
1939         case MONO_TYPE_R4:
1940                 if (cfg->r4fp)
1941                         return calli? OP_RCALL_REG: virt? OP_RCALL_MEMBASE: OP_RCALL;
1942                 else
1943                         return calli? OP_FCALL_REG: virt? OP_FCALL_MEMBASE: OP_FCALL;
1944         case MONO_TYPE_R8:
1945                 return calli? OP_FCALL_REG: virt? OP_FCALL_MEMBASE: OP_FCALL;
1946         case MONO_TYPE_VALUETYPE:
1947                 if (type->data.klass->enumtype) {
1948                         type = mono_class_enum_basetype (type->data.klass);
1949                         goto handle_enum;
1950                 } else
1951                         return calli? OP_VCALL_REG: virt? OP_VCALL_MEMBASE: OP_VCALL;
1952         case MONO_TYPE_TYPEDBYREF:
1953                 return calli? OP_VCALL_REG: virt? OP_VCALL_MEMBASE: OP_VCALL;
1954         case MONO_TYPE_GENERICINST:
1955                 type = &type->data.generic_class->container_class->byval_arg;
1956                 goto handle_enum;
1957         case MONO_TYPE_VAR:
1958         case MONO_TYPE_MVAR:
1959                 /* gsharedvt */
1960                 return calli? OP_VCALL_REG: virt? OP_VCALL_MEMBASE: OP_VCALL;
1961         default:
1962                 g_error ("unknown type 0x%02x in ret_type_to_call_opcode", type->type);
1963         }
1964         return -1;
1965 }
1966
1967 //XXX this ignores if t is byref
1968 #define MONO_TYPE_IS_PRIMITIVE_SCALAR(t) ((((((t)->type >= MONO_TYPE_BOOLEAN && (t)->type <= MONO_TYPE_U8) || ((t)->type >= MONO_TYPE_I && (t)->type <= MONO_TYPE_U)))))
1969
1970 /*
1971  * target_type_is_incompatible:
1972  * @cfg: MonoCompile context
1973  *
1974  * Check that the item @arg on the evaluation stack can be stored
1975  * in the target type (can be a local, or field, etc).
1976  * The cfg arg can be used to check if we need verification or just
1977  * validity checks.
1978  *
1979  * Returns: non-0 value if arg can't be stored on a target.
1980  */
1981 static int
1982 target_type_is_incompatible (MonoCompile *cfg, MonoType *target, MonoInst *arg)
1983 {
1984         MonoType *simple_type;
1985         MonoClass *klass;
1986
1987         if (target->byref) {
1988                 /* FIXME: check that the pointed to types match */
1989                 if (arg->type == STACK_MP) {
1990                         /* This is needed to handle gshared types + ldaddr. We lower the types so we can handle enums and other typedef-like types. */
1991                         MonoClass *target_class_lowered = mono_class_from_mono_type (mini_get_underlying_type (&mono_class_from_mono_type (target)->byval_arg));
1992                         MonoClass *source_class_lowered = mono_class_from_mono_type (mini_get_underlying_type (&arg->klass->byval_arg));
1993
1994                         /* if the target is native int& or same type */
1995                         if (target->type == MONO_TYPE_I || target_class_lowered == source_class_lowered)
1996                                 return 0;
1997
1998                         /* Both are primitive type byrefs and the source points to a larger type that the destination */
1999                         if (MONO_TYPE_IS_PRIMITIVE_SCALAR (&target_class_lowered->byval_arg) && MONO_TYPE_IS_PRIMITIVE_SCALAR (&source_class_lowered->byval_arg) &&
2000                                 mono_class_instance_size (target_class_lowered) <= mono_class_instance_size (source_class_lowered))
2001                                 return 0;
2002                         return 1;
2003                 }
2004                 if (arg->type == STACK_PTR)
2005                         return 0;
2006                 return 1;
2007         }
2008
2009         simple_type = mini_get_underlying_type (target);
2010         switch (simple_type->type) {
2011         case MONO_TYPE_VOID:
2012                 return 1;
2013         case MONO_TYPE_I1:
2014         case MONO_TYPE_U1:
2015         case MONO_TYPE_I2:
2016         case MONO_TYPE_U2:
2017         case MONO_TYPE_I4:
2018         case MONO_TYPE_U4:
2019                 if (arg->type != STACK_I4 && arg->type != STACK_PTR)
2020                         return 1;
2021                 return 0;
2022         case MONO_TYPE_PTR:
2023                 /* STACK_MP is needed when setting pinned locals */
2024                 if (arg->type != STACK_I4 && arg->type != STACK_PTR && arg->type != STACK_MP)
2025                         return 1;
2026                 return 0;
2027         case MONO_TYPE_I:
2028         case MONO_TYPE_U:
2029         case MONO_TYPE_FNPTR:
2030                 /* 
2031                  * Some opcodes like ldloca returns 'transient pointers' which can be stored in
2032                  * in native int. (#688008).
2033                  */
2034                 if (arg->type != STACK_I4 && arg->type != STACK_PTR && arg->type != STACK_MP)
2035                         return 1;
2036                 return 0;
2037         case MONO_TYPE_CLASS:
2038         case MONO_TYPE_STRING:
2039         case MONO_TYPE_OBJECT:
2040         case MONO_TYPE_SZARRAY:
2041         case MONO_TYPE_ARRAY:    
2042                 if (arg->type != STACK_OBJ)
2043                         return 1;
2044                 /* FIXME: check type compatibility */
2045                 return 0;
2046         case MONO_TYPE_I8:
2047         case MONO_TYPE_U8:
2048                 if (arg->type != STACK_I8)
2049                         return 1;
2050                 return 0;
2051         case MONO_TYPE_R4:
2052                 if (arg->type != cfg->r4_stack_type)
2053                         return 1;
2054                 return 0;
2055         case MONO_TYPE_R8:
2056                 if (arg->type != STACK_R8)
2057                         return 1;
2058                 return 0;
2059         case MONO_TYPE_VALUETYPE:
2060                 if (arg->type != STACK_VTYPE)
2061                         return 1;
2062                 klass = mono_class_from_mono_type (simple_type);
2063                 if (klass != arg->klass)
2064                         return 1;
2065                 return 0;
2066         case MONO_TYPE_TYPEDBYREF:
2067                 if (arg->type != STACK_VTYPE)
2068                         return 1;
2069                 klass = mono_class_from_mono_type (simple_type);
2070                 if (klass != arg->klass)
2071                         return 1;
2072                 return 0;
2073         case MONO_TYPE_GENERICINST:
2074                 if (mono_type_generic_inst_is_valuetype (simple_type)) {
2075                         MonoClass *target_class;
2076                         if (arg->type != STACK_VTYPE)
2077                                 return 1;
2078                         klass = mono_class_from_mono_type (simple_type);
2079                         target_class = mono_class_from_mono_type (target);
2080                         /* The second cases is needed when doing partial sharing */
2081                         if (klass != arg->klass && target_class != arg->klass && target_class != mono_class_from_mono_type (mini_get_underlying_type (&arg->klass->byval_arg)))
2082                                 return 1;
2083                         return 0;
2084                 } else {
2085                         if (arg->type != STACK_OBJ)
2086                                 return 1;
2087                         /* FIXME: check type compatibility */
2088                         return 0;
2089                 }
2090         case MONO_TYPE_VAR:
2091         case MONO_TYPE_MVAR:
2092                 g_assert (cfg->gshared);
2093                 if (mini_type_var_is_vt (simple_type)) {
2094                         if (arg->type != STACK_VTYPE)
2095                                 return 1;
2096                 } else {
2097                         if (arg->type != STACK_OBJ)
2098                                 return 1;
2099                 }
2100                 return 0;
2101         default:
2102                 g_error ("unknown type 0x%02x in target_type_is_incompatible", simple_type->type);
2103         }
2104         return 1;
2105 }
2106
2107 /*
2108  * Prepare arguments for passing to a function call.
2109  * Return a non-zero value if the arguments can't be passed to the given
2110  * signature.
2111  * The type checks are not yet complete and some conversions may need
2112  * casts on 32 or 64 bit architectures.
2113  *
2114  * FIXME: implement this using target_type_is_incompatible ()
2115  */
2116 static int
2117 check_call_signature (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **args)
2118 {
2119         MonoType *simple_type;
2120         int i;
2121
2122         if (sig->hasthis) {
2123                 if (args [0]->type != STACK_OBJ && args [0]->type != STACK_MP && args [0]->type != STACK_PTR)
2124                         return 1;
2125                 args++;
2126         }
2127         for (i = 0; i < sig->param_count; ++i) {
2128                 if (sig->params [i]->byref) {
2129                         if (args [i]->type != STACK_MP && args [i]->type != STACK_PTR)
2130                                 return 1;
2131                         continue;
2132                 }
2133                 simple_type = mini_get_underlying_type (sig->params [i]);
2134 handle_enum:
2135                 switch (simple_type->type) {
2136                 case MONO_TYPE_VOID:
2137                         return 1;
2138                         continue;
2139                 case MONO_TYPE_I1:
2140                 case MONO_TYPE_U1:
2141                 case MONO_TYPE_I2:
2142                 case MONO_TYPE_U2:
2143                 case MONO_TYPE_I4:
2144                 case MONO_TYPE_U4:
2145                         if (args [i]->type != STACK_I4 && args [i]->type != STACK_PTR)
2146                                 return 1;
2147                         continue;
2148                 case MONO_TYPE_I:
2149                 case MONO_TYPE_U:
2150                 case MONO_TYPE_PTR:
2151                 case MONO_TYPE_FNPTR:
2152                         if (args [i]->type != STACK_I4 && args [i]->type != STACK_PTR && args [i]->type != STACK_MP && args [i]->type != STACK_OBJ)
2153                                 return 1;
2154                         continue;
2155                 case MONO_TYPE_CLASS:
2156                 case MONO_TYPE_STRING:
2157                 case MONO_TYPE_OBJECT:
2158                 case MONO_TYPE_SZARRAY:
2159                 case MONO_TYPE_ARRAY:    
2160                         if (args [i]->type != STACK_OBJ)
2161                                 return 1;
2162                         continue;
2163                 case MONO_TYPE_I8:
2164                 case MONO_TYPE_U8:
2165                         if (args [i]->type != STACK_I8)
2166                                 return 1;
2167                         continue;
2168                 case MONO_TYPE_R4:
2169                         if (args [i]->type != cfg->r4_stack_type)
2170                                 return 1;
2171                         continue;
2172                 case MONO_TYPE_R8:
2173                         if (args [i]->type != STACK_R8)
2174                                 return 1;
2175                         continue;
2176                 case MONO_TYPE_VALUETYPE:
2177                         if (simple_type->data.klass->enumtype) {
2178                                 simple_type = mono_class_enum_basetype (simple_type->data.klass);
2179                                 goto handle_enum;
2180                         }
2181                         if (args [i]->type != STACK_VTYPE)
2182                                 return 1;
2183                         continue;
2184                 case MONO_TYPE_TYPEDBYREF:
2185                         if (args [i]->type != STACK_VTYPE)
2186                                 return 1;
2187                         continue;
2188                 case MONO_TYPE_GENERICINST:
2189                         simple_type = &simple_type->data.generic_class->container_class->byval_arg;
2190                         goto handle_enum;
2191                 case MONO_TYPE_VAR:
2192                 case MONO_TYPE_MVAR:
2193                         /* gsharedvt */
2194                         if (args [i]->type != STACK_VTYPE)
2195                                 return 1;
2196                         continue;
2197                 default:
2198                         g_error ("unknown type 0x%02x in check_call_signature",
2199                                  simple_type->type);
2200                 }
2201         }
2202         return 0;
2203 }
2204
2205 static int
2206 callvirt_to_call (int opcode)
2207 {
2208         switch (opcode) {
2209         case OP_CALL_MEMBASE:
2210                 return OP_CALL;
2211         case OP_VOIDCALL_MEMBASE:
2212                 return OP_VOIDCALL;
2213         case OP_FCALL_MEMBASE:
2214                 return OP_FCALL;
2215         case OP_RCALL_MEMBASE:
2216                 return OP_RCALL;
2217         case OP_VCALL_MEMBASE:
2218                 return OP_VCALL;
2219         case OP_LCALL_MEMBASE:
2220                 return OP_LCALL;
2221         default:
2222                 g_assert_not_reached ();
2223         }
2224
2225         return -1;
2226 }
2227
2228 static int
2229 callvirt_to_call_reg (int opcode)
2230 {
2231         switch (opcode) {
2232         case OP_CALL_MEMBASE:
2233                 return OP_CALL_REG;
2234         case OP_VOIDCALL_MEMBASE:
2235                 return OP_VOIDCALL_REG;
2236         case OP_FCALL_MEMBASE:
2237                 return OP_FCALL_REG;
2238         case OP_RCALL_MEMBASE:
2239                 return OP_RCALL_REG;
2240         case OP_VCALL_MEMBASE:
2241                 return OP_VCALL_REG;
2242         case OP_LCALL_MEMBASE:
2243                 return OP_LCALL_REG;
2244         default:
2245                 g_assert_not_reached ();
2246         }
2247
2248         return -1;
2249 }
2250
2251 /* Either METHOD or IMT_ARG needs to be set */
2252 static void
2253 emit_imt_argument (MonoCompile *cfg, MonoCallInst *call, MonoMethod *method, MonoInst *imt_arg)
2254 {
2255         int method_reg;
2256
2257         if (COMPILE_LLVM (cfg)) {
2258                 if (imt_arg) {
2259                         method_reg = alloc_preg (cfg);
2260                         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, method_reg, imt_arg->dreg);
2261                 } else {
2262                         MonoInst *ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_METHODCONST, method);
2263                         method_reg = ins->dreg;
2264                 }
2265
2266 #ifdef ENABLE_LLVM
2267                 call->imt_arg_reg = method_reg;
2268 #endif
2269                 mono_call_inst_add_outarg_reg (cfg, call, method_reg, MONO_ARCH_IMT_REG, FALSE);
2270                 return;
2271         }
2272
2273         if (imt_arg) {
2274                 method_reg = alloc_preg (cfg);
2275                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, method_reg, imt_arg->dreg);
2276         } else {
2277                 MonoInst *ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_METHODCONST, method);
2278                 method_reg = ins->dreg;
2279         }
2280
2281         mono_call_inst_add_outarg_reg (cfg, call, method_reg, MONO_ARCH_IMT_REG, FALSE);
2282 }
2283
2284 static MonoJumpInfo *
2285 mono_patch_info_new (MonoMemPool *mp, int ip, MonoJumpInfoType type, gconstpointer target)
2286 {
2287         MonoJumpInfo *ji = (MonoJumpInfo *)mono_mempool_alloc (mp, sizeof (MonoJumpInfo));
2288
2289         ji->ip.i = ip;
2290         ji->type = type;
2291         ji->data.target = target;
2292
2293         return ji;
2294 }
2295
2296 static int
2297 mini_class_check_context_used (MonoCompile *cfg, MonoClass *klass)
2298 {
2299         if (cfg->gshared)
2300                 return mono_class_check_context_used (klass);
2301         else
2302                 return 0;
2303 }
2304
2305 static int
2306 mini_method_check_context_used (MonoCompile *cfg, MonoMethod *method)
2307 {
2308         if (cfg->gshared)
2309                 return mono_method_check_context_used (method);
2310         else
2311                 return 0;
2312 }
2313
2314 /*
2315  * check_method_sharing:
2316  *
2317  *   Check whenever the vtable or an mrgctx needs to be passed when calling CMETHOD.
2318  */
2319 static void
2320 check_method_sharing (MonoCompile *cfg, MonoMethod *cmethod, gboolean *out_pass_vtable, gboolean *out_pass_mrgctx)
2321 {
2322         gboolean pass_vtable = FALSE;
2323         gboolean pass_mrgctx = FALSE;
2324
2325         if (((cmethod->flags & METHOD_ATTRIBUTE_STATIC) || cmethod->klass->valuetype) &&
2326                 (mono_class_is_ginst (cmethod->klass) || mono_class_is_gtd (cmethod->klass))) {
2327                 gboolean sharable = FALSE;
2328
2329                 if (mono_method_is_generic_sharable_full (cmethod, TRUE, TRUE, TRUE))
2330                         sharable = TRUE;
2331
2332                 /*
2333                  * Pass vtable iff target method might
2334                  * be shared, which means that sharing
2335                  * is enabled for its class and its
2336                  * context is sharable (and it's not a
2337                  * generic method).
2338                  */
2339                 if (sharable && !(mini_method_get_context (cmethod) && mini_method_get_context (cmethod)->method_inst))
2340                         pass_vtable = TRUE;
2341         }
2342
2343         if (mini_method_get_context (cmethod) &&
2344                 mini_method_get_context (cmethod)->method_inst) {
2345                 g_assert (!pass_vtable);
2346
2347                 if (mono_method_is_generic_sharable_full (cmethod, TRUE, TRUE, TRUE)) {
2348                         pass_mrgctx = TRUE;
2349                 } else {
2350                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (mono_method_signature (cmethod)))
2351                                 pass_mrgctx = TRUE;
2352                 }
2353         }
2354
2355         if (out_pass_vtable)
2356                 *out_pass_vtable = pass_vtable;
2357         if (out_pass_mrgctx)
2358                 *out_pass_mrgctx = pass_mrgctx;
2359 }
2360
2361 inline static MonoCallInst *
2362 mono_emit_call_args (MonoCompile *cfg, MonoMethodSignature *sig, 
2363                                          MonoInst **args, int calli, int virtual_, int tail, int rgctx, int unbox_trampoline)
2364 {
2365         MonoType *sig_ret;
2366         MonoCallInst *call;
2367 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
2368         int i;
2369 #endif
2370
2371         if (cfg->llvm_only)
2372                 tail = FALSE;
2373
2374         if (tail) {
2375                 emit_instrumentation_call (cfg, mono_profiler_method_leave);
2376
2377                 MONO_INST_NEW_CALL (cfg, call, OP_TAILCALL);
2378         } else
2379                 MONO_INST_NEW_CALL (cfg, call, ret_type_to_call_opcode (cfg, sig->ret, calli, virtual_));
2380
2381         call->args = args;
2382         call->signature = sig;
2383         call->rgctx_reg = rgctx;
2384         sig_ret = mini_get_underlying_type (sig->ret);
2385
2386         type_to_eval_stack_type ((cfg), sig_ret, &call->inst);
2387
2388         if (tail) {
2389                 if (mini_type_is_vtype (sig_ret)) {
2390                         call->vret_var = cfg->vret_addr;
2391                         //g_assert_not_reached ();
2392                 }
2393         } else if (mini_type_is_vtype (sig_ret)) {
2394                 MonoInst *temp = mono_compile_create_var (cfg, sig_ret, OP_LOCAL);
2395                 MonoInst *loada;
2396
2397                 temp->backend.is_pinvoke = sig->pinvoke;
2398
2399                 /*
2400                  * We use a new opcode OP_OUTARG_VTRETADDR instead of LDADDR for emitting the
2401                  * address of return value to increase optimization opportunities.
2402                  * Before vtype decomposition, the dreg of the call ins itself represents the
2403                  * fact the call modifies the return value. After decomposition, the call will
2404                  * be transformed into one of the OP_VOIDCALL opcodes, and the VTRETADDR opcode
2405                  * will be transformed into an LDADDR.
2406                  */
2407                 MONO_INST_NEW (cfg, loada, OP_OUTARG_VTRETADDR);
2408                 loada->dreg = alloc_preg (cfg);
2409                 loada->inst_p0 = temp;
2410                 /* We reference the call too since call->dreg could change during optimization */
2411                 loada->inst_p1 = call;
2412                 MONO_ADD_INS (cfg->cbb, loada);
2413
2414                 call->inst.dreg = temp->dreg;
2415
2416                 call->vret_var = loada;
2417         } else if (!MONO_TYPE_IS_VOID (sig_ret))
2418                 call->inst.dreg = alloc_dreg (cfg, (MonoStackType)call->inst.type);
2419
2420 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
2421         if (COMPILE_SOFT_FLOAT (cfg)) {
2422                 /* 
2423                  * If the call has a float argument, we would need to do an r8->r4 conversion using 
2424                  * an icall, but that cannot be done during the call sequence since it would clobber
2425                  * the call registers + the stack. So we do it before emitting the call.
2426                  */
2427                 for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
2428                         MonoType *t;
2429                         MonoInst *in = call->args [i];
2430
2431                         if (i >= sig->hasthis)
2432                                 t = sig->params [i - sig->hasthis];
2433                         else
2434                                 t = &mono_defaults.int_class->byval_arg;
2435                         t = mono_type_get_underlying_type (t);
2436
2437                         if (!t->byref && t->type == MONO_TYPE_R4) {
2438                                 MonoInst *iargs [1];
2439                                 MonoInst *conv;
2440
2441                                 iargs [0] = in;
2442                                 conv = mono_emit_jit_icall (cfg, mono_fload_r4_arg, iargs);
2443
2444                                 /* The result will be in an int vreg */
2445                                 call->args [i] = conv;
2446                         }
2447                 }
2448         }
2449 #endif
2450
2451         call->need_unbox_trampoline = unbox_trampoline;
2452
2453 #ifdef ENABLE_LLVM
2454         if (COMPILE_LLVM (cfg))
2455                 mono_llvm_emit_call (cfg, call);
2456         else
2457                 mono_arch_emit_call (cfg, call);
2458 #else
2459         mono_arch_emit_call (cfg, call);
2460 #endif
2461
2462         cfg->param_area = MAX (cfg->param_area, call->stack_usage);
2463         cfg->flags |= MONO_CFG_HAS_CALLS;
2464         
2465         return call;
2466 }
2467
2468 static void
2469 set_rgctx_arg (MonoCompile *cfg, MonoCallInst *call, int rgctx_reg, MonoInst *rgctx_arg)
2470 {
2471         mono_call_inst_add_outarg_reg (cfg, call, rgctx_reg, MONO_ARCH_RGCTX_REG, FALSE);
2472         cfg->uses_rgctx_reg = TRUE;
2473         call->rgctx_reg = TRUE;
2474 #ifdef ENABLE_LLVM
2475         call->rgctx_arg_reg = rgctx_reg;
2476 #endif
2477 }       
2478
2479 inline static MonoInst*
2480 mono_emit_calli (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **args, MonoInst *addr, MonoInst *imt_arg, MonoInst *rgctx_arg)
2481 {
2482         MonoCallInst *call;
2483         MonoInst *ins;
2484         int rgctx_reg = -1;
2485         gboolean check_sp = FALSE;
2486
2487         if (cfg->check_pinvoke_callconv && cfg->method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) {
2488                 WrapperInfo *info = mono_marshal_get_wrapper_info (cfg->method);
2489
2490                 if (info && info->subtype == WRAPPER_SUBTYPE_PINVOKE)
2491                         check_sp = TRUE;
2492         }
2493
2494         if (rgctx_arg) {
2495                 rgctx_reg = mono_alloc_preg (cfg);
2496                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, rgctx_reg, rgctx_arg->dreg);
2497         }
2498
2499         if (check_sp) {
2500                 if (!cfg->stack_inbalance_var)
2501                         cfg->stack_inbalance_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2502
2503                 MONO_INST_NEW (cfg, ins, OP_GET_SP);
2504                 ins->dreg = cfg->stack_inbalance_var->dreg;
2505                 MONO_ADD_INS (cfg->cbb, ins);
2506         }
2507
2508         call = mono_emit_call_args (cfg, sig, args, TRUE, FALSE, FALSE, rgctx_arg ? TRUE : FALSE, FALSE);
2509
2510         call->inst.sreg1 = addr->dreg;
2511
2512         if (imt_arg)
2513                 emit_imt_argument (cfg, call, NULL, imt_arg);
2514
2515         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2516
2517         if (check_sp) {
2518                 int sp_reg;
2519
2520                 sp_reg = mono_alloc_preg (cfg);
2521
2522                 MONO_INST_NEW (cfg, ins, OP_GET_SP);
2523                 ins->dreg = sp_reg;
2524                 MONO_ADD_INS (cfg->cbb, ins);
2525
2526                 /* Restore the stack so we don't crash when throwing the exception */
2527                 MONO_INST_NEW (cfg, ins, OP_SET_SP);
2528                 ins->sreg1 = cfg->stack_inbalance_var->dreg;
2529                 MONO_ADD_INS (cfg->cbb, ins);
2530
2531                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, cfg->stack_inbalance_var->dreg, sp_reg);
2532                 MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "ExecutionEngineException");
2533         }
2534
2535         if (rgctx_arg)
2536                 set_rgctx_arg (cfg, call, rgctx_reg, rgctx_arg);
2537
2538         return (MonoInst*)call;
2539 }
2540
2541 static MonoInst*
2542 emit_get_gsharedvt_info_klass (MonoCompile *cfg, MonoClass *klass, MonoRgctxInfoType rgctx_type);
2543
2544 static MonoInst*
2545 emit_get_rgctx_method (MonoCompile *cfg, int context_used, MonoMethod *cmethod, MonoRgctxInfoType rgctx_type);
2546
2547 static MonoInst*
2548 mono_emit_method_call_full (MonoCompile *cfg, MonoMethod *method, MonoMethodSignature *sig, gboolean tail,
2549                                                         MonoInst **args, MonoInst *this_ins, MonoInst *imt_arg, MonoInst *rgctx_arg)
2550 {
2551 #ifndef DISABLE_REMOTING
2552         gboolean might_be_remote = FALSE;
2553 #endif
2554         gboolean virtual_ = this_ins != NULL;
2555         gboolean enable_for_aot = TRUE;
2556         int context_used;
2557         MonoCallInst *call;
2558         MonoInst *call_target = NULL;
2559         int rgctx_reg = 0;
2560         gboolean need_unbox_trampoline;
2561
2562         if (!sig)
2563                 sig = mono_method_signature (method);
2564
2565         if (cfg->llvm_only && (mono_class_is_interface (method->klass)))
2566                 g_assert_not_reached ();
2567
2568         if (rgctx_arg) {
2569                 rgctx_reg = mono_alloc_preg (cfg);
2570                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, rgctx_reg, rgctx_arg->dreg);
2571         }
2572
2573         if (method->string_ctor) {
2574                 /* Create the real signature */
2575                 /* FIXME: Cache these */
2576                 MonoMethodSignature *ctor_sig = mono_metadata_signature_dup_mempool (cfg->mempool, sig);
2577                 ctor_sig->ret = &mono_defaults.string_class->byval_arg;
2578
2579                 sig = ctor_sig;
2580         }
2581
2582         context_used = mini_method_check_context_used (cfg, method);
2583
2584 #ifndef DISABLE_REMOTING
2585         might_be_remote = this_ins && sig->hasthis &&
2586                 (mono_class_is_marshalbyref (method->klass) || method->klass == mono_defaults.object_class) &&
2587                 !(method->flags & METHOD_ATTRIBUTE_VIRTUAL) && (!MONO_CHECK_THIS (this_ins) || context_used);
2588
2589         if (might_be_remote && context_used) {
2590                 MonoInst *addr;
2591
2592                 g_assert (cfg->gshared);
2593
2594                 addr = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_REMOTING_INVOKE_WITH_CHECK);
2595
2596                 return mono_emit_calli (cfg, sig, args, addr, NULL, NULL);
2597         }
2598 #endif
2599
2600         if (cfg->llvm_only && !call_target && virtual_ && (method->flags & METHOD_ATTRIBUTE_VIRTUAL))
2601                 return emit_llvmonly_virtual_call (cfg, method, sig, 0, args);
2602
2603         need_unbox_trampoline = method->klass == mono_defaults.object_class || mono_class_is_interface (method->klass);
2604
2605         call = mono_emit_call_args (cfg, sig, args, FALSE, virtual_, tail, rgctx_arg ? TRUE : FALSE, need_unbox_trampoline);
2606
2607 #ifndef DISABLE_REMOTING
2608         if (might_be_remote)
2609                 call->method = mono_marshal_get_remoting_invoke_with_check (method);
2610         else
2611 #endif
2612                 call->method = method;
2613         call->inst.flags |= MONO_INST_HAS_METHOD;
2614         call->inst.inst_left = this_ins;
2615         call->tail_call = tail;
2616
2617         if (virtual_) {
2618                 int vtable_reg, slot_reg, this_reg;
2619                 int offset;
2620
2621                 this_reg = this_ins->dreg;
2622
2623                 if (!cfg->llvm_only && (method->klass->parent == mono_defaults.multicastdelegate_class) && !strcmp (method->name, "Invoke")) {
2624                         MonoInst *dummy_use;
2625
2626                         MONO_EMIT_NULL_CHECK (cfg, this_reg);
2627
2628                         /* Make a call to delegate->invoke_impl */
2629                         call->inst.inst_basereg = this_reg;
2630                         call->inst.inst_offset = MONO_STRUCT_OFFSET (MonoDelegate, invoke_impl);
2631                         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2632
2633                         /* We must emit a dummy use here because the delegate trampoline will
2634                         replace the 'this' argument with the delegate target making this activation
2635                         no longer a root for the delegate.
2636                         This is an issue for delegates that target collectible code such as dynamic
2637                         methods of GC'able assemblies.
2638
2639                         For a test case look into #667921.
2640
2641                         FIXME: a dummy use is not the best way to do it as the local register allocator
2642                         will put it on a caller save register and spil it around the call. 
2643                         Ideally, we would either put it on a callee save register or only do the store part.  
2644                          */
2645                         EMIT_NEW_DUMMY_USE (cfg, dummy_use, args [0]);
2646
2647                         return (MonoInst*)call;
2648                 }
2649
2650                 if ((!cfg->compile_aot || enable_for_aot) && 
2651                         (!(method->flags & METHOD_ATTRIBUTE_VIRTUAL) || 
2652                          (MONO_METHOD_IS_FINAL (method) &&
2653                           method->wrapper_type != MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)) &&
2654                         !(mono_class_is_marshalbyref (method->klass) && context_used)) {
2655                         /* 
2656                          * the method is not virtual, we just need to ensure this is not null
2657                          * and then we can call the method directly.
2658                          */
2659 #ifndef DISABLE_REMOTING
2660                         if (mono_class_is_marshalbyref (method->klass) || method->klass == mono_defaults.object_class) {
2661                                 /* 
2662                                  * The check above ensures method is not gshared, this is needed since
2663                                  * gshared methods can't have wrappers.
2664                                  */
2665                                 method = call->method = mono_marshal_get_remoting_invoke_with_check (method);
2666                         }
2667 #endif
2668
2669                         if (!method->string_ctor)
2670                                 MONO_EMIT_NEW_CHECK_THIS (cfg, this_reg);
2671
2672                         call->inst.opcode = callvirt_to_call (call->inst.opcode);
2673                 } else if ((method->flags & METHOD_ATTRIBUTE_VIRTUAL) && MONO_METHOD_IS_FINAL (method)) {
2674                         /*
2675                          * the method is virtual, but we can statically dispatch since either
2676                          * it's class or the method itself are sealed.
2677                          * But first we need to ensure it's not a null reference.
2678                          */
2679                         MONO_EMIT_NEW_CHECK_THIS (cfg, this_reg);
2680
2681                         call->inst.opcode = callvirt_to_call (call->inst.opcode);
2682                 } else if (call_target) {
2683                         vtable_reg = alloc_preg (cfg);
2684                         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
2685
2686                         call->inst.opcode = callvirt_to_call_reg (call->inst.opcode);
2687                         call->inst.sreg1 = call_target->dreg;
2688                         call->inst.flags &= !MONO_INST_HAS_METHOD;
2689                 } else {
2690                         vtable_reg = alloc_preg (cfg);
2691                         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
2692                         if (mono_class_is_interface (method->klass)) {
2693                                 guint32 imt_slot = mono_method_get_imt_slot (method);
2694                                 emit_imt_argument (cfg, call, call->method, imt_arg);
2695                                 slot_reg = vtable_reg;
2696                                 offset = ((gint32)imt_slot - MONO_IMT_SIZE) * SIZEOF_VOID_P;
2697                         } else {
2698                                 slot_reg = vtable_reg;
2699                                 offset = MONO_STRUCT_OFFSET (MonoVTable, vtable) +
2700                                         ((mono_method_get_vtable_index (method)) * (SIZEOF_VOID_P));
2701                                 if (imt_arg) {
2702                                         g_assert (mono_method_signature (method)->generic_param_count);
2703                                         emit_imt_argument (cfg, call, call->method, imt_arg);
2704                                 }
2705                         }
2706
2707                         call->inst.sreg1 = slot_reg;
2708                         call->inst.inst_offset = offset;
2709                         call->is_virtual = TRUE;
2710                 }
2711         }
2712
2713         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2714
2715         if (rgctx_arg)
2716                 set_rgctx_arg (cfg, call, rgctx_reg, rgctx_arg);
2717
2718         return (MonoInst*)call;
2719 }
2720
2721 MonoInst*
2722 mono_emit_method_call (MonoCompile *cfg, MonoMethod *method, MonoInst **args, MonoInst *this_ins)
2723 {
2724         return mono_emit_method_call_full (cfg, method, mono_method_signature (method), FALSE, args, this_ins, NULL, NULL);
2725 }
2726
2727 MonoInst*
2728 mono_emit_native_call (MonoCompile *cfg, gconstpointer func, MonoMethodSignature *sig,
2729                                            MonoInst **args)
2730 {
2731         MonoCallInst *call;
2732
2733         g_assert (sig);
2734
2735         call = mono_emit_call_args (cfg, sig, args, FALSE, FALSE, FALSE, FALSE, FALSE);
2736         call->fptr = func;
2737
2738         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2739
2740         return (MonoInst*)call;
2741 }
2742
2743 MonoInst*
2744 mono_emit_jit_icall (MonoCompile *cfg, gconstpointer func, MonoInst **args)
2745 {
2746         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (func);
2747
2748         g_assert (info);
2749
2750         return mono_emit_native_call (cfg, mono_icall_get_wrapper (info), info->sig, args);
2751 }
2752
2753 /*
2754  * mono_emit_abs_call:
2755  *
2756  *   Emit a call to the runtime function described by PATCH_TYPE and DATA.
2757  */
2758 inline static MonoInst*
2759 mono_emit_abs_call (MonoCompile *cfg, MonoJumpInfoType patch_type, gconstpointer data, 
2760                                         MonoMethodSignature *sig, MonoInst **args)
2761 {
2762         MonoJumpInfo *ji = mono_patch_info_new (cfg->mempool, 0, patch_type, data);
2763         MonoInst *ins;
2764
2765         /* 
2766          * We pass ji as the call address, the PATCH_INFO_ABS resolving code will
2767          * handle it.
2768          */
2769         if (cfg->abs_patches == NULL)
2770                 cfg->abs_patches = g_hash_table_new (NULL, NULL);
2771         g_hash_table_insert (cfg->abs_patches, ji, ji);
2772         ins = mono_emit_native_call (cfg, ji, sig, args);
2773         ((MonoCallInst*)ins)->fptr_is_patch = TRUE;
2774         return ins;
2775 }
2776
2777 static MonoMethodSignature*
2778 sig_to_rgctx_sig (MonoMethodSignature *sig)
2779 {
2780         // FIXME: memory allocation
2781         MonoMethodSignature *res;
2782         int i;
2783
2784         res = (MonoMethodSignature *)g_malloc (MONO_SIZEOF_METHOD_SIGNATURE + (sig->param_count + 1) * sizeof (MonoType*));
2785         memcpy (res, sig, MONO_SIZEOF_METHOD_SIGNATURE);
2786         res->param_count = sig->param_count + 1;
2787         for (i = 0; i < sig->param_count; ++i)
2788                 res->params [i] = sig->params [i];
2789         res->params [sig->param_count] = &mono_defaults.int_class->this_arg;
2790         return res;
2791 }
2792
2793 /* Make an indirect call to FSIG passing an additional argument */
2794 static MonoInst*
2795 emit_extra_arg_calli (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **orig_args, int arg_reg, MonoInst *call_target)
2796 {
2797         MonoMethodSignature *csig;
2798         MonoInst *args_buf [16];
2799         MonoInst **args;
2800         int i, pindex, tmp_reg;
2801
2802         /* Make a call with an rgctx/extra arg */
2803         if (fsig->param_count + 2 < 16)
2804                 args = args_buf;
2805         else
2806                 args = (MonoInst **)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst*) * (fsig->param_count + 2));
2807         pindex = 0;
2808         if (fsig->hasthis)
2809                 args [pindex ++] = orig_args [0];
2810         for (i = 0; i < fsig->param_count; ++i)
2811                 args [pindex ++] = orig_args [fsig->hasthis + i];
2812         tmp_reg = alloc_preg (cfg);
2813         EMIT_NEW_UNALU (cfg, args [pindex], OP_MOVE, tmp_reg, arg_reg);
2814         csig = sig_to_rgctx_sig (fsig);
2815         return mono_emit_calli (cfg, csig, args, call_target, NULL, NULL);
2816 }
2817
2818 /* Emit an indirect call to the function descriptor ADDR */
2819 static MonoInst*
2820 emit_llvmonly_calli (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args, MonoInst *addr)
2821 {
2822         int addr_reg, arg_reg;
2823         MonoInst *call_target;
2824
2825         g_assert (cfg->llvm_only);
2826
2827         /*
2828          * addr points to a <addr, arg> pair, load both of them, and
2829          * make a call to addr, passing arg as an extra arg.
2830          */
2831         addr_reg = alloc_preg (cfg);
2832         EMIT_NEW_LOAD_MEMBASE (cfg, call_target, OP_LOAD_MEMBASE, addr_reg, addr->dreg, 0);
2833         arg_reg = alloc_preg (cfg);
2834         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, arg_reg, addr->dreg, sizeof (gpointer));
2835
2836         return emit_extra_arg_calli (cfg, fsig, args, arg_reg, call_target);
2837 }
2838
2839 static gboolean
2840 direct_icalls_enabled (MonoCompile *cfg)
2841 {
2842         return FALSE;
2843
2844         /* LLVM on amd64 can't handle calls to non-32 bit addresses */
2845 #ifdef TARGET_AMD64
2846         if (cfg->compile_llvm && !cfg->llvm_only)
2847                 return FALSE;
2848 #endif
2849         if (cfg->gen_sdb_seq_points || cfg->disable_direct_icalls)
2850                 return FALSE;
2851         return TRUE;
2852 }
2853
2854 MonoInst*
2855 mono_emit_jit_icall_by_info (MonoCompile *cfg, int il_offset, MonoJitICallInfo *info, MonoInst **args)
2856 {
2857         /*
2858          * Call the jit icall without a wrapper if possible.
2859          * The wrapper is needed for the following reasons:
2860          * - to handle exceptions thrown using mono_raise_exceptions () from the
2861          *   icall function. The EH code needs the lmf frame pushed by the
2862          *   wrapper to be able to unwind back to managed code.
2863          * - to be able to do stack walks for asynchronously suspended
2864          *   threads when debugging.
2865          */
2866         if (info->no_raise && direct_icalls_enabled (cfg)) {
2867                 char *name;
2868                 int costs;
2869
2870                 if (!info->wrapper_method) {
2871                         name = g_strdup_printf ("__icall_wrapper_%s", info->name);
2872                         info->wrapper_method = mono_marshal_get_icall_wrapper (info->sig, name, info->func, TRUE);
2873                         g_free (name);
2874                         mono_memory_barrier ();
2875                 }
2876
2877                 /*
2878                  * Inline the wrapper method, which is basically a call to the C icall, and
2879                  * an exception check.
2880                  */
2881                 costs = inline_method (cfg, info->wrapper_method, NULL,
2882                                                            args, NULL, il_offset, TRUE);
2883                 g_assert (costs > 0);
2884                 g_assert (!MONO_TYPE_IS_VOID (info->sig->ret));
2885
2886                 return args [0];
2887         } else {
2888                 return mono_emit_native_call (cfg, mono_icall_get_wrapper (info), info->sig, args);
2889         }
2890 }
2891  
2892 static MonoInst*
2893 mono_emit_widen_call_res (MonoCompile *cfg, MonoInst *ins, MonoMethodSignature *fsig)
2894 {
2895         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
2896                 if ((fsig->pinvoke || LLVM_ENABLED) && !fsig->ret->byref) {
2897                         int widen_op = -1;
2898
2899                         /* 
2900                          * Native code might return non register sized integers 
2901                          * without initializing the upper bits.
2902                          */
2903                         switch (mono_type_to_load_membase (cfg, fsig->ret)) {
2904                         case OP_LOADI1_MEMBASE:
2905                                 widen_op = OP_ICONV_TO_I1;
2906                                 break;
2907                         case OP_LOADU1_MEMBASE:
2908                                 widen_op = OP_ICONV_TO_U1;
2909                                 break;
2910                         case OP_LOADI2_MEMBASE:
2911                                 widen_op = OP_ICONV_TO_I2;
2912                                 break;
2913                         case OP_LOADU2_MEMBASE:
2914                                 widen_op = OP_ICONV_TO_U2;
2915                                 break;
2916                         default:
2917                                 break;
2918                         }
2919
2920                         if (widen_op != -1) {
2921                                 int dreg = alloc_preg (cfg);
2922                                 MonoInst *widen;
2923
2924                                 EMIT_NEW_UNALU (cfg, widen, widen_op, dreg, ins->dreg);
2925                                 widen->type = ins->type;
2926                                 ins = widen;
2927                         }
2928                 }
2929         }
2930
2931         return ins;
2932 }
2933
2934
2935 static void
2936 emit_method_access_failure (MonoCompile *cfg, MonoMethod *caller, MonoMethod *callee)
2937 {
2938         MonoInst *args [16];
2939
2940         args [0] = emit_get_rgctx_method (cfg, mono_method_check_context_used (caller), caller, MONO_RGCTX_INFO_METHOD);
2941         args [1] = emit_get_rgctx_method (cfg, mono_method_check_context_used (callee), callee, MONO_RGCTX_INFO_METHOD);
2942
2943         mono_emit_jit_icall (cfg, mono_throw_method_access, args);
2944 }
2945
2946 static MonoMethod*
2947 get_memcpy_method (void)
2948 {
2949         static MonoMethod *memcpy_method = NULL;
2950         if (!memcpy_method) {
2951                 memcpy_method = mono_class_get_method_from_name (mono_defaults.string_class, "memcpy", 3);
2952                 if (!memcpy_method)
2953                         g_error ("Old corlib found. Install a new one");
2954         }
2955         return memcpy_method;
2956 }
2957
2958 static void
2959 create_write_barrier_bitmap (MonoCompile *cfg, MonoClass *klass, unsigned *wb_bitmap, int offset)
2960 {
2961         MonoClassField *field;
2962         gpointer iter = NULL;
2963
2964         while ((field = mono_class_get_fields (klass, &iter))) {
2965                 int foffset;
2966
2967                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
2968                         continue;
2969                 foffset = klass->valuetype ? field->offset - sizeof (MonoObject): field->offset;
2970                 if (mini_type_is_reference (mono_field_get_type (field))) {
2971                         g_assert ((foffset % SIZEOF_VOID_P) == 0);
2972                         *wb_bitmap |= 1 << ((offset + foffset) / SIZEOF_VOID_P);
2973                 } else {
2974                         MonoClass *field_class = mono_class_from_mono_type (field->type);
2975                         if (field_class->has_references)
2976                                 create_write_barrier_bitmap (cfg, field_class, wb_bitmap, offset + foffset);
2977                 }
2978         }
2979 }
2980
2981 static void
2982 emit_write_barrier (MonoCompile *cfg, MonoInst *ptr, MonoInst *value)
2983 {
2984         int card_table_shift_bits;
2985         gpointer card_table_mask;
2986         guint8 *card_table;
2987         MonoInst *dummy_use;
2988         int nursery_shift_bits;
2989         size_t nursery_size;
2990
2991         if (!cfg->gen_write_barriers)
2992                 return;
2993
2994         card_table = mono_gc_get_card_table (&card_table_shift_bits, &card_table_mask);
2995
2996         mono_gc_get_nursery (&nursery_shift_bits, &nursery_size);
2997
2998         if (cfg->backend->have_card_table_wb && !cfg->compile_aot && card_table && nursery_shift_bits > 0 && !COMPILE_LLVM (cfg)) {
2999                 MonoInst *wbarrier;
3000
3001                 MONO_INST_NEW (cfg, wbarrier, OP_CARD_TABLE_WBARRIER);
3002                 wbarrier->sreg1 = ptr->dreg;
3003                 wbarrier->sreg2 = value->dreg;
3004                 MONO_ADD_INS (cfg->cbb, wbarrier);
3005         } else if (card_table && !cfg->compile_aot && !mono_gc_card_table_nursery_check ()) {
3006                 int offset_reg = alloc_preg (cfg);
3007                 int card_reg;
3008                 MonoInst *ins;
3009
3010                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_UN_IMM, offset_reg, ptr->dreg, card_table_shift_bits);
3011                 if (card_table_mask)
3012                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PAND_IMM, offset_reg, offset_reg, card_table_mask);
3013
3014                 /*We can't use PADD_IMM since the cardtable might end up in high addresses and amd64 doesn't support
3015                  * IMM's larger than 32bits.
3016                  */
3017                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_CARD_TABLE_ADDR, NULL);
3018                 card_reg = ins->dreg;
3019
3020                 MONO_EMIT_NEW_BIALU (cfg, OP_PADD, offset_reg, offset_reg, card_reg);
3021                 MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI1_MEMBASE_IMM, offset_reg, 0, 1);
3022         } else {
3023                 MonoMethod *write_barrier = mono_gc_get_write_barrier ();
3024                 mono_emit_method_call (cfg, write_barrier, &ptr, NULL);
3025         }
3026
3027         EMIT_NEW_DUMMY_USE (cfg, dummy_use, value);
3028 }
3029
3030 static gboolean
3031 mono_emit_wb_aware_memcpy (MonoCompile *cfg, MonoClass *klass, MonoInst *iargs[4], int size, int align)
3032 {
3033         int dest_ptr_reg, tmp_reg, destreg, srcreg, offset;
3034         unsigned need_wb = 0;
3035
3036         if (align == 0)
3037                 align = 4;
3038
3039         /*types with references can't have alignment smaller than sizeof(void*) */
3040         if (align < SIZEOF_VOID_P)
3041                 return FALSE;
3042
3043         /*This value cannot be bigger than 32 due to the way we calculate the required wb bitmap.*/
3044         if (size > 32 * SIZEOF_VOID_P)
3045                 return FALSE;
3046
3047         create_write_barrier_bitmap (cfg, klass, &need_wb, 0);
3048
3049         /* We don't unroll more than 5 stores to avoid code bloat. */
3050         if (size > 5 * SIZEOF_VOID_P) {
3051                 /*This is harmless and simplify mono_gc_wbarrier_value_copy_bitmap */
3052                 size += (SIZEOF_VOID_P - 1);
3053                 size &= ~(SIZEOF_VOID_P - 1);
3054
3055                 EMIT_NEW_ICONST (cfg, iargs [2], size);
3056                 EMIT_NEW_ICONST (cfg, iargs [3], need_wb);
3057                 mono_emit_jit_icall (cfg, mono_gc_wbarrier_value_copy_bitmap, iargs);
3058                 return TRUE;
3059         }
3060
3061         destreg = iargs [0]->dreg;
3062         srcreg = iargs [1]->dreg;
3063         offset = 0;
3064
3065         dest_ptr_reg = alloc_preg (cfg);
3066         tmp_reg = alloc_preg (cfg);
3067
3068         /*tmp = dreg*/
3069         EMIT_NEW_UNALU (cfg, iargs [0], OP_MOVE, dest_ptr_reg, destreg);
3070
3071         while (size >= SIZEOF_VOID_P) {
3072                 MonoInst *load_inst;
3073                 MONO_INST_NEW (cfg, load_inst, OP_LOAD_MEMBASE);
3074                 load_inst->dreg = tmp_reg;
3075                 load_inst->inst_basereg = srcreg;
3076                 load_inst->inst_offset = offset;
3077                 MONO_ADD_INS (cfg->cbb, load_inst);
3078
3079                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, dest_ptr_reg, 0, tmp_reg);
3080
3081                 if (need_wb & 0x1)
3082                         emit_write_barrier (cfg, iargs [0], load_inst);
3083
3084                 offset += SIZEOF_VOID_P;
3085                 size -= SIZEOF_VOID_P;
3086                 need_wb >>= 1;
3087
3088                 /*tmp += sizeof (void*)*/
3089                 if (size >= SIZEOF_VOID_P) {
3090                         NEW_BIALU_IMM (cfg, iargs [0], OP_PADD_IMM, dest_ptr_reg, dest_ptr_reg, SIZEOF_VOID_P);
3091                         MONO_ADD_INS (cfg->cbb, iargs [0]);
3092                 }
3093         }
3094
3095         /* Those cannot be references since size < sizeof (void*) */
3096         while (size >= 4) {
3097                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, tmp_reg, srcreg, offset);
3098                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, offset, tmp_reg);
3099                 offset += 4;
3100                 size -= 4;
3101         }
3102
3103         while (size >= 2) {
3104                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI2_MEMBASE, tmp_reg, srcreg, offset);
3105                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI2_MEMBASE_REG, destreg, offset, tmp_reg);
3106                 offset += 2;
3107                 size -= 2;
3108         }
3109
3110         while (size >= 1) {
3111                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, tmp_reg, srcreg, offset);
3112                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, offset, tmp_reg);
3113                 offset += 1;
3114                 size -= 1;
3115         }
3116
3117         return TRUE;
3118 }
3119
3120 /*
3121  * Emit code to copy a valuetype of type @klass whose address is stored in
3122  * @src->dreg to memory whose address is stored at @dest->dreg.
3123  */
3124 void
3125 mini_emit_stobj (MonoCompile *cfg, MonoInst *dest, MonoInst *src, MonoClass *klass, gboolean native)
3126 {
3127         MonoInst *iargs [4];
3128         int n;
3129         guint32 align = 0;
3130         MonoMethod *memcpy_method;
3131         MonoInst *size_ins = NULL;
3132         MonoInst *memcpy_ins = NULL;
3133
3134         g_assert (klass);
3135         if (cfg->gshared)
3136                 klass = mono_class_from_mono_type (mini_get_underlying_type (&klass->byval_arg));
3137
3138         /*
3139          * This check breaks with spilled vars... need to handle it during verification anyway.
3140          * g_assert (klass && klass == src->klass && klass == dest->klass);
3141          */
3142
3143         if (mini_is_gsharedvt_klass (klass)) {
3144                 g_assert (!native);
3145                 size_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_VALUE_SIZE);
3146                 memcpy_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_MEMCPY);
3147         }
3148
3149         if (native)
3150                 n = mono_class_native_size (klass, &align);
3151         else
3152                 n = mono_class_value_size (klass, &align);
3153
3154         /* if native is true there should be no references in the struct */
3155         if (cfg->gen_write_barriers && (klass->has_references || size_ins) && !native) {
3156                 /* Avoid barriers when storing to the stack */
3157                 if (!((dest->opcode == OP_ADD_IMM && dest->sreg1 == cfg->frame_reg) ||
3158                           (dest->opcode == OP_LDADDR))) {
3159                         int context_used;
3160
3161                         iargs [0] = dest;
3162                         iargs [1] = src;
3163
3164                         context_used = mini_class_check_context_used (cfg, klass);
3165
3166                         /* It's ok to intrinsify under gsharing since shared code types are layout stable. */
3167                         if (!size_ins && (cfg->opt & MONO_OPT_INTRINS) && mono_emit_wb_aware_memcpy (cfg, klass, iargs, n, align)) {
3168                                 return;
3169                         } else if (context_used) {
3170                                 iargs [2] = mini_emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
3171                         }  else {
3172                                 iargs [2] = emit_runtime_constant (cfg, MONO_PATCH_INFO_CLASS, klass);
3173                                 if (!cfg->compile_aot)
3174                                         mono_class_compute_gc_descriptor (klass);
3175                         }
3176
3177                         if (size_ins)
3178                                 mono_emit_jit_icall (cfg, mono_gsharedvt_value_copy, iargs);
3179                         else
3180                                 mono_emit_jit_icall (cfg, mono_value_copy, iargs);
3181                         return;
3182                 }
3183         }
3184
3185         if (!size_ins && (cfg->opt & MONO_OPT_INTRINS) && n <= sizeof (gpointer) * 8) {
3186                 /* FIXME: Optimize the case when src/dest is OP_LDADDR */
3187                 mini_emit_memcpy (cfg, dest->dreg, 0, src->dreg, 0, n, align);
3188         } else {
3189                 iargs [0] = dest;
3190                 iargs [1] = src;
3191                 if (size_ins)
3192                         iargs [2] = size_ins;
3193                 else
3194                         EMIT_NEW_ICONST (cfg, iargs [2], n);
3195                 
3196                 memcpy_method = get_memcpy_method ();
3197                 if (memcpy_ins)
3198                         mono_emit_calli (cfg, mono_method_signature (memcpy_method), iargs, memcpy_ins, NULL, NULL);
3199                 else
3200                         mono_emit_method_call (cfg, memcpy_method, iargs, NULL);
3201         }
3202 }
3203
3204 static MonoMethod*
3205 get_memset_method (void)
3206 {
3207         static MonoMethod *memset_method = NULL;
3208         if (!memset_method) {
3209                 memset_method = mono_class_get_method_from_name (mono_defaults.string_class, "memset", 3);
3210                 if (!memset_method)
3211                         g_error ("Old corlib found. Install a new one");
3212         }
3213         return memset_method;
3214 }
3215
3216 void
3217 mini_emit_initobj (MonoCompile *cfg, MonoInst *dest, const guchar *ip, MonoClass *klass)
3218 {
3219         MonoInst *iargs [3];
3220         int n;
3221         guint32 align;
3222         MonoMethod *memset_method;
3223         MonoInst *size_ins = NULL;
3224         MonoInst *bzero_ins = NULL;
3225         static MonoMethod *bzero_method;
3226
3227         /* FIXME: Optimize this for the case when dest is an LDADDR */
3228         mono_class_init (klass);
3229         if (mini_is_gsharedvt_klass (klass)) {
3230                 size_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_VALUE_SIZE);
3231                 bzero_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_BZERO);
3232                 if (!bzero_method)
3233                         bzero_method = mono_class_get_method_from_name (mono_defaults.string_class, "bzero_aligned_1", 2);
3234                 g_assert (bzero_method);
3235                 iargs [0] = dest;
3236                 iargs [1] = size_ins;
3237                 mono_emit_calli (cfg, mono_method_signature (bzero_method), iargs, bzero_ins, NULL, NULL);
3238                 return;
3239         }
3240
3241         klass = mono_class_from_mono_type (mini_get_underlying_type (&klass->byval_arg));
3242
3243         n = mono_class_value_size (klass, &align);
3244
3245         if (n <= sizeof (gpointer) * 8) {
3246                 mini_emit_memset (cfg, dest->dreg, 0, n, 0, align);
3247         }
3248         else {
3249                 memset_method = get_memset_method ();
3250                 iargs [0] = dest;
3251                 EMIT_NEW_ICONST (cfg, iargs [1], 0);
3252                 EMIT_NEW_ICONST (cfg, iargs [2], n);
3253                 mono_emit_method_call (cfg, memset_method, iargs, NULL);
3254         }
3255 }
3256
3257 /*
3258  * emit_get_rgctx:
3259  *
3260  *   Emit IR to return either the this pointer for instance method,
3261  * or the mrgctx for static methods.
3262  */
3263 static MonoInst*
3264 emit_get_rgctx (MonoCompile *cfg, MonoMethod *method, int context_used)
3265 {
3266         MonoInst *this_ins = NULL;
3267
3268         g_assert (cfg->gshared);
3269
3270         if (!(method->flags & METHOD_ATTRIBUTE_STATIC) &&
3271                         !(context_used & MONO_GENERIC_CONTEXT_USED_METHOD) &&
3272                 !method->klass->valuetype)
3273                 EMIT_NEW_VARLOAD (cfg, this_ins, cfg->this_arg, &mono_defaults.object_class->byval_arg);
3274
3275         if (context_used & MONO_GENERIC_CONTEXT_USED_METHOD) {
3276                 MonoInst *mrgctx_loc, *mrgctx_var;
3277
3278                 g_assert (!this_ins);
3279                 g_assert (method->is_inflated && mono_method_get_context (method)->method_inst);
3280
3281                 mrgctx_loc = mono_get_vtable_var (cfg);
3282                 EMIT_NEW_TEMPLOAD (cfg, mrgctx_var, mrgctx_loc->inst_c0);
3283
3284                 return mrgctx_var;
3285         } else if (method->flags & METHOD_ATTRIBUTE_STATIC || method->klass->valuetype) {
3286                 MonoInst *vtable_loc, *vtable_var;
3287
3288                 g_assert (!this_ins);
3289
3290                 vtable_loc = mono_get_vtable_var (cfg);
3291                 EMIT_NEW_TEMPLOAD (cfg, vtable_var, vtable_loc->inst_c0);
3292
3293                 if (method->is_inflated && mono_method_get_context (method)->method_inst) {
3294                         MonoInst *mrgctx_var = vtable_var;
3295                         int vtable_reg;
3296
3297                         vtable_reg = alloc_preg (cfg);
3298                         EMIT_NEW_LOAD_MEMBASE (cfg, vtable_var, OP_LOAD_MEMBASE, vtable_reg, mrgctx_var->dreg, MONO_STRUCT_OFFSET (MonoMethodRuntimeGenericContext, class_vtable));
3299                         vtable_var->type = STACK_PTR;
3300                 }
3301
3302                 return vtable_var;
3303         } else {
3304                 MonoInst *ins;
3305                 int vtable_reg;
3306         
3307                 vtable_reg = alloc_preg (cfg);
3308                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, vtable_reg, this_ins->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
3309                 return ins;
3310         }
3311 }
3312
3313 static MonoJumpInfoRgctxEntry *
3314 mono_patch_info_rgctx_entry_new (MonoMemPool *mp, MonoMethod *method, gboolean in_mrgctx, MonoJumpInfoType patch_type, gconstpointer patch_data, MonoRgctxInfoType info_type)
3315 {
3316         MonoJumpInfoRgctxEntry *res = (MonoJumpInfoRgctxEntry *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoRgctxEntry));
3317         res->method = method;
3318         res->in_mrgctx = in_mrgctx;
3319         res->data = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo));
3320         res->data->type = patch_type;
3321         res->data->data.target = patch_data;
3322         res->info_type = info_type;
3323
3324         return res;
3325 }
3326
3327 static inline MonoInst*
3328 emit_rgctx_fetch_inline (MonoCompile *cfg, MonoInst *rgctx, MonoJumpInfoRgctxEntry *entry)
3329 {
3330         MonoInst *args [16];
3331         MonoInst *call;
3332
3333         // FIXME: No fastpath since the slot is not a compile time constant
3334         args [0] = rgctx;
3335         EMIT_NEW_AOTCONST (cfg, args [1], MONO_PATCH_INFO_RGCTX_SLOT_INDEX, entry);
3336         if (entry->in_mrgctx)
3337                 call = mono_emit_jit_icall (cfg, mono_fill_method_rgctx, args);
3338         else
3339                 call = mono_emit_jit_icall (cfg, mono_fill_class_rgctx, args);
3340         return call;
3341 #if 0
3342         /*
3343          * FIXME: This can be called during decompose, which is a problem since it creates
3344          * new bblocks.
3345          * Also, the fastpath doesn't work since the slot number is dynamically allocated.
3346          */
3347         int i, slot, depth, index, rgctx_reg, val_reg, res_reg;
3348         gboolean mrgctx;
3349         MonoBasicBlock *is_null_bb, *end_bb;
3350         MonoInst *res, *ins, *call;
3351         MonoInst *args[16];
3352
3353         slot = mini_get_rgctx_entry_slot (entry);
3354
3355         mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
3356         index = MONO_RGCTX_SLOT_INDEX (slot);
3357         if (mrgctx)
3358                 index += MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT / sizeof (gpointer);
3359         for (depth = 0; ; ++depth) {
3360                 int size = mono_class_rgctx_get_array_size (depth, mrgctx);
3361
3362                 if (index < size - 1)
3363                         break;
3364                 index -= size - 1;
3365         }
3366
3367         NEW_BBLOCK (cfg, end_bb);
3368         NEW_BBLOCK (cfg, is_null_bb);
3369
3370         if (mrgctx) {
3371                 rgctx_reg = rgctx->dreg;
3372         } else {
3373                 rgctx_reg = alloc_preg (cfg);
3374
3375                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, rgctx_reg, rgctx->dreg, MONO_STRUCT_OFFSET (MonoVTable, runtime_generic_context));
3376                 // FIXME: Avoid this check by allocating the table when the vtable is created etc.
3377                 NEW_BBLOCK (cfg, is_null_bb);
3378
3379                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rgctx_reg, 0);
3380                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3381         }
3382
3383         for (i = 0; i < depth; ++i) {
3384                 int array_reg = alloc_preg (cfg);
3385
3386                 /* load ptr to next array */
3387                 if (mrgctx && i == 0)
3388                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, rgctx_reg, MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT);
3389                 else
3390                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, rgctx_reg, 0);
3391                 rgctx_reg = array_reg;
3392                 /* is the ptr null? */
3393                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rgctx_reg, 0);
3394                 /* if yes, jump to actual trampoline */
3395                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3396         }
3397
3398         /* fetch slot */
3399         val_reg = alloc_preg (cfg);
3400         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, val_reg, rgctx_reg, (index + 1) * sizeof (gpointer));
3401         /* is the slot null? */
3402         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, val_reg, 0);
3403         /* if yes, jump to actual trampoline */
3404         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3405
3406         /* Fastpath */
3407         res_reg = alloc_preg (cfg);
3408         MONO_INST_NEW (cfg, ins, OP_MOVE);
3409         ins->dreg = res_reg;
3410         ins->sreg1 = val_reg;
3411         MONO_ADD_INS (cfg->cbb, ins);
3412         res = ins;
3413         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
3414
3415         /* Slowpath */
3416         MONO_START_BB (cfg, is_null_bb);
3417         args [0] = rgctx;
3418         EMIT_NEW_ICONST (cfg, args [1], index);
3419         if (mrgctx)
3420                 call = mono_emit_jit_icall (cfg, mono_fill_method_rgctx, args);
3421         else
3422                 call = mono_emit_jit_icall (cfg, mono_fill_class_rgctx, args);
3423         MONO_INST_NEW (cfg, ins, OP_MOVE);
3424         ins->dreg = res_reg;
3425         ins->sreg1 = call->dreg;
3426         MONO_ADD_INS (cfg->cbb, ins);
3427         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
3428
3429         MONO_START_BB (cfg, end_bb);
3430
3431         return res;
3432 #endif
3433 }
3434
3435 /*
3436  * emit_rgctx_fetch:
3437  *
3438  *   Emit IR to load the value of the rgctx entry ENTRY from the rgctx
3439  * given by RGCTX.
3440  */
3441 static inline MonoInst*
3442 emit_rgctx_fetch (MonoCompile *cfg, MonoInst *rgctx, MonoJumpInfoRgctxEntry *entry)
3443 {
3444         if (cfg->llvm_only)
3445                 return emit_rgctx_fetch_inline (cfg, rgctx, entry);
3446         else
3447                 return mono_emit_abs_call (cfg, MONO_PATCH_INFO_RGCTX_FETCH, entry, helper_sig_rgctx_lazy_fetch_trampoline, &rgctx);
3448 }
3449
3450 MonoInst*
3451 mini_emit_get_rgctx_klass (MonoCompile *cfg, int context_used,
3452                                           MonoClass *klass, MonoRgctxInfoType rgctx_type)
3453 {
3454         MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_CLASS, klass, rgctx_type);
3455         MonoInst *rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3456
3457         return emit_rgctx_fetch (cfg, rgctx, entry);
3458 }
3459
3460 static MonoInst*
3461 emit_get_rgctx_sig (MonoCompile *cfg, int context_used,
3462                                         MonoMethodSignature *sig, MonoRgctxInfoType rgctx_type)
3463 {
3464         MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_SIGNATURE, sig, rgctx_type);
3465         MonoInst *rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3466
3467         return emit_rgctx_fetch (cfg, rgctx, entry);
3468 }
3469
3470 static MonoInst*
3471 emit_get_rgctx_gsharedvt_call (MonoCompile *cfg, int context_used,
3472                                                            MonoMethodSignature *sig, MonoMethod *cmethod, MonoRgctxInfoType rgctx_type)
3473 {
3474         MonoJumpInfoGSharedVtCall *call_info;
3475         MonoJumpInfoRgctxEntry *entry;
3476         MonoInst *rgctx;
3477
3478         call_info = (MonoJumpInfoGSharedVtCall *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfoGSharedVtCall));
3479         call_info->sig = sig;
3480         call_info->method = cmethod;
3481
3482         entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_GSHAREDVT_CALL, call_info, rgctx_type);
3483         rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3484
3485         return emit_rgctx_fetch (cfg, rgctx, entry);
3486 }
3487
3488 /*
3489  * emit_get_rgctx_virt_method:
3490  *
3491  *   Return data for method VIRT_METHOD for a receiver of type KLASS.
3492  */
3493 static MonoInst*
3494 emit_get_rgctx_virt_method (MonoCompile *cfg, int context_used,
3495                                                         MonoClass *klass, MonoMethod *virt_method, MonoRgctxInfoType rgctx_type)
3496 {
3497         MonoJumpInfoVirtMethod *info;
3498         MonoJumpInfoRgctxEntry *entry;
3499         MonoInst *rgctx;
3500
3501         info = (MonoJumpInfoVirtMethod *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfoVirtMethod));
3502         info->klass = klass;
3503         info->method = virt_method;
3504
3505         entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_VIRT_METHOD, info, rgctx_type);
3506         rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3507
3508         return emit_rgctx_fetch (cfg, rgctx, entry);
3509 }
3510
3511 static MonoInst*
3512 emit_get_rgctx_gsharedvt_method (MonoCompile *cfg, int context_used,
3513                                                                  MonoMethod *cmethod, MonoGSharedVtMethodInfo *info)
3514 {
3515         MonoJumpInfoRgctxEntry *entry;
3516         MonoInst *rgctx;
3517
3518         entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_GSHAREDVT_METHOD, info, MONO_RGCTX_INFO_METHOD_GSHAREDVT_INFO);
3519         rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3520
3521         return emit_rgctx_fetch (cfg, rgctx, entry);
3522 }
3523
3524 /*
3525  * emit_get_rgctx_method:
3526  *
3527  *   Emit IR to load the property RGCTX_TYPE of CMETHOD. If context_used is 0, emit
3528  * normal constants, else emit a load from the rgctx.
3529  */
3530 static MonoInst*
3531 emit_get_rgctx_method (MonoCompile *cfg, int context_used,
3532                                            MonoMethod *cmethod, MonoRgctxInfoType rgctx_type)
3533 {
3534         if (!context_used) {
3535                 MonoInst *ins;
3536
3537                 switch (rgctx_type) {
3538                 case MONO_RGCTX_INFO_METHOD:
3539                         EMIT_NEW_METHODCONST (cfg, ins, cmethod);
3540                         return ins;
3541                 case MONO_RGCTX_INFO_METHOD_RGCTX:
3542                         EMIT_NEW_METHOD_RGCTX_CONST (cfg, ins, cmethod);
3543                         return ins;
3544                 default:
3545                         g_assert_not_reached ();
3546                 }
3547         } else {
3548                 MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_METHODCONST, cmethod, rgctx_type);
3549                 MonoInst *rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3550
3551                 return emit_rgctx_fetch (cfg, rgctx, entry);
3552         }
3553 }
3554
3555 static MonoInst*
3556 emit_get_rgctx_field (MonoCompile *cfg, int context_used,
3557                                           MonoClassField *field, MonoRgctxInfoType rgctx_type)
3558 {
3559         MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_FIELD, field, rgctx_type);
3560         MonoInst *rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3561
3562         return emit_rgctx_fetch (cfg, rgctx, entry);
3563 }
3564
3565 static int
3566 get_gsharedvt_info_slot (MonoCompile *cfg, gpointer data, MonoRgctxInfoType rgctx_type)
3567 {
3568         MonoGSharedVtMethodInfo *info = cfg->gsharedvt_info;
3569         MonoRuntimeGenericContextInfoTemplate *template_;
3570         int i, idx;
3571
3572         g_assert (info);
3573
3574         for (i = 0; i < info->num_entries; ++i) {
3575                 MonoRuntimeGenericContextInfoTemplate *otemplate = &info->entries [i];
3576
3577                 if (otemplate->info_type == rgctx_type && otemplate->data == data && rgctx_type != MONO_RGCTX_INFO_LOCAL_OFFSET)
3578                         return i;
3579         }
3580
3581         if (info->num_entries == info->count_entries) {
3582                 MonoRuntimeGenericContextInfoTemplate *new_entries;
3583                 int new_count_entries = info->count_entries ? info->count_entries * 2 : 16;
3584
3585                 new_entries = (MonoRuntimeGenericContextInfoTemplate *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoRuntimeGenericContextInfoTemplate) * new_count_entries);
3586
3587                 memcpy (new_entries, info->entries, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->count_entries);
3588                 info->entries = new_entries;
3589                 info->count_entries = new_count_entries;
3590         }
3591
3592         idx = info->num_entries;
3593         template_ = &info->entries [idx];
3594         template_->info_type = rgctx_type;
3595         template_->data = data;
3596
3597         info->num_entries ++;
3598
3599         return idx;
3600 }
3601
3602 /*
3603  * emit_get_gsharedvt_info:
3604  *
3605  *   This is similar to emit_get_rgctx_.., but loads the data from the gsharedvt info var instead of calling an rgctx fetch trampoline.
3606  */
3607 static MonoInst*
3608 emit_get_gsharedvt_info (MonoCompile *cfg, gpointer data, MonoRgctxInfoType rgctx_type)
3609 {
3610         MonoInst *ins;
3611         int idx, dreg;
3612
3613         idx = get_gsharedvt_info_slot (cfg, data, rgctx_type);
3614         /* Load info->entries [idx] */
3615         dreg = alloc_preg (cfg);
3616         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, cfg->gsharedvt_info_var->dreg, MONO_STRUCT_OFFSET (MonoGSharedVtMethodRuntimeInfo, entries) + (idx * sizeof (gpointer)));
3617
3618         return ins;
3619 }
3620
3621 static MonoInst*
3622 emit_get_gsharedvt_info_klass (MonoCompile *cfg, MonoClass *klass, MonoRgctxInfoType rgctx_type)
3623 {
3624         return emit_get_gsharedvt_info (cfg, &klass->byval_arg, rgctx_type);
3625 }
3626
3627 /*
3628  * On return the caller must check @klass for load errors.
3629  */
3630 static void
3631 emit_class_init (MonoCompile *cfg, MonoClass *klass)
3632 {
3633         MonoInst *vtable_arg;
3634         int context_used;
3635
3636         context_used = mini_class_check_context_used (cfg, klass);
3637
3638         if (context_used) {
3639                 vtable_arg = mini_emit_get_rgctx_klass (cfg, context_used,
3640                                                                                    klass, MONO_RGCTX_INFO_VTABLE);
3641         } else {
3642                 MonoVTable *vtable = mono_class_vtable (cfg->domain, klass);
3643
3644                 if (!vtable)
3645                         return;
3646                 EMIT_NEW_VTABLECONST (cfg, vtable_arg, vtable);
3647         }
3648
3649         if (!COMPILE_LLVM (cfg) && cfg->backend->have_op_generic_class_init) {
3650                 MonoInst *ins;
3651
3652                 /*
3653                  * Using an opcode instead of emitting IR here allows the hiding of the call inside the opcode,
3654                  * so this doesn't have to clobber any regs and it doesn't break basic blocks.
3655                  */
3656                 MONO_INST_NEW (cfg, ins, OP_GENERIC_CLASS_INIT);
3657                 ins->sreg1 = vtable_arg->dreg;
3658                 MONO_ADD_INS (cfg->cbb, ins);
3659         } else {
3660                 int inited_reg;
3661                 MonoBasicBlock *inited_bb;
3662                 MonoInst *args [16];
3663
3664                 inited_reg = alloc_ireg (cfg);
3665
3666                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, inited_reg, vtable_arg->dreg, MONO_STRUCT_OFFSET (MonoVTable, initialized));
3667
3668                 NEW_BBLOCK (cfg, inited_bb);
3669
3670                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, inited_reg, 0);
3671                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBNE_UN, inited_bb);
3672
3673                 args [0] = vtable_arg;
3674                 mono_emit_jit_icall (cfg, mono_generic_class_init, args);
3675
3676                 MONO_START_BB (cfg, inited_bb);
3677         }
3678 }
3679
3680 static void
3681 emit_seq_point (MonoCompile *cfg, MonoMethod *method, guint8* ip, gboolean intr_loc, gboolean nonempty_stack)
3682 {
3683         MonoInst *ins;
3684
3685         if (cfg->gen_seq_points && cfg->method == method) {
3686                 NEW_SEQ_POINT (cfg, ins, ip - cfg->header->code, intr_loc);
3687                 if (nonempty_stack)
3688                         ins->flags |= MONO_INST_NONEMPTY_STACK;
3689                 MONO_ADD_INS (cfg->cbb, ins);
3690         }
3691 }
3692
3693 void
3694 mini_save_cast_details (MonoCompile *cfg, MonoClass *klass, int obj_reg, gboolean null_check)
3695 {
3696         if (mini_get_debug_options ()->better_cast_details) {
3697                 int vtable_reg = alloc_preg (cfg);
3698                 int klass_reg = alloc_preg (cfg);
3699                 MonoBasicBlock *is_null_bb = NULL;
3700                 MonoInst *tls_get;
3701                 int to_klass_reg, context_used;
3702
3703                 if (null_check) {
3704                         NEW_BBLOCK (cfg, is_null_bb);
3705
3706                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, obj_reg, 0);
3707                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3708                 }
3709
3710                 tls_get = mono_create_tls_get (cfg, TLS_KEY_JIT_TLS);
3711                 if (!tls_get) {
3712                         fprintf (stderr, "error: --debug=casts not supported on this platform.\n.");
3713                         exit (1);
3714                 }
3715
3716                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, vtable_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
3717                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
3718
3719                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, tls_get->dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, class_cast_from), klass_reg);
3720
3721                 context_used = mini_class_check_context_used (cfg, klass);
3722                 if (context_used) {
3723                         MonoInst *class_ins;
3724
3725                         class_ins = mini_emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
3726                         to_klass_reg = class_ins->dreg;
3727                 } else {
3728                         to_klass_reg = alloc_preg (cfg);
3729                         MONO_EMIT_NEW_CLASSCONST (cfg, to_klass_reg, klass);
3730                 }
3731                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, tls_get->dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, class_cast_to), to_klass_reg);
3732
3733                 if (null_check)
3734                         MONO_START_BB (cfg, is_null_bb);
3735         }
3736 }
3737
3738 void
3739 mini_reset_cast_details (MonoCompile *cfg)
3740 {
3741         /* Reset the variables holding the cast details */
3742         if (mini_get_debug_options ()->better_cast_details) {
3743                 MonoInst *tls_get = mono_create_tls_get (cfg, TLS_KEY_JIT_TLS);
3744                 /* It is enough to reset the from field */
3745                 MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STORE_MEMBASE_IMM, tls_get->dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, class_cast_from), 0);
3746         }
3747 }
3748
3749 /*
3750  * On return the caller must check @array_class for load errors
3751  */
3752 static void
3753 mini_emit_check_array_type (MonoCompile *cfg, MonoInst *obj, MonoClass *array_class)
3754 {
3755         int vtable_reg = alloc_preg (cfg);
3756         int context_used;
3757
3758         context_used = mini_class_check_context_used (cfg, array_class);
3759
3760         mini_save_cast_details (cfg, array_class, obj->dreg, FALSE);
3761
3762         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, obj->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
3763
3764         if (cfg->opt & MONO_OPT_SHARED) {
3765                 int class_reg = alloc_preg (cfg);
3766                 MonoInst *ins;
3767
3768                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, class_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
3769                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_CLASS, array_class);
3770                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, class_reg, ins->dreg);
3771         } else if (context_used) {
3772                 MonoInst *vtable_ins;
3773
3774                 vtable_ins = mini_emit_get_rgctx_klass (cfg, context_used, array_class, MONO_RGCTX_INFO_VTABLE);
3775                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, vtable_reg, vtable_ins->dreg);
3776         } else {
3777                 if (cfg->compile_aot) {
3778                         int vt_reg;
3779                         MonoVTable *vtable;
3780
3781                         if (!(vtable = mono_class_vtable (cfg->domain, array_class)))
3782                                 return;
3783                         vt_reg = alloc_preg (cfg);
3784                         MONO_EMIT_NEW_VTABLECONST (cfg, vt_reg, vtable);
3785                         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, vtable_reg, vt_reg);
3786                 } else {
3787                         MonoVTable *vtable;
3788                         if (!(vtable = mono_class_vtable (cfg->domain, array_class)))
3789                                 return;
3790                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, vtable_reg, vtable);
3791                 }
3792         }
3793         
3794         MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "ArrayTypeMismatchException");
3795
3796         mini_reset_cast_details (cfg);
3797 }
3798
3799 /**
3800  * Handles unbox of a Nullable<T>. If context_used is non zero, then shared 
3801  * generic code is generated.
3802  */
3803 static MonoInst*
3804 handle_unbox_nullable (MonoCompile* cfg, MonoInst* val, MonoClass* klass, int context_used)
3805 {
3806         MonoMethod* method = mono_class_get_method_from_name (klass, "Unbox", 1);
3807
3808         if (context_used) {
3809                 MonoInst *rgctx, *addr;
3810
3811                 /* FIXME: What if the class is shared?  We might not
3812                    have to get the address of the method from the
3813                    RGCTX. */
3814                 addr = emit_get_rgctx_method (cfg, context_used, method,
3815                                                                           MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
3816                 if (cfg->llvm_only) {
3817                         cfg->signatures = g_slist_prepend_mempool (cfg->mempool, cfg->signatures, mono_method_signature (method));
3818                         return emit_llvmonly_calli (cfg, mono_method_signature (method), &val, addr);
3819                 } else {
3820                         rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
3821
3822                         return mono_emit_calli (cfg, mono_method_signature (method), &val, addr, NULL, rgctx);
3823                 }
3824         } else {
3825                 gboolean pass_vtable, pass_mrgctx;
3826                 MonoInst *rgctx_arg = NULL;
3827
3828                 check_method_sharing (cfg, method, &pass_vtable, &pass_mrgctx);
3829                 g_assert (!pass_mrgctx);
3830
3831                 if (pass_vtable) {
3832                         MonoVTable *vtable = mono_class_vtable (cfg->domain, method->klass);
3833
3834                         g_assert (vtable);
3835                         EMIT_NEW_VTABLECONST (cfg, rgctx_arg, vtable);
3836                 }
3837
3838                 return mono_emit_method_call_full (cfg, method, NULL, FALSE, &val, NULL, NULL, rgctx_arg);
3839         }
3840 }
3841
3842 static MonoInst*
3843 handle_unbox (MonoCompile *cfg, MonoClass *klass, MonoInst **sp, int context_used)
3844 {
3845         MonoInst *add;
3846         int obj_reg;
3847         int vtable_reg = alloc_dreg (cfg ,STACK_PTR);
3848         int klass_reg = alloc_dreg (cfg ,STACK_PTR);
3849         int eclass_reg = alloc_dreg (cfg ,STACK_PTR);
3850         int rank_reg = alloc_dreg (cfg ,STACK_I4);
3851
3852         obj_reg = sp [0]->dreg;
3853         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
3854         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, rank_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, rank));
3855
3856         /* FIXME: generics */
3857         g_assert (klass->rank == 0);
3858                         
3859         // Check rank == 0
3860         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rank_reg, 0);
3861         MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
3862
3863         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
3864         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, eclass_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, element_class));
3865
3866         if (context_used) {
3867                 MonoInst *element_class;
3868
3869                 /* This assertion is from the unboxcast insn */
3870                 g_assert (klass->rank == 0);
3871
3872                 element_class = mini_emit_get_rgctx_klass (cfg, context_used,
3873                                 klass, MONO_RGCTX_INFO_ELEMENT_KLASS);
3874
3875                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, eclass_reg, element_class->dreg);
3876                 MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
3877         } else {
3878                 mini_save_cast_details (cfg, klass->element_class, obj_reg, FALSE);
3879                 mini_emit_class_check (cfg, eclass_reg, klass->element_class);
3880                 mini_reset_cast_details (cfg);
3881         }
3882
3883         NEW_BIALU_IMM (cfg, add, OP_ADD_IMM, alloc_dreg (cfg, STACK_MP), obj_reg, sizeof (MonoObject));
3884         MONO_ADD_INS (cfg->cbb, add);
3885         add->type = STACK_MP;
3886         add->klass = klass;
3887
3888         return add;
3889 }
3890
3891 static MonoInst*
3892 handle_unbox_gsharedvt (MonoCompile *cfg, MonoClass *klass, MonoInst *obj)
3893 {
3894         MonoInst *addr, *klass_inst, *is_ref, *args[16];
3895         MonoBasicBlock *is_ref_bb, *is_nullable_bb, *end_bb;
3896         MonoInst *ins;
3897         int dreg, addr_reg;
3898
3899         klass_inst = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_KLASS);
3900
3901         /* obj */
3902         args [0] = obj;
3903
3904         /* klass */
3905         args [1] = klass_inst;
3906
3907         /* CASTCLASS */
3908         obj = mono_emit_jit_icall (cfg, mono_object_castclass_unbox, args);
3909
3910         NEW_BBLOCK (cfg, is_ref_bb);
3911         NEW_BBLOCK (cfg, is_nullable_bb);
3912         NEW_BBLOCK (cfg, end_bb);
3913         is_ref = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_CLASS_BOX_TYPE);
3914         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_REF);
3915         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_ref_bb);
3916
3917         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_NULLABLE);
3918         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_nullable_bb);
3919
3920         /* This will contain either the address of the unboxed vtype, or an address of the temporary where the ref is stored */
3921         addr_reg = alloc_dreg (cfg, STACK_MP);
3922
3923         /* Non-ref case */
3924         /* UNBOX */
3925         NEW_BIALU_IMM (cfg, addr, OP_ADD_IMM, addr_reg, obj->dreg, sizeof (MonoObject));
3926         MONO_ADD_INS (cfg->cbb, addr);
3927
3928         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
3929
3930         /* Ref case */
3931         MONO_START_BB (cfg, is_ref_bb);
3932
3933         /* Save the ref to a temporary */
3934         dreg = alloc_ireg (cfg);
3935         EMIT_NEW_VARLOADA_VREG (cfg, addr, dreg, &klass->byval_arg);
3936         addr->dreg = addr_reg;
3937         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, addr->dreg, 0, obj->dreg);
3938         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
3939
3940         /* Nullable case */
3941         MONO_START_BB (cfg, is_nullable_bb);
3942
3943         {
3944                 MonoInst *addr = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_NULLABLE_CLASS_UNBOX);
3945                 MonoInst *unbox_call;
3946                 MonoMethodSignature *unbox_sig;
3947
3948                 unbox_sig = (MonoMethodSignature *)mono_mempool_alloc0 (cfg->mempool, MONO_SIZEOF_METHOD_SIGNATURE + (1 * sizeof (MonoType *)));
3949                 unbox_sig->ret = &klass->byval_arg;
3950                 unbox_sig->param_count = 1;
3951                 unbox_sig->params [0] = &mono_defaults.object_class->byval_arg;
3952
3953                 if (cfg->llvm_only)
3954                         unbox_call = emit_llvmonly_calli (cfg, unbox_sig, &obj, addr);
3955                 else
3956                         unbox_call = mono_emit_calli (cfg, unbox_sig, &obj, addr, NULL, NULL);
3957
3958                 EMIT_NEW_VARLOADA_VREG (cfg, addr, unbox_call->dreg, &klass->byval_arg);
3959                 addr->dreg = addr_reg;
3960         }
3961
3962         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
3963
3964         /* End */
3965         MONO_START_BB (cfg, end_bb);
3966
3967         /* LDOBJ */
3968         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr_reg, 0);
3969
3970         return ins;
3971 }
3972
3973 /*
3974  * Returns NULL and set the cfg exception on error.
3975  */
3976 static MonoInst*
3977 handle_alloc (MonoCompile *cfg, MonoClass *klass, gboolean for_box, int context_used)
3978 {
3979         MonoInst *iargs [2];
3980         void *alloc_ftn;
3981
3982         if (context_used) {
3983                 MonoInst *data;
3984                 MonoRgctxInfoType rgctx_info;
3985                 MonoInst *iargs [2];
3986                 gboolean known_instance_size = !mini_is_gsharedvt_klass (klass);
3987
3988                 MonoMethod *managed_alloc = mono_gc_get_managed_allocator (klass, for_box, known_instance_size);
3989
3990                 if (cfg->opt & MONO_OPT_SHARED)
3991                         rgctx_info = MONO_RGCTX_INFO_KLASS;
3992                 else
3993                         rgctx_info = MONO_RGCTX_INFO_VTABLE;
3994                 data = mini_emit_get_rgctx_klass (cfg, context_used, klass, rgctx_info);
3995
3996                 if (cfg->opt & MONO_OPT_SHARED) {
3997                         EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
3998                         iargs [1] = data;
3999                         alloc_ftn = ves_icall_object_new;
4000                 } else {
4001                         iargs [0] = data;
4002                         alloc_ftn = ves_icall_object_new_specific;
4003                 }
4004
4005                 if (managed_alloc && !(cfg->opt & MONO_OPT_SHARED)) {
4006                         if (known_instance_size) {
4007                                 int size = mono_class_instance_size (klass);
4008                                 if (size < sizeof (MonoObject))
4009                                         g_error ("Invalid size %d for class %s", size, mono_type_get_full_name (klass));
4010
4011                                 EMIT_NEW_ICONST (cfg, iargs [1], size);
4012                         }
4013                         return mono_emit_method_call (cfg, managed_alloc, iargs, NULL);
4014                 }
4015
4016                 return mono_emit_jit_icall (cfg, alloc_ftn, iargs);
4017         }
4018
4019         if (cfg->opt & MONO_OPT_SHARED) {
4020                 EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
4021                 EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
4022
4023                 alloc_ftn = ves_icall_object_new;
4024         } else if (cfg->compile_aot && cfg->cbb->out_of_line && klass->type_token && klass->image == mono_defaults.corlib && !mono_class_is_ginst (klass)) {
4025                 /* This happens often in argument checking code, eg. throw new FooException... */
4026                 /* Avoid relocations and save some space by calling a helper function specialized to mscorlib */
4027                 EMIT_NEW_ICONST (cfg, iargs [0], mono_metadata_token_index (klass->type_token));
4028                 return mono_emit_jit_icall (cfg, mono_helper_newobj_mscorlib, iargs);
4029         } else {
4030                 MonoVTable *vtable = mono_class_vtable (cfg->domain, klass);
4031                 MonoMethod *managed_alloc = NULL;
4032                 gboolean pass_lw;
4033
4034                 if (!vtable) {
4035                         mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD);
4036                         cfg->exception_ptr = klass;
4037                         return NULL;
4038                 }
4039
4040                 managed_alloc = mono_gc_get_managed_allocator (klass, for_box, TRUE);
4041
4042                 if (managed_alloc) {
4043                         int size = mono_class_instance_size (klass);
4044                         if (size < sizeof (MonoObject))
4045                                 g_error ("Invalid size %d for class %s", size, mono_type_get_full_name (klass));
4046
4047                         EMIT_NEW_VTABLECONST (cfg, iargs [0], vtable);
4048                         EMIT_NEW_ICONST (cfg, iargs [1], size);
4049                         return mono_emit_method_call (cfg, managed_alloc, iargs, NULL);
4050                 }
4051                 alloc_ftn = mono_class_get_allocation_ftn (vtable, for_box, &pass_lw);
4052                 if (pass_lw) {
4053                         guint32 lw = vtable->klass->instance_size;
4054                         lw = ((lw + (sizeof (gpointer) - 1)) & ~(sizeof (gpointer) - 1)) / sizeof (gpointer);
4055                         EMIT_NEW_ICONST (cfg, iargs [0], lw);
4056                         EMIT_NEW_VTABLECONST (cfg, iargs [1], vtable);
4057                 }
4058                 else {
4059                         EMIT_NEW_VTABLECONST (cfg, iargs [0], vtable);
4060                 }
4061         }
4062
4063         return mono_emit_jit_icall (cfg, alloc_ftn, iargs);
4064 }
4065         
4066 /*
4067  * Returns NULL and set the cfg exception on error.
4068  */     
4069 static MonoInst*
4070 handle_box (MonoCompile *cfg, MonoInst *val, MonoClass *klass, int context_used)
4071 {
4072         MonoInst *alloc, *ins;
4073
4074         if (mono_class_is_nullable (klass)) {
4075                 MonoMethod* method = mono_class_get_method_from_name (klass, "Box", 1);
4076
4077                 if (context_used) {
4078                         if (cfg->llvm_only && cfg->gsharedvt) {
4079                                 MonoInst *addr = emit_get_rgctx_method (cfg, context_used, method,
4080                                                                                                                 MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
4081                                 return emit_llvmonly_calli (cfg, mono_method_signature (method), &val, addr);
4082                         } else {
4083                                 /* FIXME: What if the class is shared?  We might not
4084                                    have to get the method address from the RGCTX. */
4085                                 MonoInst *addr = emit_get_rgctx_method (cfg, context_used, method,
4086                                                                                                                 MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
4087                                 MonoInst *rgctx = emit_get_rgctx (cfg, cfg->method, context_used);
4088
4089                                 return mono_emit_calli (cfg, mono_method_signature (method), &val, addr, NULL, rgctx);
4090                         }
4091                 } else {
4092                         gboolean pass_vtable, pass_mrgctx;
4093                         MonoInst *rgctx_arg = NULL;
4094
4095                         check_method_sharing (cfg, method, &pass_vtable, &pass_mrgctx);
4096                         g_assert (!pass_mrgctx);
4097
4098                         if (pass_vtable) {
4099                                 MonoVTable *vtable = mono_class_vtable (cfg->domain, method->klass);
4100
4101                                 g_assert (vtable);
4102                                 EMIT_NEW_VTABLECONST (cfg, rgctx_arg, vtable);
4103                         }
4104
4105                         return mono_emit_method_call_full (cfg, method, NULL, FALSE, &val, NULL, NULL, rgctx_arg);
4106                 }
4107         }
4108
4109         if (mini_is_gsharedvt_klass (klass)) {
4110                 MonoBasicBlock *is_ref_bb, *is_nullable_bb, *end_bb;
4111                 MonoInst *res, *is_ref, *src_var, *addr;
4112                 int dreg;
4113
4114                 dreg = alloc_ireg (cfg);
4115
4116                 NEW_BBLOCK (cfg, is_ref_bb);
4117                 NEW_BBLOCK (cfg, is_nullable_bb);
4118                 NEW_BBLOCK (cfg, end_bb);
4119                 is_ref = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_CLASS_BOX_TYPE);
4120                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_REF);
4121                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_ref_bb);
4122
4123                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_NULLABLE);
4124                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_nullable_bb);
4125
4126                 /* Non-ref case */
4127                 alloc = handle_alloc (cfg, klass, TRUE, context_used);
4128                 if (!alloc)
4129                         return NULL;
4130                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, alloc->dreg, sizeof (MonoObject), val->dreg);
4131                 ins->opcode = OP_STOREV_MEMBASE;
4132
4133                 EMIT_NEW_UNALU (cfg, res, OP_MOVE, dreg, alloc->dreg);
4134                 res->type = STACK_OBJ;
4135                 res->klass = klass;
4136                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4137                 
4138                 /* Ref case */
4139                 MONO_START_BB (cfg, is_ref_bb);
4140
4141                 /* val is a vtype, so has to load the value manually */
4142                 src_var = get_vreg_to_inst (cfg, val->dreg);
4143                 if (!src_var)
4144                         src_var = mono_compile_create_var_for_vreg (cfg, &klass->byval_arg, OP_LOCAL, val->dreg);
4145                 EMIT_NEW_VARLOADA (cfg, addr, src_var, src_var->inst_vtype);
4146                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, addr->dreg, 0);
4147                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4148
4149                 /* Nullable case */
4150                 MONO_START_BB (cfg, is_nullable_bb);
4151
4152                 {
4153                         MonoInst *addr = emit_get_gsharedvt_info_klass (cfg, klass,
4154                                                                                                         MONO_RGCTX_INFO_NULLABLE_CLASS_BOX);
4155                         MonoInst *box_call;
4156                         MonoMethodSignature *box_sig;
4157
4158                         /*
4159                          * klass is Nullable<T>, need to call Nullable<T>.Box () using a gsharedvt signature, but we cannot
4160                          * construct that method at JIT time, so have to do things by hand.
4161                          */
4162                         box_sig = (MonoMethodSignature *)mono_mempool_alloc0 (cfg->mempool, MONO_SIZEOF_METHOD_SIGNATURE + (1 * sizeof (MonoType *)));
4163                         box_sig->ret = &mono_defaults.object_class->byval_arg;
4164                         box_sig->param_count = 1;
4165                         box_sig->params [0] = &klass->byval_arg;
4166
4167                         if (cfg->llvm_only)
4168                                 box_call = emit_llvmonly_calli (cfg, box_sig, &val, addr);
4169                         else
4170                                 box_call = mono_emit_calli (cfg, box_sig, &val, addr, NULL, NULL);
4171                         EMIT_NEW_UNALU (cfg, res, OP_MOVE, dreg, box_call->dreg);
4172                         res->type = STACK_OBJ;
4173                         res->klass = klass;
4174                 }
4175
4176                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4177
4178                 MONO_START_BB (cfg, end_bb);
4179
4180                 return res;
4181         } else {
4182                 alloc = handle_alloc (cfg, klass, TRUE, context_used);
4183                 if (!alloc)
4184                         return NULL;
4185
4186                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, alloc->dreg, sizeof (MonoObject), val->dreg);
4187                 return alloc;
4188         }
4189 }
4190
4191 static GHashTable* direct_icall_type_hash;
4192
4193 static gboolean
4194 icall_is_direct_callable (MonoCompile *cfg, MonoMethod *cmethod)
4195 {
4196         /* LLVM on amd64 can't handle calls to non-32 bit addresses */
4197         if (!direct_icalls_enabled (cfg))
4198                 return FALSE;
4199
4200         /*
4201          * An icall is directly callable if it doesn't directly or indirectly call mono_raise_exception ().
4202          * Whitelist a few icalls for now.
4203          */
4204         if (!direct_icall_type_hash) {
4205                 GHashTable *h = g_hash_table_new (g_str_hash, g_str_equal);
4206
4207                 g_hash_table_insert (h, (char*)"Decimal", GUINT_TO_POINTER (1));
4208                 g_hash_table_insert (h, (char*)"Number", GUINT_TO_POINTER (1));
4209                 g_hash_table_insert (h, (char*)"Buffer", GUINT_TO_POINTER (1));
4210                 g_hash_table_insert (h, (char*)"Monitor", GUINT_TO_POINTER (1));
4211                 mono_memory_barrier ();
4212                 direct_icall_type_hash = h;
4213         }
4214
4215         if (cmethod->klass == mono_defaults.math_class)
4216                 return TRUE;
4217         /* No locking needed */
4218         if (cmethod->klass->image == mono_defaults.corlib && g_hash_table_lookup (direct_icall_type_hash, cmethod->klass->name))
4219                 return TRUE;
4220         return FALSE;
4221 }
4222
4223 static gboolean
4224 method_needs_stack_walk (MonoCompile *cfg, MonoMethod *cmethod)
4225 {
4226         if (cmethod->klass == mono_defaults.systemtype_class) {
4227                 if (!strcmp (cmethod->name, "GetType"))
4228                         return TRUE;
4229         }
4230         return FALSE;
4231 }
4232
4233 static G_GNUC_UNUSED MonoInst*
4234 handle_enum_has_flag (MonoCompile *cfg, MonoClass *klass, MonoInst *enum_this, MonoInst *enum_flag)
4235 {
4236         MonoType *enum_type = mono_type_get_underlying_type (&klass->byval_arg);
4237         guint32 load_opc = mono_type_to_load_membase (cfg, enum_type);
4238         gboolean is_i4;
4239
4240         switch (enum_type->type) {
4241         case MONO_TYPE_I8:
4242         case MONO_TYPE_U8:
4243 #if SIZEOF_REGISTER == 8
4244         case MONO_TYPE_I:
4245         case MONO_TYPE_U:
4246 #endif
4247                 is_i4 = FALSE;
4248                 break;
4249         default:
4250                 is_i4 = TRUE;
4251                 break;
4252         }
4253
4254         {
4255                 MonoInst *load, *and_, *cmp, *ceq;
4256                 int enum_reg = is_i4 ? alloc_ireg (cfg) : alloc_lreg (cfg);
4257                 int and_reg = is_i4 ? alloc_ireg (cfg) : alloc_lreg (cfg);
4258                 int dest_reg = alloc_ireg (cfg);
4259
4260                 EMIT_NEW_LOAD_MEMBASE (cfg, load, load_opc, enum_reg, enum_this->dreg, 0);
4261                 EMIT_NEW_BIALU (cfg, and_, is_i4 ? OP_IAND : OP_LAND, and_reg, enum_reg, enum_flag->dreg);
4262                 EMIT_NEW_BIALU (cfg, cmp, is_i4 ? OP_ICOMPARE : OP_LCOMPARE, -1, and_reg, enum_flag->dreg);
4263                 EMIT_NEW_UNALU (cfg, ceq, is_i4 ? OP_ICEQ : OP_LCEQ, dest_reg, -1);
4264
4265                 ceq->type = STACK_I4;
4266
4267                 if (!is_i4) {
4268                         load = mono_decompose_opcode (cfg, load);
4269                         and_ = mono_decompose_opcode (cfg, and_);
4270                         cmp = mono_decompose_opcode (cfg, cmp);
4271                         ceq = mono_decompose_opcode (cfg, ceq);
4272                 }
4273
4274                 return ceq;
4275         }
4276 }
4277
4278 /*
4279  * Returns NULL and set the cfg exception on error.
4280  */
4281 static G_GNUC_UNUSED MonoInst*
4282 handle_delegate_ctor (MonoCompile *cfg, MonoClass *klass, MonoInst *target, MonoMethod *method, int context_used, gboolean virtual_)
4283 {
4284         MonoInst *ptr;
4285         int dreg;
4286         gpointer trampoline;
4287         MonoInst *obj, *method_ins, *tramp_ins;
4288         MonoDomain *domain;
4289         guint8 **code_slot;
4290
4291         if (virtual_ && !cfg->llvm_only) {
4292                 MonoMethod *invoke = mono_get_delegate_invoke (klass);
4293                 g_assert (invoke);
4294
4295                 if (!mono_get_delegate_virtual_invoke_impl (mono_method_signature (invoke), context_used ? NULL : method))
4296                         return NULL;
4297         }
4298
4299         obj = handle_alloc (cfg, klass, FALSE, mono_class_check_context_used (klass));
4300         if (!obj)
4301                 return NULL;
4302
4303         /* Inline the contents of mono_delegate_ctor */
4304
4305         /* Set target field */
4306         /* Optimize away setting of NULL target */
4307         if (!MONO_INS_IS_PCONST_NULL (target)) {
4308                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, target), target->dreg);
4309                 if (cfg->gen_write_barriers) {
4310                         dreg = alloc_preg (cfg);
4311                         EMIT_NEW_BIALU_IMM (cfg, ptr, OP_PADD_IMM, dreg, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, target));
4312                         emit_write_barrier (cfg, ptr, target);
4313                 }
4314         }
4315
4316         /* Set method field */
4317         method_ins = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_METHOD);
4318         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method), method_ins->dreg);
4319
4320         /* 
4321          * To avoid looking up the compiled code belonging to the target method
4322          * in mono_delegate_trampoline (), we allocate a per-domain memory slot to
4323          * store it, and we fill it after the method has been compiled.
4324          */
4325         if (!method->dynamic && !(cfg->opt & MONO_OPT_SHARED)) {
4326                 MonoInst *code_slot_ins;
4327
4328                 if (context_used) {
4329                         code_slot_ins = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_METHOD_DELEGATE_CODE);
4330                 } else {
4331                         domain = mono_domain_get ();
4332                         mono_domain_lock (domain);
4333                         if (!domain_jit_info (domain)->method_code_hash)
4334                                 domain_jit_info (domain)->method_code_hash = g_hash_table_new (NULL, NULL);
4335                         code_slot = (guint8 **)g_hash_table_lookup (domain_jit_info (domain)->method_code_hash, method);
4336                         if (!code_slot) {
4337                                 code_slot = (guint8 **)mono_domain_alloc0 (domain, sizeof (gpointer));
4338                                 g_hash_table_insert (domain_jit_info (domain)->method_code_hash, method, code_slot);
4339                         }
4340                         mono_domain_unlock (domain);
4341
4342                         code_slot_ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_METHOD_CODE_SLOT, method);
4343                 }
4344                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method_code), code_slot_ins->dreg);                
4345         }
4346
4347         if (cfg->llvm_only) {
4348                 MonoInst *args [16];
4349
4350                 if (virtual_) {
4351                         args [0] = obj;
4352                         args [1] = target;
4353                         args [2] = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_METHOD);
4354                         mono_emit_jit_icall (cfg, mono_llvmonly_init_delegate_virtual, args);
4355                 } else {
4356                         args [0] = obj;
4357                         mono_emit_jit_icall (cfg, mono_llvmonly_init_delegate, args);
4358                 }
4359
4360                 return obj;
4361         }
4362
4363         if (cfg->compile_aot) {
4364                 MonoDelegateClassMethodPair *del_tramp;
4365
4366                 del_tramp = (MonoDelegateClassMethodPair *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoDelegateClassMethodPair));
4367                 del_tramp->klass = klass;
4368                 del_tramp->method = context_used ? NULL : method;
4369                 del_tramp->is_virtual = virtual_;
4370                 EMIT_NEW_AOTCONST (cfg, tramp_ins, MONO_PATCH_INFO_DELEGATE_TRAMPOLINE, del_tramp);
4371         } else {
4372                 if (virtual_)
4373                         trampoline = mono_create_delegate_virtual_trampoline (cfg->domain, klass, context_used ? NULL : method);
4374                 else
4375                         trampoline = mono_create_delegate_trampoline_info (cfg->domain, klass, context_used ? NULL : method);
4376                 EMIT_NEW_PCONST (cfg, tramp_ins, trampoline);
4377         }
4378
4379         /* Set invoke_impl field */
4380         if (virtual_) {
4381                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, invoke_impl), tramp_ins->dreg);
4382         } else {
4383                 dreg = alloc_preg (cfg);
4384                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, tramp_ins->dreg, MONO_STRUCT_OFFSET (MonoDelegateTrampInfo, invoke_impl));
4385                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, invoke_impl), dreg);
4386
4387                 dreg = alloc_preg (cfg);
4388                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, tramp_ins->dreg, MONO_STRUCT_OFFSET (MonoDelegateTrampInfo, method_ptr));
4389                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr), dreg);
4390         }
4391
4392         dreg = alloc_preg (cfg);
4393         MONO_EMIT_NEW_ICONST (cfg, dreg, virtual_ ? 1 : 0);
4394         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method_is_virtual), dreg);
4395
4396         /* All the checks which are in mono_delegate_ctor () are done by the delegate trampoline */
4397
4398         return obj;
4399 }
4400
4401 static MonoInst*
4402 handle_array_new (MonoCompile *cfg, int rank, MonoInst **sp, unsigned char *ip)
4403 {
4404         MonoJitICallInfo *info;
4405
4406         /* Need to register the icall so it gets an icall wrapper */
4407         info = mono_get_array_new_va_icall (rank);
4408
4409         cfg->flags |= MONO_CFG_HAS_VARARGS;
4410
4411         /* mono_array_new_va () needs a vararg calling convention */
4412         cfg->exception_message = g_strdup ("array-new");
4413         cfg->disable_llvm = TRUE;
4414
4415         /* FIXME: This uses info->sig, but it should use the signature of the wrapper */
4416         return mono_emit_native_call (cfg, mono_icall_get_wrapper (info), info->sig, sp);
4417 }
4418
4419 /*
4420  * handle_constrained_gsharedvt_call:
4421  *
4422  *   Handle constrained calls where the receiver is a gsharedvt type.
4423  * Return the instruction representing the call. Set the cfg exception on failure.
4424  */
4425 static MonoInst*
4426 handle_constrained_gsharedvt_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **sp, MonoClass *constrained_class,
4427                                                                    gboolean *ref_emit_widen)
4428 {
4429         MonoInst *ins = NULL;
4430         gboolean emit_widen = *ref_emit_widen;
4431
4432         /*
4433          * Constrained calls need to behave differently at runtime dependending on whenever the receiver is instantiated as ref type or as a vtype.
4434          * This is hard to do with the current call code, since we would have to emit a branch and two different calls. So instead, we
4435          * pack the arguments into an array, and do the rest of the work in in an icall.
4436          */
4437         if (((cmethod->klass == mono_defaults.object_class) || mono_class_is_interface (cmethod->klass) || (!cmethod->klass->valuetype && cmethod->klass->image != mono_defaults.corlib)) &&
4438                 (MONO_TYPE_IS_VOID (fsig->ret) || MONO_TYPE_IS_PRIMITIVE (fsig->ret) || MONO_TYPE_IS_REFERENCE (fsig->ret) || MONO_TYPE_ISSTRUCT (fsig->ret) || mono_class_is_enum (mono_class_from_mono_type (fsig->ret)) || mini_is_gsharedvt_type (fsig->ret)) &&
4439                 (fsig->param_count == 0 || (!fsig->hasthis && fsig->param_count == 1) || (fsig->param_count == 1 && (MONO_TYPE_IS_REFERENCE (fsig->params [0]) || fsig->params [0]->byref || mini_is_gsharedvt_type (fsig->params [0]))))) {
4440                 MonoInst *args [16];
4441
4442                 /*
4443                  * This case handles calls to
4444                  * - object:ToString()/Equals()/GetHashCode(),
4445                  * - System.IComparable<T>:CompareTo()
4446                  * - System.IEquatable<T>:Equals ()
4447                  * plus some simple interface calls enough to support AsyncTaskMethodBuilder.
4448                  */
4449
4450                 args [0] = sp [0];
4451                 if (mono_method_check_context_used (cmethod))
4452                         args [1] = emit_get_rgctx_method (cfg, mono_method_check_context_used (cmethod), cmethod, MONO_RGCTX_INFO_METHOD);
4453                 else
4454                         EMIT_NEW_METHODCONST (cfg, args [1], cmethod);
4455                 args [2] = mini_emit_get_rgctx_klass (cfg, mono_class_check_context_used (constrained_class), constrained_class, MONO_RGCTX_INFO_KLASS);
4456
4457                 /* !fsig->hasthis is for the wrapper for the Object.GetType () icall */
4458                 if (fsig->hasthis && fsig->param_count) {
4459                         /* Pass the arguments using a localloc-ed array using the format expected by runtime_invoke () */
4460                         MONO_INST_NEW (cfg, ins, OP_LOCALLOC_IMM);
4461                         ins->dreg = alloc_preg (cfg);
4462                         ins->inst_imm = fsig->param_count * sizeof (mgreg_t);
4463                         MONO_ADD_INS (cfg->cbb, ins);
4464                         args [4] = ins;
4465
4466                         if (mini_is_gsharedvt_type (fsig->params [0])) {
4467                                 int addr_reg, deref_arg_reg;
4468
4469                                 ins = emit_get_gsharedvt_info_klass (cfg, mono_class_from_mono_type (fsig->params [0]), MONO_RGCTX_INFO_CLASS_BOX_TYPE);
4470                                 deref_arg_reg = alloc_preg (cfg);
4471                                 /* deref_arg = BOX_TYPE != MONO_GSHAREDVT_BOX_TYPE_VTYPE */
4472                                 EMIT_NEW_BIALU_IMM (cfg, args [3], OP_ISUB_IMM, deref_arg_reg, ins->dreg, 1);
4473
4474                                 EMIT_NEW_VARLOADA_VREG (cfg, ins, sp [1]->dreg, fsig->params [0]);
4475                                 addr_reg = ins->dreg;
4476                                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, args [4]->dreg, 0, addr_reg);
4477                         } else {
4478                                 EMIT_NEW_ICONST (cfg, args [3], 0);
4479                                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, args [4]->dreg, 0, sp [1]->dreg);
4480                         }
4481                 } else {
4482                         EMIT_NEW_ICONST (cfg, args [3], 0);
4483                         EMIT_NEW_ICONST (cfg, args [4], 0);
4484                 }
4485                 ins = mono_emit_jit_icall (cfg, mono_gsharedvt_constrained_call, args);
4486                 emit_widen = FALSE;
4487
4488                 if (mini_is_gsharedvt_type (fsig->ret)) {
4489                         ins = handle_unbox_gsharedvt (cfg, mono_class_from_mono_type (fsig->ret), ins);
4490                 } else if (MONO_TYPE_IS_PRIMITIVE (fsig->ret) || MONO_TYPE_ISSTRUCT (fsig->ret) || mono_class_is_enum (mono_class_from_mono_type (fsig->ret))) {
4491                         MonoInst *add;
4492
4493                         /* Unbox */
4494                         NEW_BIALU_IMM (cfg, add, OP_ADD_IMM, alloc_dreg (cfg, STACK_MP), ins->dreg, sizeof (MonoObject));
4495                         MONO_ADD_INS (cfg->cbb, add);
4496                         /* Load value */
4497                         NEW_LOAD_MEMBASE_TYPE (cfg, ins, fsig->ret, add->dreg, 0);
4498                         MONO_ADD_INS (cfg->cbb, ins);
4499                         /* ins represents the call result */
4500                 }
4501         } else {
4502                 GSHAREDVT_FAILURE (CEE_CALLVIRT);
4503         }
4504
4505         *ref_emit_widen = emit_widen;
4506
4507         return ins;
4508
4509  exception_exit:
4510         return NULL;
4511 }
4512
4513 static void
4514 mono_emit_load_got_addr (MonoCompile *cfg)
4515 {
4516         MonoInst *getaddr, *dummy_use;
4517
4518         if (!cfg->got_var || cfg->got_var_allocated)
4519                 return;
4520
4521         MONO_INST_NEW (cfg, getaddr, OP_LOAD_GOTADDR);
4522         getaddr->cil_code = cfg->header->code;
4523         getaddr->dreg = cfg->got_var->dreg;
4524
4525         /* Add it to the start of the first bblock */
4526         if (cfg->bb_entry->code) {
4527                 getaddr->next = cfg->bb_entry->code;
4528                 cfg->bb_entry->code = getaddr;
4529         }
4530         else
4531                 MONO_ADD_INS (cfg->bb_entry, getaddr);
4532
4533         cfg->got_var_allocated = TRUE;
4534
4535         /* 
4536          * Add a dummy use to keep the got_var alive, since real uses might
4537          * only be generated by the back ends.
4538          * Add it to end_bblock, so the variable's lifetime covers the whole
4539          * method.
4540          * It would be better to make the usage of the got var explicit in all
4541          * cases when the backend needs it (i.e. calls, throw etc.), so this
4542          * wouldn't be needed.
4543          */
4544         NEW_DUMMY_USE (cfg, dummy_use, cfg->got_var);
4545         MONO_ADD_INS (cfg->bb_exit, dummy_use);
4546 }
4547
4548 static int inline_limit;
4549 static gboolean inline_limit_inited;
4550
4551 static gboolean
4552 mono_method_check_inlining (MonoCompile *cfg, MonoMethod *method)
4553 {
4554         MonoMethodHeaderSummary header;
4555         MonoVTable *vtable;
4556 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
4557         MonoMethodSignature *sig = mono_method_signature (method);
4558         int i;
4559 #endif
4560
4561         if (cfg->disable_inline)
4562                 return FALSE;
4563         if (cfg->gsharedvt)
4564                 return FALSE;
4565
4566         if (cfg->inline_depth > 10)
4567                 return FALSE;
4568
4569         if (!mono_method_get_header_summary (method, &header))
4570                 return FALSE;
4571
4572         /*runtime, icall and pinvoke are checked by summary call*/
4573         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_NOINLINING) ||
4574             (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) ||
4575             (mono_class_is_marshalbyref (method->klass)) ||
4576             header.has_clauses)
4577                 return FALSE;
4578
4579         /* also consider num_locals? */
4580         /* Do the size check early to avoid creating vtables */
4581         if (!inline_limit_inited) {
4582                 if (g_getenv ("MONO_INLINELIMIT"))
4583                         inline_limit = atoi (g_getenv ("MONO_INLINELIMIT"));
4584                 else
4585                         inline_limit = INLINE_LENGTH_LIMIT;
4586                 inline_limit_inited = TRUE;
4587         }
4588         if (header.code_size >= inline_limit && !(method->iflags & METHOD_IMPL_ATTRIBUTE_AGGRESSIVE_INLINING))
4589                 return FALSE;
4590
4591         /*
4592          * if we can initialize the class of the method right away, we do,
4593          * otherwise we don't allow inlining if the class needs initialization,
4594          * since it would mean inserting a call to mono_runtime_class_init()
4595          * inside the inlined code
4596          */
4597         if (cfg->gshared && method->klass->has_cctor && mini_class_check_context_used (cfg, method->klass))
4598                 return FALSE;
4599
4600         if (!(cfg->opt & MONO_OPT_SHARED)) {
4601                 /* The AggressiveInlining hint is a good excuse to force that cctor to run. */
4602                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_AGGRESSIVE_INLINING) {
4603                         if (method->klass->has_cctor) {
4604                                 vtable = mono_class_vtable (cfg->domain, method->klass);
4605                                 if (!vtable)
4606                                         return FALSE;
4607                                 if (!cfg->compile_aot) {
4608                                         MonoError error;
4609                                         if (!mono_runtime_class_init_full (vtable, &error)) {
4610                                                 mono_error_cleanup (&error);
4611                                                 return FALSE;
4612                                         }
4613                                 }
4614                         }
4615                 } else if (mono_class_is_before_field_init (method->klass)) {
4616                         if (cfg->run_cctors && method->klass->has_cctor) {
4617                                 /*FIXME it would easier and lazier to just use mono_class_try_get_vtable */
4618                                 if (!method->klass->runtime_info)
4619                                         /* No vtable created yet */
4620                                         return FALSE;
4621                                 vtable = mono_class_vtable (cfg->domain, method->klass);
4622                                 if (!vtable)
4623                                         return FALSE;
4624                                 /* This makes so that inline cannot trigger */
4625                                 /* .cctors: too many apps depend on them */
4626                                 /* running with a specific order... */
4627                                 if (! vtable->initialized)
4628                                         return FALSE;
4629                                 MonoError error;
4630                                 if (!mono_runtime_class_init_full (vtable, &error)) {
4631                                         mono_error_cleanup (&error);
4632                                         return FALSE;
4633                                 }
4634                         }
4635                 } else if (mono_class_needs_cctor_run (method->klass, NULL)) {
4636                         if (!method->klass->runtime_info)
4637                                 /* No vtable created yet */
4638                                 return FALSE;
4639                         vtable = mono_class_vtable (cfg->domain, method->klass);
4640                         if (!vtable)
4641                                 return FALSE;
4642                         if (!vtable->initialized)
4643                                 return FALSE;
4644                 }
4645         } else {
4646                 /* 
4647                  * If we're compiling for shared code
4648                  * the cctor will need to be run at aot method load time, for example,
4649                  * or at the end of the compilation of the inlining method.
4650                  */
4651                 if (mono_class_needs_cctor_run (method->klass, NULL) && !mono_class_is_before_field_init (method->klass))
4652                         return FALSE;
4653         }
4654
4655 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
4656         if (mono_arch_is_soft_float ()) {
4657                 /* FIXME: */
4658                 if (sig->ret && sig->ret->type == MONO_TYPE_R4)
4659                         return FALSE;
4660                 for (i = 0; i < sig->param_count; ++i)
4661                         if (!sig->params [i]->byref && sig->params [i]->type == MONO_TYPE_R4)
4662                                 return FALSE;
4663         }
4664 #endif
4665
4666         if (g_list_find (cfg->dont_inline, method))
4667                 return FALSE;
4668
4669         return TRUE;
4670 }
4671
4672 static gboolean
4673 mini_field_access_needs_cctor_run (MonoCompile *cfg, MonoMethod *method, MonoClass *klass, MonoVTable *vtable)
4674 {
4675         if (!cfg->compile_aot) {
4676                 g_assert (vtable);
4677                 if (vtable->initialized)
4678                         return FALSE;
4679         }
4680
4681         if (mono_class_is_before_field_init (klass)) {
4682                 if (cfg->method == method)
4683                         return FALSE;
4684         }
4685
4686         if (!mono_class_needs_cctor_run (klass, method))
4687                 return FALSE;
4688
4689         if (! (method->flags & METHOD_ATTRIBUTE_STATIC) && (klass == method->klass))
4690                 /* The initialization is already done before the method is called */
4691                 return FALSE;
4692
4693         return TRUE;
4694 }
4695
4696 MonoInst*
4697 mini_emit_ldelema_1_ins (MonoCompile *cfg, MonoClass *klass, MonoInst *arr, MonoInst *index, gboolean bcheck)
4698 {
4699         MonoInst *ins;
4700         guint32 size;
4701         int mult_reg, add_reg, array_reg, index_reg, index2_reg;
4702         int context_used;
4703
4704         if (mini_is_gsharedvt_variable_klass (klass)) {
4705                 size = -1;
4706         } else {
4707                 mono_class_init (klass);
4708                 size = mono_class_array_element_size (klass);
4709         }
4710
4711         mult_reg = alloc_preg (cfg);
4712         array_reg = arr->dreg;
4713         index_reg = index->dreg;
4714
4715 #if SIZEOF_REGISTER == 8
4716         /* The array reg is 64 bits but the index reg is only 32 */
4717         if (COMPILE_LLVM (cfg)) {
4718                 /* Not needed */
4719                 index2_reg = index_reg;
4720         } else {
4721                 index2_reg = alloc_preg (cfg);
4722                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, index2_reg, index_reg);
4723         }
4724 #else
4725         if (index->type == STACK_I8) {
4726                 index2_reg = alloc_preg (cfg);
4727                 MONO_EMIT_NEW_UNALU (cfg, OP_LCONV_TO_I4, index2_reg, index_reg);
4728         } else {
4729                 index2_reg = index_reg;
4730         }
4731 #endif
4732
4733         if (bcheck)
4734                 MONO_EMIT_BOUNDS_CHECK (cfg, array_reg, MonoArray, max_length, index2_reg);
4735
4736 #if defined(TARGET_X86) || defined(TARGET_AMD64)
4737         if (size == 1 || size == 2 || size == 4 || size == 8) {
4738                 static const int fast_log2 [] = { 1, 0, 1, -1, 2, -1, -1, -1, 3 };
4739
4740                 EMIT_NEW_X86_LEA (cfg, ins, array_reg, index2_reg, fast_log2 [size], MONO_STRUCT_OFFSET (MonoArray, vector));
4741                 ins->klass = mono_class_get_element_class (klass);
4742                 ins->type = STACK_MP;
4743
4744                 return ins;
4745         }
4746 #endif          
4747
4748         add_reg = alloc_ireg_mp (cfg);
4749
4750         if (size == -1) {
4751                 MonoInst *rgctx_ins;
4752
4753                 /* gsharedvt */
4754                 g_assert (cfg->gshared);
4755                 context_used = mini_class_check_context_used (cfg, klass);
4756                 g_assert (context_used);
4757                 rgctx_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_ARRAY_ELEMENT_SIZE);
4758                 MONO_EMIT_NEW_BIALU (cfg, OP_IMUL, mult_reg, index2_reg, rgctx_ins->dreg);
4759         } else {
4760                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_MUL_IMM, mult_reg, index2_reg, size);
4761         }
4762         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, add_reg, array_reg, mult_reg);
4763         NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, add_reg, add_reg, MONO_STRUCT_OFFSET (MonoArray, vector));
4764         ins->klass = mono_class_get_element_class (klass);
4765         ins->type = STACK_MP;
4766         MONO_ADD_INS (cfg->cbb, ins);
4767
4768         return ins;
4769 }
4770
4771 static MonoInst*
4772 mini_emit_ldelema_2_ins (MonoCompile *cfg, MonoClass *klass, MonoInst *arr, MonoInst *index_ins1, MonoInst *index_ins2)
4773 {
4774         int bounds_reg = alloc_preg (cfg);
4775         int add_reg = alloc_ireg_mp (cfg);
4776         int mult_reg = alloc_preg (cfg);
4777         int mult2_reg = alloc_preg (cfg);
4778         int low1_reg = alloc_preg (cfg);
4779         int low2_reg = alloc_preg (cfg);
4780         int high1_reg = alloc_preg (cfg);
4781         int high2_reg = alloc_preg (cfg);
4782         int realidx1_reg = alloc_preg (cfg);
4783         int realidx2_reg = alloc_preg (cfg);
4784         int sum_reg = alloc_preg (cfg);
4785         int index1, index2, tmpreg;
4786         MonoInst *ins;
4787         guint32 size;
4788
4789         mono_class_init (klass);
4790         size = mono_class_array_element_size (klass);
4791
4792         index1 = index_ins1->dreg;
4793         index2 = index_ins2->dreg;
4794
4795 #if SIZEOF_REGISTER == 8
4796         /* The array reg is 64 bits but the index reg is only 32 */
4797         if (COMPILE_LLVM (cfg)) {
4798                 /* Not needed */
4799         } else {
4800                 tmpreg = alloc_preg (cfg);
4801                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, tmpreg, index1);
4802                 index1 = tmpreg;
4803                 tmpreg = alloc_preg (cfg);
4804                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, tmpreg, index2);
4805                 index2 = tmpreg;
4806         }
4807 #else
4808         // FIXME: Do we need to do something here for i8 indexes, like in ldelema_1_ins ?
4809         tmpreg = -1;
4810 #endif
4811
4812         /* range checking */
4813         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, bounds_reg, 
4814                                        arr->dreg, MONO_STRUCT_OFFSET (MonoArray, bounds));
4815
4816         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, low1_reg, 
4817                                        bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, lower_bound));
4818         MONO_EMIT_NEW_BIALU (cfg, OP_PSUB, realidx1_reg, index1, low1_reg);
4819         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, high1_reg, 
4820                                        bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, length));
4821         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, high1_reg, realidx1_reg);
4822         MONO_EMIT_NEW_COND_EXC (cfg, LE_UN, "IndexOutOfRangeException");
4823
4824         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, low2_reg, 
4825                                        bounds_reg, sizeof (MonoArrayBounds) + MONO_STRUCT_OFFSET (MonoArrayBounds, lower_bound));
4826         MONO_EMIT_NEW_BIALU (cfg, OP_PSUB, realidx2_reg, index2, low2_reg);
4827         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, high2_reg, 
4828                                        bounds_reg, sizeof (MonoArrayBounds) + MONO_STRUCT_OFFSET (MonoArrayBounds, length));
4829         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, high2_reg, realidx2_reg);
4830         MONO_EMIT_NEW_COND_EXC (cfg, LE_UN, "IndexOutOfRangeException");
4831
4832         MONO_EMIT_NEW_BIALU (cfg, OP_PMUL, mult_reg, high2_reg, realidx1_reg);
4833         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, sum_reg, mult_reg, realidx2_reg);
4834         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PMUL_IMM, mult2_reg, sum_reg, size);
4835         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, add_reg, mult2_reg, arr->dreg);
4836         NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, add_reg, add_reg, MONO_STRUCT_OFFSET (MonoArray, vector));
4837
4838         ins->type = STACK_MP;
4839         ins->klass = klass;
4840         MONO_ADD_INS (cfg->cbb, ins);
4841
4842         return ins;
4843 }
4844
4845 static MonoInst*
4846 mini_emit_ldelema_ins (MonoCompile *cfg, MonoMethod *cmethod, MonoInst **sp, unsigned char *ip, gboolean is_set)
4847 {
4848         int rank;
4849         MonoInst *addr;
4850         MonoMethod *addr_method;
4851         int element_size;
4852         MonoClass *eclass = cmethod->klass->element_class;
4853
4854         rank = mono_method_signature (cmethod)->param_count - (is_set? 1: 0);
4855
4856         if (rank == 1)
4857                 return mini_emit_ldelema_1_ins (cfg, eclass, sp [0], sp [1], TRUE);
4858
4859         /* emit_ldelema_2 depends on OP_LMUL */
4860         if (!cfg->backend->emulate_mul_div && rank == 2 && (cfg->opt & MONO_OPT_INTRINS) && !mini_is_gsharedvt_variable_klass (eclass)) {
4861                 return mini_emit_ldelema_2_ins (cfg, eclass, sp [0], sp [1], sp [2]);
4862         }
4863
4864         if (mini_is_gsharedvt_variable_klass (eclass))
4865                 element_size = 0;
4866         else
4867                 element_size = mono_class_array_element_size (eclass);
4868         addr_method = mono_marshal_get_array_address (rank, element_size);
4869         addr = mono_emit_method_call (cfg, addr_method, sp, NULL);
4870
4871         return addr;
4872 }
4873
4874 static MonoBreakPolicy
4875 always_insert_breakpoint (MonoMethod *method)
4876 {
4877         return MONO_BREAK_POLICY_ALWAYS;
4878 }
4879
4880 static MonoBreakPolicyFunc break_policy_func = always_insert_breakpoint;
4881
4882 /**
4883  * mono_set_break_policy:
4884  * \param policy_callback the new callback function
4885  *
4886  * Allow embedders to decide wherther to actually obey breakpoint instructions
4887  * (both break IL instructions and \c Debugger.Break method calls), for example
4888  * to not allow an app to be aborted by a perfectly valid IL opcode when executing
4889  * untrusted or semi-trusted code.
4890  *
4891  * \p policy_callback will be called every time a break point instruction needs to
4892  * be inserted with the method argument being the method that calls \c Debugger.Break
4893  * or has the IL \c break instruction. The callback should return \c MONO_BREAK_POLICY_NEVER
4894  * if it wants the breakpoint to not be effective in the given method.
4895  * \c MONO_BREAK_POLICY_ALWAYS is the default.
4896  */
4897 void
4898 mono_set_break_policy (MonoBreakPolicyFunc policy_callback)
4899 {
4900         if (policy_callback)
4901                 break_policy_func = policy_callback;
4902         else
4903                 break_policy_func = always_insert_breakpoint;
4904 }
4905
4906 static gboolean
4907 should_insert_brekpoint (MonoMethod *method) {
4908         switch (break_policy_func (method)) {
4909         case MONO_BREAK_POLICY_ALWAYS:
4910                 return TRUE;
4911         case MONO_BREAK_POLICY_NEVER:
4912                 return FALSE;
4913         case MONO_BREAK_POLICY_ON_DBG:
4914                 g_warning ("mdb no longer supported");
4915                 return FALSE;
4916         default:
4917                 g_warning ("Incorrect value returned from break policy callback");
4918                 return FALSE;
4919         }
4920 }
4921
4922 /* optimize the simple GetGenericValueImpl/SetGenericValueImpl generic icalls */
4923 static MonoInst*
4924 emit_array_generic_access (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args, int is_set)
4925 {
4926         MonoInst *addr, *store, *load;
4927         MonoClass *eklass = mono_class_from_mono_type (fsig->params [2]);
4928
4929         /* the bounds check is already done by the callers */
4930         addr = mini_emit_ldelema_1_ins (cfg, eklass, args [0], args [1], FALSE);
4931         if (is_set) {
4932                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, &eklass->byval_arg, args [2]->dreg, 0);
4933                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, &eklass->byval_arg, addr->dreg, 0, load->dreg);
4934                 if (mini_type_is_reference (&eklass->byval_arg))
4935                         emit_write_barrier (cfg, addr, load);
4936         } else {
4937                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, &eklass->byval_arg, addr->dreg, 0);
4938                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, &eklass->byval_arg, args [2]->dreg, 0, load->dreg);
4939         }
4940         return store;
4941 }
4942
4943
4944 static gboolean
4945 generic_class_is_reference_type (MonoCompile *cfg, MonoClass *klass)
4946 {
4947         return mini_type_is_reference (&klass->byval_arg);
4948 }
4949
4950 static MonoInst*
4951 emit_array_store (MonoCompile *cfg, MonoClass *klass, MonoInst **sp, gboolean safety_checks)
4952 {
4953         if (safety_checks && generic_class_is_reference_type (cfg, klass) &&
4954                 !(MONO_INS_IS_PCONST_NULL (sp [2]))) {
4955                 MonoClass *obj_array = mono_array_class_get_cached (mono_defaults.object_class, 1);
4956                 MonoMethod *helper = mono_marshal_get_virtual_stelemref (obj_array);
4957                 MonoInst *iargs [3];
4958
4959                 if (!helper->slot)
4960                         mono_class_setup_vtable (obj_array);
4961                 g_assert (helper->slot);
4962
4963                 if (sp [0]->type != STACK_OBJ)
4964                         return NULL;
4965                 if (sp [2]->type != STACK_OBJ)
4966                         return NULL;
4967
4968                 iargs [2] = sp [2];
4969                 iargs [1] = sp [1];
4970                 iargs [0] = sp [0];
4971
4972                 return mono_emit_method_call (cfg, helper, iargs, sp [0]);
4973         } else {
4974                 MonoInst *ins;
4975
4976                 if (mini_is_gsharedvt_variable_klass (klass)) {
4977                         MonoInst *addr;
4978
4979                         // FIXME-VT: OP_ICONST optimization
4980                         addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
4981                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0, sp [2]->dreg);
4982                         ins->opcode = OP_STOREV_MEMBASE;
4983                 } else if (sp [1]->opcode == OP_ICONST) {
4984                         int array_reg = sp [0]->dreg;
4985                         int index_reg = sp [1]->dreg;
4986                         int offset = (mono_class_array_element_size (klass) * sp [1]->inst_c0) + MONO_STRUCT_OFFSET (MonoArray, vector);
4987
4988                         if (SIZEOF_REGISTER == 8 && COMPILE_LLVM (cfg))
4989                                 MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, index_reg, index_reg);
4990
4991                         if (safety_checks)
4992                                 MONO_EMIT_BOUNDS_CHECK (cfg, array_reg, MonoArray, max_length, index_reg);
4993                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, array_reg, offset, sp [2]->dreg);
4994                 } else {
4995                         MonoInst *addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], safety_checks);
4996                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0, sp [2]->dreg);
4997                         if (generic_class_is_reference_type (cfg, klass))
4998                                 emit_write_barrier (cfg, addr, sp [2]);
4999                 }
5000                 return ins;
5001         }
5002 }
5003
5004 static MonoInst*
5005 emit_array_unsafe_access (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args, int is_set)
5006 {
5007         MonoClass *eklass;
5008         
5009         if (is_set)
5010                 eklass = mono_class_from_mono_type (fsig->params [2]);
5011         else
5012                 eklass = mono_class_from_mono_type (fsig->ret);
5013
5014         if (is_set) {
5015                 return emit_array_store (cfg, eklass, args, FALSE);
5016         } else {
5017                 MonoInst *ins, *addr = mini_emit_ldelema_1_ins (cfg, eklass, args [0], args [1], FALSE);
5018                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &eklass->byval_arg, addr->dreg, 0);
5019                 return ins;
5020         }
5021 }
5022
5023 static gboolean
5024 is_unsafe_mov_compatible (MonoCompile *cfg, MonoClass *param_klass, MonoClass *return_klass)
5025 {
5026         uint32_t align;
5027         int param_size, return_size;
5028
5029         param_klass = mono_class_from_mono_type (mini_get_underlying_type (&param_klass->byval_arg));
5030         return_klass = mono_class_from_mono_type (mini_get_underlying_type (&return_klass->byval_arg));
5031
5032         if (cfg->verbose_level > 3)
5033                 printf ("[UNSAFE-MOV-INTRISIC] %s <- %s\n", return_klass->name, param_klass->name);
5034
5035         //Don't allow mixing reference types with value types
5036         if (param_klass->valuetype != return_klass->valuetype) {
5037                 if (cfg->verbose_level > 3)
5038                         printf ("[UNSAFE-MOV-INTRISIC]\tone of the args is a valuetype and the other is not\n");
5039                 return FALSE;
5040         }
5041
5042         if (!param_klass->valuetype) {
5043                 if (cfg->verbose_level > 3)
5044                         printf ("[UNSAFE-MOV-INTRISIC]\targs are reference types\n");
5045                 return TRUE;
5046         }
5047
5048         //That are blitable
5049         if (param_klass->has_references || return_klass->has_references)
5050                 return FALSE;
5051
5052         /* Avoid mixing structs and primitive types/enums, they need to be handled differently in the JIT */
5053         if ((MONO_TYPE_ISSTRUCT (&param_klass->byval_arg) && !MONO_TYPE_ISSTRUCT (&return_klass->byval_arg)) ||
5054                 (!MONO_TYPE_ISSTRUCT (&param_klass->byval_arg) && MONO_TYPE_ISSTRUCT (&return_klass->byval_arg))) {
5055                         if (cfg->verbose_level > 3)
5056                                 printf ("[UNSAFE-MOV-INTRISIC]\tmixing structs and scalars\n");
5057                 return FALSE;
5058         }
5059
5060         if (param_klass->byval_arg.type == MONO_TYPE_R4 || param_klass->byval_arg.type == MONO_TYPE_R8 ||
5061                 return_klass->byval_arg.type == MONO_TYPE_R4 || return_klass->byval_arg.type == MONO_TYPE_R8) {
5062                 if (cfg->verbose_level > 3)
5063                         printf ("[UNSAFE-MOV-INTRISIC]\tfloat or double are not supported\n");
5064                 return FALSE;
5065         }
5066
5067         param_size = mono_class_value_size (param_klass, &align);
5068         return_size = mono_class_value_size (return_klass, &align);
5069
5070         //We can do it if sizes match
5071         if (param_size == return_size) {
5072                 if (cfg->verbose_level > 3)
5073                         printf ("[UNSAFE-MOV-INTRISIC]\tsame size\n");
5074                 return TRUE;
5075         }
5076
5077         //No simple way to handle struct if sizes don't match
5078         if (MONO_TYPE_ISSTRUCT (&param_klass->byval_arg)) {
5079                 if (cfg->verbose_level > 3)
5080                         printf ("[UNSAFE-MOV-INTRISIC]\tsize mismatch and type is a struct\n");
5081                 return FALSE;
5082         }
5083
5084         /*
5085          * Same reg size category.
5086          * A quick note on why we don't require widening here.
5087          * The intrinsic is "R Array.UnsafeMov<S,R> (S s)".
5088          *
5089          * Since the source value comes from a function argument, the JIT will already have
5090          * the value in a VREG and performed any widening needed before (say, when loading from a field).
5091          */
5092         if (param_size <= 4 && return_size <= 4) {
5093                 if (cfg->verbose_level > 3)
5094                         printf ("[UNSAFE-MOV-INTRISIC]\tsize mismatch but both are of the same reg class\n");
5095                 return TRUE;
5096         }
5097
5098         return FALSE;
5099 }
5100
5101 static MonoInst*
5102 emit_array_unsafe_mov (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args)
5103 {
5104         MonoClass *param_klass = mono_class_from_mono_type (fsig->params [0]);
5105         MonoClass *return_klass = mono_class_from_mono_type (fsig->ret);
5106
5107         if (mini_is_gsharedvt_variable_type (fsig->ret))
5108                 return NULL;
5109
5110         //Valuetypes that are semantically equivalent or numbers than can be widened to
5111         if (is_unsafe_mov_compatible (cfg, param_klass, return_klass))
5112                 return args [0];
5113
5114         //Arrays of valuetypes that are semantically equivalent
5115         if (param_klass->rank == 1 && return_klass->rank == 1 && is_unsafe_mov_compatible (cfg, param_klass->element_class, return_klass->element_class))
5116                 return args [0];
5117
5118         return NULL;
5119 }
5120
5121 static MonoInst*
5122 mini_emit_inst_for_ctor (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5123 {
5124 #ifdef MONO_ARCH_SIMD_INTRINSICS
5125         MonoInst *ins = NULL;
5126
5127         if (cfg->opt & MONO_OPT_SIMD) {
5128                 ins = mono_emit_simd_intrinsics (cfg, cmethod, fsig, args);
5129                 if (ins)
5130                         return ins;
5131         }
5132 #endif
5133
5134         return mono_emit_native_types_intrinsics (cfg, cmethod, fsig, args);
5135 }
5136
5137 static MonoInst*
5138 emit_memory_barrier (MonoCompile *cfg, int kind)
5139 {
5140         MonoInst *ins = NULL;
5141         MONO_INST_NEW (cfg, ins, OP_MEMORY_BARRIER);
5142         MONO_ADD_INS (cfg->cbb, ins);
5143         ins->backend.memory_barrier_kind = kind;
5144
5145         return ins;
5146 }
5147
5148 static MonoInst*
5149 llvm_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5150 {
5151         MonoInst *ins = NULL;
5152         int opcode = 0;
5153
5154         /* The LLVM backend supports these intrinsics */
5155         if (cmethod->klass == mono_defaults.math_class) {
5156                 if (strcmp (cmethod->name, "Sin") == 0) {
5157                         opcode = OP_SIN;
5158                 } else if (strcmp (cmethod->name, "Cos") == 0) {
5159                         opcode = OP_COS;
5160                 } else if (strcmp (cmethod->name, "Sqrt") == 0) {
5161                         opcode = OP_SQRT;
5162                 } else if (strcmp (cmethod->name, "Abs") == 0 && fsig->params [0]->type == MONO_TYPE_R8) {
5163                         opcode = OP_ABS;
5164                 }
5165
5166                 if (opcode && fsig->param_count == 1) {
5167                         MONO_INST_NEW (cfg, ins, opcode);
5168                         ins->type = STACK_R8;
5169                         ins->dreg = mono_alloc_dreg (cfg, ins->type);
5170                         ins->sreg1 = args [0]->dreg;
5171                         MONO_ADD_INS (cfg->cbb, ins);
5172                 }
5173
5174                 opcode = 0;
5175                 if (cfg->opt & MONO_OPT_CMOV) {
5176                         if (strcmp (cmethod->name, "Min") == 0) {
5177                                 if (fsig->params [0]->type == MONO_TYPE_I4)
5178                                         opcode = OP_IMIN;
5179                                 if (fsig->params [0]->type == MONO_TYPE_U4)
5180                                         opcode = OP_IMIN_UN;
5181                                 else if (fsig->params [0]->type == MONO_TYPE_I8)
5182                                         opcode = OP_LMIN;
5183                                 else if (fsig->params [0]->type == MONO_TYPE_U8)
5184                                         opcode = OP_LMIN_UN;
5185                         } else if (strcmp (cmethod->name, "Max") == 0) {
5186                                 if (fsig->params [0]->type == MONO_TYPE_I4)
5187                                         opcode = OP_IMAX;
5188                                 if (fsig->params [0]->type == MONO_TYPE_U4)
5189                                         opcode = OP_IMAX_UN;
5190                                 else if (fsig->params [0]->type == MONO_TYPE_I8)
5191                                         opcode = OP_LMAX;
5192                                 else if (fsig->params [0]->type == MONO_TYPE_U8)
5193                                         opcode = OP_LMAX_UN;
5194                         }
5195                 }
5196
5197                 if (opcode && fsig->param_count == 2) {
5198                         MONO_INST_NEW (cfg, ins, opcode);
5199                         ins->type = fsig->params [0]->type == MONO_TYPE_I4 ? STACK_I4 : STACK_I8;
5200                         ins->dreg = mono_alloc_dreg (cfg, ins->type);
5201                         ins->sreg1 = args [0]->dreg;
5202                         ins->sreg2 = args [1]->dreg;
5203                         MONO_ADD_INS (cfg->cbb, ins);
5204                 }
5205         }
5206
5207         return ins;
5208 }
5209
5210 static MonoInst*
5211 mini_emit_inst_for_sharable_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5212 {
5213         if (cmethod->klass == mono_defaults.array_class) {
5214                 if (strcmp (cmethod->name, "UnsafeStore") == 0)
5215                         return emit_array_unsafe_access (cfg, fsig, args, TRUE);
5216                 else if (strcmp (cmethod->name, "UnsafeLoad") == 0)
5217                         return emit_array_unsafe_access (cfg, fsig, args, FALSE);
5218                 else if (strcmp (cmethod->name, "UnsafeMov") == 0)
5219                         return emit_array_unsafe_mov (cfg, fsig, args);
5220         }
5221
5222         return NULL;
5223 }
5224
5225 static MonoInst*
5226 mini_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5227 {
5228         MonoInst *ins = NULL;
5229         MonoClass *runtime_helpers_class = mono_class_get_runtime_helpers_class ();
5230
5231         if (cmethod->klass == mono_defaults.string_class) {
5232                 if (strcmp (cmethod->name, "get_Chars") == 0 && fsig->param_count + fsig->hasthis == 2) {
5233                         int dreg = alloc_ireg (cfg);
5234                         int index_reg = alloc_preg (cfg);
5235                         int add_reg = alloc_preg (cfg);
5236
5237 #if SIZEOF_REGISTER == 8
5238                         if (COMPILE_LLVM (cfg)) {
5239                                 MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, index_reg, args [1]->dreg);
5240                         } else {
5241                                 /* The array reg is 64 bits but the index reg is only 32 */
5242                                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, index_reg, args [1]->dreg);
5243                         }
5244 #else
5245                         index_reg = args [1]->dreg;
5246 #endif  
5247                         MONO_EMIT_BOUNDS_CHECK (cfg, args [0]->dreg, MonoString, length, index_reg);
5248
5249 #if defined(TARGET_X86) || defined(TARGET_AMD64)
5250                         EMIT_NEW_X86_LEA (cfg, ins, args [0]->dreg, index_reg, 1, MONO_STRUCT_OFFSET (MonoString, chars));
5251                         add_reg = ins->dreg;
5252                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADU2_MEMBASE, dreg, 
5253                                                                    add_reg, 0);
5254 #else
5255                         int mult_reg = alloc_preg (cfg);
5256                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, mult_reg, index_reg, 1);
5257                         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, add_reg, mult_reg, args [0]->dreg);
5258                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADU2_MEMBASE, dreg, 
5259                                                                    add_reg, MONO_STRUCT_OFFSET (MonoString, chars));
5260 #endif
5261                         type_from_op (cfg, ins, NULL, NULL);
5262                         return ins;
5263                 } else if (strcmp (cmethod->name, "get_Length") == 0 && fsig->param_count + fsig->hasthis == 1) {
5264                         int dreg = alloc_ireg (cfg);
5265                         /* Decompose later to allow more optimizations */
5266                         EMIT_NEW_UNALU (cfg, ins, OP_STRLEN, dreg, args [0]->dreg);
5267                         ins->type = STACK_I4;
5268                         ins->flags |= MONO_INST_FAULT;
5269                         cfg->cbb->has_array_access = TRUE;
5270                         cfg->flags |= MONO_CFG_HAS_ARRAY_ACCESS;
5271
5272                         return ins;
5273                 } else 
5274                         return NULL;
5275         } else if (cmethod->klass == mono_defaults.object_class) {
5276                 if (strcmp (cmethod->name, "GetType") == 0 && fsig->param_count + fsig->hasthis == 1) {
5277                         int dreg = alloc_ireg_ref (cfg);
5278                         int vt_reg = alloc_preg (cfg);
5279                         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vt_reg, args [0]->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
5280                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, vt_reg, MONO_STRUCT_OFFSET (MonoVTable, type));
5281                         type_from_op (cfg, ins, NULL, NULL);
5282
5283                         return ins;
5284                 } else if (!cfg->backend->emulate_mul_div && strcmp (cmethod->name, "InternalGetHashCode") == 0 && fsig->param_count == 1 && !mono_gc_is_moving ()) {
5285                         int dreg = alloc_ireg (cfg);
5286                         int t1 = alloc_ireg (cfg);
5287         
5288                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, t1, args [0]->dreg, 3);
5289                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_MUL_IMM, dreg, t1, 2654435761u);
5290                         ins->type = STACK_I4;
5291
5292                         return ins;
5293                 } else if (strcmp (cmethod->name, ".ctor") == 0 && fsig->param_count == 0) {
5294                         MONO_INST_NEW (cfg, ins, OP_NOP);
5295                         MONO_ADD_INS (cfg->cbb, ins);
5296                         return ins;
5297                 } else
5298                         return NULL;
5299         } else if (cmethod->klass == mono_defaults.array_class) {
5300                 if (strcmp (cmethod->name, "GetGenericValueImpl") == 0 && fsig->param_count + fsig->hasthis == 3 && !cfg->gsharedvt)
5301                         return emit_array_generic_access (cfg, fsig, args, FALSE);
5302                 else if (strcmp (cmethod->name, "SetGenericValueImpl") == 0 && fsig->param_count + fsig->hasthis == 3 && !cfg->gsharedvt)
5303                         return emit_array_generic_access (cfg, fsig, args, TRUE);
5304
5305 #ifndef MONO_BIG_ARRAYS
5306                 /*
5307                  * This is an inline version of GetLength/GetLowerBound(0) used frequently in
5308                  * Array methods.
5309                  */
5310                 else if (((strcmp (cmethod->name, "GetLength") == 0 && fsig->param_count + fsig->hasthis == 2) ||
5311                          (strcmp (cmethod->name, "GetLowerBound") == 0 && fsig->param_count + fsig->hasthis == 2)) &&
5312                          args [1]->opcode == OP_ICONST && args [1]->inst_c0 == 0) {
5313                         int dreg = alloc_ireg (cfg);
5314                         int bounds_reg = alloc_ireg_mp (cfg);
5315                         MonoBasicBlock *end_bb, *szarray_bb;
5316                         gboolean get_length = strcmp (cmethod->name, "GetLength") == 0;
5317
5318                         NEW_BBLOCK (cfg, end_bb);
5319                         NEW_BBLOCK (cfg, szarray_bb);
5320
5321                         EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, ins, OP_LOAD_MEMBASE, bounds_reg,
5322                                                                                  args [0]->dreg, MONO_STRUCT_OFFSET (MonoArray, bounds));
5323                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, bounds_reg, 0);
5324                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, szarray_bb);
5325                         /* Non-szarray case */
5326                         if (get_length)
5327                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADI4_MEMBASE, dreg,
5328                                                                            bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, length));
5329                         else
5330                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADI4_MEMBASE, dreg,
5331                                                                            bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, lower_bound));
5332                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
5333                         MONO_START_BB (cfg, szarray_bb);
5334                         /* Szarray case */
5335                         if (get_length)
5336                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADI4_MEMBASE, dreg,
5337                                                                            args [0]->dreg, MONO_STRUCT_OFFSET (MonoArray, max_length));
5338                         else
5339                                 MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
5340                         MONO_START_BB (cfg, end_bb);
5341
5342                         EMIT_NEW_UNALU (cfg, ins, OP_MOVE, dreg, dreg);
5343                         ins->type = STACK_I4;
5344                         
5345                         return ins;
5346                 }
5347 #endif
5348
5349                 if (cmethod->name [0] != 'g')
5350                         return NULL;
5351
5352                 if (strcmp (cmethod->name, "get_Rank") == 0 && fsig->param_count + fsig->hasthis == 1) {
5353                         int dreg = alloc_ireg (cfg);
5354                         int vtable_reg = alloc_preg (cfg);
5355                         MONO_EMIT_NEW_LOAD_MEMBASE_OP_FAULT (cfg, OP_LOAD_MEMBASE, vtable_reg, 
5356                                                                                                  args [0]->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
5357                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADU1_MEMBASE, dreg,
5358                                                                    vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, rank));
5359                         type_from_op (cfg, ins, NULL, NULL);
5360
5361                         return ins;
5362                 } else if (strcmp (cmethod->name, "get_Length") == 0 && fsig->param_count + fsig->hasthis == 1) {
5363                         int dreg = alloc_ireg (cfg);
5364
5365                         EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, ins, OP_LOADI4_MEMBASE, dreg, 
5366                                                                                  args [0]->dreg, MONO_STRUCT_OFFSET (MonoArray, max_length));
5367                         type_from_op (cfg, ins, NULL, NULL);
5368
5369                         return ins;
5370                 } else
5371                         return NULL;
5372         } else if (cmethod->klass == runtime_helpers_class) {
5373                 if (strcmp (cmethod->name, "get_OffsetToStringData") == 0 && fsig->param_count == 0) {
5374                         EMIT_NEW_ICONST (cfg, ins, MONO_STRUCT_OFFSET (MonoString, chars));
5375                         return ins;
5376                 } else if (strcmp (cmethod->name, "IsReferenceOrContainsReferences") == 0 && fsig->param_count == 0) {
5377                         MonoGenericContext *ctx = mono_method_get_context (cmethod);
5378                         g_assert (ctx);
5379                         g_assert (ctx->method_inst);
5380                         g_assert (ctx->method_inst->type_argc == 1);
5381                         MonoType *t = mini_get_underlying_type (ctx->method_inst->type_argv [0]);
5382                         MonoClass *klass = mono_class_from_mono_type (t);
5383
5384                         ins = NULL;
5385
5386                         mono_class_init (klass);
5387                         if (MONO_TYPE_IS_REFERENCE (t))
5388                                 EMIT_NEW_ICONST (cfg, ins, 1);
5389                         else if (MONO_TYPE_IS_PRIMITIVE (t))
5390                                 EMIT_NEW_ICONST (cfg, ins, 0);
5391                         else if (cfg->gshared && (t->type == MONO_TYPE_VAR || t->type == MONO_TYPE_MVAR) && !mini_type_var_is_vt (t))
5392                                 EMIT_NEW_ICONST (cfg, ins, 1);
5393                         else if (!cfg->gshared || !mini_class_check_context_used (cfg, klass))
5394                                 EMIT_NEW_ICONST (cfg, ins, klass->has_references ? 1 : 0);
5395                         else {
5396                                 g_assert (cfg->gshared);
5397
5398                                 int context_used = mini_class_check_context_used (cfg, klass);
5399
5400                                 /* This returns 1 or 2 */
5401                                 MonoInst *info = mini_emit_get_rgctx_klass (cfg, context_used, klass,   MONO_RGCTX_INFO_CLASS_IS_REF_OR_CONTAINS_REFS);
5402                                 int dreg = alloc_ireg (cfg);
5403                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_ISUB_IMM, dreg, info->dreg, 1);
5404                         }
5405
5406                         return ins;
5407                 } else
5408                         return NULL;
5409         } else if (cmethod->klass == mono_defaults.monitor_class) {
5410                 gboolean is_enter = FALSE;
5411                 gboolean is_v4 = FALSE;
5412
5413                 if (!strcmp (cmethod->name, "Enter") && fsig->param_count == 2 && fsig->params [1]->byref) {
5414                         is_enter = TRUE;
5415                         is_v4 = TRUE;
5416                 }
5417                 if (!strcmp (cmethod->name, "Enter") && fsig->param_count == 1)
5418                         is_enter = TRUE;
5419
5420                 if (is_enter) {
5421                         /*
5422                          * To make async stack traces work, icalls which can block should have a wrapper.
5423                          * For Monitor.Enter, emit two calls: a fastpath which doesn't have a wrapper, and a slowpath, which does.
5424                          */
5425                         MonoBasicBlock *end_bb;
5426
5427                         NEW_BBLOCK (cfg, end_bb);
5428
5429                         ins = mono_emit_jit_icall (cfg, is_v4 ? (gpointer)mono_monitor_enter_v4_fast : (gpointer)mono_monitor_enter_fast, args);
5430                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ICOMPARE_IMM, -1, ins->dreg, 0);
5431                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBNE_UN, end_bb);
5432                         ins = mono_emit_jit_icall (cfg, is_v4 ? (gpointer)mono_monitor_enter_v4_internal : (gpointer)mono_monitor_enter_internal, args);
5433                         MONO_START_BB (cfg, end_bb);
5434                         return ins;
5435                 }
5436         } else if (cmethod->klass == mono_defaults.thread_class) {
5437                 if (strcmp (cmethod->name, "SpinWait_nop") == 0 && fsig->param_count == 0) {
5438                         MONO_INST_NEW (cfg, ins, OP_RELAXED_NOP);
5439                         MONO_ADD_INS (cfg->cbb, ins);
5440                         return ins;
5441                 } else if (strcmp (cmethod->name, "MemoryBarrier") == 0 && fsig->param_count == 0) {
5442                         return emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
5443                 } else if (!strcmp (cmethod->name, "VolatileRead") && fsig->param_count == 1) {
5444                         guint32 opcode = 0;
5445                         gboolean is_ref = mini_type_is_reference (fsig->params [0]);
5446
5447                         if (fsig->params [0]->type == MONO_TYPE_I1)
5448                                 opcode = OP_LOADI1_MEMBASE;
5449                         else if (fsig->params [0]->type == MONO_TYPE_U1)
5450                                 opcode = OP_LOADU1_MEMBASE;
5451                         else if (fsig->params [0]->type == MONO_TYPE_I2)
5452                                 opcode = OP_LOADI2_MEMBASE;
5453                         else if (fsig->params [0]->type == MONO_TYPE_U2)
5454                                 opcode = OP_LOADU2_MEMBASE;
5455                         else if (fsig->params [0]->type == MONO_TYPE_I4)
5456                                 opcode = OP_LOADI4_MEMBASE;
5457                         else if (fsig->params [0]->type == MONO_TYPE_U4)
5458                                 opcode = OP_LOADU4_MEMBASE;
5459                         else if (fsig->params [0]->type == MONO_TYPE_I8 || fsig->params [0]->type == MONO_TYPE_U8)
5460                                 opcode = OP_LOADI8_MEMBASE;
5461                         else if (fsig->params [0]->type == MONO_TYPE_R4)
5462                                 opcode = OP_LOADR4_MEMBASE;
5463                         else if (fsig->params [0]->type == MONO_TYPE_R8)
5464                                 opcode = OP_LOADR8_MEMBASE;
5465                         else if (is_ref || fsig->params [0]->type == MONO_TYPE_I || fsig->params [0]->type == MONO_TYPE_U)
5466                                 opcode = OP_LOAD_MEMBASE;
5467
5468                         if (opcode) {
5469                                 MONO_INST_NEW (cfg, ins, opcode);
5470                                 ins->inst_basereg = args [0]->dreg;
5471                                 ins->inst_offset = 0;
5472                                 MONO_ADD_INS (cfg->cbb, ins);
5473
5474                                 switch (fsig->params [0]->type) {
5475                                 case MONO_TYPE_I1:
5476                                 case MONO_TYPE_U1:
5477                                 case MONO_TYPE_I2:
5478                                 case MONO_TYPE_U2:
5479                                 case MONO_TYPE_I4:
5480                                 case MONO_TYPE_U4:
5481                                         ins->dreg = mono_alloc_ireg (cfg);
5482                                         ins->type = STACK_I4;
5483                                         break;
5484                                 case MONO_TYPE_I8:
5485                                 case MONO_TYPE_U8:
5486                                         ins->dreg = mono_alloc_lreg (cfg);
5487                                         ins->type = STACK_I8;
5488                                         break;
5489                                 case MONO_TYPE_I:
5490                                 case MONO_TYPE_U:
5491                                         ins->dreg = mono_alloc_ireg (cfg);
5492 #if SIZEOF_REGISTER == 8
5493                                         ins->type = STACK_I8;
5494 #else
5495                                         ins->type = STACK_I4;
5496 #endif
5497                                         break;
5498                                 case MONO_TYPE_R4:
5499                                 case MONO_TYPE_R8:
5500                                         ins->dreg = mono_alloc_freg (cfg);
5501                                         ins->type = STACK_R8;
5502                                         break;
5503                                 default:
5504                                         g_assert (mini_type_is_reference (fsig->params [0]));
5505                                         ins->dreg = mono_alloc_ireg_ref (cfg);
5506                                         ins->type = STACK_OBJ;
5507                                         break;
5508                                 }
5509
5510                                 if (opcode == OP_LOADI8_MEMBASE)
5511                                         ins = mono_decompose_opcode (cfg, ins);
5512
5513                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
5514
5515                                 return ins;
5516                         }
5517                 } else if (!strcmp (cmethod->name, "VolatileWrite") && fsig->param_count == 2) {
5518                         guint32 opcode = 0;
5519                         gboolean is_ref = mini_type_is_reference (fsig->params [0]);
5520
5521                         if (fsig->params [0]->type == MONO_TYPE_I1 || fsig->params [0]->type == MONO_TYPE_U1)
5522                                 opcode = OP_STOREI1_MEMBASE_REG;
5523                         else if (fsig->params [0]->type == MONO_TYPE_I2 || fsig->params [0]->type == MONO_TYPE_U2)
5524                                 opcode = OP_STOREI2_MEMBASE_REG;
5525                         else if (fsig->params [0]->type == MONO_TYPE_I4 || fsig->params [0]->type == MONO_TYPE_U4)
5526                                 opcode = OP_STOREI4_MEMBASE_REG;
5527                         else if (fsig->params [0]->type == MONO_TYPE_I8 || fsig->params [0]->type == MONO_TYPE_U8)
5528                                 opcode = OP_STOREI8_MEMBASE_REG;
5529                         else if (fsig->params [0]->type == MONO_TYPE_R4)
5530                                 opcode = OP_STORER4_MEMBASE_REG;
5531                         else if (fsig->params [0]->type == MONO_TYPE_R8)
5532                                 opcode = OP_STORER8_MEMBASE_REG;
5533                         else if (is_ref || fsig->params [0]->type == MONO_TYPE_I || fsig->params [0]->type == MONO_TYPE_U)
5534                                 opcode = OP_STORE_MEMBASE_REG;
5535
5536                         if (opcode) {
5537                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
5538
5539                                 MONO_INST_NEW (cfg, ins, opcode);
5540                                 ins->sreg1 = args [1]->dreg;
5541                                 ins->inst_destbasereg = args [0]->dreg;
5542                                 ins->inst_offset = 0;
5543                                 MONO_ADD_INS (cfg->cbb, ins);
5544
5545                                 if (opcode == OP_STOREI8_MEMBASE_REG)
5546                                         ins = mono_decompose_opcode (cfg, ins);
5547
5548                                 return ins;
5549                         }
5550                 }
5551         } else if (cmethod->klass->image == mono_defaults.corlib &&
5552                            (strcmp (cmethod->klass->name_space, "System.Threading") == 0) &&
5553                            (strcmp (cmethod->klass->name, "Interlocked") == 0)) {
5554                 ins = NULL;
5555
5556 #if SIZEOF_REGISTER == 8
5557                 if (!cfg->llvm_only && strcmp (cmethod->name, "Read") == 0 && fsig->param_count == 1 && (fsig->params [0]->type == MONO_TYPE_I8)) {
5558                         if (!cfg->llvm_only && mono_arch_opcode_supported (OP_ATOMIC_LOAD_I8)) {
5559                                 MONO_INST_NEW (cfg, ins, OP_ATOMIC_LOAD_I8);
5560                                 ins->dreg = mono_alloc_preg (cfg);
5561                                 ins->sreg1 = args [0]->dreg;
5562                                 ins->type = STACK_I8;
5563                                 ins->backend.memory_barrier_kind = MONO_MEMORY_BARRIER_SEQ;
5564                                 MONO_ADD_INS (cfg->cbb, ins);
5565                         } else {
5566                                 MonoInst *load_ins;
5567
5568                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
5569
5570                                 /* 64 bit reads are already atomic */
5571                                 MONO_INST_NEW (cfg, load_ins, OP_LOADI8_MEMBASE);
5572                                 load_ins->dreg = mono_alloc_preg (cfg);
5573                                 load_ins->inst_basereg = args [0]->dreg;
5574                                 load_ins->inst_offset = 0;
5575                                 load_ins->type = STACK_I8;
5576                                 MONO_ADD_INS (cfg->cbb, load_ins);
5577
5578                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
5579
5580                                 ins = load_ins;
5581                         }
5582                 }
5583 #endif
5584
5585                 if (strcmp (cmethod->name, "Increment") == 0 && fsig->param_count == 1) {
5586                         MonoInst *ins_iconst;
5587                         guint32 opcode = 0;
5588
5589                         if (fsig->params [0]->type == MONO_TYPE_I4) {
5590                                 opcode = OP_ATOMIC_ADD_I4;
5591                                 cfg->has_atomic_add_i4 = TRUE;
5592                         }
5593 #if SIZEOF_REGISTER == 8
5594                         else if (fsig->params [0]->type == MONO_TYPE_I8)
5595                                 opcode = OP_ATOMIC_ADD_I8;
5596 #endif
5597                         if (opcode) {
5598                                 if (!mono_arch_opcode_supported (opcode))
5599                                         return NULL;
5600                                 MONO_INST_NEW (cfg, ins_iconst, OP_ICONST);
5601                                 ins_iconst->inst_c0 = 1;
5602                                 ins_iconst->dreg = mono_alloc_ireg (cfg);
5603                                 MONO_ADD_INS (cfg->cbb, ins_iconst);
5604
5605                                 MONO_INST_NEW (cfg, ins, opcode);
5606                                 ins->dreg = mono_alloc_ireg (cfg);
5607                                 ins->inst_basereg = args [0]->dreg;
5608                                 ins->inst_offset = 0;
5609                                 ins->sreg2 = ins_iconst->dreg;
5610                                 ins->type = (opcode == OP_ATOMIC_ADD_I4) ? STACK_I4 : STACK_I8;
5611                                 MONO_ADD_INS (cfg->cbb, ins);
5612                         }
5613                 } else if (strcmp (cmethod->name, "Decrement") == 0 && fsig->param_count == 1) {
5614                         MonoInst *ins_iconst;
5615                         guint32 opcode = 0;
5616
5617                         if (fsig->params [0]->type == MONO_TYPE_I4) {
5618                                 opcode = OP_ATOMIC_ADD_I4;
5619                                 cfg->has_atomic_add_i4 = TRUE;
5620                         }
5621 #if SIZEOF_REGISTER == 8
5622                         else if (fsig->params [0]->type == MONO_TYPE_I8)
5623                                 opcode = OP_ATOMIC_ADD_I8;
5624 #endif
5625                         if (opcode) {
5626                                 if (!mono_arch_opcode_supported (opcode))
5627                                         return NULL;
5628                                 MONO_INST_NEW (cfg, ins_iconst, OP_ICONST);
5629                                 ins_iconst->inst_c0 = -1;
5630                                 ins_iconst->dreg = mono_alloc_ireg (cfg);
5631                                 MONO_ADD_INS (cfg->cbb, ins_iconst);
5632
5633                                 MONO_INST_NEW (cfg, ins, opcode);
5634                                 ins->dreg = mono_alloc_ireg (cfg);
5635                                 ins->inst_basereg = args [0]->dreg;
5636                                 ins->inst_offset = 0;
5637                                 ins->sreg2 = ins_iconst->dreg;
5638                                 ins->type = (opcode == OP_ATOMIC_ADD_I4) ? STACK_I4 : STACK_I8;
5639                                 MONO_ADD_INS (cfg->cbb, ins);
5640                         }
5641                 } else if (strcmp (cmethod->name, "Add") == 0 && fsig->param_count == 2) {
5642                         guint32 opcode = 0;
5643
5644                         if (fsig->params [0]->type == MONO_TYPE_I4) {
5645                                 opcode = OP_ATOMIC_ADD_I4;
5646                                 cfg->has_atomic_add_i4 = TRUE;
5647                         }
5648 #if SIZEOF_REGISTER == 8
5649                         else if (fsig->params [0]->type == MONO_TYPE_I8)
5650                                 opcode = OP_ATOMIC_ADD_I8;
5651 #endif
5652                         if (opcode) {
5653                                 if (!mono_arch_opcode_supported (opcode))
5654                                         return NULL;
5655                                 MONO_INST_NEW (cfg, ins, opcode);
5656                                 ins->dreg = mono_alloc_ireg (cfg);
5657                                 ins->inst_basereg = args [0]->dreg;
5658                                 ins->inst_offset = 0;
5659                                 ins->sreg2 = args [1]->dreg;
5660                                 ins->type = (opcode == OP_ATOMIC_ADD_I4) ? STACK_I4 : STACK_I8;
5661                                 MONO_ADD_INS (cfg->cbb, ins);
5662                         }
5663                 }
5664                 else if (strcmp (cmethod->name, "Exchange") == 0 && fsig->param_count == 2) {
5665                         MonoInst *f2i = NULL, *i2f;
5666                         guint32 opcode, f2i_opcode, i2f_opcode;
5667                         gboolean is_ref = mini_type_is_reference (fsig->params [0]);
5668                         gboolean is_float = fsig->params [0]->type == MONO_TYPE_R4 || fsig->params [0]->type == MONO_TYPE_R8;
5669
5670                         if (fsig->params [0]->type == MONO_TYPE_I4 ||
5671                             fsig->params [0]->type == MONO_TYPE_R4) {
5672                                 opcode = OP_ATOMIC_EXCHANGE_I4;
5673                                 f2i_opcode = OP_MOVE_F_TO_I4;
5674                                 i2f_opcode = OP_MOVE_I4_TO_F;
5675                                 cfg->has_atomic_exchange_i4 = TRUE;
5676                         }
5677 #if SIZEOF_REGISTER == 8
5678                         else if (is_ref ||
5679                                  fsig->params [0]->type == MONO_TYPE_I8 ||
5680                                  fsig->params [0]->type == MONO_TYPE_R8 ||
5681                                  fsig->params [0]->type == MONO_TYPE_I) {
5682                                 opcode = OP_ATOMIC_EXCHANGE_I8;
5683                                 f2i_opcode = OP_MOVE_F_TO_I8;
5684                                 i2f_opcode = OP_MOVE_I8_TO_F;
5685                         }
5686 #else
5687                         else if (is_ref || fsig->params [0]->type == MONO_TYPE_I) {
5688                                 opcode = OP_ATOMIC_EXCHANGE_I4;
5689                                 cfg->has_atomic_exchange_i4 = TRUE;
5690                         }
5691 #endif
5692                         else
5693                                 return NULL;
5694
5695                         if (!mono_arch_opcode_supported (opcode))
5696                                 return NULL;
5697
5698                         if (is_float) {
5699                                 /* TODO: Decompose these opcodes instead of bailing here. */
5700                                 if (COMPILE_SOFT_FLOAT (cfg))
5701                                         return NULL;
5702
5703                                 MONO_INST_NEW (cfg, f2i, f2i_opcode);
5704                                 f2i->dreg = mono_alloc_ireg (cfg);
5705                                 f2i->sreg1 = args [1]->dreg;
5706                                 if (f2i_opcode == OP_MOVE_F_TO_I4)
5707                                         f2i->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
5708                                 MONO_ADD_INS (cfg->cbb, f2i);
5709                         }
5710
5711                         MONO_INST_NEW (cfg, ins, opcode);
5712                         ins->dreg = is_ref ? mono_alloc_ireg_ref (cfg) : mono_alloc_ireg (cfg);
5713                         ins->inst_basereg = args [0]->dreg;
5714                         ins->inst_offset = 0;
5715                         ins->sreg2 = is_float ? f2i->dreg : args [1]->dreg;
5716                         MONO_ADD_INS (cfg->cbb, ins);
5717
5718                         switch (fsig->params [0]->type) {
5719                         case MONO_TYPE_I4:
5720                                 ins->type = STACK_I4;
5721                                 break;
5722                         case MONO_TYPE_I8:
5723                                 ins->type = STACK_I8;
5724                                 break;
5725                         case MONO_TYPE_I:
5726 #if SIZEOF_REGISTER == 8
5727                                 ins->type = STACK_I8;
5728 #else
5729                                 ins->type = STACK_I4;
5730 #endif
5731                                 break;
5732                         case MONO_TYPE_R4:
5733                         case MONO_TYPE_R8:
5734                                 ins->type = STACK_R8;
5735                                 break;
5736                         default:
5737                                 g_assert (mini_type_is_reference (fsig->params [0]));
5738                                 ins->type = STACK_OBJ;
5739                                 break;
5740                         }
5741
5742                         if (is_float) {
5743                                 MONO_INST_NEW (cfg, i2f, i2f_opcode);
5744                                 i2f->dreg = mono_alloc_freg (cfg);
5745                                 i2f->sreg1 = ins->dreg;
5746                                 i2f->type = STACK_R8;
5747                                 if (i2f_opcode == OP_MOVE_I4_TO_F)
5748                                         i2f->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
5749                                 MONO_ADD_INS (cfg->cbb, i2f);
5750
5751                                 ins = i2f;
5752                         }
5753
5754                         if (cfg->gen_write_barriers && is_ref)
5755                                 emit_write_barrier (cfg, args [0], args [1]);
5756                 }
5757                 else if ((strcmp (cmethod->name, "CompareExchange") == 0) && fsig->param_count == 3) {
5758                         MonoInst *f2i_new = NULL, *f2i_cmp = NULL, *i2f;
5759                         guint32 opcode, f2i_opcode, i2f_opcode;
5760                         gboolean is_ref = mini_type_is_reference (fsig->params [1]);
5761                         gboolean is_float = fsig->params [1]->type == MONO_TYPE_R4 || fsig->params [1]->type == MONO_TYPE_R8;
5762
5763                         if (fsig->params [1]->type == MONO_TYPE_I4 ||
5764                             fsig->params [1]->type == MONO_TYPE_R4) {
5765                                 opcode = OP_ATOMIC_CAS_I4;
5766                                 f2i_opcode = OP_MOVE_F_TO_I4;
5767                                 i2f_opcode = OP_MOVE_I4_TO_F;
5768                                 cfg->has_atomic_cas_i4 = TRUE;
5769                         }
5770 #if SIZEOF_REGISTER == 8
5771                         else if (is_ref ||
5772                                  fsig->params [1]->type == MONO_TYPE_I8 ||
5773                                  fsig->params [1]->type == MONO_TYPE_R8 ||
5774                                  fsig->params [1]->type == MONO_TYPE_I) {
5775                                 opcode = OP_ATOMIC_CAS_I8;
5776                                 f2i_opcode = OP_MOVE_F_TO_I8;
5777                                 i2f_opcode = OP_MOVE_I8_TO_F;
5778                         }
5779 #else
5780                         else if (is_ref || fsig->params [1]->type == MONO_TYPE_I) {
5781                                 opcode = OP_ATOMIC_CAS_I4;
5782                                 cfg->has_atomic_cas_i4 = TRUE;
5783                         }
5784 #endif
5785                         else
5786                                 return NULL;
5787
5788                         if (!mono_arch_opcode_supported (opcode))
5789                                 return NULL;
5790
5791                         if (is_float) {
5792                                 /* TODO: Decompose these opcodes instead of bailing here. */
5793                                 if (COMPILE_SOFT_FLOAT (cfg))
5794                                         return NULL;
5795
5796                                 MONO_INST_NEW (cfg, f2i_new, f2i_opcode);
5797                                 f2i_new->dreg = mono_alloc_ireg (cfg);
5798                                 f2i_new->sreg1 = args [1]->dreg;
5799                                 if (f2i_opcode == OP_MOVE_F_TO_I4)
5800                                         f2i_new->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
5801                                 MONO_ADD_INS (cfg->cbb, f2i_new);
5802
5803                                 MONO_INST_NEW (cfg, f2i_cmp, f2i_opcode);
5804                                 f2i_cmp->dreg = mono_alloc_ireg (cfg);
5805                                 f2i_cmp->sreg1 = args [2]->dreg;
5806                                 if (f2i_opcode == OP_MOVE_F_TO_I4)
5807                                         f2i_cmp->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
5808                                 MONO_ADD_INS (cfg->cbb, f2i_cmp);
5809                         }
5810
5811                         MONO_INST_NEW (cfg, ins, opcode);
5812                         ins->dreg = is_ref ? alloc_ireg_ref (cfg) : alloc_ireg (cfg);
5813                         ins->sreg1 = args [0]->dreg;
5814                         ins->sreg2 = is_float ? f2i_new->dreg : args [1]->dreg;
5815                         ins->sreg3 = is_float ? f2i_cmp->dreg : args [2]->dreg;
5816                         MONO_ADD_INS (cfg->cbb, ins);
5817
5818                         switch (fsig->params [1]->type) {
5819                         case MONO_TYPE_I4:
5820                                 ins->type = STACK_I4;
5821                                 break;
5822                         case MONO_TYPE_I8:
5823                                 ins->type = STACK_I8;
5824                                 break;
5825                         case MONO_TYPE_I:
5826 #if SIZEOF_REGISTER == 8
5827                                 ins->type = STACK_I8;
5828 #else
5829                                 ins->type = STACK_I4;
5830 #endif
5831                                 break;
5832                         case MONO_TYPE_R4:
5833                                 ins->type = cfg->r4_stack_type;
5834                                 break;
5835                         case MONO_TYPE_R8:
5836                                 ins->type = STACK_R8;
5837                                 break;
5838                         default:
5839                                 g_assert (mini_type_is_reference (fsig->params [1]));
5840                                 ins->type = STACK_OBJ;
5841                                 break;
5842                         }
5843
5844                         if (is_float) {
5845                                 MONO_INST_NEW (cfg, i2f, i2f_opcode);
5846                                 i2f->dreg = mono_alloc_freg (cfg);
5847                                 i2f->sreg1 = ins->dreg;
5848                                 i2f->type = STACK_R8;
5849                                 if (i2f_opcode == OP_MOVE_I4_TO_F)
5850                                         i2f->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
5851                                 MONO_ADD_INS (cfg->cbb, i2f);
5852
5853                                 ins = i2f;
5854                         }
5855
5856                         if (cfg->gen_write_barriers && is_ref)
5857                                 emit_write_barrier (cfg, args [0], args [1]);
5858                 }
5859                 else if ((strcmp (cmethod->name, "CompareExchange") == 0) && fsig->param_count == 4 &&
5860                          fsig->params [1]->type == MONO_TYPE_I4) {
5861                         MonoInst *cmp, *ceq;
5862
5863                         if (!mono_arch_opcode_supported (OP_ATOMIC_CAS_I4))
5864                                 return NULL;
5865
5866                         /* int32 r = CAS (location, value, comparand); */
5867                         MONO_INST_NEW (cfg, ins, OP_ATOMIC_CAS_I4);
5868                         ins->dreg = alloc_ireg (cfg);
5869                         ins->sreg1 = args [0]->dreg;
5870                         ins->sreg2 = args [1]->dreg;
5871                         ins->sreg3 = args [2]->dreg;
5872                         ins->type = STACK_I4;
5873                         MONO_ADD_INS (cfg->cbb, ins);
5874
5875                         /* bool result = r == comparand; */
5876                         MONO_INST_NEW (cfg, cmp, OP_ICOMPARE);
5877                         cmp->sreg1 = ins->dreg;
5878                         cmp->sreg2 = args [2]->dreg;
5879                         cmp->type = STACK_I4;
5880                         MONO_ADD_INS (cfg->cbb, cmp);
5881
5882                         MONO_INST_NEW (cfg, ceq, OP_ICEQ);
5883                         ceq->dreg = alloc_ireg (cfg);
5884                         ceq->type = STACK_I4;
5885                         MONO_ADD_INS (cfg->cbb, ceq);
5886
5887                         /* *success = result; */
5888                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, args [3]->dreg, 0, ceq->dreg);
5889
5890                         cfg->has_atomic_cas_i4 = TRUE;
5891                 }
5892                 else if (strcmp (cmethod->name, "MemoryBarrier") == 0 && fsig->param_count == 0)
5893                         ins = emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
5894
5895                 if (ins)
5896                         return ins;
5897         } else if (cmethod->klass->image == mono_defaults.corlib &&
5898                            (strcmp (cmethod->klass->name_space, "System.Threading") == 0) &&
5899                            (strcmp (cmethod->klass->name, "Volatile") == 0)) {
5900                 ins = NULL;
5901
5902                 if (!cfg->llvm_only && !strcmp (cmethod->name, "Read") && fsig->param_count == 1) {
5903                         guint32 opcode = 0;
5904                         MonoType *t = fsig->params [0];
5905                         gboolean is_ref;
5906                         gboolean is_float = t->type == MONO_TYPE_R4 || t->type == MONO_TYPE_R8;
5907
5908                         g_assert (t->byref);
5909                         /* t is a byref type, so the reference check is more complicated */
5910                         is_ref = mini_type_is_reference (&mono_class_from_mono_type (t)->byval_arg);
5911                         if (t->type == MONO_TYPE_I1)
5912                                 opcode = OP_ATOMIC_LOAD_I1;
5913                         else if (t->type == MONO_TYPE_U1 || t->type == MONO_TYPE_BOOLEAN)
5914                                 opcode = OP_ATOMIC_LOAD_U1;
5915                         else if (t->type == MONO_TYPE_I2)
5916                                 opcode = OP_ATOMIC_LOAD_I2;
5917                         else if (t->type == MONO_TYPE_U2)
5918                                 opcode = OP_ATOMIC_LOAD_U2;
5919                         else if (t->type == MONO_TYPE_I4)
5920                                 opcode = OP_ATOMIC_LOAD_I4;
5921                         else if (t->type == MONO_TYPE_U4)
5922                                 opcode = OP_ATOMIC_LOAD_U4;
5923                         else if (t->type == MONO_TYPE_R4)
5924                                 opcode = OP_ATOMIC_LOAD_R4;
5925                         else if (t->type == MONO_TYPE_R8)
5926                                 opcode = OP_ATOMIC_LOAD_R8;
5927 #if SIZEOF_REGISTER == 8
5928                         else if (t->type == MONO_TYPE_I8 || t->type == MONO_TYPE_I)
5929                                 opcode = OP_ATOMIC_LOAD_I8;
5930                         else if (is_ref || t->type == MONO_TYPE_U8 || t->type == MONO_TYPE_U)
5931                                 opcode = OP_ATOMIC_LOAD_U8;
5932 #else
5933                         else if (t->type == MONO_TYPE_I)
5934                                 opcode = OP_ATOMIC_LOAD_I4;
5935                         else if (is_ref || t->type == MONO_TYPE_U)
5936                                 opcode = OP_ATOMIC_LOAD_U4;
5937 #endif
5938
5939                         if (opcode) {
5940                                 if (!mono_arch_opcode_supported (opcode))
5941                                         return NULL;
5942
5943                                 MONO_INST_NEW (cfg, ins, opcode);
5944                                 ins->dreg = is_ref ? mono_alloc_ireg_ref (cfg) : (is_float ? mono_alloc_freg (cfg) : mono_alloc_ireg (cfg));
5945                                 ins->sreg1 = args [0]->dreg;
5946                                 ins->backend.memory_barrier_kind = MONO_MEMORY_BARRIER_ACQ;
5947                                 MONO_ADD_INS (cfg->cbb, ins);
5948
5949                                 switch (t->type) {
5950                                 case MONO_TYPE_BOOLEAN:
5951                                 case MONO_TYPE_I1:
5952                                 case MONO_TYPE_U1:
5953                                 case MONO_TYPE_I2:
5954                                 case MONO_TYPE_U2:
5955                                 case MONO_TYPE_I4:
5956                                 case MONO_TYPE_U4:
5957                                         ins->type = STACK_I4;
5958                                         break;
5959                                 case MONO_TYPE_I8:
5960                                 case MONO_TYPE_U8:
5961                                         ins->type = STACK_I8;
5962                                         break;
5963                                 case MONO_TYPE_I:
5964                                 case MONO_TYPE_U:
5965 #if SIZEOF_REGISTER == 8
5966                                         ins->type = STACK_I8;
5967 #else
5968                                         ins->type = STACK_I4;
5969 #endif
5970                                         break;
5971                                 case MONO_TYPE_R4:
5972                                         ins->type = cfg->r4_stack_type;
5973                                         break;
5974                                 case MONO_TYPE_R8:
5975                                         ins->type = STACK_R8;
5976                                         break;
5977                                 default:
5978                                         g_assert (is_ref);
5979                                         ins->type = STACK_OBJ;
5980                                         break;
5981                                 }
5982                         }
5983                 }
5984
5985                 if (!cfg->llvm_only && !strcmp (cmethod->name, "Write") && fsig->param_count == 2) {
5986                         guint32 opcode = 0;
5987                         MonoType *t = fsig->params [0];
5988                         gboolean is_ref;
5989
5990                         g_assert (t->byref);
5991                         is_ref = mini_type_is_reference (&mono_class_from_mono_type (t)->byval_arg);
5992                         if (t->type == MONO_TYPE_I1)
5993                                 opcode = OP_ATOMIC_STORE_I1;
5994                         else if (t->type == MONO_TYPE_U1 || t->type == MONO_TYPE_BOOLEAN)
5995                                 opcode = OP_ATOMIC_STORE_U1;
5996                         else if (t->type == MONO_TYPE_I2)
5997                                 opcode = OP_ATOMIC_STORE_I2;
5998                         else if (t->type == MONO_TYPE_U2)
5999                                 opcode = OP_ATOMIC_STORE_U2;
6000                         else if (t->type == MONO_TYPE_I4)
6001                                 opcode = OP_ATOMIC_STORE_I4;
6002                         else if (t->type == MONO_TYPE_U4)
6003                                 opcode = OP_ATOMIC_STORE_U4;
6004                         else if (t->type == MONO_TYPE_R4)
6005                                 opcode = OP_ATOMIC_STORE_R4;
6006                         else if (t->type == MONO_TYPE_R8)
6007                                 opcode = OP_ATOMIC_STORE_R8;
6008 #if SIZEOF_REGISTER == 8
6009                         else if (t->type == MONO_TYPE_I8 || t->type == MONO_TYPE_I)
6010                                 opcode = OP_ATOMIC_STORE_I8;
6011                         else if (is_ref || t->type == MONO_TYPE_U8 || t->type == MONO_TYPE_U)
6012                                 opcode = OP_ATOMIC_STORE_U8;
6013 #else
6014                         else if (t->type == MONO_TYPE_I)
6015                                 opcode = OP_ATOMIC_STORE_I4;
6016                         else if (is_ref || t->type == MONO_TYPE_U)
6017                                 opcode = OP_ATOMIC_STORE_U4;
6018 #endif
6019
6020                         if (opcode) {
6021                                 if (!mono_arch_opcode_supported (opcode))
6022                                         return NULL;
6023
6024                                 MONO_INST_NEW (cfg, ins, opcode);
6025                                 ins->dreg = args [0]->dreg;
6026                                 ins->sreg1 = args [1]->dreg;
6027                                 ins->backend.memory_barrier_kind = MONO_MEMORY_BARRIER_REL;
6028                                 MONO_ADD_INS (cfg->cbb, ins);
6029
6030                                 if (cfg->gen_write_barriers && is_ref)
6031                                         emit_write_barrier (cfg, args [0], args [1]);
6032                         }
6033                 }
6034
6035                 if (ins)
6036                         return ins;
6037         } else if (cmethod->klass->image == mono_defaults.corlib &&
6038                            (strcmp (cmethod->klass->name_space, "System.Diagnostics") == 0) &&
6039                            (strcmp (cmethod->klass->name, "Debugger") == 0)) {
6040                 if (!strcmp (cmethod->name, "Break") && fsig->param_count == 0) {
6041                         if (should_insert_brekpoint (cfg->method)) {
6042                                 ins = mono_emit_jit_icall (cfg, mono_debugger_agent_user_break, NULL);
6043                         } else {
6044                                 MONO_INST_NEW (cfg, ins, OP_NOP);
6045                                 MONO_ADD_INS (cfg->cbb, ins);
6046                         }
6047                         return ins;
6048                 }
6049         } else if (cmethod->klass->image == mono_defaults.corlib &&
6050                    (strcmp (cmethod->klass->name_space, "System") == 0) &&
6051                    (strcmp (cmethod->klass->name, "Environment") == 0)) {
6052                 if (!strcmp (cmethod->name, "get_IsRunningOnWindows") && fsig->param_count == 0) {
6053 #ifdef TARGET_WIN32
6054                         EMIT_NEW_ICONST (cfg, ins, 1);
6055 #else
6056                         EMIT_NEW_ICONST (cfg, ins, 0);
6057 #endif
6058                 }
6059         } else if (cmethod->klass->image == mono_defaults.corlib &&
6060                            (strcmp (cmethod->klass->name_space, "System.Reflection") == 0) &&
6061                            (strcmp (cmethod->klass->name, "Assembly") == 0)) {
6062                 if (cfg->llvm_only && !strcmp (cmethod->name, "GetExecutingAssembly")) {
6063                         /* No stack walks are currently available, so implement this as an intrinsic */
6064                         MonoInst *assembly_ins;
6065
6066                         EMIT_NEW_AOTCONST (cfg, assembly_ins, MONO_PATCH_INFO_IMAGE, cfg->method->klass->image);
6067                         ins = mono_emit_jit_icall (cfg, mono_get_assembly_object, &assembly_ins);
6068                         return ins;
6069                 }
6070         } else if (cmethod->klass->image == mono_defaults.corlib &&
6071                            (strcmp (cmethod->klass->name_space, "System.Reflection") == 0) &&
6072                            (strcmp (cmethod->klass->name, "MethodBase") == 0)) {
6073                 if (cfg->llvm_only && !strcmp (cmethod->name, "GetCurrentMethod")) {
6074                         /* No stack walks are currently available, so implement this as an intrinsic */
6075                         MonoInst *method_ins;
6076                         MonoMethod *declaring = cfg->method;
6077
6078                         /* This returns the declaring generic method */
6079                         if (declaring->is_inflated)
6080                                 declaring = ((MonoMethodInflated*)cfg->method)->declaring;
6081                         EMIT_NEW_AOTCONST (cfg, method_ins, MONO_PATCH_INFO_METHODCONST, declaring);
6082                         ins = mono_emit_jit_icall (cfg, mono_get_method_object, &method_ins);
6083                         cfg->no_inline = TRUE;
6084                         if (cfg->method != cfg->current_method)
6085                                 inline_failure (cfg, "MethodBase:GetCurrentMethod ()");
6086                         return ins;
6087                 }
6088         } else if (cmethod->klass == mono_defaults.math_class) {
6089                 /* 
6090                  * There is general branchless code for Min/Max, but it does not work for 
6091                  * all inputs:
6092                  * http://everything2.com/?node_id=1051618
6093                  */
6094         } else if (cmethod->klass == mono_defaults.systemtype_class && !strcmp (cmethod->name, "op_Equality")) {
6095                 EMIT_NEW_BIALU (cfg, ins, OP_COMPARE, -1, args [0]->dreg, args [1]->dreg);
6096                 MONO_INST_NEW (cfg, ins, OP_PCEQ);
6097                 ins->dreg = alloc_preg (cfg);
6098                 ins->type = STACK_I4;
6099                 MONO_ADD_INS (cfg->cbb, ins);
6100                 return ins;
6101         } else if (((!strcmp (cmethod->klass->image->assembly->aname.name, "MonoMac") ||
6102                     !strcmp (cmethod->klass->image->assembly->aname.name, "monotouch")) &&
6103                                 !strcmp (cmethod->klass->name_space, "XamCore.ObjCRuntime") &&
6104                                 !strcmp (cmethod->klass->name, "Selector")) ||
6105                            ((!strcmp (cmethod->klass->image->assembly->aname.name, "Xamarin.iOS") ||
6106                                  !strcmp (cmethod->klass->image->assembly->aname.name, "Xamarin.Mac")) &&
6107                                 !strcmp (cmethod->klass->name_space, "ObjCRuntime") &&
6108                                 !strcmp (cmethod->klass->name, "Selector"))
6109                            ) {
6110                 if ((cfg->backend->have_objc_get_selector || cfg->compile_llvm) &&
6111                         !strcmp (cmethod->name, "GetHandle") && fsig->param_count == 1 &&
6112                     (args [0]->opcode == OP_GOT_ENTRY || args [0]->opcode == OP_AOTCONST) &&
6113                     cfg->compile_aot) {
6114                         MonoInst *pi;
6115                         MonoJumpInfoToken *ji;
6116                         char *s;
6117
6118                         if (args [0]->opcode == OP_GOT_ENTRY) {
6119                                 pi = (MonoInst *)args [0]->inst_p1;
6120                                 g_assert (pi->opcode == OP_PATCH_INFO);
6121                                 g_assert (GPOINTER_TO_INT (pi->inst_p1) == MONO_PATCH_INFO_LDSTR);
6122                                 ji = (MonoJumpInfoToken *)pi->inst_p0;
6123                         } else {
6124                                 g_assert (GPOINTER_TO_INT (args [0]->inst_p1) == MONO_PATCH_INFO_LDSTR);
6125                                 ji = (MonoJumpInfoToken *)args [0]->inst_p0;
6126                         }
6127
6128                         NULLIFY_INS (args [0]);
6129
6130                         s = mono_ldstr_utf8 (ji->image, mono_metadata_token_index (ji->token), &cfg->error);
6131                         return_val_if_nok (&cfg->error, NULL);
6132
6133                         MONO_INST_NEW (cfg, ins, OP_OBJC_GET_SELECTOR);
6134                         ins->dreg = mono_alloc_ireg (cfg);
6135                         // FIXME: Leaks
6136                         ins->inst_p0 = s;
6137                         MONO_ADD_INS (cfg->cbb, ins);
6138                         return ins;
6139                 }
6140         }
6141
6142 #ifdef MONO_ARCH_SIMD_INTRINSICS
6143         if (cfg->opt & MONO_OPT_SIMD) {
6144                 ins = mono_emit_simd_intrinsics (cfg, cmethod, fsig, args);
6145                 if (ins)
6146                         return ins;
6147         }
6148 #endif
6149
6150         ins = mono_emit_native_types_intrinsics (cfg, cmethod, fsig, args);
6151         if (ins)
6152                 return ins;
6153
6154         if (COMPILE_LLVM (cfg)) {
6155                 ins = llvm_emit_inst_for_method (cfg, cmethod, fsig, args);
6156                 if (ins)
6157                         return ins;
6158         }
6159
6160         return mono_arch_emit_inst_for_method (cfg, cmethod, fsig, args);
6161 }
6162
6163 /*
6164  * This entry point could be used later for arbitrary method
6165  * redirection.
6166  */
6167 inline static MonoInst*
6168 mini_redirect_call (MonoCompile *cfg, MonoMethod *method,  
6169                                         MonoMethodSignature *signature, MonoInst **args, MonoInst *this_ins)
6170 {
6171         if (method->klass == mono_defaults.string_class) {
6172                 /* managed string allocation support */
6173                 if (strcmp (method->name, "InternalAllocateStr") == 0 && !(mono_profiler_events & MONO_PROFILE_ALLOCATIONS) && !(cfg->opt & MONO_OPT_SHARED)) {
6174                         MonoInst *iargs [2];
6175                         MonoVTable *vtable = mono_class_vtable (cfg->domain, method->klass);
6176                         MonoMethod *managed_alloc = NULL;
6177
6178                         g_assert (vtable); /*Should not fail since it System.String*/
6179 #ifndef MONO_CROSS_COMPILE
6180                         managed_alloc = mono_gc_get_managed_allocator (method->klass, FALSE, FALSE);
6181 #endif
6182                         if (!managed_alloc)
6183                                 return NULL;
6184                         EMIT_NEW_VTABLECONST (cfg, iargs [0], vtable);
6185                         iargs [1] = args [0];
6186                         return mono_emit_method_call (cfg, managed_alloc, iargs, this_ins);
6187                 }
6188         }
6189         return NULL;
6190 }
6191
6192 static void
6193 mono_save_args (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **sp)
6194 {
6195         MonoInst *store, *temp;
6196         int i;
6197
6198         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
6199                 MonoType *argtype = (sig->hasthis && (i == 0)) ? type_from_stack_type (*sp) : sig->params [i - sig->hasthis];
6200
6201                 /*
6202                  * FIXME: We should use *args++ = sp [0], but that would mean the arg
6203                  * would be different than the MonoInst's used to represent arguments, and
6204                  * the ldelema implementation can't deal with that.
6205                  * Solution: When ldelema is used on an inline argument, create a var for 
6206                  * it, emit ldelema on that var, and emit the saving code below in
6207                  * inline_method () if needed.
6208                  */
6209                 temp = mono_compile_create_var (cfg, argtype, OP_LOCAL);
6210                 cfg->args [i] = temp;
6211                 /* This uses cfg->args [i] which is set by the preceeding line */
6212                 EMIT_NEW_ARGSTORE (cfg, store, i, *sp);
6213                 store->cil_code = sp [0]->cil_code;
6214                 sp++;
6215         }
6216 }
6217
6218 #define MONO_INLINE_CALLED_LIMITED_METHODS 1
6219 #define MONO_INLINE_CALLER_LIMITED_METHODS 1
6220
6221 #if (MONO_INLINE_CALLED_LIMITED_METHODS)
6222 static gboolean
6223 check_inline_called_method_name_limit (MonoMethod *called_method)
6224 {
6225         int strncmp_result;
6226         static const char *limit = NULL;
6227         
6228         if (limit == NULL) {
6229                 const char *limit_string = g_getenv ("MONO_INLINE_CALLED_METHOD_NAME_LIMIT");
6230
6231                 if (limit_string != NULL)
6232                         limit = limit_string;
6233                 else
6234                         limit = "";
6235         }
6236
6237         if (limit [0] != '\0') {
6238                 char *called_method_name = mono_method_full_name (called_method, TRUE);
6239
6240                 strncmp_result = strncmp (called_method_name, limit, strlen (limit));
6241                 g_free (called_method_name);
6242         
6243                 //return (strncmp_result <= 0);
6244                 return (strncmp_result == 0);
6245         } else {
6246                 return TRUE;
6247         }
6248 }
6249 #endif
6250
6251 #if (MONO_INLINE_CALLER_LIMITED_METHODS)
6252 static gboolean
6253 check_inline_caller_method_name_limit (MonoMethod *caller_method)
6254 {
6255         int strncmp_result;
6256         static const char *limit = NULL;
6257         
6258         if (limit == NULL) {
6259                 const char *limit_string = g_getenv ("MONO_INLINE_CALLER_METHOD_NAME_LIMIT");
6260                 if (limit_string != NULL) {
6261                         limit = limit_string;
6262                 } else {
6263                         limit = "";
6264                 }
6265         }
6266
6267         if (limit [0] != '\0') {
6268                 char *caller_method_name = mono_method_full_name (caller_method, TRUE);
6269
6270                 strncmp_result = strncmp (caller_method_name, limit, strlen (limit));
6271                 g_free (caller_method_name);
6272         
6273                 //return (strncmp_result <= 0);
6274                 return (strncmp_result == 0);
6275         } else {
6276                 return TRUE;
6277         }
6278 }
6279 #endif
6280
6281 static void
6282 emit_init_rvar (MonoCompile *cfg, int dreg, MonoType *rtype)
6283 {
6284         static double r8_0 = 0.0;
6285         static float r4_0 = 0.0;
6286         MonoInst *ins;
6287         int t;
6288
6289         rtype = mini_get_underlying_type (rtype);
6290         t = rtype->type;
6291
6292         if (rtype->byref) {
6293                 MONO_EMIT_NEW_PCONST (cfg, dreg, NULL);
6294         } else if (t >= MONO_TYPE_BOOLEAN && t <= MONO_TYPE_U4) {
6295                 MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
6296         } else if (t == MONO_TYPE_I8 || t == MONO_TYPE_U8) {
6297                 MONO_EMIT_NEW_I8CONST (cfg, dreg, 0);
6298         } else if (cfg->r4fp && t == MONO_TYPE_R4) {
6299                 MONO_INST_NEW (cfg, ins, OP_R4CONST);
6300                 ins->type = STACK_R4;
6301                 ins->inst_p0 = (void*)&r4_0;
6302                 ins->dreg = dreg;
6303                 MONO_ADD_INS (cfg->cbb, ins);
6304         } else if (t == MONO_TYPE_R4 || t == MONO_TYPE_R8) {
6305                 MONO_INST_NEW (cfg, ins, OP_R8CONST);
6306                 ins->type = STACK_R8;
6307                 ins->inst_p0 = (void*)&r8_0;
6308                 ins->dreg = dreg;
6309                 MONO_ADD_INS (cfg->cbb, ins);
6310         } else if ((t == MONO_TYPE_VALUETYPE) || (t == MONO_TYPE_TYPEDBYREF) ||
6311                    ((t == MONO_TYPE_GENERICINST) && mono_type_generic_inst_is_valuetype (rtype))) {
6312                 MONO_EMIT_NEW_VZERO (cfg, dreg, mono_class_from_mono_type (rtype));
6313         } else if (((t == MONO_TYPE_VAR) || (t == MONO_TYPE_MVAR)) && mini_type_var_is_vt (rtype)) {
6314                 MONO_EMIT_NEW_VZERO (cfg, dreg, mono_class_from_mono_type (rtype));
6315         } else {
6316                 MONO_EMIT_NEW_PCONST (cfg, dreg, NULL);
6317         }
6318 }
6319
6320 static void
6321 emit_dummy_init_rvar (MonoCompile *cfg, int dreg, MonoType *rtype)
6322 {
6323         int t;
6324
6325         rtype = mini_get_underlying_type (rtype);
6326         t = rtype->type;
6327
6328         if (rtype->byref) {
6329                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_PCONST);
6330         } else if (t >= MONO_TYPE_BOOLEAN && t <= MONO_TYPE_U4) {
6331                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_ICONST);
6332         } else if (t == MONO_TYPE_I8 || t == MONO_TYPE_U8) {
6333                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_I8CONST);
6334         } else if (cfg->r4fp && t == MONO_TYPE_R4) {
6335                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_R4CONST);
6336         } else if (t == MONO_TYPE_R4 || t == MONO_TYPE_R8) {
6337                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_R8CONST);
6338         } else if ((t == MONO_TYPE_VALUETYPE) || (t == MONO_TYPE_TYPEDBYREF) ||
6339                    ((t == MONO_TYPE_GENERICINST) && mono_type_generic_inst_is_valuetype (rtype))) {
6340                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_VZERO);
6341         } else if (((t == MONO_TYPE_VAR) || (t == MONO_TYPE_MVAR)) && mini_type_var_is_vt (rtype)) {
6342                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_VZERO);
6343         } else {
6344                 emit_init_rvar (cfg, dreg, rtype);
6345         }
6346 }
6347
6348 /* If INIT is FALSE, emit dummy initialization statements to keep the IR valid */
6349 static void
6350 emit_init_local (MonoCompile *cfg, int local, MonoType *type, gboolean init)
6351 {
6352         MonoInst *var = cfg->locals [local];
6353         if (COMPILE_SOFT_FLOAT (cfg)) {
6354                 MonoInst *store;
6355                 int reg = alloc_dreg (cfg, (MonoStackType)var->type);
6356                 emit_init_rvar (cfg, reg, type);
6357                 EMIT_NEW_LOCSTORE (cfg, store, local, cfg->cbb->last_ins);
6358         } else {
6359                 if (init)
6360                         emit_init_rvar (cfg, var->dreg, type);
6361                 else
6362                         emit_dummy_init_rvar (cfg, var->dreg, type);
6363         }
6364 }
6365
6366 int
6367 mini_inline_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **sp, guchar *ip, guint real_offset, gboolean inline_always)
6368 {
6369         return inline_method (cfg, cmethod, fsig, sp, ip, real_offset, inline_always);
6370 }
6371
6372 /*
6373  * inline_method:
6374  *
6375  * Return the cost of inlining CMETHOD, or zero if it should not be inlined.
6376  */
6377 static int
6378 inline_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **sp,
6379                guchar *ip, guint real_offset, gboolean inline_always)
6380 {
6381         MonoError error;
6382         MonoInst *ins, *rvar = NULL;
6383         MonoMethodHeader *cheader;
6384         MonoBasicBlock *ebblock, *sbblock;
6385         int i, costs;
6386         MonoMethod *prev_inlined_method;
6387         MonoInst **prev_locals, **prev_args;
6388         MonoType **prev_arg_types;
6389         guint prev_real_offset;
6390         GHashTable *prev_cbb_hash;
6391         MonoBasicBlock **prev_cil_offset_to_bb;
6392         MonoBasicBlock *prev_cbb;
6393         const unsigned char *prev_ip;
6394         unsigned char *prev_cil_start;
6395         guint32 prev_cil_offset_to_bb_len;
6396         MonoMethod *prev_current_method;
6397         MonoGenericContext *prev_generic_context;
6398         gboolean ret_var_set, prev_ret_var_set, prev_disable_inline, virtual_ = FALSE;
6399
6400         g_assert (cfg->exception_type == MONO_EXCEPTION_NONE);
6401
6402 #if (MONO_INLINE_CALLED_LIMITED_METHODS)
6403         if ((! inline_always) && ! check_inline_called_method_name_limit (cmethod))
6404                 return 0;
6405 #endif
6406 #if (MONO_INLINE_CALLER_LIMITED_METHODS)
6407         if ((! inline_always) && ! check_inline_caller_method_name_limit (cfg->method))
6408                 return 0;
6409 #endif
6410
6411         if (!fsig)
6412                 fsig = mono_method_signature (cmethod);
6413
6414         if (cfg->verbose_level > 2)
6415                 printf ("INLINE START %p %s -> %s\n", cmethod,  mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
6416
6417         if (!cmethod->inline_info) {
6418                 cfg->stat_inlineable_methods++;
6419                 cmethod->inline_info = 1;
6420         }
6421
6422         /* allocate local variables */
6423         cheader = mono_method_get_header_checked (cmethod, &error);
6424         if (!cheader) {
6425                 if (inline_always) {
6426                         mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
6427                         mono_error_move (&cfg->error, &error);
6428                 } else {
6429                         mono_error_cleanup (&error);
6430                 }
6431                 return 0;
6432         }
6433
6434         /*Must verify before creating locals as it can cause the JIT to assert.*/
6435         if (mono_compile_is_broken (cfg, cmethod, FALSE)) {
6436                 mono_metadata_free_mh (cheader);
6437                 return 0;
6438         }
6439
6440         /* allocate space to store the return value */
6441         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
6442                 rvar = mono_compile_create_var (cfg, fsig->ret, OP_LOCAL);
6443         }
6444
6445         prev_locals = cfg->locals;
6446         cfg->locals = (MonoInst **)mono_mempool_alloc0 (cfg->mempool, cheader->num_locals * sizeof (MonoInst*));
6447         for (i = 0; i < cheader->num_locals; ++i)
6448                 cfg->locals [i] = mono_compile_create_var (cfg, cheader->locals [i], OP_LOCAL);
6449
6450         /* allocate start and end blocks */
6451         /* This is needed so if the inline is aborted, we can clean up */
6452         NEW_BBLOCK (cfg, sbblock);
6453         sbblock->real_offset = real_offset;
6454
6455         NEW_BBLOCK (cfg, ebblock);
6456         ebblock->block_num = cfg->num_bblocks++;
6457         ebblock->real_offset = real_offset;
6458
6459         prev_args = cfg->args;
6460         prev_arg_types = cfg->arg_types;
6461         prev_inlined_method = cfg->inlined_method;
6462         cfg->inlined_method = cmethod;
6463         cfg->ret_var_set = FALSE;
6464         cfg->inline_depth ++;
6465         prev_real_offset = cfg->real_offset;
6466         prev_cbb_hash = cfg->cbb_hash;
6467         prev_cil_offset_to_bb = cfg->cil_offset_to_bb;
6468         prev_cil_offset_to_bb_len = cfg->cil_offset_to_bb_len;
6469         prev_cil_start = cfg->cil_start;
6470         prev_ip = cfg->ip;
6471         prev_cbb = cfg->cbb;
6472         prev_current_method = cfg->current_method;
6473         prev_generic_context = cfg->generic_context;
6474         prev_ret_var_set = cfg->ret_var_set;
6475         prev_disable_inline = cfg->disable_inline;
6476
6477         if (ip && *ip == CEE_CALLVIRT && !(cmethod->flags & METHOD_ATTRIBUTE_STATIC))
6478                 virtual_ = TRUE;
6479
6480         costs = mono_method_to_ir (cfg, cmethod, sbblock, ebblock, rvar, sp, real_offset, virtual_);
6481
6482         ret_var_set = cfg->ret_var_set;
6483
6484         cfg->inlined_method = prev_inlined_method;
6485         cfg->real_offset = prev_real_offset;
6486         cfg->cbb_hash = prev_cbb_hash;
6487         cfg->cil_offset_to_bb = prev_cil_offset_to_bb;
6488         cfg->cil_offset_to_bb_len = prev_cil_offset_to_bb_len;
6489         cfg->cil_start = prev_cil_start;
6490         cfg->ip = prev_ip;
6491         cfg->locals = prev_locals;
6492         cfg->args = prev_args;
6493         cfg->arg_types = prev_arg_types;
6494         cfg->current_method = prev_current_method;
6495         cfg->generic_context = prev_generic_context;
6496         cfg->ret_var_set = prev_ret_var_set;
6497         cfg->disable_inline = prev_disable_inline;
6498         cfg->inline_depth --;
6499
6500         if ((costs >= 0 && costs < 60) || inline_always || (costs >= 0 && (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_AGGRESSIVE_INLINING))) {
6501                 if (cfg->verbose_level > 2)
6502                         printf ("INLINE END %s -> %s\n", mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
6503
6504                 cfg->stat_inlined_methods++;
6505
6506                 /* always add some code to avoid block split failures */
6507                 MONO_INST_NEW (cfg, ins, OP_NOP);
6508                 MONO_ADD_INS (prev_cbb, ins);
6509
6510                 prev_cbb->next_bb = sbblock;
6511                 link_bblock (cfg, prev_cbb, sbblock);
6512
6513                 /* 
6514                  * Get rid of the begin and end bblocks if possible to aid local
6515                  * optimizations.
6516                  */
6517                 if (prev_cbb->out_count == 1)
6518                         mono_merge_basic_blocks (cfg, prev_cbb, sbblock);
6519
6520                 if ((prev_cbb->out_count == 1) && (prev_cbb->out_bb [0]->in_count == 1) && (prev_cbb->out_bb [0] != ebblock))
6521                         mono_merge_basic_blocks (cfg, prev_cbb, prev_cbb->out_bb [0]);
6522
6523                 if ((ebblock->in_count == 1) && ebblock->in_bb [0]->out_count == 1) {
6524                         MonoBasicBlock *prev = ebblock->in_bb [0];
6525
6526                         if (prev->next_bb == ebblock) {
6527                                 mono_merge_basic_blocks (cfg, prev, ebblock);
6528                                 cfg->cbb = prev;
6529                                 if ((prev_cbb->out_count == 1) && (prev_cbb->out_bb [0]->in_count == 1) && (prev_cbb->out_bb [0] == prev)) {
6530                                         mono_merge_basic_blocks (cfg, prev_cbb, prev);
6531                                         cfg->cbb = prev_cbb;
6532                                 }
6533                         } else {
6534                                 /* There could be a bblock after 'prev', and making 'prev' the current bb could cause problems */
6535                                 cfg->cbb = ebblock;
6536                         }
6537                 } else {
6538                         /* 
6539                          * Its possible that the rvar is set in some prev bblock, but not in others.
6540                          * (#1835).
6541                          */
6542                         if (rvar) {
6543                                 MonoBasicBlock *bb;
6544
6545                                 for (i = 0; i < ebblock->in_count; ++i) {
6546                                         bb = ebblock->in_bb [i];
6547
6548                                         if (bb->last_ins && bb->last_ins->opcode == OP_NOT_REACHED) {
6549                                                 cfg->cbb = bb;
6550
6551                                                 emit_init_rvar (cfg, rvar->dreg, fsig->ret);
6552                                         }
6553                                 }
6554                         }
6555
6556                         cfg->cbb = ebblock;
6557                 }
6558
6559                 if (rvar) {
6560                         /*
6561                          * If the inlined method contains only a throw, then the ret var is not 
6562                          * set, so set it to a dummy value.
6563                          */
6564                         if (!ret_var_set)
6565                                 emit_init_rvar (cfg, rvar->dreg, fsig->ret);
6566
6567                         EMIT_NEW_TEMPLOAD (cfg, ins, rvar->inst_c0);
6568                         *sp++ = ins;
6569                 }
6570                 cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, cheader);
6571                 return costs + 1;
6572         } else {
6573                 if (cfg->verbose_level > 2)
6574                         printf ("INLINE ABORTED %s (cost %d)\n", mono_method_full_name (cmethod, TRUE), costs);
6575                 cfg->exception_type = MONO_EXCEPTION_NONE;
6576
6577                 /* This gets rid of the newly added bblocks */
6578                 cfg->cbb = prev_cbb;
6579         }
6580         cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, cheader);
6581         return 0;
6582 }
6583
6584 /*
6585  * Some of these comments may well be out-of-date.
6586  * Design decisions: we do a single pass over the IL code (and we do bblock 
6587  * splitting/merging in the few cases when it's required: a back jump to an IL
6588  * address that was not already seen as bblock starting point).
6589  * Code is validated as we go (full verification is still better left to metadata/verify.c).
6590  * Complex operations are decomposed in simpler ones right away. We need to let the 
6591  * arch-specific code peek and poke inside this process somehow (except when the 
6592  * optimizations can take advantage of the full semantic info of coarse opcodes).
6593  * All the opcodes of the form opcode.s are 'normalized' to opcode.
6594  * MonoInst->opcode initially is the IL opcode or some simplification of that 
6595  * (OP_LOAD, OP_STORE). The arch-specific code may rearrange it to an arch-specific 
6596  * opcode with value bigger than OP_LAST.
6597  * At this point the IR can be handed over to an interpreter, a dumb code generator
6598  * or to the optimizing code generator that will translate it to SSA form.
6599  *
6600  * Profiling directed optimizations.
6601  * We may compile by default with few or no optimizations and instrument the code
6602  * or the user may indicate what methods to optimize the most either in a config file
6603  * or through repeated runs where the compiler applies offline the optimizations to 
6604  * each method and then decides if it was worth it.
6605  */
6606
6607 #define CHECK_TYPE(ins) if (!(ins)->type) UNVERIFIED
6608 #define CHECK_STACK(num) if ((sp - stack_start) < (num)) UNVERIFIED
6609 #define CHECK_STACK_OVF(num) if (((sp - stack_start) + (num)) > header->max_stack) UNVERIFIED
6610 #define CHECK_ARG(num) if ((unsigned)(num) >= (unsigned)num_args) UNVERIFIED
6611 #define CHECK_LOCAL(num) if ((unsigned)(num) >= (unsigned)header->num_locals) UNVERIFIED
6612 #define CHECK_OPSIZE(size) if (ip + size > end) UNVERIFIED
6613 #define CHECK_UNVERIFIABLE(cfg) if (cfg->unverifiable) UNVERIFIED
6614 #define CHECK_TYPELOAD(klass) if (!(klass) || mono_class_has_failure (klass)) TYPE_LOAD_ERROR ((klass))
6615
6616 /* offset from br.s -> br like opcodes */
6617 #define BIG_BRANCH_OFFSET 13
6618
6619 static gboolean
6620 ip_in_bb (MonoCompile *cfg, MonoBasicBlock *bb, const guint8* ip)
6621 {
6622         MonoBasicBlock *b = cfg->cil_offset_to_bb [ip - cfg->cil_start];
6623
6624         return b == NULL || b == bb;
6625 }
6626
6627 static int
6628 get_basic_blocks (MonoCompile *cfg, MonoMethodHeader* header, guint real_offset, unsigned char *start, unsigned char *end, unsigned char **pos)
6629 {
6630         unsigned char *ip = start;
6631         unsigned char *target;
6632         int i;
6633         guint cli_addr;
6634         MonoBasicBlock *bblock;
6635         const MonoOpcode *opcode;
6636
6637         while (ip < end) {
6638                 cli_addr = ip - start;
6639                 i = mono_opcode_value ((const guint8 **)&ip, end);
6640                 if (i < 0)
6641                         UNVERIFIED;
6642                 opcode = &mono_opcodes [i];
6643                 switch (opcode->argument) {
6644                 case MonoInlineNone:
6645                         ip++; 
6646                         break;
6647                 case MonoInlineString:
6648                 case MonoInlineType:
6649                 case MonoInlineField:
6650                 case MonoInlineMethod:
6651                 case MonoInlineTok:
6652                 case MonoInlineSig:
6653                 case MonoShortInlineR:
6654                 case MonoInlineI:
6655                         ip += 5;
6656                         break;
6657                 case MonoInlineVar:
6658                         ip += 3;
6659                         break;
6660                 case MonoShortInlineVar:
6661                 case MonoShortInlineI:
6662                         ip += 2;
6663                         break;
6664                 case MonoShortInlineBrTarget:
6665                         target = start + cli_addr + 2 + (signed char)ip [1];
6666                         GET_BBLOCK (cfg, bblock, target);
6667                         ip += 2;
6668                         if (ip < end)
6669                                 GET_BBLOCK (cfg, bblock, ip);
6670                         break;
6671                 case MonoInlineBrTarget:
6672                         target = start + cli_addr + 5 + (gint32)read32 (ip + 1);
6673                         GET_BBLOCK (cfg, bblock, target);
6674                         ip += 5;
6675                         if (ip < end)
6676                                 GET_BBLOCK (cfg, bblock, ip);
6677                         break;
6678                 case MonoInlineSwitch: {
6679                         guint32 n = read32 (ip + 1);
6680                         guint32 j;
6681                         ip += 5;
6682                         cli_addr += 5 + 4 * n;
6683                         target = start + cli_addr;
6684                         GET_BBLOCK (cfg, bblock, target);
6685                         
6686                         for (j = 0; j < n; ++j) {
6687                                 target = start + cli_addr + (gint32)read32 (ip);
6688                                 GET_BBLOCK (cfg, bblock, target);
6689                                 ip += 4;
6690                         }
6691                         break;
6692                 }
6693                 case MonoInlineR:
6694                 case MonoInlineI8:
6695                         ip += 9;
6696                         break;
6697                 default:
6698                         g_assert_not_reached ();
6699                 }
6700
6701                 if (i == CEE_THROW) {
6702                         unsigned char *bb_start = ip - 1;
6703                         
6704                         /* Find the start of the bblock containing the throw */
6705                         bblock = NULL;
6706                         while ((bb_start >= start) && !bblock) {
6707                                 bblock = cfg->cil_offset_to_bb [(bb_start) - start];
6708                                 bb_start --;
6709                         }
6710                         if (bblock)
6711                                 bblock->out_of_line = 1;
6712                 }
6713         }
6714         return 0;
6715 unverified:
6716 exception_exit:
6717         *pos = ip;
6718         return 1;
6719 }
6720
6721 static inline MonoMethod *
6722 mini_get_method_allow_open (MonoMethod *m, guint32 token, MonoClass *klass, MonoGenericContext *context, MonoError *error)
6723 {
6724         MonoMethod *method;
6725
6726         error_init (error);
6727
6728         if (m->wrapper_type != MONO_WRAPPER_NONE) {
6729                 method = (MonoMethod *)mono_method_get_wrapper_data (m, token);
6730                 if (context) {
6731                         method = mono_class_inflate_generic_method_checked (method, context, error);
6732                 }
6733         } else {
6734                 method = mono_get_method_checked (m->klass->image, token, klass, context, error);
6735         }
6736
6737         return method;
6738 }
6739
6740 static inline MonoMethod *
6741 mini_get_method (MonoCompile *cfg, MonoMethod *m, guint32 token, MonoClass *klass, MonoGenericContext *context)
6742 {
6743         MonoError error;
6744         MonoMethod *method = mini_get_method_allow_open (m, token, klass, context, cfg ? &cfg->error : &error);
6745
6746         if (method && cfg && !cfg->gshared && mono_class_is_open_constructed_type (&method->klass->byval_arg)) {
6747                 mono_error_set_bad_image (&cfg->error, cfg->method->klass->image, "Method with open type while not compiling gshared");
6748                 method = NULL;
6749         }
6750
6751         if (!method && !cfg)
6752                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
6753
6754         return method;
6755 }
6756
6757 static inline MonoClass*
6758 mini_get_class (MonoMethod *method, guint32 token, MonoGenericContext *context)
6759 {
6760         MonoError error;
6761         MonoClass *klass;
6762
6763         if (method->wrapper_type != MONO_WRAPPER_NONE) {
6764                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
6765                 if (context) {
6766                         klass = mono_class_inflate_generic_class_checked (klass, context, &error);
6767                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
6768                 }
6769         } else {
6770                 klass = mono_class_get_and_inflate_typespec_checked (method->klass->image, token, context, &error);
6771                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
6772         }
6773         if (klass)
6774                 mono_class_init (klass);
6775         return klass;
6776 }
6777
6778 static inline MonoMethodSignature*
6779 mini_get_signature (MonoMethod *method, guint32 token, MonoGenericContext *context, MonoError *error)
6780 {
6781         MonoMethodSignature *fsig;
6782
6783         error_init (error);
6784         if (method->wrapper_type != MONO_WRAPPER_NONE) {
6785                 fsig = (MonoMethodSignature *)mono_method_get_wrapper_data (method, token);
6786         } else {
6787                 fsig = mono_metadata_parse_signature_checked (method->klass->image, token, error);
6788                 return_val_if_nok (error, NULL);
6789         }
6790         if (context) {
6791                 fsig = mono_inflate_generic_signature(fsig, context, error);
6792         }
6793         return fsig;
6794 }
6795
6796 static MonoMethod*
6797 throw_exception (void)
6798 {
6799         static MonoMethod *method = NULL;
6800
6801         if (!method) {
6802                 MonoSecurityManager *secman = mono_security_manager_get_methods ();
6803                 method = mono_class_get_method_from_name (secman->securitymanager, "ThrowException", 1);
6804         }
6805         g_assert (method);
6806         return method;
6807 }
6808
6809 static void
6810 emit_throw_exception (MonoCompile *cfg, MonoException *ex)
6811 {
6812         MonoMethod *thrower = throw_exception ();
6813         MonoInst *args [1];
6814
6815         EMIT_NEW_PCONST (cfg, args [0], ex);
6816         mono_emit_method_call (cfg, thrower, args, NULL);
6817 }
6818
6819 /*
6820  * Return the original method is a wrapper is specified. We can only access 
6821  * the custom attributes from the original method.
6822  */
6823 static MonoMethod*
6824 get_original_method (MonoMethod *method)
6825 {
6826         if (method->wrapper_type == MONO_WRAPPER_NONE)
6827                 return method;
6828
6829         /* native code (which is like Critical) can call any managed method XXX FIXME XXX to validate all usages */
6830         if (method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED)
6831                 return NULL;
6832
6833         /* in other cases we need to find the original method */
6834         return mono_marshal_method_from_wrapper (method);
6835 }
6836
6837 static void
6838 ensure_method_is_allowed_to_access_field (MonoCompile *cfg, MonoMethod *caller, MonoClassField *field)
6839 {
6840         /* we can't get the coreclr security level on wrappers since they don't have the attributes */
6841         MonoException *ex = mono_security_core_clr_is_field_access_allowed (get_original_method (caller), field);
6842         if (ex)
6843                 emit_throw_exception (cfg, ex);
6844 }
6845
6846 static void
6847 ensure_method_is_allowed_to_call_method (MonoCompile *cfg, MonoMethod *caller, MonoMethod *callee)
6848 {
6849         /* we can't get the coreclr security level on wrappers since they don't have the attributes */
6850         MonoException *ex = mono_security_core_clr_is_call_allowed (get_original_method (caller), callee);
6851         if (ex)
6852                 emit_throw_exception (cfg, ex);
6853 }
6854
6855 /*
6856  * Check that the IL instructions at ip are the array initialization
6857  * sequence and return the pointer to the data and the size.
6858  */
6859 static const char*
6860 initialize_array_data (MonoMethod *method, gboolean aot, unsigned char *ip, MonoClass *klass, guint32 len, int *out_size, guint32 *out_field_token)
6861 {
6862         /*
6863          * newarr[System.Int32]
6864          * dup
6865          * ldtoken field valuetype ...
6866          * call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
6867          */
6868         if (ip [0] == CEE_DUP && ip [1] == CEE_LDTOKEN && ip [5] == 0x4 && ip [6] == CEE_CALL) {
6869                 MonoError error;
6870                 guint32 token = read32 (ip + 7);
6871                 guint32 field_token = read32 (ip + 2);
6872                 guint32 field_index = field_token & 0xffffff;
6873                 guint32 rva;
6874                 const char *data_ptr;
6875                 int size = 0;
6876                 MonoMethod *cmethod;
6877                 MonoClass *dummy_class;
6878                 MonoClassField *field = mono_field_from_token_checked (method->klass->image, field_token, &dummy_class, NULL, &error);
6879                 int dummy_align;
6880
6881                 if (!field) {
6882                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
6883                         return NULL;
6884                 }
6885
6886                 *out_field_token = field_token;
6887
6888                 cmethod = mini_get_method (NULL, method, token, NULL, NULL);
6889                 if (!cmethod)
6890                         return NULL;
6891                 if (strcmp (cmethod->name, "InitializeArray") || strcmp (cmethod->klass->name, "RuntimeHelpers") || cmethod->klass->image != mono_defaults.corlib)
6892                         return NULL;
6893                 switch (mini_get_underlying_type (&klass->byval_arg)->type) {
6894                 case MONO_TYPE_I1:
6895                 case MONO_TYPE_U1:
6896                         size = 1; break;
6897                 /* we need to swap on big endian, so punt. Should we handle R4 and R8 as well? */
6898 #if TARGET_BYTE_ORDER == G_LITTLE_ENDIAN
6899                 case MONO_TYPE_I2:
6900                 case MONO_TYPE_U2:
6901                         size = 2; break;
6902                 case MONO_TYPE_I4:
6903                 case MONO_TYPE_U4:
6904                 case MONO_TYPE_R4:
6905                         size = 4; break;
6906                 case MONO_TYPE_R8:
6907                 case MONO_TYPE_I8:
6908                 case MONO_TYPE_U8:
6909                         size = 8; break;
6910 #endif
6911                 default:
6912                         return NULL;
6913                 }
6914                 size *= len;
6915                 if (size > mono_type_size (field->type, &dummy_align))
6916                     return NULL;
6917                 *out_size = size;
6918                 /*g_print ("optimized in %s: size: %d, numelems: %d\n", method->name, size, newarr->inst_newa_len->inst_c0);*/
6919                 if (!image_is_dynamic (method->klass->image)) {
6920                         field_index = read32 (ip + 2) & 0xffffff;
6921                         mono_metadata_field_info (method->klass->image, field_index - 1, NULL, &rva, NULL);
6922                         data_ptr = mono_image_rva_map (method->klass->image, rva);
6923                         /*g_print ("field: 0x%08x, rva: %d, rva_ptr: %p\n", read32 (ip + 2), rva, data_ptr);*/
6924                         /* for aot code we do the lookup on load */
6925                         if (aot && data_ptr)
6926                                 return (const char *)GUINT_TO_POINTER (rva);
6927                 } else {
6928                         /*FIXME is it possible to AOT a SRE assembly not meant to be saved? */ 
6929                         g_assert (!aot);
6930                         data_ptr = mono_field_get_data (field);
6931                 }
6932                 return data_ptr;
6933         }
6934         return NULL;
6935 }
6936
6937 static void
6938 set_exception_type_from_invalid_il (MonoCompile *cfg, MonoMethod *method, unsigned char *ip)
6939 {
6940         MonoError error;
6941         char *method_fname = mono_method_full_name (method, TRUE);
6942         char *method_code;
6943         MonoMethodHeader *header = mono_method_get_header_checked (method, &error);
6944
6945         if (!header) {
6946                 method_code = g_strdup_printf ("could not parse method body due to %s", mono_error_get_message (&error));
6947                 mono_error_cleanup (&error);
6948         } else if (header->code_size == 0)
6949                 method_code = g_strdup ("method body is empty.");
6950         else
6951                 method_code = mono_disasm_code_one (NULL, method, ip, NULL);
6952         mono_cfg_set_exception_invalid_program (cfg, g_strdup_printf ("Invalid IL code in %s: %s\n", method_fname, method_code));
6953         g_free (method_fname);
6954         g_free (method_code);
6955         cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, header);
6956 }
6957
6958 static void
6959 emit_stloc_ir (MonoCompile *cfg, MonoInst **sp, MonoMethodHeader *header, int n)
6960 {
6961         MonoInst *ins;
6962         guint32 opcode = mono_type_to_regmove (cfg, header->locals [n]);
6963         if ((opcode == OP_MOVE) && cfg->cbb->last_ins == sp [0]  &&
6964                         ((sp [0]->opcode == OP_ICONST) || (sp [0]->opcode == OP_I8CONST))) {
6965                 /* Optimize reg-reg moves away */
6966                 /* 
6967                  * Can't optimize other opcodes, since sp[0] might point to
6968                  * the last ins of a decomposed opcode.
6969                  */
6970                 sp [0]->dreg = (cfg)->locals [n]->dreg;
6971         } else {
6972                 EMIT_NEW_LOCSTORE (cfg, ins, n, *sp);
6973         }
6974 }
6975
6976 /*
6977  * ldloca inhibits many optimizations so try to get rid of it in common
6978  * cases.
6979  */
6980 static inline unsigned char *
6981 emit_optimized_ldloca_ir (MonoCompile *cfg, unsigned char *ip, unsigned char *end, int size)
6982 {
6983         int local, token;
6984         MonoClass *klass;
6985         MonoType *type;
6986
6987         if (size == 1) {
6988                 local = ip [1];
6989                 ip += 2;
6990         } else {
6991                 local = read16 (ip + 2);
6992                 ip += 4;
6993         }
6994         
6995         if (ip + 6 < end && (ip [0] == CEE_PREFIX1) && (ip [1] == CEE_INITOBJ) && ip_in_bb (cfg, cfg->cbb, ip + 1)) {
6996                 /* From the INITOBJ case */
6997                 token = read32 (ip + 2);
6998                 klass = mini_get_class (cfg->current_method, token, cfg->generic_context);
6999                 CHECK_TYPELOAD (klass);
7000                 type = mini_get_underlying_type (&klass->byval_arg);
7001                 emit_init_local (cfg, local, type, TRUE);
7002                 return ip + 6;
7003         }
7004  exception_exit:
7005         return NULL;
7006 }
7007
7008 static MonoInst*
7009 emit_llvmonly_virtual_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, int context_used, MonoInst **sp)
7010 {
7011         MonoInst *icall_args [16];
7012         MonoInst *call_target, *ins, *vtable_ins;
7013         int arg_reg, this_reg, vtable_reg;
7014         gboolean is_iface = mono_class_is_interface (cmethod->klass);
7015         gboolean is_gsharedvt = cfg->gsharedvt && mini_is_gsharedvt_variable_signature (fsig);
7016         gboolean variant_iface = FALSE;
7017         guint32 slot;
7018         int offset;
7019         gboolean special_array_interface = cmethod->klass->is_array_special_interface;
7020
7021         /*
7022          * In llvm-only mode, vtables contain function descriptors instead of
7023          * method addresses/trampolines.
7024          */
7025         MONO_EMIT_NULL_CHECK (cfg, sp [0]->dreg);
7026
7027         if (is_iface)
7028                 slot = mono_method_get_imt_slot (cmethod);
7029         else
7030                 slot = mono_method_get_vtable_index (cmethod);
7031
7032         this_reg = sp [0]->dreg;
7033
7034         if (is_iface && mono_class_has_variant_generic_params (cmethod->klass))
7035                 variant_iface = TRUE;
7036
7037         if (!fsig->generic_param_count && !is_iface && !is_gsharedvt) {
7038                 /*
7039                  * The simplest case, a normal virtual call.
7040                  */
7041                 int slot_reg = alloc_preg (cfg);
7042                 int addr_reg = alloc_preg (cfg);
7043                 int arg_reg = alloc_preg (cfg);
7044                 MonoBasicBlock *non_null_bb;
7045
7046                 vtable_reg = alloc_preg (cfg);
7047                 EMIT_NEW_LOAD_MEMBASE (cfg, vtable_ins, OP_LOAD_MEMBASE, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
7048                 offset = MONO_STRUCT_OFFSET (MonoVTable, vtable) + (slot * SIZEOF_VOID_P);
7049
7050                 /* Load the vtable slot, which contains a function descriptor. */
7051                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, slot_reg, vtable_reg, offset);
7052
7053                 NEW_BBLOCK (cfg, non_null_bb);
7054
7055                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, slot_reg, 0);
7056                 cfg->cbb->last_ins->flags |= MONO_INST_LIKELY;
7057                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, non_null_bb);
7058
7059                 /* Slow path */
7060                 // FIXME: Make the wrapper use the preserveall cconv
7061                 // FIXME: Use one icall per slot for small slot numbers ?
7062                 icall_args [0] = vtable_ins;
7063                 EMIT_NEW_ICONST (cfg, icall_args [1], slot);
7064                 /* Make the icall return the vtable slot value to save some code space */
7065                 ins = mono_emit_jit_icall (cfg, mono_init_vtable_slot, icall_args);
7066                 ins->dreg = slot_reg;
7067                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, non_null_bb);
7068
7069                 /* Fastpath */
7070                 MONO_START_BB (cfg, non_null_bb);
7071                 /* Load the address + arg from the vtable slot */
7072                 EMIT_NEW_LOAD_MEMBASE (cfg, call_target, OP_LOAD_MEMBASE, addr_reg, slot_reg, 0);
7073                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, arg_reg, slot_reg, SIZEOF_VOID_P);
7074
7075                 return emit_extra_arg_calli (cfg, fsig, sp, arg_reg, call_target);
7076         }
7077
7078         if (!fsig->generic_param_count && is_iface && !variant_iface && !is_gsharedvt && !special_array_interface) {
7079                 /*
7080                  * A simple interface call
7081                  *
7082                  * We make a call through an imt slot to obtain the function descriptor we need to call.
7083                  * The imt slot contains a function descriptor for a runtime function + arg.
7084                  */
7085                 int slot_reg = alloc_preg (cfg);
7086                 int addr_reg = alloc_preg (cfg);
7087                 int arg_reg = alloc_preg (cfg);
7088                 MonoInst *thunk_addr_ins, *thunk_arg_ins, *ftndesc_ins;
7089
7090                 vtable_reg = alloc_preg (cfg);
7091                 EMIT_NEW_LOAD_MEMBASE (cfg, vtable_ins, OP_LOAD_MEMBASE, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
7092                 offset = ((gint32)slot - MONO_IMT_SIZE) * SIZEOF_VOID_P;
7093
7094                 /*
7095                  * The slot is already initialized when the vtable is created so there is no need
7096                  * to check it here.
7097                  */
7098
7099                 /* Load the imt slot, which contains a function descriptor. */
7100                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, slot_reg, vtable_reg, offset);
7101
7102                 /* Load the address + arg of the imt thunk from the imt slot */
7103                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_addr_ins, OP_LOAD_MEMBASE, addr_reg, slot_reg, 0);
7104                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_arg_ins, OP_LOAD_MEMBASE, arg_reg, slot_reg, SIZEOF_VOID_P);
7105                 /*
7106                  * IMT thunks in llvm-only mode are C functions which take an info argument
7107                  * plus the imt method and return the ftndesc to call.
7108                  */
7109                 icall_args [0] = thunk_arg_ins;
7110                 icall_args [1] = emit_get_rgctx_method (cfg, context_used,
7111                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD);
7112                 ftndesc_ins = mono_emit_calli (cfg, helper_sig_llvmonly_imt_trampoline, icall_args, thunk_addr_ins, NULL, NULL);
7113
7114                 return emit_llvmonly_calli (cfg, fsig, sp, ftndesc_ins);
7115         }
7116
7117         if ((fsig->generic_param_count || variant_iface || special_array_interface) && !is_gsharedvt) {
7118                 /*
7119                  * This is similar to the interface case, the vtable slot points to an imt thunk which is
7120                  * dynamically extended as more instantiations are discovered.
7121                  * This handles generic virtual methods both on classes and interfaces.
7122                  */
7123                 int slot_reg = alloc_preg (cfg);
7124                 int addr_reg = alloc_preg (cfg);
7125                 int arg_reg = alloc_preg (cfg);
7126                 int ftndesc_reg = alloc_preg (cfg);
7127                 MonoInst *thunk_addr_ins, *thunk_arg_ins, *ftndesc_ins;
7128                 MonoBasicBlock *slowpath_bb, *end_bb;
7129
7130                 NEW_BBLOCK (cfg, slowpath_bb);
7131                 NEW_BBLOCK (cfg, end_bb);
7132
7133                 vtable_reg = alloc_preg (cfg);
7134                 EMIT_NEW_LOAD_MEMBASE (cfg, vtable_ins, OP_LOAD_MEMBASE, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
7135                 if (is_iface)
7136                         offset = ((gint32)slot - MONO_IMT_SIZE) * SIZEOF_VOID_P;
7137                 else
7138                         offset = MONO_STRUCT_OFFSET (MonoVTable, vtable) + (slot * SIZEOF_VOID_P);
7139
7140                 /* Load the slot, which contains a function descriptor. */
7141                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, slot_reg, vtable_reg, offset);
7142
7143                 /* These slots are not initialized, so fall back to the slow path until they are initialized */
7144                 /* That happens when mono_method_add_generic_virtual_invocation () creates an IMT thunk */
7145                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, slot_reg, 0);
7146                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, slowpath_bb);
7147
7148                 /* Fastpath */
7149                 /* Same as with iface calls */
7150                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_addr_ins, OP_LOAD_MEMBASE, addr_reg, slot_reg, 0);
7151                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_arg_ins, OP_LOAD_MEMBASE, arg_reg, slot_reg, SIZEOF_VOID_P);
7152                 icall_args [0] = thunk_arg_ins;
7153                 icall_args [1] = emit_get_rgctx_method (cfg, context_used,
7154                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD);
7155                 ftndesc_ins = mono_emit_calli (cfg, helper_sig_llvmonly_imt_trampoline, icall_args, thunk_addr_ins, NULL, NULL);
7156                 ftndesc_ins->dreg = ftndesc_reg;
7157                 /*
7158                  * Unlike normal iface calls, these imt thunks can return NULL, i.e. when they are passed an instantiation
7159                  * they don't know about yet. Fall back to the slowpath in that case.
7160                  */
7161                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, ftndesc_reg, 0);
7162                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, slowpath_bb);
7163
7164                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
7165
7166                 /* Slowpath */
7167                 MONO_START_BB (cfg, slowpath_bb);
7168                 icall_args [0] = vtable_ins;
7169                 EMIT_NEW_ICONST (cfg, icall_args [1], slot);
7170                 icall_args [2] = emit_get_rgctx_method (cfg, context_used,
7171                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD);
7172                 if (is_iface)
7173                         ftndesc_ins = mono_emit_jit_icall (cfg, mono_resolve_generic_virtual_iface_call, icall_args);
7174                 else
7175                         ftndesc_ins = mono_emit_jit_icall (cfg, mono_resolve_generic_virtual_call, icall_args);
7176                 ftndesc_ins->dreg = ftndesc_reg;
7177                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
7178
7179                 /* Common case */
7180                 MONO_START_BB (cfg, end_bb);
7181                 return emit_llvmonly_calli (cfg, fsig, sp, ftndesc_ins);
7182         }
7183
7184         /*
7185          * Non-optimized cases
7186          */
7187         icall_args [0] = sp [0];
7188         EMIT_NEW_ICONST (cfg, icall_args [1], slot);
7189
7190         icall_args [2] = emit_get_rgctx_method (cfg, context_used,
7191                                                                                         cmethod, MONO_RGCTX_INFO_METHOD);
7192
7193         arg_reg = alloc_preg (cfg);
7194         MONO_EMIT_NEW_PCONST (cfg, arg_reg, NULL);
7195         EMIT_NEW_VARLOADA_VREG (cfg, icall_args [3], arg_reg, &mono_defaults.int_class->byval_arg);
7196
7197         g_assert (is_gsharedvt);
7198         if (is_iface)
7199                 call_target = mono_emit_jit_icall (cfg, mono_resolve_iface_call_gsharedvt, icall_args);
7200         else
7201                 call_target = mono_emit_jit_icall (cfg, mono_resolve_vcall_gsharedvt, icall_args);
7202
7203         /*
7204          * Pass the extra argument even if the callee doesn't receive it, most
7205          * calling conventions allow this.
7206          */
7207         return emit_extra_arg_calli (cfg, fsig, sp, arg_reg, call_target);
7208 }
7209
7210 static gboolean
7211 is_exception_class (MonoClass *klass)
7212 {
7213         while (klass) {
7214                 if (klass == mono_defaults.exception_class)
7215                         return TRUE;
7216                 klass = klass->parent;
7217         }
7218         return FALSE;
7219 }
7220
7221 /*
7222  * is_jit_optimizer_disabled:
7223  *
7224  *   Determine whenever M's assembly has a DebuggableAttribute with the
7225  * IsJITOptimizerDisabled flag set.
7226  */
7227 static gboolean
7228 is_jit_optimizer_disabled (MonoMethod *m)
7229 {
7230         MonoError error;
7231         MonoAssembly *ass = m->klass->image->assembly;
7232         MonoCustomAttrInfo* attrs;
7233         MonoClass *klass;
7234         int i;
7235         gboolean val = FALSE;
7236
7237         g_assert (ass);
7238         if (ass->jit_optimizer_disabled_inited)
7239                 return ass->jit_optimizer_disabled;
7240
7241         klass = mono_class_try_get_debuggable_attribute_class ();
7242
7243         if (!klass) {
7244                 /* Linked away */
7245                 ass->jit_optimizer_disabled = FALSE;
7246                 mono_memory_barrier ();
7247                 ass->jit_optimizer_disabled_inited = TRUE;
7248                 return FALSE;
7249         }
7250
7251         attrs = mono_custom_attrs_from_assembly_checked (ass, FALSE, &error);
7252         mono_error_cleanup (&error); /* FIXME don't swallow the error */
7253         if (attrs) {
7254                 for (i = 0; i < attrs->num_attrs; ++i) {
7255                         MonoCustomAttrEntry *attr = &attrs->attrs [i];
7256                         const gchar *p;
7257                         MonoMethodSignature *sig;
7258
7259                         if (!attr->ctor || attr->ctor->klass != klass)
7260                                 continue;
7261                         /* Decode the attribute. See reflection.c */
7262                         p = (const char*)attr->data;
7263                         g_assert (read16 (p) == 0x0001);
7264                         p += 2;
7265
7266                         // FIXME: Support named parameters
7267                         sig = mono_method_signature (attr->ctor);
7268                         if (sig->param_count != 2 || sig->params [0]->type != MONO_TYPE_BOOLEAN || sig->params [1]->type != MONO_TYPE_BOOLEAN)
7269                                 continue;
7270                         /* Two boolean arguments */
7271                         p ++;
7272                         val = *p;
7273                 }
7274                 mono_custom_attrs_free (attrs);
7275         }
7276
7277         ass->jit_optimizer_disabled = val;
7278         mono_memory_barrier ();
7279         ass->jit_optimizer_disabled_inited = TRUE;
7280
7281         return val;
7282 }
7283
7284 static gboolean
7285 is_supported_tail_call (MonoCompile *cfg, MonoMethod *method, MonoMethod *cmethod, MonoMethodSignature *fsig, int call_opcode)
7286 {
7287         gboolean supported_tail_call;
7288         int i;
7289
7290         supported_tail_call = mono_arch_tail_call_supported (cfg, mono_method_signature (method), mono_method_signature (cmethod));
7291
7292         for (i = 0; i < fsig->param_count; ++i) {
7293                 if (fsig->params [i]->byref || fsig->params [i]->type == MONO_TYPE_PTR || fsig->params [i]->type == MONO_TYPE_FNPTR)
7294                         /* These can point to the current method's stack */
7295                         supported_tail_call = FALSE;
7296         }
7297         if (fsig->hasthis && cmethod->klass->valuetype)
7298                 /* this might point to the current method's stack */
7299                 supported_tail_call = FALSE;
7300         if (cmethod->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)
7301                 supported_tail_call = FALSE;
7302         if (cfg->method->save_lmf)
7303                 supported_tail_call = FALSE;
7304         if (cmethod->wrapper_type && cmethod->wrapper_type != MONO_WRAPPER_DYNAMIC_METHOD)
7305                 supported_tail_call = FALSE;
7306         if (call_opcode != CEE_CALL)
7307                 supported_tail_call = FALSE;
7308
7309         /* Debugging support */
7310 #if 0
7311         if (supported_tail_call) {
7312                 if (!mono_debug_count ())
7313                         supported_tail_call = FALSE;
7314         }
7315 #endif
7316
7317         return supported_tail_call;
7318 }
7319
7320 /*
7321  * handle_ctor_call:
7322  *
7323  *   Handle calls made to ctors from NEWOBJ opcodes.
7324  */
7325 static void
7326 handle_ctor_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, int context_used,
7327                                   MonoInst **sp, guint8 *ip, int *inline_costs)
7328 {
7329         MonoInst *vtable_arg = NULL, *callvirt_this_arg = NULL, *ins;
7330
7331         if (cmethod->klass->valuetype && mono_class_generic_sharing_enabled (cmethod->klass) &&
7332                                         mono_method_is_generic_sharable (cmethod, TRUE)) {
7333                 if (cmethod->is_inflated && mono_method_get_context (cmethod)->method_inst) {
7334                         mono_class_vtable (cfg->domain, cmethod->klass);
7335                         CHECK_TYPELOAD (cmethod->klass);
7336
7337                         vtable_arg = emit_get_rgctx_method (cfg, context_used,
7338                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD_RGCTX);
7339                 } else {
7340                         if (context_used) {
7341                                 vtable_arg = mini_emit_get_rgctx_klass (cfg, context_used,
7342                                                                                                    cmethod->klass, MONO_RGCTX_INFO_VTABLE);
7343                         } else {
7344                                 MonoVTable *vtable = mono_class_vtable (cfg->domain, cmethod->klass);
7345
7346                                 CHECK_TYPELOAD (cmethod->klass);
7347                                 EMIT_NEW_VTABLECONST (cfg, vtable_arg, vtable);
7348                         }
7349                 }
7350         }
7351
7352         /* Avoid virtual calls to ctors if possible */
7353         if (mono_class_is_marshalbyref (cmethod->klass))
7354                 callvirt_this_arg = sp [0];
7355
7356         if (cmethod && (cfg->opt & MONO_OPT_INTRINS) && (ins = mini_emit_inst_for_ctor (cfg, cmethod, fsig, sp))) {
7357                 g_assert (MONO_TYPE_IS_VOID (fsig->ret));
7358                 CHECK_CFG_EXCEPTION;
7359         } else if ((cfg->opt & MONO_OPT_INLINE) && cmethod && !context_used && !vtable_arg &&
7360                            mono_method_check_inlining (cfg, cmethod) &&
7361                            !mono_class_is_subclass_of (cmethod->klass, mono_defaults.exception_class, FALSE)) {
7362                 int costs;
7363
7364                 if ((costs = inline_method (cfg, cmethod, fsig, sp, ip, cfg->real_offset, FALSE))) {
7365                         cfg->real_offset += 5;
7366
7367                         *inline_costs += costs - 5;
7368                 } else {
7369                         INLINE_FAILURE ("inline failure");
7370                         // FIXME-VT: Clean this up
7371                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig))
7372                                 GSHAREDVT_FAILURE(*ip);
7373                         mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp, callvirt_this_arg, NULL, NULL);
7374                 }
7375         } else if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) {
7376                 MonoInst *addr;
7377
7378                 addr = emit_get_rgctx_gsharedvt_call (cfg, context_used, fsig, cmethod, MONO_RGCTX_INFO_METHOD_GSHAREDVT_OUT_TRAMPOLINE);
7379
7380                 if (cfg->llvm_only) {
7381                         // FIXME: Avoid initializing vtable_arg
7382                         emit_llvmonly_calli (cfg, fsig, sp, addr);
7383                 } else {
7384                         mono_emit_calli (cfg, fsig, sp, addr, NULL, vtable_arg);
7385                 }
7386         } else if (context_used &&
7387                            ((!mono_method_is_generic_sharable_full (cmethod, TRUE, FALSE, FALSE) ||
7388                                  !mono_class_generic_sharing_enabled (cmethod->klass)) || cfg->gsharedvt)) {
7389                 MonoInst *cmethod_addr;
7390
7391                 /* Generic calls made out of gsharedvt methods cannot be patched, so use an indirect call */
7392
7393                 if (cfg->llvm_only) {
7394                         MonoInst *addr = emit_get_rgctx_method (cfg, context_used, cmethod,
7395                                                                                                         MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
7396                         emit_llvmonly_calli (cfg, fsig, sp, addr);
7397                 } else {
7398                         cmethod_addr = emit_get_rgctx_method (cfg, context_used,
7399                                                                                                   cmethod, MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
7400
7401                         mono_emit_calli (cfg, fsig, sp, cmethod_addr, NULL, vtable_arg);
7402                 }
7403         } else {
7404                 INLINE_FAILURE ("ctor call");
7405                 ins = mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp,
7406                                                                                   callvirt_this_arg, NULL, vtable_arg);
7407         }
7408  exception_exit:
7409         return;
7410 }
7411
7412 static void
7413 emit_setret (MonoCompile *cfg, MonoInst *val)
7414 {
7415         MonoType *ret_type = mini_get_underlying_type (mono_method_signature (cfg->method)->ret);
7416         MonoInst *ins;
7417
7418         if (mini_type_to_stind (cfg, ret_type) == CEE_STOBJ) {
7419                 MonoInst *ret_addr;
7420
7421                 if (!cfg->vret_addr) {
7422                         EMIT_NEW_VARSTORE (cfg, ins, cfg->ret, ret_type, val);
7423                 } else {
7424                         EMIT_NEW_RETLOADA (cfg, ret_addr);
7425
7426                         EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STOREV_MEMBASE, ret_addr->dreg, 0, val->dreg);
7427                         ins->klass = mono_class_from_mono_type (ret_type);
7428                 }
7429         } else {
7430 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
7431                 if (COMPILE_SOFT_FLOAT (cfg) && !ret_type->byref && ret_type->type == MONO_TYPE_R4) {
7432                         MonoInst *iargs [1];
7433                         MonoInst *conv;
7434
7435                         iargs [0] = val;
7436                         conv = mono_emit_jit_icall (cfg, mono_fload_r4_arg, iargs);
7437                         mono_arch_emit_setret (cfg, cfg->method, conv);
7438                 } else {
7439                         mono_arch_emit_setret (cfg, cfg->method, val);
7440                 }
7441 #else
7442                 mono_arch_emit_setret (cfg, cfg->method, val);
7443 #endif
7444         }
7445 }
7446
7447 /*
7448  * mono_method_to_ir:
7449  *
7450  * Translate the .net IL into linear IR.
7451  *
7452  * @start_bblock: if not NULL, the starting basic block, used during inlining.
7453  * @end_bblock: if not NULL, the ending basic block, used during inlining.
7454  * @return_var: if not NULL, the place where the return value is stored, used during inlining.   
7455  * @inline_args: if not NULL, contains the arguments to the inline call
7456  * @inline_offset: if not zero, the real offset from the inline call, or zero otherwise.
7457  * @is_virtual_call: whether this method is being called as a result of a call to callvirt
7458  *
7459  * This method is used to turn ECMA IL into Mono's internal Linear IR
7460  * reprensetation.  It is used both for entire methods, as well as
7461  * inlining existing methods.  In the former case, the @start_bblock,
7462  * @end_bblock, @return_var, @inline_args are all set to NULL, and the
7463  * inline_offset is set to zero.
7464  * 
7465  * Returns: the inline cost, or -1 if there was an error processing this method.
7466  */
7467 int
7468 mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_bblock, MonoBasicBlock *end_bblock, 
7469                    MonoInst *return_var, MonoInst **inline_args, 
7470                    guint inline_offset, gboolean is_virtual_call)
7471 {
7472         MonoError error;
7473         MonoInst *ins, **sp, **stack_start;
7474         MonoBasicBlock *tblock = NULL, *init_localsbb = NULL;
7475         MonoSimpleBasicBlock *bb = NULL, *original_bb = NULL;
7476         MonoMethod *cmethod, *method_definition;
7477         MonoInst **arg_array;
7478         MonoMethodHeader *header;
7479         MonoImage *image;
7480         guint32 token, ins_flag;
7481         MonoClass *klass;
7482         MonoClass *constrained_class = NULL;
7483         unsigned char *ip, *end, *target, *err_pos;
7484         MonoMethodSignature *sig;
7485         MonoGenericContext *generic_context = NULL;
7486         MonoGenericContainer *generic_container = NULL;
7487         MonoType **param_types;
7488         int i, n, start_new_bblock, dreg;
7489         int num_calls = 0, inline_costs = 0;
7490         int breakpoint_id = 0;
7491         guint num_args;
7492         GSList *class_inits = NULL;
7493         gboolean dont_verify, dont_verify_stloc, readonly = FALSE;
7494         int context_used;
7495         gboolean init_locals, seq_points, skip_dead_blocks;
7496         gboolean sym_seq_points = FALSE;
7497         MonoDebugMethodInfo *minfo;
7498         MonoBitSet *seq_point_locs = NULL;
7499         MonoBitSet *seq_point_set_locs = NULL;
7500
7501         cfg->disable_inline = is_jit_optimizer_disabled (method);
7502
7503         /* serialization and xdomain stuff may need access to private fields and methods */
7504         dont_verify = method->klass->image->assembly->corlib_internal? TRUE: FALSE;
7505         dont_verify |= method->wrapper_type == MONO_WRAPPER_XDOMAIN_INVOKE;
7506         dont_verify |= method->wrapper_type == MONO_WRAPPER_XDOMAIN_DISPATCH;
7507         dont_verify |= method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE; /* bug #77896 */
7508         dont_verify |= method->wrapper_type == MONO_WRAPPER_COMINTEROP;
7509         dont_verify |= method->wrapper_type == MONO_WRAPPER_COMINTEROP_INVOKE;
7510
7511         /* still some type unsafety issues in marshal wrappers... (unknown is PtrToStructure) */
7512         dont_verify_stloc = method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE;
7513         dont_verify_stloc |= method->wrapper_type == MONO_WRAPPER_UNKNOWN;
7514         dont_verify_stloc |= method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED;
7515         dont_verify_stloc |= method->wrapper_type == MONO_WRAPPER_STELEMREF;
7516
7517         image = method->klass->image;
7518         header = mono_method_get_header_checked (method, &cfg->error);
7519         if (!header) {
7520                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
7521                 goto exception_exit;
7522         } else {
7523                 cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, header);
7524         }
7525
7526         generic_container = mono_method_get_generic_container (method);
7527         sig = mono_method_signature (method);
7528         num_args = sig->hasthis + sig->param_count;
7529         ip = (unsigned char*)header->code;
7530         cfg->cil_start = ip;
7531         end = ip + header->code_size;
7532         cfg->stat_cil_code_size += header->code_size;
7533
7534         seq_points = cfg->gen_seq_points && cfg->method == method;
7535
7536         if (method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED) {
7537                 /* We could hit a seq point before attaching to the JIT (#8338) */
7538                 seq_points = FALSE;
7539         }
7540
7541         if (cfg->gen_sdb_seq_points && cfg->method == method) {
7542                 minfo = mono_debug_lookup_method (method);
7543                 if (minfo) {
7544                         MonoSymSeqPoint *sps;
7545                         int i, n_il_offsets;
7546
7547                         mono_debug_get_seq_points (minfo, NULL, NULL, NULL, &sps, &n_il_offsets);
7548                         seq_point_locs = mono_bitset_mem_new (mono_mempool_alloc0 (cfg->mempool, mono_bitset_alloc_size (header->code_size, 0)), header->code_size, 0);
7549                         seq_point_set_locs = mono_bitset_mem_new (mono_mempool_alloc0 (cfg->mempool, mono_bitset_alloc_size (header->code_size, 0)), header->code_size, 0);
7550                         sym_seq_points = TRUE;
7551                         for (i = 0; i < n_il_offsets; ++i) {
7552                                 if (sps [i].il_offset < header->code_size)
7553                                         mono_bitset_set_fast (seq_point_locs, sps [i].il_offset);
7554                         }
7555                         g_free (sps);
7556
7557                         MonoDebugMethodAsyncInfo* asyncMethod = mono_debug_lookup_method_async_debug_info (method);
7558                         if (asyncMethod) {
7559                                 for (i = 0; asyncMethod != NULL && i < asyncMethod->num_awaits; i++)
7560                                 {
7561                                         mono_bitset_set_fast (seq_point_locs, asyncMethod->resume_offsets[i]);
7562                                         mono_bitset_set_fast (seq_point_locs, asyncMethod->yield_offsets[i]);
7563                                 }
7564                                 mono_debug_free_method_async_debug_info (asyncMethod);
7565                         }
7566                 } else if (!method->wrapper_type && !method->dynamic && mono_debug_image_has_debug_info (method->klass->image)) {
7567                         /* Methods without line number info like auto-generated property accessors */
7568                         seq_point_locs = mono_bitset_mem_new (mono_mempool_alloc0 (cfg->mempool, mono_bitset_alloc_size (header->code_size, 0)), header->code_size, 0);
7569                         seq_point_set_locs = mono_bitset_mem_new (mono_mempool_alloc0 (cfg->mempool, mono_bitset_alloc_size (header->code_size, 0)), header->code_size, 0);
7570                         sym_seq_points = TRUE;
7571                 }
7572         }
7573
7574         /* 
7575          * Methods without init_locals set could cause asserts in various passes
7576          * (#497220). To work around this, we emit dummy initialization opcodes
7577          * (OP_DUMMY_ICONST etc.) which generate no code. These are only supported
7578          * on some platforms.
7579          */
7580         if ((cfg->opt & MONO_OPT_UNSAFE) && cfg->backend->have_dummy_init)
7581                 init_locals = header->init_locals;
7582         else
7583                 init_locals = TRUE;
7584
7585         method_definition = method;
7586         while (method_definition->is_inflated) {
7587                 MonoMethodInflated *imethod = (MonoMethodInflated *) method_definition;
7588                 method_definition = imethod->declaring;
7589         }
7590
7591         /* SkipVerification is not allowed if core-clr is enabled */
7592         if (!dont_verify && mini_assembly_can_skip_verification (cfg->domain, method)) {
7593                 dont_verify = TRUE;
7594                 dont_verify_stloc = TRUE;
7595         }
7596
7597         if (sig->is_inflated)
7598                 generic_context = mono_method_get_context (method);
7599         else if (generic_container)
7600                 generic_context = &generic_container->context;
7601         cfg->generic_context = generic_context;
7602
7603         if (!cfg->gshared)
7604                 g_assert (!sig->has_type_parameters);
7605
7606         if (sig->generic_param_count && method->wrapper_type == MONO_WRAPPER_NONE) {
7607                 g_assert (method->is_inflated);
7608                 g_assert (mono_method_get_context (method)->method_inst);
7609         }
7610         if (method->is_inflated && mono_method_get_context (method)->method_inst)
7611                 g_assert (sig->generic_param_count);
7612
7613         if (cfg->method == method) {
7614                 cfg->real_offset = 0;
7615         } else {
7616                 cfg->real_offset = inline_offset;
7617         }
7618
7619         cfg->cil_offset_to_bb = (MonoBasicBlock **)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoBasicBlock*) * header->code_size);
7620         cfg->cil_offset_to_bb_len = header->code_size;
7621
7622         cfg->current_method = method;
7623
7624         if (cfg->verbose_level > 2)
7625                 printf ("method to IR %s\n", mono_method_full_name (method, TRUE));
7626
7627         param_types = (MonoType **)mono_mempool_alloc (cfg->mempool, sizeof (MonoType*) * num_args);
7628         if (sig->hasthis)
7629                 param_types [0] = method->klass->valuetype?&method->klass->this_arg:&method->klass->byval_arg;
7630         for (n = 0; n < sig->param_count; ++n)
7631                 param_types [n + sig->hasthis] = sig->params [n];
7632         cfg->arg_types = param_types;
7633
7634         cfg->dont_inline = g_list_prepend (cfg->dont_inline, method);
7635         if (cfg->method == method) {
7636
7637                 if (cfg->prof_options & MONO_PROFILE_INS_COVERAGE)
7638                         cfg->coverage_info = mono_profiler_coverage_alloc (cfg->method, header->code_size);
7639
7640                 /* ENTRY BLOCK */
7641                 NEW_BBLOCK (cfg, start_bblock);
7642                 cfg->bb_entry = start_bblock;
7643                 start_bblock->cil_code = NULL;
7644                 start_bblock->cil_length = 0;
7645
7646                 /* EXIT BLOCK */
7647                 NEW_BBLOCK (cfg, end_bblock);
7648                 cfg->bb_exit = end_bblock;
7649                 end_bblock->cil_code = NULL;
7650                 end_bblock->cil_length = 0;
7651                 end_bblock->flags |= BB_INDIRECT_JUMP_TARGET;
7652                 g_assert (cfg->num_bblocks == 2);
7653
7654                 arg_array = cfg->args;
7655
7656                 if (header->num_clauses) {
7657                         cfg->spvars = g_hash_table_new (NULL, NULL);
7658                         cfg->exvars = g_hash_table_new (NULL, NULL);
7659                 }
7660                 /* handle exception clauses */
7661                 for (i = 0; i < header->num_clauses; ++i) {
7662                         MonoBasicBlock *try_bb;
7663                         MonoExceptionClause *clause = &header->clauses [i];
7664                         GET_BBLOCK (cfg, try_bb, ip + clause->try_offset);
7665
7666                         try_bb->real_offset = clause->try_offset;
7667                         try_bb->try_start = TRUE;
7668                         try_bb->region = ((i + 1) << 8) | clause->flags;
7669                         GET_BBLOCK (cfg, tblock, ip + clause->handler_offset);
7670                         tblock->real_offset = clause->handler_offset;
7671                         tblock->flags |= BB_EXCEPTION_HANDLER;
7672
7673                         /*
7674                          * Linking the try block with the EH block hinders inlining as we won't be able to 
7675                          * merge the bblocks from inlining and produce an artificial hole for no good reason.
7676                          */
7677                         if (COMPILE_LLVM (cfg))
7678                                 link_bblock (cfg, try_bb, tblock);
7679
7680                         if (*(ip + clause->handler_offset) == CEE_POP)
7681                                 tblock->flags |= BB_EXCEPTION_DEAD_OBJ;
7682
7683                         if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY ||
7684                             clause->flags == MONO_EXCEPTION_CLAUSE_FILTER ||
7685                             clause->flags == MONO_EXCEPTION_CLAUSE_FAULT) {
7686                                 MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
7687                                 MONO_ADD_INS (tblock, ins);
7688
7689                                 if (seq_points && clause->flags != MONO_EXCEPTION_CLAUSE_FINALLY && clause->flags != MONO_EXCEPTION_CLAUSE_FILTER) {
7690                                         /* finally clauses already have a seq point */
7691                                         /* seq points for filter clauses are emitted below */
7692                                         NEW_SEQ_POINT (cfg, ins, clause->handler_offset, TRUE);
7693                                         MONO_ADD_INS (tblock, ins);
7694                                 }
7695
7696                                 /* todo: is a fault block unsafe to optimize? */
7697                                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FAULT)
7698                                         tblock->flags |= BB_EXCEPTION_UNSAFE;
7699                         }
7700
7701                         /*printf ("clause try IL_%04x to IL_%04x handler %d at IL_%04x to IL_%04x\n", clause->try_offset, clause->try_offset + clause->try_len, clause->flags, clause->handler_offset, clause->handler_offset + clause->handler_len);
7702                           while (p < end) {
7703                           printf ("%s", mono_disasm_code_one (NULL, method, p, &p));
7704                           }*/
7705                         /* catch and filter blocks get the exception object on the stack */
7706                         if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE ||
7707                             clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
7708
7709                                 /* mostly like handle_stack_args (), but just sets the input args */
7710                                 /* printf ("handling clause at IL_%04x\n", clause->handler_offset); */
7711                                 tblock->in_scount = 1;
7712                                 tblock->in_stack = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
7713                                 tblock->in_stack [0] = mono_create_exvar_for_offset (cfg, clause->handler_offset);
7714
7715                                 cfg->cbb = tblock;
7716
7717 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
7718                                 /* The EH code passes in the exception in a register to both JITted and LLVM compiled code */
7719                                 if (!cfg->compile_llvm) {
7720                                         MONO_INST_NEW (cfg, ins, OP_GET_EX_OBJ);
7721                                         ins->dreg = tblock->in_stack [0]->dreg;
7722                                         MONO_ADD_INS (tblock, ins);
7723                                 }
7724 #else
7725                                 MonoInst *dummy_use;
7726
7727                                 /* 
7728                                  * Add a dummy use for the exvar so its liveness info will be
7729                                  * correct.
7730                                  */
7731                                 EMIT_NEW_DUMMY_USE (cfg, dummy_use, tblock->in_stack [0]);
7732 #endif
7733
7734                                 if (seq_points && clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
7735                                         NEW_SEQ_POINT (cfg, ins, clause->handler_offset, TRUE);
7736                                         MONO_ADD_INS (tblock, ins);
7737                                 }
7738                                 
7739                                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
7740                                         GET_BBLOCK (cfg, tblock, ip + clause->data.filter_offset);
7741                                         tblock->flags |= BB_EXCEPTION_HANDLER;
7742                                         tblock->real_offset = clause->data.filter_offset;
7743                                         tblock->in_scount = 1;
7744                                         tblock->in_stack = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
7745                                         /* The filter block shares the exvar with the handler block */
7746                                         tblock->in_stack [0] = mono_create_exvar_for_offset (cfg, clause->handler_offset);
7747                                         MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
7748                                         MONO_ADD_INS (tblock, ins);
7749                                 }
7750                         }
7751
7752                         if (clause->flags != MONO_EXCEPTION_CLAUSE_FILTER &&
7753                                         clause->data.catch_class &&
7754                                         cfg->gshared &&
7755                                         mono_class_check_context_used (clause->data.catch_class)) {
7756                                 /*
7757                                  * In shared generic code with catch
7758                                  * clauses containing type variables
7759                                  * the exception handling code has to
7760                                  * be able to get to the rgctx.
7761                                  * Therefore we have to make sure that
7762                                  * the vtable/mrgctx argument (for
7763                                  * static or generic methods) or the
7764                                  * "this" argument (for non-static
7765                                  * methods) are live.
7766                                  */
7767                                 if ((method->flags & METHOD_ATTRIBUTE_STATIC) ||
7768                                                 mini_method_get_context (method)->method_inst ||
7769                                                 method->klass->valuetype) {
7770                                         mono_get_vtable_var (cfg);
7771                                 } else {
7772                                         MonoInst *dummy_use;
7773
7774                                         EMIT_NEW_DUMMY_USE (cfg, dummy_use, arg_array [0]);
7775                                 }
7776                         }
7777                 }
7778         } else {
7779                 arg_array = (MonoInst **) alloca (sizeof (MonoInst *) * num_args);
7780                 cfg->cbb = start_bblock;
7781                 cfg->args = arg_array;
7782                 mono_save_args (cfg, sig, inline_args);
7783         }
7784
7785         /* FIRST CODE BLOCK */
7786         NEW_BBLOCK (cfg, tblock);
7787         tblock->cil_code = ip;
7788         cfg->cbb = tblock;
7789         cfg->ip = ip;
7790
7791         ADD_BBLOCK (cfg, tblock);
7792
7793         if (cfg->method == method) {
7794                 breakpoint_id = mono_debugger_method_has_breakpoint (method);
7795                 if (breakpoint_id) {
7796                         MONO_INST_NEW (cfg, ins, OP_BREAK);
7797                         MONO_ADD_INS (cfg->cbb, ins);
7798                 }
7799         }
7800
7801         /* we use a separate basic block for the initialization code */
7802         NEW_BBLOCK (cfg, init_localsbb);
7803         if (cfg->method == method)
7804                 cfg->bb_init = init_localsbb;
7805         init_localsbb->real_offset = cfg->real_offset;
7806         start_bblock->next_bb = init_localsbb;
7807         init_localsbb->next_bb = cfg->cbb;
7808         link_bblock (cfg, start_bblock, init_localsbb);
7809         link_bblock (cfg, init_localsbb, cfg->cbb);
7810                 
7811         cfg->cbb = init_localsbb;
7812
7813         if (cfg->gsharedvt && cfg->method == method) {
7814                 MonoGSharedVtMethodInfo *info;
7815                 MonoInst *var, *locals_var;
7816                 int dreg;
7817
7818                 info = (MonoGSharedVtMethodInfo *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoGSharedVtMethodInfo));
7819                 info->method = cfg->method;
7820                 info->count_entries = 16;
7821                 info->entries = (MonoRuntimeGenericContextInfoTemplate *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->count_entries);
7822                 cfg->gsharedvt_info = info;
7823
7824                 var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
7825                 /* prevent it from being register allocated */
7826                 //var->flags |= MONO_INST_VOLATILE;
7827                 cfg->gsharedvt_info_var = var;
7828
7829                 ins = emit_get_rgctx_gsharedvt_method (cfg, mini_method_check_context_used (cfg, method), method, info);
7830                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, var->dreg, ins->dreg);
7831
7832                 /* Allocate locals */
7833                 locals_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
7834                 /* prevent it from being register allocated */
7835                 //locals_var->flags |= MONO_INST_VOLATILE;
7836                 cfg->gsharedvt_locals_var = locals_var;
7837
7838                 dreg = alloc_ireg (cfg);
7839                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, dreg, var->dreg, MONO_STRUCT_OFFSET (MonoGSharedVtMethodRuntimeInfo, locals_size));
7840
7841                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC);
7842                 ins->dreg = locals_var->dreg;
7843                 ins->sreg1 = dreg;
7844                 MONO_ADD_INS (cfg->cbb, ins);
7845                 cfg->gsharedvt_locals_var_ins = ins;
7846                 
7847                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
7848                 /*
7849                 if (init_locals)
7850                         ins->flags |= MONO_INST_INIT;
7851                 */
7852         }
7853
7854         if (mono_security_core_clr_enabled ()) {
7855                 /* check if this is native code, e.g. an icall or a p/invoke */
7856                 if (method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) {
7857                         MonoMethod *wrapped = mono_marshal_method_from_wrapper (method);
7858                         if (wrapped) {
7859                                 gboolean pinvk = (wrapped->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL);
7860                                 gboolean icall = (wrapped->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL);
7861
7862                                 /* if this ia a native call then it can only be JITted from platform code */
7863                                 if ((icall || pinvk) && method->klass && method->klass->image) {
7864                                         if (!mono_security_core_clr_is_platform_image (method->klass->image)) {
7865                                                 MonoException *ex = icall ? mono_get_exception_security () : 
7866                                                         mono_get_exception_method_access ();
7867                                                 emit_throw_exception (cfg, ex);
7868                                         }
7869                                 }
7870                         }
7871                 }
7872         }
7873
7874         CHECK_CFG_EXCEPTION;
7875
7876         if (header->code_size == 0)
7877                 UNVERIFIED;
7878
7879         if (get_basic_blocks (cfg, header, cfg->real_offset, ip, end, &err_pos)) {
7880                 ip = err_pos;
7881                 UNVERIFIED;
7882         }
7883
7884         if (cfg->method == method)
7885                 mono_debug_init_method (cfg, cfg->cbb, breakpoint_id);
7886
7887         for (n = 0; n < header->num_locals; ++n) {
7888                 if (header->locals [n]->type == MONO_TYPE_VOID && !header->locals [n]->byref)
7889                         UNVERIFIED;
7890         }
7891         class_inits = NULL;
7892
7893         /* We force the vtable variable here for all shared methods
7894            for the possibility that they might show up in a stack
7895            trace where their exact instantiation is needed. */
7896         if (cfg->gshared && method == cfg->method) {
7897                 if ((method->flags & METHOD_ATTRIBUTE_STATIC) ||
7898                                 mini_method_get_context (method)->method_inst ||
7899                                 method->klass->valuetype) {
7900                         mono_get_vtable_var (cfg);
7901                 } else {
7902                         /* FIXME: Is there a better way to do this?
7903                            We need the variable live for the duration
7904                            of the whole method. */
7905                         cfg->args [0]->flags |= MONO_INST_VOLATILE;
7906                 }
7907         }
7908
7909         /* add a check for this != NULL to inlined methods */
7910         if (is_virtual_call) {
7911                 MonoInst *arg_ins;
7912
7913                 NEW_ARGLOAD (cfg, arg_ins, 0);
7914                 MONO_ADD_INS (cfg->cbb, arg_ins);
7915                 MONO_EMIT_NEW_CHECK_THIS (cfg, arg_ins->dreg);
7916         }
7917
7918         skip_dead_blocks = !dont_verify;
7919         if (skip_dead_blocks) {
7920                 original_bb = bb = mono_basic_block_split (method, &cfg->error, header);
7921                 CHECK_CFG_ERROR;
7922                 g_assert (bb);
7923         }
7924
7925         /* we use a spare stack slot in SWITCH and NEWOBJ and others */
7926         stack_start = sp = (MonoInst **)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst*) * (header->max_stack + 1));
7927
7928         ins_flag = 0;
7929         start_new_bblock = 0;
7930         while (ip < end) {
7931                 if (cfg->method == method)
7932                         cfg->real_offset = ip - header->code;
7933                 else
7934                         cfg->real_offset = inline_offset;
7935                 cfg->ip = ip;
7936
7937                 context_used = 0;
7938
7939                 if (start_new_bblock) {
7940                         cfg->cbb->cil_length = ip - cfg->cbb->cil_code;
7941                         if (start_new_bblock == 2) {
7942                                 g_assert (ip == tblock->cil_code);
7943                         } else {
7944                                 GET_BBLOCK (cfg, tblock, ip);
7945                         }
7946                         cfg->cbb->next_bb = tblock;
7947                         cfg->cbb = tblock;
7948                         start_new_bblock = 0;
7949                         for (i = 0; i < cfg->cbb->in_scount; ++i) {
7950                                 if (cfg->verbose_level > 3)
7951                                         printf ("loading %d from temp %d\n", i, (int)cfg->cbb->in_stack [i]->inst_c0);
7952                                 EMIT_NEW_TEMPLOAD (cfg, ins, cfg->cbb->in_stack [i]->inst_c0);
7953                                 *sp++ = ins;
7954                         }
7955                         if (class_inits)
7956                                 g_slist_free (class_inits);
7957                         class_inits = NULL;
7958                 } else {
7959                         if ((tblock = cfg->cil_offset_to_bb [ip - cfg->cil_start]) && (tblock != cfg->cbb)) {
7960                                 link_bblock (cfg, cfg->cbb, tblock);
7961                                 if (sp != stack_start) {
7962                                         handle_stack_args (cfg, stack_start, sp - stack_start);
7963                                         sp = stack_start;
7964                                         CHECK_UNVERIFIABLE (cfg);
7965                                 }
7966                                 cfg->cbb->next_bb = tblock;
7967                                 cfg->cbb = tblock;
7968                                 for (i = 0; i < cfg->cbb->in_scount; ++i) {
7969                                         if (cfg->verbose_level > 3)
7970                                                 printf ("loading %d from temp %d\n", i, (int)cfg->cbb->in_stack [i]->inst_c0);
7971                                         EMIT_NEW_TEMPLOAD (cfg, ins, cfg->cbb->in_stack [i]->inst_c0);
7972                                         *sp++ = ins;
7973                                 }
7974                                 g_slist_free (class_inits);
7975                                 class_inits = NULL;
7976                         }
7977                 }
7978
7979                 if (skip_dead_blocks) {
7980                         int ip_offset = ip - header->code;
7981
7982                         if (ip_offset == bb->end)
7983                                 bb = bb->next;
7984
7985                         if (bb->dead) {
7986                                 int op_size = mono_opcode_size (ip, end);
7987                                 g_assert (op_size > 0); /*The BB formation pass must catch all bad ops*/
7988
7989                                 if (cfg->verbose_level > 3) printf ("SKIPPING DEAD OP at %x\n", ip_offset);
7990
7991                                 if (ip_offset + op_size == bb->end) {
7992                                         MONO_INST_NEW (cfg, ins, OP_NOP);
7993                                         MONO_ADD_INS (cfg->cbb, ins);
7994                                         start_new_bblock = 1;
7995                                 }
7996
7997                                 ip += op_size;
7998                                 continue;
7999                         }
8000                 }
8001                 /*
8002                  * Sequence points are points where the debugger can place a breakpoint.
8003                  * Currently, we generate these automatically at points where the IL
8004                  * stack is empty.
8005                  */
8006                 if (seq_points && ((!sym_seq_points && (sp == stack_start)) || (sym_seq_points && mono_bitset_test_fast (seq_point_locs, ip - header->code)))) {
8007                         /*
8008                          * Make methods interruptable at the beginning, and at the targets of
8009                          * backward branches.
8010                          * Also, do this at the start of every bblock in methods with clauses too,
8011                          * to be able to handle instructions with inprecise control flow like
8012                          * throw/endfinally.
8013                          * Backward branches are handled at the end of method-to-ir ().
8014                          */
8015                         gboolean intr_loc = ip == header->code || (!cfg->cbb->last_ins && cfg->header->num_clauses);
8016                         gboolean sym_seq_point = sym_seq_points && mono_bitset_test_fast (seq_point_locs, ip - header->code);
8017
8018                         /* Avoid sequence points on empty IL like .volatile */
8019                         // FIXME: Enable this
8020                         //if (!(cfg->cbb->last_ins && cfg->cbb->last_ins->opcode == OP_SEQ_POINT)) {
8021                         NEW_SEQ_POINT (cfg, ins, ip - header->code, intr_loc);
8022                         if ((sp != stack_start) && !sym_seq_point)
8023                                 ins->flags |= MONO_INST_NONEMPTY_STACK;
8024                         MONO_ADD_INS (cfg->cbb, ins);
8025
8026                         if (sym_seq_points)
8027                                 mono_bitset_set_fast (seq_point_set_locs, ip - header->code);
8028                 }
8029
8030                 cfg->cbb->real_offset = cfg->real_offset;
8031
8032                 if ((cfg->method == method) && cfg->coverage_info) {
8033                         guint32 cil_offset = ip - header->code;
8034                         cfg->coverage_info->data [cil_offset].cil_code = ip;
8035
8036                         /* TODO: Use an increment here */
8037 #if defined(TARGET_X86)
8038                         MONO_INST_NEW (cfg, ins, OP_STORE_MEM_IMM);
8039                         ins->inst_p0 = &(cfg->coverage_info->data [cil_offset].count);
8040                         ins->inst_imm = 1;
8041                         MONO_ADD_INS (cfg->cbb, ins);
8042 #else
8043                         EMIT_NEW_PCONST (cfg, ins, &(cfg->coverage_info->data [cil_offset].count));
8044                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STORE_MEMBASE_IMM, ins->dreg, 0, 1);
8045 #endif
8046                 }
8047
8048                 if (cfg->verbose_level > 3)
8049                         printf ("converting (in B%d: stack: %d) %s", cfg->cbb->block_num, (int)(sp - stack_start), mono_disasm_code_one (NULL, method, ip, NULL));
8050
8051                 switch (*ip) {
8052                 case CEE_NOP:
8053                         if (seq_points && !sym_seq_points && sp != stack_start) {
8054                                 /*
8055                                  * The C# compiler uses these nops to notify the JIT that it should
8056                                  * insert seq points.
8057                                  */
8058                                 NEW_SEQ_POINT (cfg, ins, ip - header->code, FALSE);
8059                                 MONO_ADD_INS (cfg->cbb, ins);
8060                         }
8061                         if (cfg->keep_cil_nops)
8062                                 MONO_INST_NEW (cfg, ins, OP_HARD_NOP);
8063                         else
8064                                 MONO_INST_NEW (cfg, ins, OP_NOP);
8065                         ip++;
8066                         MONO_ADD_INS (cfg->cbb, ins);
8067                         break;
8068                 case CEE_BREAK:
8069                         if (should_insert_brekpoint (cfg->method)) {
8070                                 ins = mono_emit_jit_icall (cfg, mono_debugger_agent_user_break, NULL);
8071                         } else {
8072                                 MONO_INST_NEW (cfg, ins, OP_NOP);
8073                         }
8074                         ip++;
8075                         MONO_ADD_INS (cfg->cbb, ins);
8076                         break;
8077                 case CEE_LDARG_0:
8078                 case CEE_LDARG_1:
8079                 case CEE_LDARG_2:
8080                 case CEE_LDARG_3:
8081                         CHECK_STACK_OVF (1);
8082                         n = (*ip)-CEE_LDARG_0;
8083                         CHECK_ARG (n);
8084                         EMIT_NEW_ARGLOAD (cfg, ins, n);
8085                         ip++;
8086                         *sp++ = ins;
8087                         break;
8088                 case CEE_LDLOC_0:
8089                 case CEE_LDLOC_1:
8090                 case CEE_LDLOC_2:
8091                 case CEE_LDLOC_3:
8092                         CHECK_STACK_OVF (1);
8093                         n = (*ip)-CEE_LDLOC_0;
8094                         CHECK_LOCAL (n);
8095                         EMIT_NEW_LOCLOAD (cfg, ins, n);
8096                         ip++;
8097                         *sp++ = ins;
8098                         break;
8099                 case CEE_STLOC_0:
8100                 case CEE_STLOC_1:
8101                 case CEE_STLOC_2:
8102                 case CEE_STLOC_3: {
8103                         CHECK_STACK (1);
8104                         n = (*ip)-CEE_STLOC_0;
8105                         CHECK_LOCAL (n);
8106                         --sp;
8107                         if (!dont_verify_stloc && target_type_is_incompatible (cfg, header->locals [n], *sp))
8108                                 UNVERIFIED;
8109                         emit_stloc_ir (cfg, sp, header, n);
8110                         ++ip;
8111                         inline_costs += 1;
8112                         break;
8113                         }
8114                 case CEE_LDARG_S:
8115                         CHECK_OPSIZE (2);
8116                         CHECK_STACK_OVF (1);
8117                         n = ip [1];
8118                         CHECK_ARG (n);
8119                         EMIT_NEW_ARGLOAD (cfg, ins, n);
8120                         *sp++ = ins;
8121                         ip += 2;
8122                         break;
8123                 case CEE_LDARGA_S:
8124                         CHECK_OPSIZE (2);
8125                         CHECK_STACK_OVF (1);
8126                         n = ip [1];
8127                         CHECK_ARG (n);
8128                         NEW_ARGLOADA (cfg, ins, n);
8129                         MONO_ADD_INS (cfg->cbb, ins);
8130                         *sp++ = ins;
8131                         ip += 2;
8132                         break;
8133                 case CEE_STARG_S:
8134                         CHECK_OPSIZE (2);
8135                         CHECK_STACK (1);
8136                         --sp;
8137                         n = ip [1];
8138                         CHECK_ARG (n);
8139                         if (!dont_verify_stloc && target_type_is_incompatible (cfg, param_types [ip [1]], *sp))
8140                                 UNVERIFIED;
8141                         EMIT_NEW_ARGSTORE (cfg, ins, n, *sp);
8142                         ip += 2;
8143                         break;
8144                 case CEE_LDLOC_S:
8145                         CHECK_OPSIZE (2);
8146                         CHECK_STACK_OVF (1);
8147                         n = ip [1];
8148                         CHECK_LOCAL (n);
8149                         EMIT_NEW_LOCLOAD (cfg, ins, n);
8150                         *sp++ = ins;
8151                         ip += 2;
8152                         break;
8153                 case CEE_LDLOCA_S: {
8154                         unsigned char *tmp_ip;
8155                         CHECK_OPSIZE (2);
8156                         CHECK_STACK_OVF (1);
8157                         CHECK_LOCAL (ip [1]);
8158
8159                         if ((tmp_ip = emit_optimized_ldloca_ir (cfg, ip, end, 1))) {
8160                                 ip = tmp_ip;
8161                                 inline_costs += 1;
8162                                 break;
8163                         }
8164
8165                         EMIT_NEW_LOCLOADA (cfg, ins, ip [1]);
8166                         *sp++ = ins;
8167                         ip += 2;
8168                         break;
8169                 }
8170                 case CEE_STLOC_S:
8171                         CHECK_OPSIZE (2);
8172                         CHECK_STACK (1);
8173                         --sp;
8174                         CHECK_LOCAL (ip [1]);
8175                         if (!dont_verify_stloc && target_type_is_incompatible (cfg, header->locals [ip [1]], *sp))
8176                                 UNVERIFIED;
8177                         emit_stloc_ir (cfg, sp, header, ip [1]);
8178                         ip += 2;
8179                         inline_costs += 1;
8180                         break;
8181                 case CEE_LDNULL:
8182                         CHECK_STACK_OVF (1);
8183                         EMIT_NEW_PCONST (cfg, ins, NULL);
8184                         ins->type = STACK_OBJ;
8185                         ++ip;
8186                         *sp++ = ins;
8187                         break;
8188                 case CEE_LDC_I4_M1:
8189                         CHECK_STACK_OVF (1);
8190                         EMIT_NEW_ICONST (cfg, ins, -1);
8191                         ++ip;
8192                         *sp++ = ins;
8193                         break;
8194                 case CEE_LDC_I4_0:
8195                 case CEE_LDC_I4_1:
8196                 case CEE_LDC_I4_2:
8197                 case CEE_LDC_I4_3:
8198                 case CEE_LDC_I4_4:
8199                 case CEE_LDC_I4_5:
8200                 case CEE_LDC_I4_6:
8201                 case CEE_LDC_I4_7:
8202                 case CEE_LDC_I4_8:
8203                         CHECK_STACK_OVF (1);
8204                         EMIT_NEW_ICONST (cfg, ins, (*ip) - CEE_LDC_I4_0);
8205                         ++ip;
8206                         *sp++ = ins;
8207                         break;
8208                 case CEE_LDC_I4_S:
8209                         CHECK_OPSIZE (2);
8210                         CHECK_STACK_OVF (1);
8211                         ++ip;
8212                         EMIT_NEW_ICONST (cfg, ins, *((signed char*)ip));
8213                         ++ip;
8214                         *sp++ = ins;
8215                         break;
8216                 case CEE_LDC_I4:
8217                         CHECK_OPSIZE (5);
8218                         CHECK_STACK_OVF (1);
8219                         EMIT_NEW_ICONST (cfg, ins, (gint32)read32 (ip + 1));
8220                         ip += 5;
8221                         *sp++ = ins;
8222                         break;
8223                 case CEE_LDC_I8:
8224                         CHECK_OPSIZE (9);
8225                         CHECK_STACK_OVF (1);
8226                         MONO_INST_NEW (cfg, ins, OP_I8CONST);
8227                         ins->type = STACK_I8;
8228                         ins->dreg = alloc_dreg (cfg, STACK_I8);
8229                         ++ip;
8230                         ins->inst_l = (gint64)read64 (ip);
8231                         MONO_ADD_INS (cfg->cbb, ins);
8232                         ip += 8;
8233                         *sp++ = ins;
8234                         break;
8235                 case CEE_LDC_R4: {
8236                         float *f;
8237                         gboolean use_aotconst = FALSE;
8238
8239 #ifdef TARGET_POWERPC
8240                         /* FIXME: Clean this up */
8241                         if (cfg->compile_aot)
8242                                 use_aotconst = TRUE;
8243 #endif
8244
8245                         /* FIXME: we should really allocate this only late in the compilation process */
8246                         f = (float *)mono_domain_alloc (cfg->domain, sizeof (float));
8247                         CHECK_OPSIZE (5);
8248                         CHECK_STACK_OVF (1);
8249
8250                         if (use_aotconst) {
8251                                 MonoInst *cons;
8252                                 int dreg;
8253
8254                                 EMIT_NEW_AOTCONST (cfg, cons, MONO_PATCH_INFO_R4, f);
8255
8256                                 dreg = alloc_freg (cfg);
8257                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADR4_MEMBASE, dreg, cons->dreg, 0);
8258                                 ins->type = cfg->r4_stack_type;
8259                         } else {
8260                                 MONO_INST_NEW (cfg, ins, OP_R4CONST);
8261                                 ins->type = cfg->r4_stack_type;
8262                                 ins->dreg = alloc_dreg (cfg, STACK_R8);
8263                                 ins->inst_p0 = f;
8264                                 MONO_ADD_INS (cfg->cbb, ins);
8265                         }
8266                         ++ip;
8267                         readr4 (ip, f);
8268                         ip += 4;
8269                         *sp++ = ins;                    
8270                         break;
8271                 }
8272                 case CEE_LDC_R8: {
8273                         double *d;
8274                         gboolean use_aotconst = FALSE;
8275
8276 #ifdef TARGET_POWERPC
8277                         /* FIXME: Clean this up */
8278                         if (cfg->compile_aot)
8279                                 use_aotconst = TRUE;
8280 #endif
8281
8282                         /* FIXME: we should really allocate this only late in the compilation process */
8283                         d = (double *)mono_domain_alloc (cfg->domain, sizeof (double));
8284                         CHECK_OPSIZE (9);
8285                         CHECK_STACK_OVF (1);
8286
8287                         if (use_aotconst) {
8288                                 MonoInst *cons;
8289                                 int dreg;
8290
8291                                 EMIT_NEW_AOTCONST (cfg, cons, MONO_PATCH_INFO_R8, d);
8292
8293                                 dreg = alloc_freg (cfg);
8294                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADR8_MEMBASE, dreg, cons->dreg, 0);
8295                                 ins->type = STACK_R8;
8296                         } else {
8297                                 MONO_INST_NEW (cfg, ins, OP_R8CONST);
8298                                 ins->type = STACK_R8;
8299                                 ins->dreg = alloc_dreg (cfg, STACK_R8);
8300                                 ins->inst_p0 = d;
8301                                 MONO_ADD_INS (cfg->cbb, ins);
8302                         }
8303                         ++ip;
8304                         readr8 (ip, d);
8305                         ip += 8;
8306                         *sp++ = ins;
8307                         break;
8308                 }
8309                 case CEE_DUP: {
8310                         MonoInst *temp, *store;
8311                         CHECK_STACK (1);
8312                         CHECK_STACK_OVF (1);
8313                         sp--;
8314                         ins = *sp;
8315
8316                         temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
8317                         EMIT_NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
8318
8319                         EMIT_NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
8320                         *sp++ = ins;
8321
8322                         EMIT_NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
8323                         *sp++ = ins;
8324
8325                         ++ip;
8326                         inline_costs += 2;
8327                         break;
8328                 }
8329                 case CEE_POP:
8330                         CHECK_STACK (1);
8331                         ip++;
8332                         --sp;
8333
8334 #ifdef TARGET_X86
8335                         if (sp [0]->type == STACK_R8)
8336                                 /* we need to pop the value from the x86 FP stack */
8337                                 MONO_EMIT_NEW_UNALU (cfg, OP_X86_FPOP, -1, sp [0]->dreg);
8338 #endif
8339                         break;
8340                 case CEE_JMP: {
8341                         MonoCallInst *call;
8342                         MonoMethodSignature *fsig;
8343                         int i, n;
8344
8345                         INLINE_FAILURE ("jmp");
8346                         GSHAREDVT_FAILURE (*ip);
8347
8348                         CHECK_OPSIZE (5);
8349                         if (stack_start != sp)
8350                                 UNVERIFIED;
8351                         token = read32 (ip + 1);
8352                         /* FIXME: check the signature matches */
8353                         cmethod = mini_get_method (cfg, method, token, NULL, generic_context);
8354                         CHECK_CFG_ERROR;
8355  
8356                         if (cfg->gshared && mono_method_check_context_used (cmethod))
8357                                 GENERIC_SHARING_FAILURE (CEE_JMP);
8358
8359                         emit_instrumentation_call (cfg, mono_profiler_method_leave);
8360
8361                         fsig = mono_method_signature (cmethod);
8362                         n = fsig->param_count + fsig->hasthis;
8363                         if (cfg->llvm_only) {
8364                                 MonoInst **args;
8365
8366                                 args = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * n);
8367                                 for (i = 0; i < n; ++i)
8368                                         EMIT_NEW_ARGLOAD (cfg, args [i], i);
8369                                 ins = mono_emit_method_call_full (cfg, cmethod, fsig, TRUE, args, NULL, NULL, NULL);
8370                                 /*
8371                                  * The code in mono-basic-block.c treats the rest of the code as dead, but we
8372                                  * have to emit a normal return since llvm expects it.
8373                                  */
8374                                 if (cfg->ret)
8375                                         emit_setret (cfg, ins);
8376                                 MONO_INST_NEW (cfg, ins, OP_BR);
8377                                 ins->inst_target_bb = end_bblock;
8378                                 MONO_ADD_INS (cfg->cbb, ins);
8379                                 link_bblock (cfg, cfg->cbb, end_bblock);
8380                                 ip += 5;
8381                                 break;
8382                         } else if (cfg->backend->have_op_tail_call) {
8383                                 /* Handle tail calls similarly to calls */
8384                                 DISABLE_AOT (cfg);
8385
8386                                 MONO_INST_NEW_CALL (cfg, call, OP_TAILCALL);
8387                                 call->method = cmethod;
8388                                 call->tail_call = TRUE;
8389                                 call->signature = mono_method_signature (cmethod);
8390                                 call->args = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * n);
8391                                 call->inst.inst_p0 = cmethod;
8392                                 for (i = 0; i < n; ++i)
8393                                         EMIT_NEW_ARGLOAD (cfg, call->args [i], i);
8394
8395                                 if (mini_type_is_vtype (mini_get_underlying_type (call->signature->ret)))
8396                                         call->vret_var = cfg->vret_addr;
8397
8398                                 mono_arch_emit_call (cfg, call);
8399                                 cfg->param_area = MAX(cfg->param_area, call->stack_usage);
8400                                 MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
8401                         } else {
8402                                 for (i = 0; i < num_args; ++i)
8403                                         /* Prevent arguments from being optimized away */
8404                                         arg_array [i]->flags |= MONO_INST_VOLATILE;
8405
8406                                 MONO_INST_NEW_CALL (cfg, call, OP_JMP);
8407                                 ins = (MonoInst*)call;
8408                                 ins->inst_p0 = cmethod;
8409                                 MONO_ADD_INS (cfg->cbb, ins);
8410                         }
8411
8412                         ip += 5;
8413                         start_new_bblock = 1;
8414                         break;
8415                 }
8416                 case CEE_CALLI: {
8417                         MonoInst *addr;
8418                         MonoMethodSignature *fsig;
8419
8420                         CHECK_OPSIZE (5);
8421                         token = read32 (ip + 1);
8422
8423                         ins = NULL;
8424
8425                         //GSHAREDVT_FAILURE (*ip);
8426                         cmethod = NULL;
8427                         CHECK_STACK (1);
8428                         --sp;
8429                         addr = *sp;
8430                         fsig = mini_get_signature (method, token, generic_context, &cfg->error);
8431                         CHECK_CFG_ERROR;
8432
8433                         if (method->dynamic && fsig->pinvoke) {
8434                                 MonoInst *args [3];
8435
8436                                 /*
8437                                  * This is a call through a function pointer using a pinvoke
8438                                  * signature. Have to create a wrapper and call that instead.
8439                                  * FIXME: This is very slow, need to create a wrapper at JIT time
8440                                  * instead based on the signature.
8441                                  */
8442                                 EMIT_NEW_IMAGECONST (cfg, args [0], method->klass->image);
8443                                 EMIT_NEW_PCONST (cfg, args [1], fsig);
8444                                 args [2] = addr;
8445                                 addr = mono_emit_jit_icall (cfg, mono_get_native_calli_wrapper, args);
8446                         }
8447
8448                         n = fsig->param_count + fsig->hasthis;
8449
8450                         CHECK_STACK (n);
8451
8452                         //g_assert (!virtual_ || fsig->hasthis);
8453
8454                         sp -= n;
8455
8456                         inline_costs += 10 * num_calls++;
8457
8458                         /*
8459                          * Making generic calls out of gsharedvt methods.
8460                          * This needs to be used for all generic calls, not just ones with a gsharedvt signature, to avoid
8461                          * patching gshared method addresses into a gsharedvt method.
8462                          */
8463                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) {
8464                                 /*
8465                                  * We pass the address to the gsharedvt trampoline in the rgctx reg
8466                                  */
8467                                 MonoInst *callee = addr;
8468
8469                                 if (method->wrapper_type != MONO_WRAPPER_DELEGATE_INVOKE)
8470                                         /* Not tested */
8471                                         GSHAREDVT_FAILURE (*ip);
8472
8473                                 if (cfg->llvm_only)
8474                                         // FIXME:
8475                                         GSHAREDVT_FAILURE (*ip);
8476
8477                                 addr = emit_get_rgctx_sig (cfg, context_used,
8478                                                                                           fsig, MONO_RGCTX_INFO_SIG_GSHAREDVT_OUT_TRAMPOLINE_CALLI);
8479                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, callee);
8480                                 goto calli_end;
8481                         }
8482
8483                         /* Prevent inlining of methods with indirect calls */
8484                         INLINE_FAILURE ("indirect call");
8485
8486                         if (addr->opcode == OP_PCONST || addr->opcode == OP_AOTCONST || addr->opcode == OP_GOT_ENTRY) {
8487                                 MonoJumpInfoType info_type;
8488                                 gpointer info_data;
8489
8490                                 /*
8491                                  * Instead of emitting an indirect call, emit a direct call
8492                                  * with the contents of the aotconst as the patch info.
8493                                  */
8494                                 if (addr->opcode == OP_PCONST || addr->opcode == OP_AOTCONST) {
8495                                         info_type = (MonoJumpInfoType)addr->inst_c1;
8496                                         info_data = addr->inst_p0;
8497                                 } else {
8498                                         info_type = (MonoJumpInfoType)addr->inst_right->inst_c1;
8499                                         info_data = addr->inst_right->inst_left;
8500                                 }
8501
8502                                 if (info_type == MONO_PATCH_INFO_ICALL_ADDR) {
8503                                         ins = (MonoInst*)mono_emit_abs_call (cfg, MONO_PATCH_INFO_ICALL_ADDR_CALL, info_data, fsig, sp);
8504                                         NULLIFY_INS (addr);
8505                                         goto calli_end;
8506                                 } else if (info_type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
8507                                         ins = (MonoInst*)mono_emit_abs_call (cfg, info_type, info_data, fsig, sp);
8508                                         NULLIFY_INS (addr);
8509                                         goto calli_end;
8510                                 }
8511                         }
8512                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
8513
8514                         calli_end:
8515
8516                         /* End of call, INS should contain the result of the call, if any */
8517
8518                         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
8519                                 g_assert (ins);
8520                                 *sp++ = mono_emit_widen_call_res (cfg, ins, fsig);
8521                         }
8522
8523                         CHECK_CFG_EXCEPTION;
8524
8525                         ip += 5;
8526                         ins_flag = 0;
8527                         constrained_class = NULL;
8528                         break;
8529                 }
8530                 case CEE_CALL:
8531                 case CEE_CALLVIRT: {
8532                         MonoInst *addr = NULL;
8533                         MonoMethodSignature *fsig = NULL;
8534                         int array_rank = 0;
8535                         int virtual_ = *ip == CEE_CALLVIRT;
8536                         gboolean pass_imt_from_rgctx = FALSE;
8537                         MonoInst *imt_arg = NULL;
8538                         MonoInst *keep_this_alive = NULL;
8539                         gboolean pass_vtable = FALSE;
8540                         gboolean pass_mrgctx = FALSE;
8541                         MonoInst *vtable_arg = NULL;
8542                         gboolean check_this = FALSE;
8543                         gboolean supported_tail_call = FALSE;
8544                         gboolean tail_call = FALSE;
8545                         gboolean need_seq_point = FALSE;
8546                         guint32 call_opcode = *ip;
8547                         gboolean emit_widen = TRUE;
8548                         gboolean push_res = TRUE;
8549                         gboolean skip_ret = FALSE;
8550                         gboolean delegate_invoke = FALSE;
8551                         gboolean direct_icall = FALSE;
8552                         gboolean constrained_partial_call = FALSE;
8553                         MonoMethod *cil_method;
8554
8555                         CHECK_OPSIZE (5);
8556                         token = read32 (ip + 1);
8557
8558                         ins = NULL;
8559
8560                         cmethod = mini_get_method (cfg, method, token, NULL, generic_context);
8561                         CHECK_CFG_ERROR;
8562
8563                         cil_method = cmethod;
8564                                 
8565                         if (constrained_class) {
8566                                 if ((constrained_class->byval_arg.type == MONO_TYPE_VAR || constrained_class->byval_arg.type == MONO_TYPE_MVAR) && cfg->gshared) {
8567                                         if (!mini_is_gsharedvt_klass (constrained_class)) {
8568                                                 g_assert (!cmethod->klass->valuetype);
8569                                                 if (!mini_type_is_reference (&constrained_class->byval_arg))
8570                                                         constrained_partial_call = TRUE;
8571                                         }
8572                                 }
8573
8574                                 if (method->wrapper_type != MONO_WRAPPER_NONE) {
8575                                         if (cfg->verbose_level > 2)
8576                                                 printf ("DM Constrained call to %s\n", mono_type_get_full_name (constrained_class));
8577                                         if (!((constrained_class->byval_arg.type == MONO_TYPE_VAR ||
8578                                                    constrained_class->byval_arg.type == MONO_TYPE_MVAR) &&
8579                                                   cfg->gshared)) {
8580                                                 cmethod = mono_get_method_constrained_with_method (image, cil_method, constrained_class, generic_context, &cfg->error);
8581                                                 CHECK_CFG_ERROR;
8582                                         }
8583                                 } else {
8584                                         if (cfg->verbose_level > 2)
8585                                                 printf ("Constrained call to %s\n", mono_type_get_full_name (constrained_class));
8586
8587                                         if ((constrained_class->byval_arg.type == MONO_TYPE_VAR || constrained_class->byval_arg.type == MONO_TYPE_MVAR) && cfg->gshared) {
8588                                                 /* 
8589                                                  * This is needed since get_method_constrained can't find 
8590                                                  * the method in klass representing a type var.
8591                                                  * The type var is guaranteed to be a reference type in this
8592                                                  * case.
8593                                                  */
8594                                                 if (!mini_is_gsharedvt_klass (constrained_class))
8595                                                         g_assert (!cmethod->klass->valuetype);
8596                                         } else {
8597                                                 cmethod = mono_get_method_constrained_checked (image, token, constrained_class, generic_context, &cil_method, &cfg->error);
8598                                                 CHECK_CFG_ERROR;
8599                                         }
8600                                 }
8601
8602                                 if (constrained_class->enumtype && !strcmp (cmethod->name, "GetHashCode")) {
8603                                         /* Use the corresponding method from the base type to avoid boxing */
8604                                         MonoType *base_type = mono_class_enum_basetype (constrained_class);
8605                                         g_assert (base_type);
8606                                         constrained_class = mono_class_from_mono_type (base_type);
8607                                         cmethod = mono_class_get_method_from_name (constrained_class, cmethod->name, 0);
8608                                         g_assert (cmethod);
8609                                 }
8610                         }
8611                                         
8612                         if (!dont_verify && !cfg->skip_visibility) {
8613                                 MonoMethod *target_method = cil_method;
8614                                 if (method->is_inflated) {
8615                                         target_method = mini_get_method_allow_open (method, token, NULL, &(mono_method_get_generic_container (method_definition)->context), &cfg->error);
8616                                         CHECK_CFG_ERROR;
8617                                 }
8618                                 if (!mono_method_can_access_method (method_definition, target_method) &&
8619                                         !mono_method_can_access_method (method, cil_method))
8620                                         emit_method_access_failure (cfg, method, cil_method);
8621                         }
8622
8623                         if (mono_security_core_clr_enabled ())
8624                                 ensure_method_is_allowed_to_call_method (cfg, method, cil_method);
8625
8626                         if (!virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_ABSTRACT))
8627                                 /* MS.NET seems to silently convert this to a callvirt */
8628                                 virtual_ = 1;
8629
8630                         {
8631                                 /*
8632                                  * MS.NET accepts non virtual calls to virtual final methods of transparent proxy classes and
8633                                  * converts to a callvirt.
8634                                  *
8635                                  * tests/bug-515884.il is an example of this behavior
8636                                  */
8637                                 const int test_flags = METHOD_ATTRIBUTE_VIRTUAL | METHOD_ATTRIBUTE_FINAL | METHOD_ATTRIBUTE_STATIC;
8638                                 const int expected_flags = METHOD_ATTRIBUTE_VIRTUAL | METHOD_ATTRIBUTE_FINAL;
8639                                 if (!virtual_ && mono_class_is_marshalbyref (cmethod->klass) && (cmethod->flags & test_flags) == expected_flags && cfg->method->wrapper_type == MONO_WRAPPER_NONE)
8640                                         virtual_ = 1;
8641                         }
8642
8643                         if (!cmethod->klass->inited)
8644                                 if (!mono_class_init (cmethod->klass))
8645                                         TYPE_LOAD_ERROR (cmethod->klass);
8646
8647                         fsig = mono_method_signature (cmethod);
8648                         if (!fsig)
8649                                 LOAD_ERROR;
8650                         if (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL &&
8651                                 mini_class_is_system_array (cmethod->klass)) {
8652                                 array_rank = cmethod->klass->rank;
8653                         } else if ((cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && icall_is_direct_callable (cfg, cmethod)) {
8654                                 direct_icall = TRUE;
8655                         } else if (fsig->pinvoke) {
8656                                 MonoMethod *wrapper = mono_marshal_get_native_wrapper (cmethod, TRUE, cfg->compile_aot);
8657                                 fsig = mono_method_signature (wrapper);
8658                         } else if (constrained_class) {
8659                         } else {
8660                                 fsig = mono_method_get_signature_checked (cmethod, image, token, generic_context, &cfg->error);
8661                                 CHECK_CFG_ERROR;
8662                         }
8663
8664                         if (cfg->llvm_only && !cfg->method->wrapper_type && (!cmethod || cmethod->is_inflated))
8665                                 cfg->signatures = g_slist_prepend_mempool (cfg->mempool, cfg->signatures, fsig);
8666
8667                         /* See code below */
8668                         if (cmethod->klass == mono_defaults.monitor_class && !strcmp (cmethod->name, "Enter") && mono_method_signature (cmethod)->param_count == 1) {
8669                                 MonoBasicBlock *tbb;
8670
8671                                 GET_BBLOCK (cfg, tbb, ip + 5);
8672                                 if (tbb->try_start && MONO_REGION_FLAGS(tbb->region) == MONO_EXCEPTION_CLAUSE_FINALLY) {
8673                                         /*
8674                                          * We want to extend the try block to cover the call, but we can't do it if the
8675                                          * call is made directly since its followed by an exception check.
8676                                          */
8677                                         direct_icall = FALSE;
8678                                 }
8679                         }
8680
8681                         mono_save_token_info (cfg, image, token, cil_method);
8682
8683                         if (!(seq_point_locs && mono_bitset_test_fast (seq_point_locs, ip + 5 - header->code)))
8684                                 need_seq_point = TRUE;
8685
8686                         /* Don't support calls made using type arguments for now */
8687                         /*
8688                           if (cfg->gsharedvt) {
8689                           if (mini_is_gsharedvt_signature (fsig))
8690                           GSHAREDVT_FAILURE (*ip);
8691                           }
8692                         */
8693
8694                         if (cmethod->string_ctor && method->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE)
8695                                 g_assert_not_reached ();
8696
8697                         n = fsig->param_count + fsig->hasthis;
8698
8699                         if (!cfg->gshared && mono_class_is_gtd (cmethod->klass))
8700                                 UNVERIFIED;
8701
8702                         if (!cfg->gshared)
8703                                 g_assert (!mono_method_check_context_used (cmethod));
8704
8705                         CHECK_STACK (n);
8706
8707                         //g_assert (!virtual_ || fsig->hasthis);
8708
8709                         sp -= n;
8710
8711                         /*
8712                          * We have the `constrained.' prefix opcode.
8713                          */
8714                         if (constrained_class) {
8715                                 if (mini_is_gsharedvt_klass (constrained_class)) {
8716                                         if ((cmethod->klass != mono_defaults.object_class) && constrained_class->valuetype && cmethod->klass->valuetype) {
8717                                                 /* The 'Own method' case below */
8718                                         } else if (cmethod->klass->image != mono_defaults.corlib && !mono_class_is_interface (cmethod->klass) && !cmethod->klass->valuetype) {
8719                                                 /* 'The type parameter is instantiated as a reference type' case below. */
8720                                         } else {
8721                                                 ins = handle_constrained_gsharedvt_call (cfg, cmethod, fsig, sp, constrained_class, &emit_widen);
8722                                                 CHECK_CFG_EXCEPTION;
8723                                                 g_assert (ins);
8724                                                 goto call_end;
8725                                         }
8726                                 }
8727
8728                                 if (constrained_partial_call) {
8729                                         gboolean need_box = TRUE;
8730
8731                                         /*
8732                                          * The receiver is a valuetype, but the exact type is not known at compile time. This means the
8733                                          * called method is not known at compile time either. The called method could end up being
8734                                          * one of the methods on the parent classes (object/valuetype/enum), in which case we need
8735                                          * to box the receiver.
8736                                          * A simple solution would be to box always and make a normal virtual call, but that would
8737                                          * be bad performance wise.
8738                                          */
8739                                         if (mono_class_is_interface (cmethod->klass) && mono_class_is_ginst (cmethod->klass)) {
8740                                                 /*
8741                                                  * The parent classes implement no generic interfaces, so the called method will be a vtype method, so no boxing neccessary.
8742                                                  */
8743                                                 need_box = FALSE;
8744                                         }
8745
8746                                         if (!(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) && (cmethod->klass == mono_defaults.object_class || cmethod->klass == mono_defaults.enum_class->parent || cmethod->klass == mono_defaults.enum_class)) {
8747                                                 /* The called method is not virtual, i.e. Object:GetType (), the receiver is a vtype, has to box */
8748                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
8749                                                 ins->klass = constrained_class;
8750                                                 sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
8751                                                 CHECK_CFG_EXCEPTION;
8752                                         } else if (need_box) {
8753                                                 MonoInst *box_type;
8754                                                 MonoBasicBlock *is_ref_bb, *end_bb;
8755                                                 MonoInst *nonbox_call;
8756
8757                                                 /*
8758                                                  * Determine at runtime whenever the called method is defined on object/valuetype/enum, and emit a boxing call
8759                                                  * if needed.
8760                                                  * FIXME: It is possible to inline the called method in a lot of cases, i.e. for T_INT,
8761                                                  * the no-box case goes to a method in Int32, while the box case goes to a method in Enum.
8762                                                  */
8763                                                 addr = emit_get_rgctx_virt_method (cfg, mono_class_check_context_used (constrained_class), constrained_class, cmethod, MONO_RGCTX_INFO_VIRT_METHOD_CODE);
8764
8765                                                 NEW_BBLOCK (cfg, is_ref_bb);
8766                                                 NEW_BBLOCK (cfg, end_bb);
8767
8768                                                 box_type = emit_get_rgctx_virt_method (cfg, mono_class_check_context_used (constrained_class), constrained_class, cmethod, MONO_RGCTX_INFO_VIRT_METHOD_BOX_TYPE);
8769                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, box_type->dreg, MONO_GSHAREDVT_BOX_TYPE_REF);
8770                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_ref_bb);
8771
8772                                                 /* Non-ref case */
8773                                                 nonbox_call = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
8774
8775                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
8776
8777                                                 /* Ref case */
8778                                                 MONO_START_BB (cfg, is_ref_bb);
8779                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
8780                                                 ins->klass = constrained_class;
8781                                                 sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
8782                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
8783
8784                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
8785
8786                                                 MONO_START_BB (cfg, end_bb);
8787                                                 cfg->cbb = end_bb;
8788
8789                                                 nonbox_call->dreg = ins->dreg;
8790                                                 goto call_end;
8791                                         } else {
8792                                                 g_assert (mono_class_is_interface (cmethod->klass));
8793                                                 addr = emit_get_rgctx_virt_method (cfg, mono_class_check_context_used (constrained_class), constrained_class, cmethod, MONO_RGCTX_INFO_VIRT_METHOD_CODE);
8794                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
8795                                                 goto call_end;
8796                                         }
8797                                 } else if (constrained_class->valuetype && (cmethod->klass == mono_defaults.object_class || cmethod->klass == mono_defaults.enum_class->parent || cmethod->klass == mono_defaults.enum_class)) {
8798                                         /*
8799                                          * The type parameter is instantiated as a valuetype,
8800                                          * but that type doesn't override the method we're
8801                                          * calling, so we need to box `this'.
8802                                          */
8803                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
8804                                         ins->klass = constrained_class;
8805                                         sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
8806                                         CHECK_CFG_EXCEPTION;
8807                                 } else if (!constrained_class->valuetype) {
8808                                         int dreg = alloc_ireg_ref (cfg);
8809
8810                                         /*
8811                                          * The type parameter is instantiated as a reference
8812                                          * type.  We have a managed pointer on the stack, so
8813                                          * we need to dereference it here.
8814                                          */
8815                                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, sp [0]->dreg, 0);
8816                                         ins->type = STACK_OBJ;
8817                                         sp [0] = ins;
8818                                 } else {
8819                                         if (cmethod->klass->valuetype) {
8820                                                 /* Own method */
8821                                         } else {
8822                                                 /* Interface method */
8823                                                 int ioffset, slot;
8824
8825                                                 mono_class_setup_vtable (constrained_class);
8826                                                 CHECK_TYPELOAD (constrained_class);
8827                                                 ioffset = mono_class_interface_offset (constrained_class, cmethod->klass);
8828                                                 if (ioffset == -1)
8829                                                         TYPE_LOAD_ERROR (constrained_class);
8830                                                 slot = mono_method_get_vtable_slot (cmethod);
8831                                                 if (slot == -1)
8832                                                         TYPE_LOAD_ERROR (cmethod->klass);
8833                                                 cmethod = constrained_class->vtable [ioffset + slot];
8834
8835                                                 if (cmethod->klass == mono_defaults.enum_class) {
8836                                                         /* Enum implements some interfaces, so treat this as the first case */
8837                                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
8838                                                         ins->klass = constrained_class;
8839                                                         sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
8840                                                         CHECK_CFG_EXCEPTION;
8841                                                 }
8842                                         }
8843                                         virtual_ = 0;
8844                                 }
8845                                 constrained_class = NULL;
8846                         }
8847
8848                         if (check_call_signature (cfg, fsig, sp))
8849                                 UNVERIFIED;
8850
8851                         if ((cmethod->klass->parent == mono_defaults.multicastdelegate_class) && !strcmp (cmethod->name, "Invoke"))
8852                                 delegate_invoke = TRUE;
8853
8854                         if ((cfg->opt & MONO_OPT_INTRINS) && (ins = mini_emit_inst_for_sharable_method (cfg, cmethod, fsig, sp))) {
8855                                 if (!MONO_TYPE_IS_VOID (fsig->ret)) {
8856                                         type_to_eval_stack_type ((cfg), fsig->ret, ins);
8857                                         emit_widen = FALSE;
8858                                 }
8859
8860                                 goto call_end;
8861                         }
8862
8863                         /* 
8864                          * If the callee is a shared method, then its static cctor
8865                          * might not get called after the call was patched.
8866                          */
8867                         if (cfg->gshared && cmethod->klass != method->klass && mono_class_is_ginst (cmethod->klass) && mono_method_is_generic_sharable (cmethod, TRUE) && mono_class_needs_cctor_run (cmethod->klass, method)) {
8868                                 emit_class_init (cfg, cmethod->klass);
8869                                 CHECK_TYPELOAD (cmethod->klass);
8870                         }
8871
8872                         check_method_sharing (cfg, cmethod, &pass_vtable, &pass_mrgctx);
8873
8874                         if (cfg->gshared) {
8875                                 MonoGenericContext *cmethod_context = mono_method_get_context (cmethod);
8876
8877                                 context_used = mini_method_check_context_used (cfg, cmethod);
8878
8879                                 if (context_used && mono_class_is_interface (cmethod->klass)) {
8880                                         /* Generic method interface
8881                                            calls are resolved via a
8882                                            helper function and don't
8883                                            need an imt. */
8884                                         if (!cmethod_context || !cmethod_context->method_inst)
8885                                                 pass_imt_from_rgctx = TRUE;
8886                                 }
8887
8888                                 /*
8889                                  * If a shared method calls another
8890                                  * shared method then the caller must
8891                                  * have a generic sharing context
8892                                  * because the magic trampoline
8893                                  * requires it.  FIXME: We shouldn't
8894                                  * have to force the vtable/mrgctx
8895                                  * variable here.  Instead there
8896                                  * should be a flag in the cfg to
8897                                  * request a generic sharing context.
8898                                  */
8899                                 if (context_used &&
8900                                                 ((cfg->method->flags & METHOD_ATTRIBUTE_STATIC) || cfg->method->klass->valuetype))
8901                                         mono_get_vtable_var (cfg);
8902                         }
8903
8904                         if (pass_vtable) {
8905                                 if (context_used) {
8906                                         vtable_arg = mini_emit_get_rgctx_klass (cfg, context_used, cmethod->klass, MONO_RGCTX_INFO_VTABLE);
8907                                 } else {
8908                                         MonoVTable *vtable = mono_class_vtable (cfg->domain, cmethod->klass);
8909
8910                                         CHECK_TYPELOAD (cmethod->klass);
8911                                         EMIT_NEW_VTABLECONST (cfg, vtable_arg, vtable);
8912                                 }
8913                         }
8914
8915                         if (pass_mrgctx) {
8916                                 g_assert (!vtable_arg);
8917
8918                                 if (!cfg->compile_aot) {
8919                                         /* 
8920                                          * emit_get_rgctx_method () calls mono_class_vtable () so check 
8921                                          * for type load errors before.
8922                                          */
8923                                         mono_class_setup_vtable (cmethod->klass);
8924                                         CHECK_TYPELOAD (cmethod->klass);
8925                                 }
8926
8927                                 vtable_arg = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_METHOD_RGCTX);
8928
8929                                 /* !marshalbyref is needed to properly handle generic methods + remoting */
8930                                 if ((!(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) ||
8931                                          MONO_METHOD_IS_FINAL (cmethod)) &&
8932                                         !mono_class_is_marshalbyref (cmethod->klass)) {
8933                                         if (virtual_)
8934                                                 check_this = TRUE;
8935                                         virtual_ = 0;
8936                                 }
8937                         }
8938
8939                         if (pass_imt_from_rgctx) {
8940                                 g_assert (!pass_vtable);
8941
8942                                 imt_arg = emit_get_rgctx_method (cfg, context_used,
8943                                         cmethod, MONO_RGCTX_INFO_METHOD);
8944                         }
8945
8946                         if (check_this)
8947                                 MONO_EMIT_NEW_CHECK_THIS (cfg, sp [0]->dreg);
8948
8949                         /* Calling virtual generic methods */
8950                         if (virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) &&
8951                             !(MONO_METHOD_IS_FINAL (cmethod) && 
8952                               cmethod->wrapper_type != MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK) &&
8953                             fsig->generic_param_count && 
8954                                 !(cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) &&
8955                                 !cfg->llvm_only) {
8956                                 MonoInst *this_temp, *this_arg_temp, *store;
8957                                 MonoInst *iargs [4];
8958
8959                                 g_assert (fsig->is_inflated);
8960
8961                                 /* Prevent inlining of methods that contain indirect calls */
8962                                 INLINE_FAILURE ("virtual generic call");
8963
8964                                 if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig))
8965                                         GSHAREDVT_FAILURE (*ip);
8966
8967                                 if (cfg->backend->have_generalized_imt_trampoline && cfg->backend->gshared_supported && cmethod->wrapper_type == MONO_WRAPPER_NONE) {
8968                                         g_assert (!imt_arg);
8969                                         if (!context_used)
8970                                                 g_assert (cmethod->is_inflated);
8971                                         imt_arg = emit_get_rgctx_method (cfg, context_used,
8972                                                                                                          cmethod, MONO_RGCTX_INFO_METHOD);
8973                                         ins = mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp, sp [0], imt_arg, NULL);
8974                                 } else {
8975                                         this_temp = mono_compile_create_var (cfg, type_from_stack_type (sp [0]), OP_LOCAL);
8976                                         NEW_TEMPSTORE (cfg, store, this_temp->inst_c0, sp [0]);
8977                                         MONO_ADD_INS (cfg->cbb, store);
8978
8979                                         /* FIXME: This should be a managed pointer */
8980                                         this_arg_temp = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
8981
8982                                         EMIT_NEW_TEMPLOAD (cfg, iargs [0], this_temp->inst_c0);
8983                                         iargs [1] = emit_get_rgctx_method (cfg, context_used,
8984                                                                                                            cmethod, MONO_RGCTX_INFO_METHOD);
8985                                         EMIT_NEW_TEMPLOADA (cfg, iargs [2], this_arg_temp->inst_c0);
8986                                         addr = mono_emit_jit_icall (cfg,
8987                                                                                                 mono_helper_compile_generic_method, iargs);
8988
8989                                         EMIT_NEW_TEMPLOAD (cfg, sp [0], this_arg_temp->inst_c0);
8990
8991                                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
8992                                 }
8993
8994                                 goto call_end;
8995                         }
8996
8997                         /*
8998                          * Implement a workaround for the inherent races involved in locking:
8999                          * Monitor.Enter ()
9000                          * try {
9001                          * } finally {
9002                          *    Monitor.Exit ()
9003                          * }
9004                          * If a thread abort happens between the call to Monitor.Enter () and the start of the
9005                          * try block, the Exit () won't be executed, see:
9006                          * http://www.bluebytesoftware.com/blog/2007/01/30/MonitorEnterThreadAbortsAndOrphanedLocks.aspx
9007                          * To work around this, we extend such try blocks to include the last x bytes
9008                          * of the Monitor.Enter () call.
9009                          */
9010                         if (cmethod->klass == mono_defaults.monitor_class && !strcmp (cmethod->name, "Enter") && mono_method_signature (cmethod)->param_count == 1) {
9011                                 MonoBasicBlock *tbb;
9012
9013                                 GET_BBLOCK (cfg, tbb, ip + 5);
9014                                 /* 
9015                                  * Only extend try blocks with a finally, to avoid catching exceptions thrown
9016                                  * from Monitor.Enter like ArgumentNullException.
9017                                  */
9018                                 if (tbb->try_start && MONO_REGION_FLAGS(tbb->region) == MONO_EXCEPTION_CLAUSE_FINALLY) {
9019                                         /* Mark this bblock as needing to be extended */
9020                                         tbb->extend_try_block = TRUE;
9021                                 }
9022                         }
9023
9024                         /* Conversion to a JIT intrinsic */
9025                         if ((cfg->opt & MONO_OPT_INTRINS) && (ins = mini_emit_inst_for_method (cfg, cmethod, fsig, sp))) {
9026                                 if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9027                                         type_to_eval_stack_type ((cfg), fsig->ret, ins);
9028                                         emit_widen = FALSE;
9029                                 }
9030                                 goto call_end;
9031                         }
9032                         CHECK_CFG_ERROR;
9033                         
9034                         /* Inlining */
9035                         if ((cfg->opt & MONO_OPT_INLINE) &&
9036                                 (!virtual_ || !(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) || MONO_METHOD_IS_FINAL (cmethod)) &&
9037                             mono_method_check_inlining (cfg, cmethod)) {
9038                                 int costs;
9039                                 gboolean always = FALSE;
9040
9041                                 if ((cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
9042                                         (cmethod->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
9043                                         /* Prevent inlining of methods that call wrappers */
9044                                         INLINE_FAILURE ("wrapper call");
9045                                         cmethod = mono_marshal_get_native_wrapper (cmethod, TRUE, FALSE);
9046                                         always = TRUE;
9047                                 }
9048
9049                                 costs = inline_method (cfg, cmethod, fsig, sp, ip, cfg->real_offset, always);
9050                                 if (costs) {
9051                                         cfg->real_offset += 5;
9052
9053                                         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9054                                                 /* *sp is already set by inline_method */
9055                                                 sp++;
9056                                                 push_res = FALSE;
9057                                         }
9058
9059                                         inline_costs += costs;
9060
9061                                         goto call_end;
9062                                 }
9063                         }
9064
9065                         /* Tail recursion elimination */
9066                         if ((cfg->opt & MONO_OPT_TAILC) && call_opcode == CEE_CALL && cmethod == method && ip [5] == CEE_RET && !vtable_arg) {
9067                                 gboolean has_vtargs = FALSE;
9068                                 int i;
9069
9070                                 /* Prevent inlining of methods with tail calls (the call stack would be altered) */
9071                                 INLINE_FAILURE ("tail call");
9072
9073                                 /* keep it simple */
9074                                 for (i =  fsig->param_count - 1; i >= 0; i--) {
9075                                         if (MONO_TYPE_ISSTRUCT (mono_method_signature (cmethod)->params [i])) 
9076                                                 has_vtargs = TRUE;
9077                                 }
9078
9079                                 if (!has_vtargs) {
9080                                         if (need_seq_point) {
9081                                                 emit_seq_point (cfg, method, ip, FALSE, TRUE);
9082                                                 need_seq_point = FALSE;
9083                                         }
9084                                         for (i = 0; i < n; ++i)
9085                                                 EMIT_NEW_ARGSTORE (cfg, ins, i, sp [i]);
9086                                         MONO_INST_NEW (cfg, ins, OP_BR);
9087                                         MONO_ADD_INS (cfg->cbb, ins);
9088                                         tblock = start_bblock->out_bb [0];
9089                                         link_bblock (cfg, cfg->cbb, tblock);
9090                                         ins->inst_target_bb = tblock;
9091                                         start_new_bblock = 1;
9092
9093                                         /* skip the CEE_RET, too */
9094                                         if (ip_in_bb (cfg, cfg->cbb, ip + 5))
9095                                                 skip_ret = TRUE;
9096                                         push_res = FALSE;
9097                                         goto call_end;
9098                                 }
9099                         }
9100
9101                         inline_costs += 10 * num_calls++;
9102
9103                         /*
9104                          * Synchronized wrappers.
9105                          * Its hard to determine where to replace a method with its synchronized
9106                          * wrapper without causing an infinite recursion. The current solution is
9107                          * to add the synchronized wrapper in the trampolines, and to
9108                          * change the called method to a dummy wrapper, and resolve that wrapper
9109                          * to the real method in mono_jit_compile_method ().
9110                          */
9111                         if (cfg->method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED) {
9112                                 MonoMethod *orig = mono_marshal_method_from_wrapper (cfg->method);
9113                                 if (cmethod == orig || (cmethod->is_inflated && mono_method_get_declaring_generic_method (cmethod) == orig))
9114                                         cmethod = mono_marshal_get_synchronized_inner_wrapper (cmethod);
9115                         }
9116
9117                         /*
9118                          * Making generic calls out of gsharedvt methods.
9119                          * This needs to be used for all generic calls, not just ones with a gsharedvt signature, to avoid
9120                          * patching gshared method addresses into a gsharedvt method.
9121                          */
9122                         if (cfg->gsharedvt && (mini_is_gsharedvt_signature (fsig) || cmethod->is_inflated || mono_class_is_ginst (cmethod->klass)) &&
9123                                 !(cmethod->klass->rank && cmethod->klass->byval_arg.type != MONO_TYPE_SZARRAY) &&
9124                                 (!(cfg->llvm_only && virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL)))) {
9125                                 MonoRgctxInfoType info_type;
9126
9127                                 if (virtual_) {
9128                                         //if (mono_class_is_interface (cmethod->klass))
9129                                                 //GSHAREDVT_FAILURE (*ip);
9130                                         // disable for possible remoting calls
9131                                         if (fsig->hasthis && (mono_class_is_marshalbyref (method->klass) || method->klass == mono_defaults.object_class))
9132                                                 GSHAREDVT_FAILURE (*ip);
9133                                         if (fsig->generic_param_count) {
9134                                                 /* virtual generic call */
9135                                                 g_assert (!imt_arg);
9136                                                 /* Same as the virtual generic case above */
9137                                                 imt_arg = emit_get_rgctx_method (cfg, context_used,
9138                                                                                                                  cmethod, MONO_RGCTX_INFO_METHOD);
9139                                                 /* This is not needed, as the trampoline code will pass one, and it might be passed in the same reg as the imt arg */
9140                                                 vtable_arg = NULL;
9141                                         } else if (mono_class_is_interface (cmethod->klass) && !imt_arg) {
9142                                                 /* This can happen when we call a fully instantiated iface method */
9143                                                 imt_arg = emit_get_rgctx_method (cfg, context_used,
9144                                                                                                                  cmethod, MONO_RGCTX_INFO_METHOD);
9145                                                 vtable_arg = NULL;
9146                                         }
9147                                 }
9148
9149                                 if ((cmethod->klass->parent == mono_defaults.multicastdelegate_class) && (!strcmp (cmethod->name, "Invoke")))
9150                                         keep_this_alive = sp [0];
9151
9152                                 if (virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL))
9153                                         info_type = MONO_RGCTX_INFO_METHOD_GSHAREDVT_OUT_TRAMPOLINE_VIRT;
9154                                 else
9155                                         info_type = MONO_RGCTX_INFO_METHOD_GSHAREDVT_OUT_TRAMPOLINE;
9156                                 addr = emit_get_rgctx_gsharedvt_call (cfg, context_used, fsig, cmethod, info_type);
9157
9158                                 if (cfg->llvm_only) {
9159                                         // FIXME: Avoid initializing vtable_arg
9160                                         ins = emit_llvmonly_calli (cfg, fsig, sp, addr);
9161                                 } else {
9162                                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, imt_arg, vtable_arg);
9163                                 }
9164                                 goto call_end;
9165                         }
9166
9167                         /* Generic sharing */
9168
9169                         /*
9170                          * Use this if the callee is gsharedvt sharable too, since
9171                          * at runtime we might find an instantiation so the call cannot
9172                          * be patched (the 'no_patch' code path in mini-trampolines.c).
9173                          */
9174                         if (context_used && !imt_arg && !array_rank && !delegate_invoke &&
9175                                 (!mono_method_is_generic_sharable_full (cmethod, TRUE, FALSE, FALSE) ||
9176                                  !mono_class_generic_sharing_enabled (cmethod->klass)) &&
9177                                 (!virtual_ || MONO_METHOD_IS_FINAL (cmethod) ||
9178                                  !(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL))) {
9179                                 INLINE_FAILURE ("gshared");
9180
9181                                 g_assert (cfg->gshared && cmethod);
9182                                 g_assert (!addr);
9183
9184                                 /*
9185                                  * We are compiling a call to a
9186                                  * generic method from shared code,
9187                                  * which means that we have to look up
9188                                  * the method in the rgctx and do an
9189                                  * indirect call.
9190                                  */
9191                                 if (fsig->hasthis)
9192                                         MONO_EMIT_NEW_CHECK_THIS (cfg, sp [0]->dreg);
9193
9194                                 if (cfg->llvm_only) {
9195                                         if (cfg->gsharedvt && mini_is_gsharedvt_variable_signature (fsig))
9196                                                 addr = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_GSHAREDVT_OUT_WRAPPER);
9197                                         else
9198                                                 addr = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
9199                                         // FIXME: Avoid initializing imt_arg/vtable_arg
9200                                         ins = emit_llvmonly_calli (cfg, fsig, sp, addr);
9201                                 } else {
9202                                         addr = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
9203                                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, imt_arg, vtable_arg);
9204                                 }
9205                                 goto call_end;
9206                         }
9207
9208                         /* Direct calls to icalls */
9209                         if (direct_icall) {
9210                                 MonoMethod *wrapper;
9211                                 int costs;
9212
9213                                 /* Inline the wrapper */
9214                                 wrapper = mono_marshal_get_native_wrapper (cmethod, TRUE, cfg->compile_aot);
9215
9216                                 costs = inline_method (cfg, wrapper, fsig, sp, ip, cfg->real_offset, TRUE);
9217                                 g_assert (costs > 0);
9218                                 cfg->real_offset += 5;
9219
9220                                 if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9221                                         /* *sp is already set by inline_method */
9222                                         sp++;
9223                                         push_res = FALSE;
9224                                 }
9225
9226                                 inline_costs += costs;
9227
9228                                 goto call_end;
9229                         }
9230                                         
9231                         /* Array methods */
9232                         if (array_rank) {
9233                                 MonoInst *addr;
9234
9235                                 if (strcmp (cmethod->name, "Set") == 0) { /* array Set */ 
9236                                         MonoInst *val = sp [fsig->param_count];
9237
9238                                         if (val->type == STACK_OBJ) {
9239                                                 MonoInst *iargs [2];
9240
9241                                                 iargs [0] = sp [0];
9242                                                 iargs [1] = val;
9243                                                 
9244                                                 mono_emit_jit_icall (cfg, mono_helper_stelem_ref_check, iargs);
9245                                         }
9246                                         
9247                                         addr = mini_emit_ldelema_ins (cfg, cmethod, sp, ip, TRUE);
9248                                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, fsig->params [fsig->param_count - 1], addr->dreg, 0, val->dreg);
9249                                         if (cfg->gen_write_barriers && val->type == STACK_OBJ && !MONO_INS_IS_PCONST_NULL (val))
9250                                                 emit_write_barrier (cfg, addr, val);
9251                                         if (cfg->gen_write_barriers && mini_is_gsharedvt_klass (cmethod->klass))
9252                                                 GSHAREDVT_FAILURE (*ip);
9253                                 } else if (strcmp (cmethod->name, "Get") == 0) { /* array Get */
9254                                         addr = mini_emit_ldelema_ins (cfg, cmethod, sp, ip, FALSE);
9255
9256                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, fsig->ret, addr->dreg, 0);
9257                                 } else if (strcmp (cmethod->name, "Address") == 0) { /* array Address */
9258                                         if (!cmethod->klass->element_class->valuetype && !readonly)
9259                                                 mini_emit_check_array_type (cfg, sp [0], cmethod->klass);
9260                                         CHECK_TYPELOAD (cmethod->klass);
9261                                         
9262                                         readonly = FALSE;
9263                                         addr = mini_emit_ldelema_ins (cfg, cmethod, sp, ip, FALSE);
9264                                         ins = addr;
9265                                 } else {
9266                                         g_assert_not_reached ();
9267                                 }
9268
9269                                 emit_widen = FALSE;
9270                                 goto call_end;
9271                         }
9272
9273                         ins = mini_redirect_call (cfg, cmethod, fsig, sp, virtual_ ? sp [0] : NULL);
9274                         if (ins)
9275                                 goto call_end;
9276
9277                         /* Tail prefix / tail call optimization */
9278
9279                         /* FIXME: Enabling TAILC breaks some inlining/stack trace/etc tests */
9280                         /* FIXME: runtime generic context pointer for jumps? */
9281                         /* FIXME: handle this for generic sharing eventually */
9282                         if ((ins_flag & MONO_INST_TAILCALL) &&
9283                                 !vtable_arg && !cfg->gshared && is_supported_tail_call (cfg, method, cmethod, fsig, call_opcode))
9284                                 supported_tail_call = TRUE;
9285
9286                         if (supported_tail_call) {
9287                                 MonoCallInst *call;
9288
9289                                 /* Prevent inlining of methods with tail calls (the call stack would be altered) */
9290                                 INLINE_FAILURE ("tail call");
9291
9292                                 //printf ("HIT: %s -> %s\n", mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
9293
9294                                 if (cfg->backend->have_op_tail_call) {
9295                                         /* Handle tail calls similarly to normal calls */
9296                                         tail_call = TRUE;
9297                                 } else {
9298                                         emit_instrumentation_call (cfg, mono_profiler_method_leave);
9299
9300                                         MONO_INST_NEW_CALL (cfg, call, OP_JMP);
9301                                         call->tail_call = TRUE;
9302                                         call->method = cmethod;
9303                                         call->signature = mono_method_signature (cmethod);
9304
9305                                         /*
9306                                          * We implement tail calls by storing the actual arguments into the 
9307                                          * argument variables, then emitting a CEE_JMP.
9308                                          */
9309                                         for (i = 0; i < n; ++i) {
9310                                                 /* Prevent argument from being register allocated */
9311                                                 arg_array [i]->flags |= MONO_INST_VOLATILE;
9312                                                 EMIT_NEW_ARGSTORE (cfg, ins, i, sp [i]);
9313                                         }
9314                                         ins = (MonoInst*)call;
9315                                         ins->inst_p0 = cmethod;
9316                                         ins->inst_p1 = arg_array [0];
9317                                         MONO_ADD_INS (cfg->cbb, ins);
9318                                         link_bblock (cfg, cfg->cbb, end_bblock);
9319                                         start_new_bblock = 1;
9320
9321                                         // FIXME: Eliminate unreachable epilogs
9322
9323                                         /*
9324                                          * OP_TAILCALL has no return value, so skip the CEE_RET if it is
9325                                          * only reachable from this call.
9326                                          */
9327                                         GET_BBLOCK (cfg, tblock, ip + 5);
9328                                         if (tblock == cfg->cbb || tblock->in_count == 0)
9329                                                 skip_ret = TRUE;
9330                                         push_res = FALSE;
9331
9332                                         goto call_end;
9333                                 }
9334                         }
9335
9336                         /*
9337                          * Virtual calls in llvm-only mode.
9338                          */
9339                         if (cfg->llvm_only && virtual_ && cmethod && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
9340                                 ins = emit_llvmonly_virtual_call (cfg, cmethod, fsig, context_used, sp);
9341                                 goto call_end;
9342                         }
9343
9344                         /* Common call */
9345                         if (!(cmethod->iflags & METHOD_IMPL_ATTRIBUTE_AGGRESSIVE_INLINING))
9346                                 INLINE_FAILURE ("call");
9347                         ins = mono_emit_method_call_full (cfg, cmethod, fsig, tail_call, sp, virtual_ ? sp [0] : NULL,
9348                                                                                           imt_arg, vtable_arg);
9349
9350                         if (tail_call && !cfg->llvm_only) {
9351                                 link_bblock (cfg, cfg->cbb, end_bblock);
9352                                 start_new_bblock = 1;
9353
9354                                 // FIXME: Eliminate unreachable epilogs
9355
9356                                 /*
9357                                  * OP_TAILCALL has no return value, so skip the CEE_RET if it is
9358                                  * only reachable from this call.
9359                                  */
9360                                 GET_BBLOCK (cfg, tblock, ip + 5);
9361                                 if (tblock == cfg->cbb || tblock->in_count == 0)
9362                                         skip_ret = TRUE;
9363                                 push_res = FALSE;
9364                         }
9365
9366                         call_end:
9367
9368                         /* End of call, INS should contain the result of the call, if any */
9369
9370                         if (push_res && !MONO_TYPE_IS_VOID (fsig->ret)) {
9371                                 g_assert (ins);
9372                                 if (emit_widen)
9373                                         *sp++ = mono_emit_widen_call_res (cfg, ins, fsig);
9374                                 else
9375                                         *sp++ = ins;
9376                         }
9377
9378                         if (keep_this_alive) {
9379                                 MonoInst *dummy_use;
9380
9381                                 /* See mono_emit_method_call_full () */
9382                                 EMIT_NEW_DUMMY_USE (cfg, dummy_use, keep_this_alive);
9383                         }
9384
9385                         if (cfg->llvm_only && cmethod && method_needs_stack_walk (cfg, cmethod)) {
9386                                 /*
9387                                  * Clang can convert these calls to tail calls which screw up the stack
9388                                  * walk. This happens even when the -fno-optimize-sibling-calls
9389                                  * option is passed to clang.
9390                                  * Work around this by emitting a dummy call.
9391                                  */
9392                                 mono_emit_jit_icall (cfg, mono_dummy_jit_icall, NULL);
9393                         }
9394
9395                         CHECK_CFG_EXCEPTION;
9396
9397                         ip += 5;
9398                         if (skip_ret) {
9399                                 g_assert (*ip == CEE_RET);
9400                                 ip += 1;
9401                         }
9402                         ins_flag = 0;
9403                         constrained_class = NULL;
9404                         if (need_seq_point)
9405                                 emit_seq_point (cfg, method, ip, FALSE, TRUE);
9406                         break;
9407                 }
9408                 case CEE_RET:
9409                         if (cfg->method != method) {
9410                                 /* return from inlined method */
9411                                 /* 
9412                                  * If in_count == 0, that means the ret is unreachable due to
9413                                  * being preceeded by a throw. In that case, inline_method () will
9414                                  * handle setting the return value 
9415                                  * (test case: test_0_inline_throw ()).
9416                                  */
9417                                 if (return_var && cfg->cbb->in_count) {
9418                                         MonoType *ret_type = mono_method_signature (method)->ret;
9419
9420                                         MonoInst *store;
9421                                         CHECK_STACK (1);
9422                                         --sp;
9423
9424                                         if ((method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD || method->wrapper_type == MONO_WRAPPER_NONE) && target_type_is_incompatible (cfg, ret_type, *sp))
9425                                                 UNVERIFIED;
9426
9427                                         //g_assert (returnvar != -1);
9428                                         EMIT_NEW_TEMPSTORE (cfg, store, return_var->inst_c0, *sp);
9429                                         cfg->ret_var_set = TRUE;
9430                                 } 
9431                         } else {
9432                                 emit_instrumentation_call (cfg, mono_profiler_method_leave);
9433
9434                                 if (cfg->lmf_var && cfg->cbb->in_count && !cfg->llvm_only)
9435                                         emit_pop_lmf (cfg);
9436
9437                                 if (cfg->ret) {
9438                                         MonoType *ret_type = mini_get_underlying_type (mono_method_signature (method)->ret);
9439
9440                                         if (seq_points && !sym_seq_points) {
9441                                                 /* 
9442                                                  * Place a seq point here too even through the IL stack is not
9443                                                  * empty, so a step over on
9444                                                  * call <FOO>
9445                                                  * ret
9446                                                  * will work correctly.
9447                                                  */
9448                                                 NEW_SEQ_POINT (cfg, ins, ip - header->code, TRUE);
9449                                                 MONO_ADD_INS (cfg->cbb, ins);
9450                                         }
9451
9452                                         g_assert (!return_var);
9453                                         CHECK_STACK (1);
9454                                         --sp;
9455
9456                                         if ((method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD || method->wrapper_type == MONO_WRAPPER_NONE) && target_type_is_incompatible (cfg, ret_type, *sp))
9457                                                 UNVERIFIED;
9458
9459                                         emit_setret (cfg, *sp);
9460                                 }
9461                         }
9462                         if (sp != stack_start)
9463                                 UNVERIFIED;
9464                         MONO_INST_NEW (cfg, ins, OP_BR);
9465                         ip++;
9466                         ins->inst_target_bb = end_bblock;
9467                         MONO_ADD_INS (cfg->cbb, ins);
9468                         link_bblock (cfg, cfg->cbb, end_bblock);
9469                         start_new_bblock = 1;
9470                         break;
9471                 case CEE_BR_S:
9472                         CHECK_OPSIZE (2);
9473                         MONO_INST_NEW (cfg, ins, OP_BR);
9474                         ip++;
9475                         target = ip + 1 + (signed char)(*ip);
9476                         ++ip;
9477                         GET_BBLOCK (cfg, tblock, target);
9478                         link_bblock (cfg, cfg->cbb, tblock);
9479                         ins->inst_target_bb = tblock;
9480                         if (sp != stack_start) {
9481                                 handle_stack_args (cfg, stack_start, sp - stack_start);
9482                                 sp = stack_start;
9483                                 CHECK_UNVERIFIABLE (cfg);
9484                         }
9485                         MONO_ADD_INS (cfg->cbb, ins);
9486                         start_new_bblock = 1;
9487                         inline_costs += BRANCH_COST;
9488                         break;
9489                 case CEE_BEQ_S:
9490                 case CEE_BGE_S:
9491                 case CEE_BGT_S:
9492                 case CEE_BLE_S:
9493                 case CEE_BLT_S:
9494                 case CEE_BNE_UN_S:
9495                 case CEE_BGE_UN_S:
9496                 case CEE_BGT_UN_S:
9497                 case CEE_BLE_UN_S:
9498                 case CEE_BLT_UN_S:
9499                         CHECK_OPSIZE (2);
9500                         CHECK_STACK (2);
9501                         MONO_INST_NEW (cfg, ins, *ip + BIG_BRANCH_OFFSET);
9502                         ip++;
9503                         target = ip + 1 + *(signed char*)ip;
9504                         ip++;
9505
9506                         ADD_BINCOND (NULL);
9507
9508                         sp = stack_start;
9509                         inline_costs += BRANCH_COST;
9510                         break;
9511                 case CEE_BR:
9512                         CHECK_OPSIZE (5);
9513                         MONO_INST_NEW (cfg, ins, OP_BR);
9514                         ip++;
9515
9516                         target = ip + 4 + (gint32)read32(ip);
9517                         ip += 4;
9518                         GET_BBLOCK (cfg, tblock, target);
9519                         link_bblock (cfg, cfg->cbb, tblock);
9520                         ins->inst_target_bb = tblock;
9521                         if (sp != stack_start) {
9522                                 handle_stack_args (cfg, stack_start, sp - stack_start);
9523                                 sp = stack_start;
9524                                 CHECK_UNVERIFIABLE (cfg);
9525                         }
9526
9527                         MONO_ADD_INS (cfg->cbb, ins);
9528
9529                         start_new_bblock = 1;
9530                         inline_costs += BRANCH_COST;
9531                         break;
9532                 case CEE_BRFALSE_S:
9533                 case CEE_BRTRUE_S:
9534                 case CEE_BRFALSE:
9535                 case CEE_BRTRUE: {
9536                         MonoInst *cmp;
9537                         gboolean is_short = ((*ip) == CEE_BRFALSE_S) || ((*ip) == CEE_BRTRUE_S);
9538                         gboolean is_true = ((*ip) == CEE_BRTRUE_S) || ((*ip) == CEE_BRTRUE);
9539                         guint32 opsize = is_short ? 1 : 4;
9540
9541                         CHECK_OPSIZE (opsize);
9542                         CHECK_STACK (1);
9543                         if (sp [-1]->type == STACK_VTYPE || sp [-1]->type == STACK_R8)
9544                                 UNVERIFIED;
9545                         ip ++;
9546                         target = ip + opsize + (is_short ? *(signed char*)ip : (gint32)read32(ip));
9547                         ip += opsize;
9548
9549                         sp--;
9550
9551                         GET_BBLOCK (cfg, tblock, target);
9552                         link_bblock (cfg, cfg->cbb, tblock);
9553                         GET_BBLOCK (cfg, tblock, ip);
9554                         link_bblock (cfg, cfg->cbb, tblock);
9555
9556                         if (sp != stack_start) {
9557                                 handle_stack_args (cfg, stack_start, sp - stack_start);
9558                                 CHECK_UNVERIFIABLE (cfg);
9559                         }
9560
9561                         MONO_INST_NEW(cfg, cmp, OP_ICOMPARE_IMM);
9562                         cmp->sreg1 = sp [0]->dreg;
9563                         type_from_op (cfg, cmp, sp [0], NULL);
9564                         CHECK_TYPE (cmp);
9565
9566 #if SIZEOF_REGISTER == 4
9567                         if (cmp->opcode == OP_LCOMPARE_IMM) {
9568                                 /* Convert it to OP_LCOMPARE */
9569                                 MONO_INST_NEW (cfg, ins, OP_I8CONST);
9570                                 ins->type = STACK_I8;
9571                                 ins->dreg = alloc_dreg (cfg, STACK_I8);
9572                                 ins->inst_l = 0;
9573                                 MONO_ADD_INS (cfg->cbb, ins);
9574                                 cmp->opcode = OP_LCOMPARE;
9575                                 cmp->sreg2 = ins->dreg;
9576                         }
9577 #endif
9578                         MONO_ADD_INS (cfg->cbb, cmp);
9579
9580                         MONO_INST_NEW (cfg, ins, is_true ? CEE_BNE_UN : CEE_BEQ);
9581                         type_from_op (cfg, ins, sp [0], NULL);
9582                         MONO_ADD_INS (cfg->cbb, ins);
9583                         ins->inst_many_bb = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);
9584                         GET_BBLOCK (cfg, tblock, target);
9585                         ins->inst_true_bb = tblock;
9586                         GET_BBLOCK (cfg, tblock, ip);
9587                         ins->inst_false_bb = tblock;
9588                         start_new_bblock = 2;
9589
9590                         sp = stack_start;
9591                         inline_costs += BRANCH_COST;
9592                         break;
9593                 }
9594                 case CEE_BEQ:
9595                 case CEE_BGE:
9596                 case CEE_BGT:
9597                 case CEE_BLE:
9598                 case CEE_BLT:
9599                 case CEE_BNE_UN:
9600                 case CEE_BGE_UN:
9601                 case CEE_BGT_UN:
9602                 case CEE_BLE_UN:
9603                 case CEE_BLT_UN:
9604                         CHECK_OPSIZE (5);
9605                         CHECK_STACK (2);
9606                         MONO_INST_NEW (cfg, ins, *ip);
9607                         ip++;
9608                         target = ip + 4 + (gint32)read32(ip);
9609                         ip += 4;
9610
9611                         ADD_BINCOND (NULL);
9612
9613                         sp = stack_start;
9614                         inline_costs += BRANCH_COST;
9615                         break;
9616                 case CEE_SWITCH: {
9617                         MonoInst *src1;
9618                         MonoBasicBlock **targets;
9619                         MonoBasicBlock *default_bblock;
9620                         MonoJumpInfoBBTable *table;
9621                         int offset_reg = alloc_preg (cfg);
9622                         int target_reg = alloc_preg (cfg);
9623                         int table_reg = alloc_preg (cfg);
9624                         int sum_reg = alloc_preg (cfg);
9625                         gboolean use_op_switch;
9626
9627                         CHECK_OPSIZE (5);
9628                         CHECK_STACK (1);
9629                         n = read32 (ip + 1);
9630                         --sp;
9631                         src1 = sp [0];
9632                         if ((src1->type != STACK_I4) && (src1->type != STACK_PTR)) 
9633                                 UNVERIFIED;
9634
9635                         ip += 5;
9636                         CHECK_OPSIZE (n * sizeof (guint32));
9637                         target = ip + n * sizeof (guint32);
9638
9639                         GET_BBLOCK (cfg, default_bblock, target);
9640                         default_bblock->flags |= BB_INDIRECT_JUMP_TARGET;
9641
9642                         targets = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof (MonoBasicBlock*) * n);
9643                         for (i = 0; i < n; ++i) {
9644                                 GET_BBLOCK (cfg, tblock, target + (gint32)read32(ip));
9645                                 targets [i] = tblock;
9646                                 targets [i]->flags |= BB_INDIRECT_JUMP_TARGET;
9647                                 ip += 4;
9648                         }
9649
9650                         if (sp != stack_start) {
9651                                 /* 
9652                                  * Link the current bb with the targets as well, so handle_stack_args
9653                                  * will set their in_stack correctly.
9654                                  */
9655                                 link_bblock (cfg, cfg->cbb, default_bblock);
9656                                 for (i = 0; i < n; ++i)
9657                                         link_bblock (cfg, cfg->cbb, targets [i]);
9658
9659                                 handle_stack_args (cfg, stack_start, sp - stack_start);
9660                                 sp = stack_start;
9661                                 CHECK_UNVERIFIABLE (cfg);
9662
9663                                 /* Undo the links */
9664                                 mono_unlink_bblock (cfg, cfg->cbb, default_bblock);
9665                                 for (i = 0; i < n; ++i)
9666                                         mono_unlink_bblock (cfg, cfg->cbb, targets [i]);
9667                         }
9668
9669                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ICOMPARE_IMM, -1, src1->dreg, n);
9670                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBGE_UN, default_bblock);
9671
9672                         for (i = 0; i < n; ++i)
9673                                 link_bblock (cfg, cfg->cbb, targets [i]);
9674
9675                         table = (MonoJumpInfoBBTable *)mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfoBBTable));
9676                         table->table = targets;
9677                         table->table_size = n;
9678
9679                         use_op_switch = FALSE;
9680 #ifdef TARGET_ARM
9681                         /* ARM implements SWITCH statements differently */
9682                         /* FIXME: Make it use the generic implementation */
9683                         if (!cfg->compile_aot)
9684                                 use_op_switch = TRUE;
9685 #endif
9686
9687                         if (COMPILE_LLVM (cfg))
9688                                 use_op_switch = TRUE;
9689
9690                         cfg->cbb->has_jump_table = 1;
9691
9692                         if (use_op_switch) {
9693                                 MONO_INST_NEW (cfg, ins, OP_SWITCH);
9694                                 ins->sreg1 = src1->dreg;
9695                                 ins->inst_p0 = table;
9696                                 ins->inst_many_bb = targets;
9697                                 ins->klass = (MonoClass *)GUINT_TO_POINTER (n);
9698                                 MONO_ADD_INS (cfg->cbb, ins);
9699                         } else {
9700                                 if (sizeof (gpointer) == 8)
9701                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, offset_reg, src1->dreg, 3);
9702                                 else
9703                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, offset_reg, src1->dreg, 2);
9704
9705 #if SIZEOF_REGISTER == 8
9706                                 /* The upper word might not be zero, and we add it to a 64 bit address later */
9707                                 MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, offset_reg, offset_reg);
9708 #endif
9709
9710                                 if (cfg->compile_aot) {
9711                                         MONO_EMIT_NEW_AOTCONST (cfg, table_reg, table, MONO_PATCH_INFO_SWITCH);
9712                                 } else {
9713                                         MONO_INST_NEW (cfg, ins, OP_JUMP_TABLE);
9714                                         ins->inst_c1 = MONO_PATCH_INFO_SWITCH;
9715                                         ins->inst_p0 = table;
9716                                         ins->dreg = table_reg;
9717                                         MONO_ADD_INS (cfg->cbb, ins);
9718                                 }
9719
9720                                 /* FIXME: Use load_memindex */
9721                                 MONO_EMIT_NEW_BIALU (cfg, OP_PADD, sum_reg, table_reg, offset_reg);
9722                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, target_reg, sum_reg, 0);
9723                                 MONO_EMIT_NEW_UNALU (cfg, OP_BR_REG, -1, target_reg);
9724                         }
9725                         start_new_bblock = 1;
9726                         inline_costs += (BRANCH_COST * 2);
9727                         break;
9728                 }
9729                 case CEE_LDIND_I1:
9730                 case CEE_LDIND_U1:
9731                 case CEE_LDIND_I2:
9732                 case CEE_LDIND_U2:
9733                 case CEE_LDIND_I4:
9734                 case CEE_LDIND_U4:
9735                 case CEE_LDIND_I8:
9736                 case CEE_LDIND_I:
9737                 case CEE_LDIND_R4:
9738                 case CEE_LDIND_R8:
9739                 case CEE_LDIND_REF:
9740                         CHECK_STACK (1);
9741                         --sp;
9742
9743                         switch (*ip) {
9744                         case CEE_LDIND_R4:
9745                         case CEE_LDIND_R8:
9746                                 dreg = alloc_freg (cfg);
9747                                 break;
9748                         case CEE_LDIND_I8:
9749                                 dreg = alloc_lreg (cfg);
9750                                 break;
9751                         case CEE_LDIND_REF:
9752                                 dreg = alloc_ireg_ref (cfg);
9753                                 break;
9754                         default:
9755                                 dreg = alloc_preg (cfg);
9756                         }
9757
9758                         NEW_LOAD_MEMBASE (cfg, ins, ldind_to_load_membase (*ip), dreg, sp [0]->dreg, 0);
9759                         ins->type = ldind_type [*ip - CEE_LDIND_I1];
9760                         if (*ip == CEE_LDIND_R4)
9761                                 ins->type = cfg->r4_stack_type;
9762                         ins->flags |= ins_flag;
9763                         MONO_ADD_INS (cfg->cbb, ins);
9764                         *sp++ = ins;
9765                         if (ins_flag & MONO_INST_VOLATILE) {
9766                                 /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
9767                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
9768                         }
9769                         ins_flag = 0;
9770                         ++ip;
9771                         break;
9772                 case CEE_STIND_REF:
9773                 case CEE_STIND_I1:
9774                 case CEE_STIND_I2:
9775                 case CEE_STIND_I4:
9776                 case CEE_STIND_I8:
9777                 case CEE_STIND_R4:
9778                 case CEE_STIND_R8:
9779                 case CEE_STIND_I:
9780                         CHECK_STACK (2);
9781                         sp -= 2;
9782
9783                         if (ins_flag & MONO_INST_VOLATILE) {
9784                                 /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
9785                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
9786                         }
9787
9788                         NEW_STORE_MEMBASE (cfg, ins, stind_to_store_membase (*ip), sp [0]->dreg, 0, sp [1]->dreg);
9789                         ins->flags |= ins_flag;
9790                         ins_flag = 0;
9791
9792                         MONO_ADD_INS (cfg->cbb, ins);
9793
9794                         if (cfg->gen_write_barriers && *ip == CEE_STIND_REF && method->wrapper_type != MONO_WRAPPER_WRITE_BARRIER && !MONO_INS_IS_PCONST_NULL (sp [1]))
9795                                 emit_write_barrier (cfg, sp [0], sp [1]);
9796
9797                         inline_costs += 1;
9798                         ++ip;
9799                         break;
9800
9801                 case CEE_MUL:
9802                         CHECK_STACK (2);
9803
9804                         MONO_INST_NEW (cfg, ins, (*ip));
9805                         sp -= 2;
9806                         ins->sreg1 = sp [0]->dreg;
9807                         ins->sreg2 = sp [1]->dreg;
9808                         type_from_op (cfg, ins, sp [0], sp [1]);
9809                         CHECK_TYPE (ins);
9810                         ins->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type);
9811
9812                         /* Use the immediate opcodes if possible */
9813                         if ((sp [1]->opcode == OP_ICONST) && mono_arch_is_inst_imm (sp [1]->inst_c0)) {
9814                                 int imm_opcode = mono_op_to_op_imm_noemul (ins->opcode);
9815                                 if (imm_opcode != -1) {
9816                                         ins->opcode = imm_opcode;
9817                                         ins->inst_p1 = (gpointer)(gssize)(sp [1]->inst_c0);
9818                                         ins->sreg2 = -1;
9819
9820                                         NULLIFY_INS (sp [1]);
9821                                 }
9822                         }
9823
9824                         MONO_ADD_INS ((cfg)->cbb, (ins));
9825
9826                         *sp++ = mono_decompose_opcode (cfg, ins);
9827                         ip++;
9828                         break;
9829                 case CEE_ADD:
9830                 case CEE_SUB:
9831                 case CEE_DIV:
9832                 case CEE_DIV_UN:
9833                 case CEE_REM:
9834                 case CEE_REM_UN:
9835                 case CEE_AND:
9836                 case CEE_OR:
9837                 case CEE_XOR:
9838                 case CEE_SHL:
9839                 case CEE_SHR:
9840                 case CEE_SHR_UN:
9841                         CHECK_STACK (2);
9842
9843                         MONO_INST_NEW (cfg, ins, (*ip));
9844                         sp -= 2;
9845                         ins->sreg1 = sp [0]->dreg;
9846                         ins->sreg2 = sp [1]->dreg;
9847                         type_from_op (cfg, ins, sp [0], sp [1]);
9848                         CHECK_TYPE (ins);
9849                         add_widen_op (cfg, ins, &sp [0], &sp [1]);
9850                         ins->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type);
9851
9852                         /* FIXME: Pass opcode to is_inst_imm */
9853
9854                         /* Use the immediate opcodes if possible */
9855                         if (((sp [1]->opcode == OP_ICONST) || (sp [1]->opcode == OP_I8CONST)) && mono_arch_is_inst_imm (sp [1]->opcode == OP_ICONST ? sp [1]->inst_c0 : sp [1]->inst_l)) {
9856                                 int imm_opcode = mono_op_to_op_imm_noemul (ins->opcode);
9857                                 if (imm_opcode != -1) {
9858                                         ins->opcode = imm_opcode;
9859                                         if (sp [1]->opcode == OP_I8CONST) {
9860 #if SIZEOF_REGISTER == 8
9861                                                 ins->inst_imm = sp [1]->inst_l;
9862 #else
9863                                                 ins->inst_ls_word = sp [1]->inst_ls_word;
9864                                                 ins->inst_ms_word = sp [1]->inst_ms_word;
9865 #endif
9866                                         }
9867                                         else
9868                                                 ins->inst_imm = (gssize)(sp [1]->inst_c0);
9869                                         ins->sreg2 = -1;
9870
9871                                         /* Might be followed by an instruction added by add_widen_op */
9872                                         if (sp [1]->next == NULL)
9873                                                 NULLIFY_INS (sp [1]);
9874                                 }
9875                         }
9876                         MONO_ADD_INS ((cfg)->cbb, (ins));
9877
9878                         *sp++ = mono_decompose_opcode (cfg, ins);
9879                         ip++;
9880                         break;
9881                 case CEE_NEG:
9882                 case CEE_NOT:
9883                 case CEE_CONV_I1:
9884                 case CEE_CONV_I2:
9885                 case CEE_CONV_I4:
9886                 case CEE_CONV_R4:
9887                 case CEE_CONV_R8:
9888                 case CEE_CONV_U4:
9889                 case CEE_CONV_I8:
9890                 case CEE_CONV_U8:
9891                 case CEE_CONV_OVF_I8:
9892                 case CEE_CONV_OVF_U8:
9893                 case CEE_CONV_R_UN:
9894                         CHECK_STACK (1);
9895
9896                         /* Special case this earlier so we have long constants in the IR */
9897                         if ((((*ip) == CEE_CONV_I8) || ((*ip) == CEE_CONV_U8)) && (sp [-1]->opcode == OP_ICONST)) {
9898                                 int data = sp [-1]->inst_c0;
9899                                 sp [-1]->opcode = OP_I8CONST;
9900                                 sp [-1]->type = STACK_I8;
9901 #if SIZEOF_REGISTER == 8
9902                                 if ((*ip) == CEE_CONV_U8)
9903                                         sp [-1]->inst_c0 = (guint32)data;
9904                                 else
9905                                         sp [-1]->inst_c0 = data;
9906 #else
9907                                 sp [-1]->inst_ls_word = data;
9908                                 if ((*ip) == CEE_CONV_U8)
9909                                         sp [-1]->inst_ms_word = 0;
9910                                 else
9911                                         sp [-1]->inst_ms_word = (data < 0) ? -1 : 0;
9912 #endif
9913                                 sp [-1]->dreg = alloc_dreg (cfg, STACK_I8);
9914                         }
9915                         else {
9916                                 ADD_UNOP (*ip);
9917                         }
9918                         ip++;
9919                         break;
9920                 case CEE_CONV_OVF_I4:
9921                 case CEE_CONV_OVF_I1:
9922                 case CEE_CONV_OVF_I2:
9923                 case CEE_CONV_OVF_I:
9924                 case CEE_CONV_OVF_U:
9925                         CHECK_STACK (1);
9926
9927                         if (sp [-1]->type == STACK_R8 || sp [-1]->type == STACK_R4) {
9928                                 ADD_UNOP (CEE_CONV_OVF_I8);
9929                                 ADD_UNOP (*ip);
9930                         } else {
9931                                 ADD_UNOP (*ip);
9932                         }
9933                         ip++;
9934                         break;
9935                 case CEE_CONV_OVF_U1:
9936                 case CEE_CONV_OVF_U2:
9937                 case CEE_CONV_OVF_U4:
9938                         CHECK_STACK (1);
9939
9940                         if (sp [-1]->type == STACK_R8 || sp [-1]->type == STACK_R4) {
9941                                 ADD_UNOP (CEE_CONV_OVF_U8);
9942                                 ADD_UNOP (*ip);
9943                         } else {
9944                                 ADD_UNOP (*ip);
9945                         }
9946                         ip++;
9947                         break;
9948                 case CEE_CONV_OVF_I1_UN:
9949                 case CEE_CONV_OVF_I2_UN:
9950                 case CEE_CONV_OVF_I4_UN:
9951                 case CEE_CONV_OVF_I8_UN:
9952                 case CEE_CONV_OVF_U1_UN:
9953                 case CEE_CONV_OVF_U2_UN:
9954                 case CEE_CONV_OVF_U4_UN:
9955                 case CEE_CONV_OVF_U8_UN:
9956                 case CEE_CONV_OVF_I_UN:
9957                 case CEE_CONV_OVF_U_UN:
9958                 case CEE_CONV_U2:
9959                 case CEE_CONV_U1:
9960                 case CEE_CONV_I:
9961                 case CEE_CONV_U:
9962                         CHECK_STACK (1);
9963                         ADD_UNOP (*ip);
9964                         CHECK_CFG_EXCEPTION;
9965                         ip++;
9966                         break;
9967                 case CEE_ADD_OVF:
9968                 case CEE_ADD_OVF_UN:
9969                 case CEE_MUL_OVF:
9970                 case CEE_MUL_OVF_UN:
9971                 case CEE_SUB_OVF:
9972                 case CEE_SUB_OVF_UN:
9973                         CHECK_STACK (2);
9974                         ADD_BINOP (*ip);
9975                         ip++;
9976                         break;
9977                 case CEE_CPOBJ:
9978                         GSHAREDVT_FAILURE (*ip);
9979                         CHECK_OPSIZE (5);
9980                         CHECK_STACK (2);
9981                         token = read32 (ip + 1);
9982                         klass = mini_get_class (method, token, generic_context);
9983                         CHECK_TYPELOAD (klass);
9984                         sp -= 2;
9985                         if (generic_class_is_reference_type (cfg, klass)) {
9986                                 MonoInst *store, *load;
9987                                 int dreg = alloc_ireg_ref (cfg);
9988
9989                                 NEW_LOAD_MEMBASE (cfg, load, OP_LOAD_MEMBASE, dreg, sp [1]->dreg, 0);
9990                                 load->flags |= ins_flag;
9991                                 MONO_ADD_INS (cfg->cbb, load);
9992
9993                                 NEW_STORE_MEMBASE (cfg, store, OP_STORE_MEMBASE_REG, sp [0]->dreg, 0, dreg);
9994                                 store->flags |= ins_flag;
9995                                 MONO_ADD_INS (cfg->cbb, store);
9996
9997                                 if (cfg->gen_write_barriers && cfg->method->wrapper_type != MONO_WRAPPER_WRITE_BARRIER)
9998                                         emit_write_barrier (cfg, sp [0], sp [1]);
9999                         } else {
10000                                 mini_emit_stobj (cfg, sp [0], sp [1], klass, FALSE);
10001                         }
10002                         ins_flag = 0;
10003                         ip += 5;
10004                         break;
10005                 case CEE_LDOBJ: {
10006                         int loc_index = -1;
10007                         int stloc_len = 0;
10008
10009                         CHECK_OPSIZE (5);
10010                         CHECK_STACK (1);
10011                         --sp;
10012                         token = read32 (ip + 1);
10013                         klass = mini_get_class (method, token, generic_context);
10014                         CHECK_TYPELOAD (klass);
10015
10016                         /* Optimize the common ldobj+stloc combination */
10017                         switch (ip [5]) {
10018                         case CEE_STLOC_S:
10019                                 loc_index = ip [6];
10020                                 stloc_len = 2;
10021                                 break;
10022                         case CEE_STLOC_0:
10023                         case CEE_STLOC_1:
10024                         case CEE_STLOC_2:
10025                         case CEE_STLOC_3:
10026                                 loc_index = ip [5] - CEE_STLOC_0;
10027                                 stloc_len = 1;
10028                                 break;
10029                         default:
10030                                 break;
10031                         }
10032
10033                         if ((loc_index != -1) && ip_in_bb (cfg, cfg->cbb, ip + 5)) {
10034                                 CHECK_LOCAL (loc_index);
10035
10036                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, sp [0]->dreg, 0);
10037                                 ins->dreg = cfg->locals [loc_index]->dreg;
10038                                 ins->flags |= ins_flag;
10039                                 ip += 5;
10040                                 ip += stloc_len;
10041                                 if (ins_flag & MONO_INST_VOLATILE) {
10042                                         /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
10043                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
10044                                 }
10045                                 ins_flag = 0;
10046                                 break;
10047                         }
10048
10049                         /* Optimize the ldobj+stobj combination */
10050                         /* The reference case ends up being a load+store anyway */
10051                         /* Skip this if the operation is volatile. */
10052                         if (((ip [5] == CEE_STOBJ) && ip_in_bb (cfg, cfg->cbb, ip + 5) && read32 (ip + 6) == token) && !generic_class_is_reference_type (cfg, klass) && !(ins_flag & MONO_INST_VOLATILE)) {
10053                                 CHECK_STACK (1);
10054
10055                                 sp --;
10056
10057                                 mini_emit_stobj (cfg, sp [0], sp [1], klass, FALSE);
10058
10059                                 ip += 5 + 5;
10060                                 ins_flag = 0;
10061                                 break;
10062                         }
10063
10064                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, sp [0]->dreg, 0);
10065                         ins->flags |= ins_flag;
10066                         *sp++ = ins;
10067
10068                         if (ins_flag & MONO_INST_VOLATILE) {
10069                                 /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
10070                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
10071                         }
10072
10073                         ip += 5;
10074                         ins_flag = 0;
10075                         inline_costs += 1;
10076                         break;
10077                 }
10078                 case CEE_LDSTR:
10079                         CHECK_STACK_OVF (1);
10080                         CHECK_OPSIZE (5);
10081                         n = read32 (ip + 1);
10082
10083                         if (method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD) {
10084                                 EMIT_NEW_PCONST (cfg, ins, mono_method_get_wrapper_data (method, n));
10085                                 ins->type = STACK_OBJ;
10086                                 *sp = ins;
10087                         }
10088                         else if (method->wrapper_type != MONO_WRAPPER_NONE) {
10089                                 MonoInst *iargs [1];
10090                                 char *str = (char *)mono_method_get_wrapper_data (method, n);
10091
10092                                 if (cfg->compile_aot)
10093                                         EMIT_NEW_LDSTRLITCONST (cfg, iargs [0], str);
10094                                 else
10095                                         EMIT_NEW_PCONST (cfg, iargs [0], str);
10096                                 *sp = mono_emit_jit_icall (cfg, mono_string_new_wrapper, iargs);
10097                         } else {
10098                                 if (cfg->opt & MONO_OPT_SHARED) {
10099                                         MonoInst *iargs [3];
10100
10101                                         if (cfg->compile_aot) {
10102                                                 cfg->ldstr_list = g_list_prepend (cfg->ldstr_list, GINT_TO_POINTER (n));
10103                                         }
10104                                         EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
10105                                         EMIT_NEW_IMAGECONST (cfg, iargs [1], image);
10106                                         EMIT_NEW_ICONST (cfg, iargs [2], mono_metadata_token_index (n));
10107                                         *sp = mono_emit_jit_icall (cfg, ves_icall_mono_ldstr, iargs);
10108                                         mono_ldstr_checked (cfg->domain, image, mono_metadata_token_index (n), &cfg->error);
10109                                         CHECK_CFG_ERROR;
10110                                 } else {
10111                                         if (cfg->cbb->out_of_line) {
10112                                                 MonoInst *iargs [2];
10113
10114                                                 if (image == mono_defaults.corlib) {
10115                                                         /* 
10116                                                          * Avoid relocations in AOT and save some space by using a 
10117                                                          * version of helper_ldstr specialized to mscorlib.
10118                                                          */
10119                                                         EMIT_NEW_ICONST (cfg, iargs [0], mono_metadata_token_index (n));
10120                                                         *sp = mono_emit_jit_icall (cfg, mono_helper_ldstr_mscorlib, iargs);
10121                                                 } else {
10122                                                         /* Avoid creating the string object */
10123                                                         EMIT_NEW_IMAGECONST (cfg, iargs [0], image);
10124                                                         EMIT_NEW_ICONST (cfg, iargs [1], mono_metadata_token_index (n));
10125                                                         *sp = mono_emit_jit_icall (cfg, mono_helper_ldstr, iargs);
10126                                                 }
10127                                         } 
10128                                         else
10129                                         if (cfg->compile_aot) {
10130                                                 NEW_LDSTRCONST (cfg, ins, image, n);
10131                                                 *sp = ins;
10132                                                 MONO_ADD_INS (cfg->cbb, ins);
10133                                         } 
10134                                         else {
10135                                                 NEW_PCONST (cfg, ins, NULL);
10136                                                 ins->type = STACK_OBJ;
10137                                                 ins->inst_p0 = mono_ldstr_checked (cfg->domain, image, mono_metadata_token_index (n), &cfg->error);
10138                                                 CHECK_CFG_ERROR;
10139                                                 
10140                                                 if (!ins->inst_p0)
10141                                                         OUT_OF_MEMORY_FAILURE;
10142
10143                                                 *sp = ins;
10144                                                 MONO_ADD_INS (cfg->cbb, ins);
10145                                         }
10146                                 }
10147                         }
10148
10149                         sp++;
10150                         ip += 5;
10151                         break;
10152                 case CEE_NEWOBJ: {
10153                         MonoInst *iargs [2];
10154                         MonoMethodSignature *fsig;
10155                         MonoInst this_ins;
10156                         MonoInst *alloc;
10157                         MonoInst *vtable_arg = NULL;
10158
10159                         CHECK_OPSIZE (5);
10160                         token = read32 (ip + 1);
10161                         cmethod = mini_get_method (cfg, method, token, NULL, generic_context);
10162                         CHECK_CFG_ERROR;
10163
10164                         fsig = mono_method_get_signature_checked (cmethod, image, token, generic_context, &cfg->error);
10165                         CHECK_CFG_ERROR;
10166
10167                         mono_save_token_info (cfg, image, token, cmethod);
10168
10169                         if (!mono_class_init (cmethod->klass))
10170                                 TYPE_LOAD_ERROR (cmethod->klass);
10171
10172                         context_used = mini_method_check_context_used (cfg, cmethod);
10173
10174                         if (mono_security_core_clr_enabled ())
10175                                 ensure_method_is_allowed_to_call_method (cfg, method, cmethod);
10176
10177                         if (cfg->gshared && cmethod && cmethod->klass != method->klass && mono_class_is_ginst (cmethod->klass) && mono_method_is_generic_sharable (cmethod, TRUE) && mono_class_needs_cctor_run (cmethod->klass, method)) {
10178                                 emit_class_init (cfg, cmethod->klass);
10179                                 CHECK_TYPELOAD (cmethod->klass);
10180                         }
10181
10182                         /*
10183                         if (cfg->gsharedvt) {
10184                                 if (mini_is_gsharedvt_variable_signature (sig))
10185                                         GSHAREDVT_FAILURE (*ip);
10186                         }
10187                         */
10188
10189                         n = fsig->param_count;
10190                         CHECK_STACK (n);
10191
10192                         /* 
10193                          * Generate smaller code for the common newobj <exception> instruction in
10194                          * argument checking code.
10195                          */
10196                         if (cfg->cbb->out_of_line && cmethod->klass->image == mono_defaults.corlib &&
10197                                 is_exception_class (cmethod->klass) && n <= 2 &&
10198                                 ((n < 1) || (!fsig->params [0]->byref && fsig->params [0]->type == MONO_TYPE_STRING)) && 
10199                                 ((n < 2) || (!fsig->params [1]->byref && fsig->params [1]->type == MONO_TYPE_STRING))) {
10200                                 MonoInst *iargs [3];
10201
10202                                 sp -= n;
10203
10204                                 EMIT_NEW_ICONST (cfg, iargs [0], cmethod->klass->type_token);
10205                                 switch (n) {
10206                                 case 0:
10207                                         *sp ++ = mono_emit_jit_icall (cfg, mono_create_corlib_exception_0, iargs);
10208                                         break;
10209                                 case 1:
10210                                         iargs [1] = sp [0];
10211                                         *sp ++ = mono_emit_jit_icall (cfg, mono_create_corlib_exception_1, iargs);
10212                                         break;
10213                                 case 2:
10214                                         iargs [1] = sp [0];
10215                                         iargs [2] = sp [1];
10216                                         *sp ++ = mono_emit_jit_icall (cfg, mono_create_corlib_exception_2, iargs);
10217                                         break;
10218                                 default:
10219                                         g_assert_not_reached ();
10220                                 }
10221
10222                                 ip += 5;
10223                                 inline_costs += 5;
10224                                 break;
10225                         }
10226
10227                         /* move the args to allow room for 'this' in the first position */
10228                         while (n--) {
10229                                 --sp;
10230                                 sp [1] = sp [0];
10231                         }
10232
10233                         /* check_call_signature () requires sp[0] to be set */
10234                         this_ins.type = STACK_OBJ;
10235                         sp [0] = &this_ins;
10236                         if (check_call_signature (cfg, fsig, sp))
10237                                 UNVERIFIED;
10238
10239                         iargs [0] = NULL;
10240
10241                         if (mini_class_is_system_array (cmethod->klass)) {
10242                                 *sp = emit_get_rgctx_method (cfg, context_used,
10243                                                                                          cmethod, MONO_RGCTX_INFO_METHOD);
10244
10245                                 /* Avoid varargs in the common case */
10246                                 if (fsig->param_count == 1)
10247                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_1, sp);
10248                                 else if (fsig->param_count == 2)
10249                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_2, sp);
10250                                 else if (fsig->param_count == 3)
10251                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_3, sp);
10252                                 else if (fsig->param_count == 4)
10253                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_4, sp);
10254                                 else
10255                                         alloc = handle_array_new (cfg, fsig->param_count, sp, ip);
10256                         } else if (cmethod->string_ctor) {
10257                                 g_assert (!context_used);
10258                                 g_assert (!vtable_arg);
10259                                 /* we simply pass a null pointer */
10260                                 EMIT_NEW_PCONST (cfg, *sp, NULL); 
10261                                 /* now call the string ctor */
10262                                 alloc = mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp, NULL, NULL, NULL);
10263                         } else {
10264                                 if (cmethod->klass->valuetype) {
10265                                         iargs [0] = mono_compile_create_var (cfg, &cmethod->klass->byval_arg, OP_LOCAL);
10266                                         emit_init_rvar (cfg, iargs [0]->dreg, &cmethod->klass->byval_arg);
10267                                         EMIT_NEW_TEMPLOADA (cfg, *sp, iargs [0]->inst_c0);
10268
10269                                         alloc = NULL;
10270
10271                                         /* 
10272                                          * The code generated by mini_emit_virtual_call () expects
10273                                          * iargs [0] to be a boxed instance, but luckily the vcall
10274                                          * will be transformed into a normal call there.
10275                                          */
10276                                 } else if (context_used) {
10277                                         alloc = handle_alloc (cfg, cmethod->klass, FALSE, context_used);
10278                                         *sp = alloc;
10279                                 } else {
10280                                         MonoVTable *vtable = NULL;
10281
10282                                         if (!cfg->compile_aot)
10283                                                 vtable = mono_class_vtable (cfg->domain, cmethod->klass);
10284                                         CHECK_TYPELOAD (cmethod->klass);
10285
10286                                         /*
10287                                          * TypeInitializationExceptions thrown from the mono_runtime_class_init
10288                                          * call in mono_jit_runtime_invoke () can abort the finalizer thread.
10289                                          * As a workaround, we call class cctors before allocating objects.
10290                                          */
10291                                         if (mini_field_access_needs_cctor_run (cfg, method, cmethod->klass, vtable) && !(g_slist_find (class_inits, cmethod->klass))) {
10292                                                 emit_class_init (cfg, cmethod->klass);
10293                                                 if (cfg->verbose_level > 2)
10294                                                         printf ("class %s.%s needs init call for ctor\n", cmethod->klass->name_space, cmethod->klass->name);
10295                                                 class_inits = g_slist_prepend (class_inits, cmethod->klass);
10296                                         }
10297
10298                                         alloc = handle_alloc (cfg, cmethod->klass, FALSE, 0);
10299                                         *sp = alloc;
10300                                 }
10301                                 CHECK_CFG_EXCEPTION; /*for handle_alloc*/
10302
10303                                 if (alloc)
10304                                         MONO_EMIT_NEW_UNALU (cfg, OP_NOT_NULL, -1, alloc->dreg);
10305
10306                                 /* Now call the actual ctor */
10307                                 handle_ctor_call (cfg, cmethod, fsig, context_used, sp, ip, &inline_costs);
10308                                 CHECK_CFG_EXCEPTION;
10309                         }
10310
10311                         if (alloc == NULL) {
10312                                 /* Valuetype */
10313                                 EMIT_NEW_TEMPLOAD (cfg, ins, iargs [0]->inst_c0);
10314                                 type_to_eval_stack_type (cfg, &ins->klass->byval_arg, ins);
10315                                 *sp++= ins;
10316                         } else {
10317                                 *sp++ = alloc;
10318                         }
10319                         
10320                         ip += 5;
10321                         inline_costs += 5;
10322                         if (!(seq_point_locs && mono_bitset_test_fast (seq_point_locs, ip - header->code)))
10323                                 emit_seq_point (cfg, method, ip, FALSE, TRUE);
10324                         break;
10325                 }
10326                 case CEE_CASTCLASS:
10327                 case CEE_ISINST: {
10328                         CHECK_STACK (1);
10329                         --sp;
10330                         CHECK_OPSIZE (5);
10331                         token = read32 (ip + 1);
10332                         klass = mini_get_class (method, token, generic_context);
10333                         CHECK_TYPELOAD (klass);
10334                         if (sp [0]->type != STACK_OBJ)
10335                                 UNVERIFIED;
10336
10337                         MONO_INST_NEW (cfg, ins, *ip == CEE_ISINST ? OP_ISINST : OP_CASTCLASS);
10338                         ins->dreg = alloc_preg (cfg);
10339                         ins->sreg1 = (*sp)->dreg;
10340                         ins->klass = klass;
10341                         ins->type = STACK_OBJ;
10342                         MONO_ADD_INS (cfg->cbb, ins);
10343
10344                         CHECK_CFG_EXCEPTION;
10345                         *sp++ = ins;
10346                         ip += 5;
10347
10348                         cfg->flags |= MONO_CFG_HAS_TYPE_CHECK;
10349                         break;
10350                 }
10351                 case CEE_UNBOX_ANY: {
10352                         MonoInst *res, *addr;
10353
10354                         CHECK_STACK (1);
10355                         --sp;
10356                         CHECK_OPSIZE (5);
10357                         token = read32 (ip + 1);
10358                         klass = mini_get_class (method, token, generic_context);
10359                         CHECK_TYPELOAD (klass);
10360
10361                         mono_save_token_info (cfg, image, token, klass);
10362
10363                         context_used = mini_class_check_context_used (cfg, klass);
10364
10365                         if (mini_is_gsharedvt_klass (klass)) {
10366                                 res = handle_unbox_gsharedvt (cfg, klass, *sp);
10367                                 inline_costs += 2;
10368                         } else if (generic_class_is_reference_type (cfg, klass)) {
10369                                 if (MONO_INS_IS_PCONST_NULL (*sp)) {
10370                                         EMIT_NEW_PCONST (cfg, res, NULL);
10371                                         res->type = STACK_OBJ;
10372                                 } else {
10373                                         MONO_INST_NEW (cfg, res, OP_CASTCLASS);
10374                                         res->dreg = alloc_preg (cfg);
10375                                         res->sreg1 = (*sp)->dreg;
10376                                         res->klass = klass;
10377                                         res->type = STACK_OBJ;
10378                                         MONO_ADD_INS (cfg->cbb, res);
10379                                         cfg->flags |= MONO_CFG_HAS_TYPE_CHECK;
10380                                 }
10381                         } else if (mono_class_is_nullable (klass)) {
10382                                 res = handle_unbox_nullable (cfg, *sp, klass, context_used);
10383                         } else {
10384                                 addr = handle_unbox (cfg, klass, sp, context_used);
10385                                 /* LDOBJ */
10386                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0);
10387                                 res = ins;
10388                                 inline_costs += 2;
10389                         }
10390
10391                         *sp ++ = res;
10392                         ip += 5;
10393                         break;
10394                 }
10395                 case CEE_BOX: {
10396                         MonoInst *val;
10397                         MonoClass *enum_class;
10398                         MonoMethod *has_flag;
10399
10400                         CHECK_STACK (1);
10401                         --sp;
10402                         val = *sp;
10403                         CHECK_OPSIZE (5);
10404                         token = read32 (ip + 1);
10405                         klass = mini_get_class (method, token, generic_context);
10406                         CHECK_TYPELOAD (klass);
10407
10408                         mono_save_token_info (cfg, image, token, klass);
10409
10410                         context_used = mini_class_check_context_used (cfg, klass);
10411
10412                         if (generic_class_is_reference_type (cfg, klass)) {
10413                                 *sp++ = val;
10414                                 ip += 5;
10415                                 break;
10416                         }
10417
10418                         if (klass == mono_defaults.void_class)
10419                                 UNVERIFIED;
10420                         if (target_type_is_incompatible (cfg, &klass->byval_arg, *sp))
10421                                 UNVERIFIED;
10422                         /* frequent check in generic code: box (struct), brtrue */
10423
10424                         /*
10425                          * Look for:
10426                          *
10427                          *   <push int/long ptr>
10428                          *   <push int/long>
10429                          *   box MyFlags
10430                          *   constrained. MyFlags
10431                          *   callvirt instace bool class [mscorlib] System.Enum::HasFlag (class [mscorlib] System.Enum)
10432                          *
10433                          * If we find this sequence and the operand types on box and constrained
10434                          * are equal, we can emit a specialized instruction sequence instead of
10435                          * the very slow HasFlag () call.
10436                          */
10437                         if ((cfg->opt & MONO_OPT_INTRINS) &&
10438                             /* Cheap checks first. */
10439                             ip + 5 + 6 + 5 < end &&
10440                             ip [5] == CEE_PREFIX1 &&
10441                             ip [6] == CEE_CONSTRAINED_ &&
10442                             ip [11] == CEE_CALLVIRT &&
10443                             ip_in_bb (cfg, cfg->cbb, ip + 5 + 6 + 5) &&
10444                             mono_class_is_enum (klass) &&
10445                             (enum_class = mini_get_class (method, read32 (ip + 7), generic_context)) &&
10446                             (has_flag = mini_get_method (cfg, method, read32 (ip + 12), NULL, generic_context)) &&
10447                             has_flag->klass == mono_defaults.enum_class &&
10448                             !strcmp (has_flag->name, "HasFlag") &&
10449                             has_flag->signature->hasthis &&
10450                             has_flag->signature->param_count == 1) {
10451                                 CHECK_TYPELOAD (enum_class);
10452
10453                                 if (enum_class == klass) {
10454                                         MonoInst *enum_this, *enum_flag;
10455
10456                                         ip += 5 + 6 + 5;
10457                                         --sp;
10458
10459                                         enum_this = sp [0];
10460                                         enum_flag = sp [1];
10461
10462                                         *sp++ = handle_enum_has_flag (cfg, klass, enum_this, enum_flag);
10463                                         break;
10464                                 }
10465                         }
10466
10467                         // FIXME: LLVM can't handle the inconsistent bb linking
10468                         if (!mono_class_is_nullable (klass) &&
10469                                 !mini_is_gsharedvt_klass (klass) &&
10470                                 ip + 5 < end && ip_in_bb (cfg, cfg->cbb, ip + 5) &&
10471                                 (ip [5] == CEE_BRTRUE || 
10472                                  ip [5] == CEE_BRTRUE_S ||
10473                                  ip [5] == CEE_BRFALSE ||
10474                                  ip [5] == CEE_BRFALSE_S)) {
10475                                 gboolean is_true = ip [5] == CEE_BRTRUE || ip [5] == CEE_BRTRUE_S;
10476                                 int dreg;
10477                                 MonoBasicBlock *true_bb, *false_bb;
10478
10479                                 ip += 5;
10480
10481                                 if (cfg->verbose_level > 3) {
10482                                         printf ("converting (in B%d: stack: %d) %s", cfg->cbb->block_num, (int)(sp - stack_start), mono_disasm_code_one (NULL, method, ip, NULL));
10483                                         printf ("<box+brtrue opt>\n");
10484                                 }
10485
10486                                 switch (*ip) {
10487                                 case CEE_BRTRUE_S:
10488                                 case CEE_BRFALSE_S:
10489                                         CHECK_OPSIZE (2);
10490                                         ip++;
10491                                         target = ip + 1 + (signed char)(*ip);
10492                                         ip++;
10493                                         break;
10494                                 case CEE_BRTRUE:
10495                                 case CEE_BRFALSE:
10496                                         CHECK_OPSIZE (5);
10497                                         ip++;
10498                                         target = ip + 4 + (gint)(read32 (ip));
10499                                         ip += 4;
10500                                         break;
10501                                 default:
10502                                         g_assert_not_reached ();
10503                                 }
10504
10505                                 /* 
10506                                  * We need to link both bblocks, since it is needed for handling stack
10507                                  * arguments correctly (See test_0_box_brtrue_opt_regress_81102).
10508                                  * Branching to only one of them would lead to inconsistencies, so
10509                                  * generate an ICONST+BRTRUE, the branch opts will get rid of them.
10510                                  */
10511                                 GET_BBLOCK (cfg, true_bb, target);
10512                                 GET_BBLOCK (cfg, false_bb, ip);
10513
10514                                 mono_link_bblock (cfg, cfg->cbb, true_bb);
10515                                 mono_link_bblock (cfg, cfg->cbb, false_bb);
10516
10517                                 if (sp != stack_start) {
10518                                         handle_stack_args (cfg, stack_start, sp - stack_start);
10519                                         sp = stack_start;
10520                                         CHECK_UNVERIFIABLE (cfg);
10521                                 }
10522
10523                                 if (COMPILE_LLVM (cfg)) {
10524                                         dreg = alloc_ireg (cfg);
10525                                         MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
10526                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, dreg, is_true ? 0 : 1);
10527
10528                                         MONO_EMIT_NEW_BRANCH_BLOCK2 (cfg, OP_IBEQ, true_bb, false_bb);
10529                                 } else {
10530                                         /* The JIT can't eliminate the iconst+compare */
10531                                         MONO_INST_NEW (cfg, ins, OP_BR);
10532                                         ins->inst_target_bb = is_true ? true_bb : false_bb;
10533                                         MONO_ADD_INS (cfg->cbb, ins);
10534                                 }
10535
10536                                 start_new_bblock = 1;
10537                                 break;
10538                         }
10539
10540                         *sp++ = handle_box (cfg, val, klass, context_used);
10541
10542                         CHECK_CFG_EXCEPTION;
10543                         ip += 5;
10544                         inline_costs += 1;
10545                         break;
10546                 }
10547                 case CEE_UNBOX: {
10548                         CHECK_STACK (1);
10549                         --sp;
10550                         CHECK_OPSIZE (5);
10551                         token = read32 (ip + 1);
10552                         klass = mini_get_class (method, token, generic_context);
10553                         CHECK_TYPELOAD (klass);
10554
10555                         mono_save_token_info (cfg, image, token, klass);
10556
10557                         context_used = mini_class_check_context_used (cfg, klass);
10558
10559                         if (mono_class_is_nullable (klass)) {
10560                                 MonoInst *val;
10561
10562                                 val = handle_unbox_nullable (cfg, *sp, klass, context_used);
10563                                 EMIT_NEW_VARLOADA (cfg, ins, get_vreg_to_inst (cfg, val->dreg), &val->klass->byval_arg);
10564
10565                                 *sp++= ins;
10566                         } else {
10567                                 ins = handle_unbox (cfg, klass, sp, context_used);
10568                                 *sp++ = ins;
10569                         }
10570                         ip += 5;
10571                         inline_costs += 2;
10572                         break;
10573                 }
10574                 case CEE_LDFLD:
10575                 case CEE_LDFLDA:
10576                 case CEE_STFLD:
10577                 case CEE_LDSFLD:
10578                 case CEE_LDSFLDA:
10579                 case CEE_STSFLD: {
10580                         MonoClassField *field;
10581 #ifndef DISABLE_REMOTING
10582                         int costs;
10583 #endif
10584                         guint foffset;
10585                         gboolean is_instance;
10586                         int op;
10587                         gpointer addr = NULL;
10588                         gboolean is_special_static;
10589                         MonoType *ftype;
10590                         MonoInst *store_val = NULL;
10591                         MonoInst *thread_ins;
10592
10593                         op = *ip;
10594                         is_instance = (op == CEE_LDFLD || op == CEE_LDFLDA || op == CEE_STFLD);
10595                         if (is_instance) {
10596                                 if (op == CEE_STFLD) {
10597                                         CHECK_STACK (2);
10598                                         sp -= 2;
10599                                         store_val = sp [1];
10600                                 } else {
10601                                         CHECK_STACK (1);
10602                                         --sp;
10603                                 }
10604                                 if (sp [0]->type == STACK_I4 || sp [0]->type == STACK_I8 || sp [0]->type == STACK_R8)
10605                                         UNVERIFIED;
10606                                 if (*ip != CEE_LDFLD && sp [0]->type == STACK_VTYPE)
10607                                         UNVERIFIED;
10608                         } else {
10609                                 if (op == CEE_STSFLD) {
10610                                         CHECK_STACK (1);
10611                                         sp--;
10612                                         store_val = sp [0];
10613                                 }
10614                         }
10615
10616                         CHECK_OPSIZE (5);
10617                         token = read32 (ip + 1);
10618                         if (method->wrapper_type != MONO_WRAPPER_NONE) {
10619                                 field = (MonoClassField *)mono_method_get_wrapper_data (method, token);
10620                                 klass = field->parent;
10621                         }
10622                         else {
10623                                 field = mono_field_from_token_checked (image, token, &klass, generic_context, &cfg->error);
10624                                 CHECK_CFG_ERROR;
10625                         }
10626                         if (!dont_verify && !cfg->skip_visibility && !mono_method_can_access_field (method, field))
10627                                 FIELD_ACCESS_FAILURE (method, field);
10628                         mono_class_init (klass);
10629
10630                         /* if the class is Critical then transparent code cannot access it's fields */
10631                         if (!is_instance && mono_security_core_clr_enabled ())
10632                                 ensure_method_is_allowed_to_access_field (cfg, method, field);
10633
10634                         /* XXX this is technically required but, so far (SL2), no [SecurityCritical] types (not many exists) have
10635                            any visible *instance* field  (in fact there's a single case for a static field in Marshal) XXX
10636                         if (mono_security_core_clr_enabled ())
10637                                 ensure_method_is_allowed_to_access_field (cfg, method, field);
10638                         */
10639
10640                         ftype = mono_field_get_type (field);
10641
10642                         /*
10643                          * LDFLD etc. is usable on static fields as well, so convert those cases to
10644                          * the static case.
10645                          */
10646                         if (is_instance && ftype->attrs & FIELD_ATTRIBUTE_STATIC) {
10647                                 switch (op) {
10648                                 case CEE_LDFLD:
10649                                         op = CEE_LDSFLD;
10650                                         break;
10651                                 case CEE_STFLD:
10652                                         op = CEE_STSFLD;
10653                                         break;
10654                                 case CEE_LDFLDA:
10655                                         op = CEE_LDSFLDA;
10656                                         break;
10657                                 default:
10658                                         g_assert_not_reached ();
10659                                 }
10660                                 is_instance = FALSE;
10661                         }
10662
10663                         context_used = mini_class_check_context_used (cfg, klass);
10664
10665                         /* INSTANCE CASE */
10666
10667                         foffset = klass->valuetype? field->offset - sizeof (MonoObject): field->offset;
10668                         if (op == CEE_STFLD) {
10669                                 if (target_type_is_incompatible (cfg, field->type, sp [1]))
10670                                         UNVERIFIED;
10671 #ifndef DISABLE_REMOTING
10672                                 if ((mono_class_is_marshalbyref (klass) && !MONO_CHECK_THIS (sp [0])) || mono_class_is_contextbound (klass) || klass == mono_defaults.marshalbyrefobject_class) {
10673                                         MonoMethod *stfld_wrapper = mono_marshal_get_stfld_wrapper (field->type); 
10674                                         MonoInst *iargs [5];
10675
10676                                         GSHAREDVT_FAILURE (op);
10677
10678                                         iargs [0] = sp [0];
10679                                         EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
10680                                         EMIT_NEW_FIELDCONST (cfg, iargs [2], field);
10681                                         EMIT_NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : 
10682                                                     field->offset);
10683                                         iargs [4] = sp [1];
10684
10685                                         if (cfg->opt & MONO_OPT_INLINE || cfg->compile_aot) {
10686                                                 costs = inline_method (cfg, stfld_wrapper, mono_method_signature (stfld_wrapper), 
10687                                                                                            iargs, ip, cfg->real_offset, TRUE);
10688                                                 CHECK_CFG_EXCEPTION;
10689                                                 g_assert (costs > 0);
10690                                                       
10691                                                 cfg->real_offset += 5;
10692
10693                                                 inline_costs += costs;
10694                                         } else {
10695                                                 mono_emit_method_call (cfg, stfld_wrapper, iargs, NULL);
10696                                         }
10697                                 } else
10698 #endif
10699                                 {
10700                                         MonoInst *store, *wbarrier_ptr_ins = NULL;
10701
10702                                         MONO_EMIT_NULL_CHECK (cfg, sp [0]->dreg);
10703
10704                                         if (ins_flag & MONO_INST_VOLATILE) {
10705                                                 /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
10706                                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
10707                                         }
10708
10709                                         if (mini_is_gsharedvt_klass (klass)) {
10710                                                 MonoInst *offset_ins;
10711
10712                                                 context_used = mini_class_check_context_used (cfg, klass);
10713
10714                                                 offset_ins = emit_get_gsharedvt_info (cfg, field, MONO_RGCTX_INFO_FIELD_OFFSET);
10715                                                 /* The value is offset by 1 */
10716                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
10717                                                 dreg = alloc_ireg_mp (cfg);
10718                                                 EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, sp [0]->dreg, offset_ins->dreg);
10719                                                 wbarrier_ptr_ins = ins;
10720                                                 /* The decomposition will call mini_emit_stobj () which will emit a wbarrier if needed */
10721                                                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, field->type, dreg, 0, sp [1]->dreg);
10722                                         } else {
10723                                                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, field->type, sp [0]->dreg, foffset, sp [1]->dreg);
10724                                         }
10725                                         if (sp [0]->opcode != OP_LDADDR)
10726                                                 store->flags |= MONO_INST_FAULT;
10727
10728                                         if (cfg->gen_write_barriers && mini_type_to_stind (cfg, field->type) == CEE_STIND_REF && !MONO_INS_IS_PCONST_NULL (sp [1])) {
10729                                                 if (mini_is_gsharedvt_klass (klass)) {
10730                                                         g_assert (wbarrier_ptr_ins);
10731                                                         emit_write_barrier (cfg, wbarrier_ptr_ins, sp [1]);
10732                                                 } else {
10733                                                         /* insert call to write barrier */
10734                                                         MonoInst *ptr;
10735                                                         int dreg;
10736
10737                                                         dreg = alloc_ireg_mp (cfg);
10738                                                         EMIT_NEW_BIALU_IMM (cfg, ptr, OP_PADD_IMM, dreg, sp [0]->dreg, foffset);
10739                                                         emit_write_barrier (cfg, ptr, sp [1]);
10740                                                 }
10741                                         }
10742
10743                                         store->flags |= ins_flag;
10744                                 }
10745                                 ins_flag = 0;
10746                                 ip += 5;
10747                                 break;
10748                         }
10749
10750 #ifndef DISABLE_REMOTING
10751                         if (is_instance && ((mono_class_is_marshalbyref (klass) && !MONO_CHECK_THIS (sp [0])) || mono_class_is_contextbound (klass) || klass == mono_defaults.marshalbyrefobject_class)) {
10752                                 MonoMethod *wrapper = (op == CEE_LDFLDA) ? mono_marshal_get_ldflda_wrapper (field->type) : mono_marshal_get_ldfld_wrapper (field->type); 
10753                                 MonoInst *iargs [4];
10754
10755                                 GSHAREDVT_FAILURE (op);
10756
10757                                 iargs [0] = sp [0];
10758                                 EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
10759                                 EMIT_NEW_FIELDCONST (cfg, iargs [2], field);
10760                                 EMIT_NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : field->offset);
10761                                 if (cfg->opt & MONO_OPT_INLINE || cfg->compile_aot) {
10762                                         costs = inline_method (cfg, wrapper, mono_method_signature (wrapper), 
10763                                                                                    iargs, ip, cfg->real_offset, TRUE);
10764                                         CHECK_CFG_EXCEPTION;
10765                                         g_assert (costs > 0);
10766                                                       
10767                                         cfg->real_offset += 5;
10768
10769                                         *sp++ = iargs [0];
10770
10771                                         inline_costs += costs;
10772                                 } else {
10773                                         ins = mono_emit_method_call (cfg, wrapper, iargs, NULL);
10774                                         *sp++ = ins;
10775                                 }
10776                         } else 
10777 #endif
10778                         if (is_instance) {
10779                                 if (sp [0]->type == STACK_VTYPE) {
10780                                         MonoInst *var;
10781
10782                                         /* Have to compute the address of the variable */
10783
10784                                         var = get_vreg_to_inst (cfg, sp [0]->dreg);
10785                                         if (!var)
10786                                                 var = mono_compile_create_var_for_vreg (cfg, &klass->byval_arg, OP_LOCAL, sp [0]->dreg);
10787                                         else
10788                                                 g_assert (var->klass == klass);
10789                                         
10790                                         EMIT_NEW_VARLOADA (cfg, ins, var, &var->klass->byval_arg);
10791                                         sp [0] = ins;
10792                                 }
10793
10794                                 if (op == CEE_LDFLDA) {
10795                                         if (sp [0]->type == STACK_OBJ) {
10796                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, sp [0]->dreg, 0);
10797                                                 MONO_EMIT_NEW_COND_EXC (cfg, EQ, "NullReferenceException");
10798                                         }
10799
10800                                         dreg = alloc_ireg_mp (cfg);
10801
10802                                         if (mini_is_gsharedvt_klass (klass)) {
10803                                                 MonoInst *offset_ins;
10804
10805                                                 offset_ins = emit_get_gsharedvt_info (cfg, field, MONO_RGCTX_INFO_FIELD_OFFSET);
10806                                                 /* The value is offset by 1 */
10807                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
10808                                                 EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, sp [0]->dreg, offset_ins->dreg);
10809                                         } else {
10810                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, dreg, sp [0]->dreg, foffset);
10811                                         }
10812                                         ins->klass = mono_class_from_mono_type (field->type);
10813                                         ins->type = STACK_MP;
10814                                         *sp++ = ins;
10815                                 } else {
10816                                         MonoInst *load;
10817
10818                                         MONO_EMIT_NULL_CHECK (cfg, sp [0]->dreg);
10819
10820                                         if (sp [0]->opcode == OP_LDADDR && klass->simd_type && cfg->opt & MONO_OPT_SIMD) {
10821                                                 ins = mono_emit_simd_field_load (cfg, field, sp [0]);
10822                                                 if (ins) {
10823                                                         *sp++ = ins;
10824                                                         ins_flag = 0;
10825                                                         ip += 5;
10826                                                         break;
10827                                                 }
10828                                         }
10829
10830                                         if (mini_is_gsharedvt_klass (klass)) {
10831                                                 MonoInst *offset_ins;
10832
10833                                                 offset_ins = emit_get_gsharedvt_info (cfg, field, MONO_RGCTX_INFO_FIELD_OFFSET);
10834                                                 /* The value is offset by 1 */
10835                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
10836                                                 dreg = alloc_ireg_mp (cfg);
10837                                                 EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, sp [0]->dreg, offset_ins->dreg);
10838                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, field->type, dreg, 0);
10839                                         } else {
10840                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, field->type, sp [0]->dreg, foffset);
10841                                         }
10842                                         load->flags |= ins_flag;
10843                                         if (sp [0]->opcode != OP_LDADDR)
10844                                                 load->flags |= MONO_INST_FAULT;
10845                                         *sp++ = load;
10846                                 }
10847                         }
10848
10849                         if (is_instance) {
10850                                 ins_flag = 0;
10851                                 ip += 5;
10852                                 break;
10853                         }
10854
10855                         /* STATIC CASE */
10856                         context_used = mini_class_check_context_used (cfg, klass);
10857
10858                         if (ftype->attrs & FIELD_ATTRIBUTE_LITERAL) {
10859                                 mono_error_set_field_load (&cfg->error, field->parent, field->name, "Using static instructions with literal field");
10860                                 CHECK_CFG_ERROR;
10861                         }
10862
10863                         /* The special_static_fields field is init'd in mono_class_vtable, so it needs
10864                          * to be called here.
10865                          */
10866                         if (!context_used && !(cfg->opt & MONO_OPT_SHARED)) {
10867                                 mono_class_vtable (cfg->domain, klass);
10868                                 CHECK_TYPELOAD (klass);
10869                         }
10870                         mono_domain_lock (cfg->domain);
10871                         if (cfg->domain->special_static_fields)
10872                                 addr = g_hash_table_lookup (cfg->domain->special_static_fields, field);
10873                         mono_domain_unlock (cfg->domain);
10874
10875                         is_special_static = mono_class_field_is_special_static (field);
10876
10877                         if (is_special_static && ((gsize)addr & 0x80000000) == 0)
10878                                 thread_ins = mono_create_tls_get (cfg, TLS_KEY_THREAD);
10879                         else
10880                                 thread_ins = NULL;
10881
10882                         /* Generate IR to compute the field address */
10883                         if (is_special_static && ((gsize)addr & 0x80000000) == 0 && thread_ins && !(cfg->opt & MONO_OPT_SHARED) && !context_used) {
10884                                 /*
10885                                  * Fast access to TLS data
10886                                  * Inline version of get_thread_static_data () in
10887                                  * threads.c.
10888                                  */
10889                                 guint32 offset;
10890                                 int idx, static_data_reg, array_reg, dreg;
10891
10892                                 if (context_used && cfg->gsharedvt && mini_is_gsharedvt_klass (klass))
10893                                         GSHAREDVT_FAILURE (op);
10894
10895                                 static_data_reg = alloc_ireg (cfg);
10896                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, static_data_reg, thread_ins->dreg, MONO_STRUCT_OFFSET (MonoInternalThread, static_data));
10897
10898                                 if (cfg->compile_aot) {
10899                                         int offset_reg, offset2_reg, idx_reg;
10900
10901                                         /* For TLS variables, this will return the TLS offset */
10902                                         EMIT_NEW_SFLDACONST (cfg, ins, field);
10903                                         offset_reg = ins->dreg;
10904                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, offset_reg, offset_reg, 0x7fffffff);
10905                                         idx_reg = alloc_ireg (cfg);
10906                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, idx_reg, offset_reg, 0x3f);
10907                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ISHL_IMM, idx_reg, idx_reg, sizeof (gpointer) == 8 ? 3 : 2);
10908                                         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, static_data_reg, static_data_reg, idx_reg);
10909                                         array_reg = alloc_ireg (cfg);
10910                                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, static_data_reg, 0);
10911                                         offset2_reg = alloc_ireg (cfg);
10912                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ISHR_UN_IMM, offset2_reg, offset_reg, 6);
10913                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, offset2_reg, offset2_reg, 0x1ffffff);
10914                                         dreg = alloc_ireg (cfg);
10915                                         EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, array_reg, offset2_reg);
10916                                 } else {
10917                                         offset = (gsize)addr & 0x7fffffff;
10918                                         idx = offset & 0x3f;
10919
10920                                         array_reg = alloc_ireg (cfg);
10921                                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, static_data_reg, idx * sizeof (gpointer));
10922                                         dreg = alloc_ireg (cfg);
10923                                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_ADD_IMM, dreg, array_reg, ((offset >> 6) & 0x1ffffff));
10924                                 }
10925                         } else if ((cfg->opt & MONO_OPT_SHARED) ||
10926                                         (cfg->compile_aot && is_special_static) ||
10927                                         (context_used && is_special_static)) {
10928                                 MonoInst *iargs [2];
10929
10930                                 g_assert (field->parent);
10931                                 EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
10932                                 if (context_used) {
10933                                         iargs [1] = emit_get_rgctx_field (cfg, context_used,
10934                                                 field, MONO_RGCTX_INFO_CLASS_FIELD);
10935                                 } else {
10936                                         EMIT_NEW_FIELDCONST (cfg, iargs [1], field);
10937                                 }
10938                                 ins = mono_emit_jit_icall (cfg, mono_class_static_field_address, iargs);
10939                         } else if (context_used) {
10940                                 MonoInst *static_data;
10941
10942                                 /*
10943                                 g_print ("sharing static field access in %s.%s.%s - depth %d offset %d\n",
10944                                         method->klass->name_space, method->klass->name, method->name,
10945                                         depth, field->offset);
10946                                 */
10947
10948                                 if (mono_class_needs_cctor_run (klass, method))
10949                                         emit_class_init (cfg, klass);
10950
10951                                 /*
10952                                  * The pointer we're computing here is
10953                                  *
10954                                  *   super_info.static_data + field->offset
10955                                  */
10956                                 static_data = mini_emit_get_rgctx_klass (cfg, context_used,
10957                                         klass, MONO_RGCTX_INFO_STATIC_DATA);
10958
10959                                 if (mini_is_gsharedvt_klass (klass)) {
10960                                         MonoInst *offset_ins;
10961
10962                                         offset_ins = emit_get_rgctx_field (cfg, context_used, field, MONO_RGCTX_INFO_FIELD_OFFSET);
10963                                         /* The value is offset by 1 */
10964                                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
10965                                         dreg = alloc_ireg_mp (cfg);
10966                                         EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, static_data->dreg, offset_ins->dreg);
10967                                 } else if (field->offset == 0) {
10968                                         ins = static_data;
10969                                 } else {
10970                                         int addr_reg = mono_alloc_preg (cfg);
10971                                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, addr_reg, static_data->dreg, field->offset);
10972                                 }
10973                                 } else if ((cfg->opt & MONO_OPT_SHARED) || (cfg->compile_aot && addr)) {
10974                                 MonoInst *iargs [2];
10975
10976                                 g_assert (field->parent);
10977                                 EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
10978                                 EMIT_NEW_FIELDCONST (cfg, iargs [1], field);
10979                                 ins = mono_emit_jit_icall (cfg, mono_class_static_field_address, iargs);
10980                         } else {
10981                                 MonoVTable *vtable = NULL;
10982
10983                                 if (!cfg->compile_aot)
10984                                         vtable = mono_class_vtable (cfg->domain, klass);
10985                                 CHECK_TYPELOAD (klass);
10986
10987                                 if (!addr) {
10988                                         if (mini_field_access_needs_cctor_run (cfg, method, klass, vtable)) {
10989                                                 if (!(g_slist_find (class_inits, klass))) {
10990                                                         emit_class_init (cfg, klass);
10991                                                         if (cfg->verbose_level > 2)
10992                                                                 printf ("class %s.%s needs init call for %s\n", klass->name_space, klass->name, mono_field_get_name (field));
10993                                                         class_inits = g_slist_prepend (class_inits, klass);
10994                                                 }
10995                                         } else {
10996                                                 if (cfg->run_cctors) {
10997                                                         /* This makes so that inline cannot trigger */
10998                                                         /* .cctors: too many apps depend on them */
10999                                                         /* running with a specific order... */
11000                                                         g_assert (vtable);
11001                                                         if (! vtable->initialized)
11002                                                                 INLINE_FAILURE ("class init");
11003                                                         if (!mono_runtime_class_init_full (vtable, &cfg->error)) {
11004                                                                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
11005                                                                 goto exception_exit;
11006                                                         }
11007                                                 }
11008                                         }
11009                                         if (cfg->compile_aot)
11010                                                 EMIT_NEW_SFLDACONST (cfg, ins, field);
11011                                         else {
11012                                                 g_assert (vtable);
11013                                                 addr = (char*)mono_vtable_get_static_field_data (vtable) + field->offset;
11014                                                 g_assert (addr);
11015                                                 EMIT_NEW_PCONST (cfg, ins, addr);
11016                                         }
11017                                 } else {
11018                                         MonoInst *iargs [1];
11019                                         EMIT_NEW_ICONST (cfg, iargs [0], GPOINTER_TO_UINT (addr));
11020                                         ins = mono_emit_jit_icall (cfg, mono_get_special_static_data, iargs);
11021                                 }
11022                         }
11023
11024                         /* Generate IR to do the actual load/store operation */
11025
11026                         if ((op == CEE_STFLD || op == CEE_STSFLD) && (ins_flag & MONO_INST_VOLATILE)) {
11027                                 /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
11028                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
11029                         }
11030
11031                         if (op == CEE_LDSFLDA) {
11032                                 ins->klass = mono_class_from_mono_type (ftype);
11033                                 ins->type = STACK_PTR;
11034                                 *sp++ = ins;
11035                         } else if (op == CEE_STSFLD) {
11036                                 MonoInst *store;
11037
11038                                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, ftype, ins->dreg, 0, store_val->dreg);
11039                                 store->flags |= ins_flag;
11040                         } else {
11041                                 gboolean is_const = FALSE;
11042                                 MonoVTable *vtable = NULL;
11043                                 gpointer addr = NULL;
11044
11045                                 if (!context_used) {
11046                                         vtable = mono_class_vtable (cfg->domain, klass);
11047                                         CHECK_TYPELOAD (klass);
11048                                 }
11049                                 if ((ftype->attrs & FIELD_ATTRIBUTE_INIT_ONLY) && (((addr = mono_aot_readonly_field_override (field)) != NULL) ||
11050                                                 (!context_used && !((cfg->opt & MONO_OPT_SHARED) || cfg->compile_aot) && vtable->initialized))) {
11051                                         int ro_type = ftype->type;
11052                                         if (!addr)
11053                                                 addr = (char*)mono_vtable_get_static_field_data (vtable) + field->offset;
11054                                         if (ro_type == MONO_TYPE_VALUETYPE && ftype->data.klass->enumtype) {
11055                                                 ro_type = mono_class_enum_basetype (ftype->data.klass)->type;
11056                                         }
11057
11058                                         GSHAREDVT_FAILURE (op);
11059
11060                                         /* printf ("RO-FIELD %s.%s:%s\n", klass->name_space, klass->name, mono_field_get_name (field));*/
11061                                         is_const = TRUE;
11062                                         switch (ro_type) {
11063                                         case MONO_TYPE_BOOLEAN:
11064                                         case MONO_TYPE_U1:
11065                                                 EMIT_NEW_ICONST (cfg, *sp, *((guint8 *)addr));
11066                                                 sp++;
11067                                                 break;
11068                                         case MONO_TYPE_I1:
11069                                                 EMIT_NEW_ICONST (cfg, *sp, *((gint8 *)addr));
11070                                                 sp++;
11071                                                 break;                                          
11072                                         case MONO_TYPE_CHAR:
11073                                         case MONO_TYPE_U2:
11074                                                 EMIT_NEW_ICONST (cfg, *sp, *((guint16 *)addr));
11075                                                 sp++;
11076                                                 break;
11077                                         case MONO_TYPE_I2:
11078                                                 EMIT_NEW_ICONST (cfg, *sp, *((gint16 *)addr));
11079                                                 sp++;
11080                                                 break;
11081                                                 break;
11082                                         case MONO_TYPE_I4:
11083                                                 EMIT_NEW_ICONST (cfg, *sp, *((gint32 *)addr));
11084                                                 sp++;
11085                                                 break;                                          
11086                                         case MONO_TYPE_U4:
11087                                                 EMIT_NEW_ICONST (cfg, *sp, *((guint32 *)addr));
11088                                                 sp++;
11089                                                 break;
11090                                         case MONO_TYPE_I:
11091                                         case MONO_TYPE_U:
11092                                         case MONO_TYPE_PTR:
11093                                         case MONO_TYPE_FNPTR:
11094                                                 EMIT_NEW_PCONST (cfg, *sp, *((gpointer *)addr));
11095                                                 type_to_eval_stack_type ((cfg), field->type, *sp);
11096                                                 sp++;
11097                                                 break;
11098                                         case MONO_TYPE_STRING:
11099                                         case MONO_TYPE_OBJECT:
11100                                         case MONO_TYPE_CLASS:
11101                                         case MONO_TYPE_SZARRAY:
11102                                         case MONO_TYPE_ARRAY:
11103                                                 if (!mono_gc_is_moving ()) {
11104                                                         EMIT_NEW_PCONST (cfg, *sp, *((gpointer *)addr));
11105                                                         type_to_eval_stack_type ((cfg), field->type, *sp);
11106                                                         sp++;
11107                                                 } else {
11108                                                         is_const = FALSE;
11109                                                 }
11110                                                 break;
11111                                         case MONO_TYPE_I8:
11112                                         case MONO_TYPE_U8:
11113                                                 EMIT_NEW_I8CONST (cfg, *sp, *((gint64 *)addr));
11114                                                 sp++;
11115                                                 break;
11116                                         case MONO_TYPE_R4:
11117                                         case MONO_TYPE_R8:
11118                                         case MONO_TYPE_VALUETYPE:
11119                                         default:
11120                                                 is_const = FALSE;
11121                                                 break;
11122                                         }
11123                                 }
11124
11125                                 if (!is_const) {
11126                                         MonoInst *load;
11127
11128                                         CHECK_STACK_OVF (1);
11129
11130                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, field->type, ins->dreg, 0);
11131                                         load->flags |= ins_flag;
11132                                         ins_flag = 0;
11133                                         *sp++ = load;
11134                                 }
11135                         }
11136
11137                         if ((op == CEE_LDFLD || op == CEE_LDSFLD) && (ins_flag & MONO_INST_VOLATILE)) {
11138                                 /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
11139                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
11140                         }
11141
11142                         ins_flag = 0;
11143                         ip += 5;
11144                         break;
11145                 }
11146                 case CEE_STOBJ:
11147                         CHECK_STACK (2);
11148                         sp -= 2;
11149                         CHECK_OPSIZE (5);
11150                         token = read32 (ip + 1);
11151                         klass = mini_get_class (method, token, generic_context);
11152                         CHECK_TYPELOAD (klass);
11153                         if (ins_flag & MONO_INST_VOLATILE) {
11154                                 /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
11155                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
11156                         }
11157                         /* FIXME: should check item at sp [1] is compatible with the type of the store. */
11158                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, sp [0]->dreg, 0, sp [1]->dreg);
11159                         ins->flags |= ins_flag;
11160                         if (cfg->gen_write_barriers && cfg->method->wrapper_type != MONO_WRAPPER_WRITE_BARRIER &&
11161                                 generic_class_is_reference_type (cfg, klass) && !MONO_INS_IS_PCONST_NULL (sp [1])) {
11162                                 /* insert call to write barrier */
11163                                 emit_write_barrier (cfg, sp [0], sp [1]);
11164                         }
11165                         ins_flag = 0;
11166                         ip += 5;
11167                         inline_costs += 1;
11168                         break;
11169
11170                         /*
11171                          * Array opcodes
11172                          */
11173                 case CEE_NEWARR: {
11174                         MonoInst *len_ins;
11175                         const char *data_ptr;
11176                         int data_size = 0;
11177                         guint32 field_token;
11178
11179                         CHECK_STACK (1);
11180                         --sp;
11181
11182                         CHECK_OPSIZE (5);
11183                         token = read32 (ip + 1);
11184
11185                         klass = mini_get_class (method, token, generic_context);
11186                         CHECK_TYPELOAD (klass);
11187
11188                         context_used = mini_class_check_context_used (cfg, klass);
11189
11190                         if (sp [0]->type == STACK_I8 || (SIZEOF_VOID_P == 8 && sp [0]->type == STACK_PTR)) {
11191                                 MONO_INST_NEW (cfg, ins, OP_LCONV_TO_OVF_U4);
11192                                 ins->sreg1 = sp [0]->dreg;
11193                                 ins->type = STACK_I4;
11194                                 ins->dreg = alloc_ireg (cfg);
11195                                 MONO_ADD_INS (cfg->cbb, ins);
11196                                 *sp = mono_decompose_opcode (cfg, ins);
11197                         }
11198
11199                         if (context_used) {
11200                                 MonoInst *args [3];
11201                                 MonoClass *array_class = mono_array_class_get (klass, 1);
11202                                 MonoMethod *managed_alloc = mono_gc_get_managed_array_allocator (array_class);
11203
11204                                 /* FIXME: Use OP_NEWARR and decompose later to help abcrem */
11205
11206                                 /* vtable */
11207                                 args [0] = mini_emit_get_rgctx_klass (cfg, context_used,
11208                                         array_class, MONO_RGCTX_INFO_VTABLE);
11209                                 /* array len */
11210                                 args [1] = sp [0];
11211
11212                                 if (managed_alloc)
11213                                         ins = mono_emit_method_call (cfg, managed_alloc, args, NULL);
11214                                 else
11215                                         ins = mono_emit_jit_icall (cfg, ves_icall_array_new_specific, args);
11216                         } else {
11217                                 if (cfg->opt & MONO_OPT_SHARED) {
11218                                         /* Decompose now to avoid problems with references to the domainvar */
11219                                         MonoInst *iargs [3];
11220
11221                                         EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
11222                                         EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
11223                                         iargs [2] = sp [0];
11224
11225                                         ins = mono_emit_jit_icall (cfg, ves_icall_array_new, iargs);
11226                                 } else {
11227                                         /* Decompose later since it is needed by abcrem */
11228                                         MonoClass *array_type = mono_array_class_get (klass, 1);
11229                                         mono_class_vtable (cfg->domain, array_type);
11230                                         CHECK_TYPELOAD (array_type);
11231
11232                                         MONO_INST_NEW (cfg, ins, OP_NEWARR);
11233                                         ins->dreg = alloc_ireg_ref (cfg);
11234                                         ins->sreg1 = sp [0]->dreg;
11235                                         ins->inst_newa_class = klass;
11236                                         ins->type = STACK_OBJ;
11237                                         ins->klass = array_type;
11238                                         MONO_ADD_INS (cfg->cbb, ins);
11239                                         cfg->flags |= MONO_CFG_HAS_ARRAY_ACCESS;
11240                                         cfg->cbb->has_array_access = TRUE;
11241
11242                                         /* Needed so mono_emit_load_get_addr () gets called */
11243                                         mono_get_got_var (cfg);
11244                                 }
11245                         }
11246
11247                         len_ins = sp [0];
11248                         ip += 5;
11249                         *sp++ = ins;
11250                         inline_costs += 1;
11251
11252                         /* 
11253                          * we inline/optimize the initialization sequence if possible.
11254                          * we should also allocate the array as not cleared, since we spend as much time clearing to 0 as initializing
11255                          * for small sizes open code the memcpy
11256                          * ensure the rva field is big enough
11257                          */
11258                         if ((cfg->opt & MONO_OPT_INTRINS) && ip + 6 < end && ip_in_bb (cfg, cfg->cbb, ip + 6) && (len_ins->opcode == OP_ICONST) && (data_ptr = initialize_array_data (method, cfg->compile_aot, ip, klass, len_ins->inst_c0, &data_size, &field_token))) {
11259                                 MonoMethod *memcpy_method = get_memcpy_method ();
11260                                 MonoInst *iargs [3];
11261                                 int add_reg = alloc_ireg_mp (cfg);
11262
11263                                 EMIT_NEW_BIALU_IMM (cfg, iargs [0], OP_PADD_IMM, add_reg, ins->dreg, MONO_STRUCT_OFFSET (MonoArray, vector));
11264                                 if (cfg->compile_aot) {
11265                                         EMIT_NEW_AOTCONST_TOKEN (cfg, iargs [1], MONO_PATCH_INFO_RVA, method->klass->image, GPOINTER_TO_UINT(field_token), STACK_PTR, NULL);
11266                                 } else {
11267                                         EMIT_NEW_PCONST (cfg, iargs [1], (char*)data_ptr);
11268                                 }
11269                                 EMIT_NEW_ICONST (cfg, iargs [2], data_size);
11270                                 mono_emit_method_call (cfg, memcpy_method, iargs, NULL);
11271                                 ip += 11;
11272                         }
11273
11274                         break;
11275                 }
11276                 case CEE_LDLEN:
11277                         CHECK_STACK (1);
11278                         --sp;
11279                         if (sp [0]->type != STACK_OBJ)
11280                                 UNVERIFIED;
11281
11282                         MONO_INST_NEW (cfg, ins, OP_LDLEN);
11283                         ins->dreg = alloc_preg (cfg);
11284                         ins->sreg1 = sp [0]->dreg;
11285                         ins->type = STACK_I4;
11286                         /* This flag will be inherited by the decomposition */
11287                         ins->flags |= MONO_INST_FAULT;
11288                         MONO_ADD_INS (cfg->cbb, ins);
11289                         cfg->flags |= MONO_CFG_HAS_ARRAY_ACCESS;
11290                         cfg->cbb->has_array_access = TRUE;
11291                         ip ++;
11292                         *sp++ = ins;
11293                         break;
11294                 case CEE_LDELEMA:
11295                         CHECK_STACK (2);
11296                         sp -= 2;
11297                         CHECK_OPSIZE (5);
11298                         if (sp [0]->type != STACK_OBJ)
11299                                 UNVERIFIED;
11300
11301                         cfg->flags |= MONO_CFG_HAS_LDELEMA;
11302
11303                         klass = mini_get_class (method, read32 (ip + 1), generic_context);
11304                         CHECK_TYPELOAD (klass);
11305                         /* we need to make sure that this array is exactly the type it needs
11306                          * to be for correctness. the wrappers are lax with their usage
11307                          * so we need to ignore them here
11308                          */
11309                         if (!klass->valuetype && method->wrapper_type == MONO_WRAPPER_NONE && !readonly) {
11310                                 MonoClass *array_class = mono_array_class_get (klass, 1);
11311                                 mini_emit_check_array_type (cfg, sp [0], array_class);
11312                                 CHECK_TYPELOAD (array_class);
11313                         }
11314
11315                         readonly = FALSE;
11316                         ins = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
11317                         *sp++ = ins;
11318                         ip += 5;
11319                         break;
11320                 case CEE_LDELEM:
11321                 case CEE_LDELEM_I1:
11322                 case CEE_LDELEM_U1:
11323                 case CEE_LDELEM_I2:
11324                 case CEE_LDELEM_U2:
11325                 case CEE_LDELEM_I4:
11326                 case CEE_LDELEM_U4:
11327                 case CEE_LDELEM_I8:
11328                 case CEE_LDELEM_I:
11329                 case CEE_LDELEM_R4:
11330                 case CEE_LDELEM_R8:
11331                 case CEE_LDELEM_REF: {
11332                         MonoInst *addr;
11333
11334                         CHECK_STACK (2);
11335                         sp -= 2;
11336
11337                         if (*ip == CEE_LDELEM) {
11338                                 CHECK_OPSIZE (5);
11339                                 token = read32 (ip + 1);
11340                                 klass = mini_get_class (method, token, generic_context);
11341                                 CHECK_TYPELOAD (klass);
11342                                 mono_class_init (klass);
11343                         }
11344                         else
11345                                 klass = array_access_to_klass (*ip);
11346
11347                         if (sp [0]->type != STACK_OBJ)
11348                                 UNVERIFIED;
11349
11350                         cfg->flags |= MONO_CFG_HAS_LDELEMA;
11351
11352                         if (mini_is_gsharedvt_variable_klass (klass)) {
11353                                 // FIXME-VT: OP_ICONST optimization
11354                                 addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
11355                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0);
11356                                 ins->opcode = OP_LOADV_MEMBASE;
11357                         } else if (sp [1]->opcode == OP_ICONST) {
11358                                 int array_reg = sp [0]->dreg;
11359                                 int index_reg = sp [1]->dreg;
11360                                 int offset = (mono_class_array_element_size (klass) * sp [1]->inst_c0) + MONO_STRUCT_OFFSET (MonoArray, vector);
11361
11362                                 if (SIZEOF_REGISTER == 8 && COMPILE_LLVM (cfg))
11363                                         MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, index_reg, index_reg);
11364
11365                                 MONO_EMIT_BOUNDS_CHECK (cfg, array_reg, MonoArray, max_length, index_reg);
11366                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, array_reg, offset);
11367                         } else {
11368                                 addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
11369                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0);
11370                         }
11371                         *sp++ = ins;
11372                         if (*ip == CEE_LDELEM)
11373                                 ip += 5;
11374                         else
11375                                 ++ip;
11376                         break;
11377                 }
11378                 case CEE_STELEM_I:
11379                 case CEE_STELEM_I1:
11380                 case CEE_STELEM_I2:
11381                 case CEE_STELEM_I4:
11382                 case CEE_STELEM_I8:
11383                 case CEE_STELEM_R4:
11384                 case CEE_STELEM_R8:
11385                 case CEE_STELEM_REF:
11386                 case CEE_STELEM: {
11387                         CHECK_STACK (3);
11388                         sp -= 3;
11389
11390                         cfg->flags |= MONO_CFG_HAS_LDELEMA;
11391
11392                         if (*ip == CEE_STELEM) {
11393                                 CHECK_OPSIZE (5);
11394                                 token = read32 (ip + 1);
11395                                 klass = mini_get_class (method, token, generic_context);
11396                                 CHECK_TYPELOAD (klass);
11397                                 mono_class_init (klass);
11398                         }
11399                         else
11400                                 klass = array_access_to_klass (*ip);
11401
11402                         if (sp [0]->type != STACK_OBJ)
11403                                 UNVERIFIED;
11404
11405                         emit_array_store (cfg, klass, sp, TRUE);
11406
11407                         if (*ip == CEE_STELEM)
11408                                 ip += 5;
11409                         else
11410                                 ++ip;
11411                         inline_costs += 1;
11412                         break;
11413                 }
11414                 case CEE_CKFINITE: {
11415                         CHECK_STACK (1);
11416                         --sp;
11417
11418                         if (cfg->llvm_only) {
11419                                 MonoInst *iargs [1];
11420
11421                                 iargs [0] = sp [0];
11422                                 *sp++ = mono_emit_jit_icall (cfg, mono_ckfinite, iargs);
11423                         } else  {
11424                                 MONO_INST_NEW (cfg, ins, OP_CKFINITE);
11425                                 ins->sreg1 = sp [0]->dreg;
11426                                 ins->dreg = alloc_freg (cfg);
11427                                 ins->type = STACK_R8;
11428                                 MONO_ADD_INS (cfg->cbb, ins);
11429
11430                                 *sp++ = mono_decompose_opcode (cfg, ins);
11431                         }
11432
11433                         ++ip;
11434                         break;
11435                 }
11436                 case CEE_REFANYVAL: {
11437                         MonoInst *src_var, *src;
11438
11439                         int klass_reg = alloc_preg (cfg);
11440                         int dreg = alloc_preg (cfg);
11441
11442                         GSHAREDVT_FAILURE (*ip);
11443
11444                         CHECK_STACK (1);
11445                         MONO_INST_NEW (cfg, ins, *ip);
11446                         --sp;
11447                         CHECK_OPSIZE (5);
11448                         klass = mini_get_class (method, read32 (ip + 1), generic_context);
11449                         CHECK_TYPELOAD (klass);
11450
11451                         context_used = mini_class_check_context_used (cfg, klass);
11452
11453                         // FIXME:
11454                         src_var = get_vreg_to_inst (cfg, sp [0]->dreg);
11455                         if (!src_var)
11456                                 src_var = mono_compile_create_var_for_vreg (cfg, &mono_defaults.typed_reference_class->byval_arg, OP_LOCAL, sp [0]->dreg);
11457                         EMIT_NEW_VARLOADA (cfg, src, src_var, src_var->inst_vtype);
11458                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, src->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, klass));
11459
11460                         if (context_used) {
11461                                 MonoInst *klass_ins;
11462
11463                                 klass_ins = mini_emit_get_rgctx_klass (cfg, context_used,
11464                                                 klass, MONO_RGCTX_INFO_KLASS);
11465
11466                                 // FIXME:
11467                                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, klass_reg, klass_ins->dreg);
11468                                 MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
11469                         } else {
11470                                 mini_emit_class_check (cfg, klass_reg, klass);
11471                         }
11472                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, src->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, value));
11473                         ins->type = STACK_MP;
11474                         ins->klass = klass;
11475                         *sp++ = ins;
11476                         ip += 5;
11477                         break;
11478                 }
11479                 case CEE_MKREFANY: {
11480                         MonoInst *loc, *addr;
11481
11482                         GSHAREDVT_FAILURE (*ip);
11483
11484                         CHECK_STACK (1);
11485                         MONO_INST_NEW (cfg, ins, *ip);
11486                         --sp;
11487                         CHECK_OPSIZE (5);
11488                         klass = mini_get_class (method, read32 (ip + 1), generic_context);
11489                         CHECK_TYPELOAD (klass);
11490
11491                         context_used = mini_class_check_context_used (cfg, klass);
11492
11493                         loc = mono_compile_create_var (cfg, &mono_defaults.typed_reference_class->byval_arg, OP_LOCAL);
11494                         EMIT_NEW_TEMPLOADA (cfg, addr, loc->inst_c0);
11495
11496                         if (context_used) {
11497                                 MonoInst *const_ins;
11498                                 int type_reg = alloc_preg (cfg);
11499
11500                                 const_ins = mini_emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
11501                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, klass), const_ins->dreg);
11502                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ADD_IMM, type_reg, const_ins->dreg, MONO_STRUCT_OFFSET (MonoClass, byval_arg));
11503                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, type), type_reg);
11504                         } else {
11505                                 int const_reg = alloc_preg (cfg);
11506                                 int type_reg = alloc_preg (cfg);
11507
11508                                 MONO_EMIT_NEW_CLASSCONST (cfg, const_reg, klass);
11509                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, klass), const_reg);
11510                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ADD_IMM, type_reg, const_reg, MONO_STRUCT_OFFSET (MonoClass, byval_arg));
11511                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, type), type_reg);
11512                         }
11513                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, value), sp [0]->dreg);
11514
11515                         EMIT_NEW_TEMPLOAD (cfg, ins, loc->inst_c0);
11516                         ins->type = STACK_VTYPE;
11517                         ins->klass = mono_defaults.typed_reference_class;
11518                         *sp++ = ins;
11519                         ip += 5;
11520                         break;
11521                 }
11522                 case CEE_LDTOKEN: {
11523                         gpointer handle;
11524                         MonoClass *handle_class;
11525
11526                         CHECK_STACK_OVF (1);
11527
11528                         CHECK_OPSIZE (5);
11529                         n = read32 (ip + 1);
11530
11531                         if (method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD ||
11532                                         method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED) {
11533                                 handle = mono_method_get_wrapper_data (method, n);
11534                                 handle_class = (MonoClass *)mono_method_get_wrapper_data (method, n + 1);
11535                                 if (handle_class == mono_defaults.typehandle_class)
11536                                         handle = &((MonoClass*)handle)->byval_arg;
11537                         }
11538                         else {
11539                                 handle = mono_ldtoken_checked (image, n, &handle_class, generic_context, &cfg->error);
11540                                 CHECK_CFG_ERROR;
11541                         }
11542                         if (!handle)
11543                                 LOAD_ERROR;
11544                         mono_class_init (handle_class);
11545                         if (cfg->gshared) {
11546                                 if (mono_metadata_token_table (n) == MONO_TABLE_TYPEDEF ||
11547                                                 mono_metadata_token_table (n) == MONO_TABLE_TYPEREF) {
11548                                         /* This case handles ldtoken
11549                                            of an open type, like for
11550                                            typeof(Gen<>). */
11551                                         context_used = 0;
11552                                 } else if (handle_class == mono_defaults.typehandle_class) {
11553                                         context_used = mini_class_check_context_used (cfg, mono_class_from_mono_type ((MonoType *)handle));
11554                                 } else if (handle_class == mono_defaults.fieldhandle_class)
11555                                         context_used = mini_class_check_context_used (cfg, ((MonoClassField*)handle)->parent);
11556                                 else if (handle_class == mono_defaults.methodhandle_class)
11557                                         context_used = mini_method_check_context_used (cfg, (MonoMethod *)handle);
11558                                 else
11559                                         g_assert_not_reached ();
11560                         }
11561
11562                         if ((cfg->opt & MONO_OPT_SHARED) &&
11563                                         method->wrapper_type != MONO_WRAPPER_DYNAMIC_METHOD &&
11564                                         method->wrapper_type != MONO_WRAPPER_SYNCHRONIZED) {
11565                                 MonoInst *addr, *vtvar, *iargs [3];
11566                                 int method_context_used;
11567
11568                                 method_context_used = mini_method_check_context_used (cfg, method);
11569
11570                                 vtvar = mono_compile_create_var (cfg, &handle_class->byval_arg, OP_LOCAL); 
11571
11572                                 EMIT_NEW_IMAGECONST (cfg, iargs [0], image);
11573                                 EMIT_NEW_ICONST (cfg, iargs [1], n);
11574                                 if (method_context_used) {
11575                                         iargs [2] = emit_get_rgctx_method (cfg, method_context_used,
11576                                                 method, MONO_RGCTX_INFO_METHOD);
11577                                         ins = mono_emit_jit_icall (cfg, mono_ldtoken_wrapper_generic_shared, iargs);
11578                                 } else {
11579                                         EMIT_NEW_PCONST (cfg, iargs [2], generic_context);
11580                                         ins = mono_emit_jit_icall (cfg, mono_ldtoken_wrapper, iargs);
11581                                 }
11582                                 EMIT_NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
11583
11584                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, addr->dreg, 0, ins->dreg);
11585
11586                                 EMIT_NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
11587                         } else {
11588                                 if ((ip + 5 < end) && ip_in_bb (cfg, cfg->cbb, ip + 5) && 
11589                                         ((ip [5] == CEE_CALL) || (ip [5] == CEE_CALLVIRT)) && 
11590                                         (cmethod = mini_get_method (cfg, method, read32 (ip + 6), NULL, generic_context)) &&
11591                                         (cmethod->klass == mono_defaults.systemtype_class) &&
11592                                         (strcmp (cmethod->name, "GetTypeFromHandle") == 0)) {
11593                                         MonoClass *tclass = mono_class_from_mono_type ((MonoType *)handle);
11594
11595                                         mono_class_init (tclass);
11596                                         if (context_used) {
11597                                                 ins = mini_emit_get_rgctx_klass (cfg, context_used,
11598                                                         tclass, MONO_RGCTX_INFO_REFLECTION_TYPE);
11599                                         } else if (cfg->compile_aot) {
11600                                                 if (method->wrapper_type) {
11601                                                         error_init (&error); //got to do it since there are multiple conditionals below
11602                                                         if (mono_class_get_checked (tclass->image, tclass->type_token, &error) == tclass && !generic_context) {
11603                                                                 /* Special case for static synchronized wrappers */
11604                                                                 EMIT_NEW_TYPE_FROM_HANDLE_CONST (cfg, ins, tclass->image, tclass->type_token, generic_context);
11605                                                         } else {
11606                                                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
11607                                                                 /* FIXME: n is not a normal token */
11608                                                                 DISABLE_AOT (cfg);
11609                                                                 EMIT_NEW_PCONST (cfg, ins, NULL);
11610                                                         }
11611                                                 } else {
11612                                                         EMIT_NEW_TYPE_FROM_HANDLE_CONST (cfg, ins, image, n, generic_context);
11613                                                 }
11614                                         } else {
11615                                                 MonoReflectionType *rt = mono_type_get_object_checked (cfg->domain, (MonoType *)handle, &cfg->error);
11616                                                 CHECK_CFG_ERROR;
11617                                                 EMIT_NEW_PCONST (cfg, ins, rt);
11618                                         }
11619                                         ins->type = STACK_OBJ;
11620                                         ins->klass = cmethod->klass;
11621                                         ip += 5;
11622                                 } else {
11623                                         MonoInst *addr, *vtvar;
11624
11625                                         vtvar = mono_compile_create_var (cfg, &handle_class->byval_arg, OP_LOCAL);
11626
11627                                         if (context_used) {
11628                                                 if (handle_class == mono_defaults.typehandle_class) {
11629                                                         ins = mini_emit_get_rgctx_klass (cfg, context_used,
11630                                                                         mono_class_from_mono_type ((MonoType *)handle),
11631                                                                         MONO_RGCTX_INFO_TYPE);
11632                                                 } else if (handle_class == mono_defaults.methodhandle_class) {
11633                                                         ins = emit_get_rgctx_method (cfg, context_used,
11634                                                                         (MonoMethod *)handle, MONO_RGCTX_INFO_METHOD);
11635                                                 } else if (handle_class == mono_defaults.fieldhandle_class) {
11636                                                         ins = emit_get_rgctx_field (cfg, context_used,
11637                                                                         (MonoClassField *)handle, MONO_RGCTX_INFO_CLASS_FIELD);
11638                                                 } else {
11639                                                         g_assert_not_reached ();
11640                                                 }
11641                                         } else if (cfg->compile_aot) {
11642                                                 EMIT_NEW_LDTOKENCONST (cfg, ins, image, n, generic_context);
11643                                         } else {
11644                                                 EMIT_NEW_PCONST (cfg, ins, handle);
11645                                         }
11646                                         EMIT_NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
11647                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, addr->dreg, 0, ins->dreg);
11648                                         EMIT_NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
11649                                 }
11650                         }
11651
11652                         *sp++ = ins;
11653                         ip += 5;
11654                         break;
11655                 }
11656                 case CEE_THROW:
11657                         CHECK_STACK (1);
11658                         if (sp [-1]->type != STACK_OBJ)
11659                                 UNVERIFIED;
11660
11661                         MONO_INST_NEW (cfg, ins, OP_THROW);
11662                         --sp;
11663                         ins->sreg1 = sp [0]->dreg;
11664                         ip++;
11665                         cfg->cbb->out_of_line = TRUE;
11666                         MONO_ADD_INS (cfg->cbb, ins);
11667                         MONO_INST_NEW (cfg, ins, OP_NOT_REACHED);
11668                         MONO_ADD_INS (cfg->cbb, ins);
11669                         sp = stack_start;
11670                         
11671                         link_bblock (cfg, cfg->cbb, end_bblock);
11672                         start_new_bblock = 1;
11673                         /* This can complicate code generation for llvm since the return value might not be defined */
11674                         if (COMPILE_LLVM (cfg))
11675                                 INLINE_FAILURE ("throw");
11676                         break;
11677                 case CEE_ENDFINALLY:
11678                         if (!ip_in_finally_clause (cfg, ip - header->code))
11679                                 UNVERIFIED;
11680                         /* mono_save_seq_point_info () depends on this */
11681                         if (sp != stack_start)
11682                                 emit_seq_point (cfg, method, ip, FALSE, FALSE);
11683                         MONO_INST_NEW (cfg, ins, OP_ENDFINALLY);
11684                         MONO_ADD_INS (cfg->cbb, ins);
11685                         ip++;
11686                         start_new_bblock = 1;
11687
11688                         /*
11689                          * Control will leave the method so empty the stack, otherwise
11690                          * the next basic block will start with a nonempty stack.
11691                          */
11692                         while (sp != stack_start) {
11693                                 sp--;
11694                         }
11695                         break;
11696                 case CEE_LEAVE:
11697                 case CEE_LEAVE_S: {
11698                         GList *handlers;
11699
11700                         if (*ip == CEE_LEAVE) {
11701                                 CHECK_OPSIZE (5);
11702                                 target = ip + 5 + (gint32)read32(ip + 1);
11703                         } else {
11704                                 CHECK_OPSIZE (2);
11705                                 target = ip + 2 + (signed char)(ip [1]);
11706                         }
11707
11708                         /* empty the stack */
11709                         while (sp != stack_start) {
11710                                 sp--;
11711                         }
11712
11713                         /* 
11714                          * If this leave statement is in a catch block, check for a
11715                          * pending exception, and rethrow it if necessary.
11716                          * We avoid doing this in runtime invoke wrappers, since those are called
11717                          * by native code which excepts the wrapper to catch all exceptions.
11718                          */
11719                         for (i = 0; i < header->num_clauses; ++i) {
11720                                 MonoExceptionClause *clause = &header->clauses [i];
11721
11722                                 /* 
11723                                  * Use <= in the final comparison to handle clauses with multiple
11724                                  * leave statements, like in bug #78024.
11725                                  * The ordering of the exception clauses guarantees that we find the
11726                                  * innermost clause.
11727                                  */
11728                                 if (MONO_OFFSET_IN_HANDLER (clause, ip - header->code) && (clause->flags == MONO_EXCEPTION_CLAUSE_NONE) && (ip - header->code + ((*ip == CEE_LEAVE) ? 5 : 2)) <= (clause->handler_offset + clause->handler_len) && method->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE) {
11729                                         MonoInst *exc_ins;
11730                                         MonoBasicBlock *dont_throw;
11731
11732                                         /*
11733                                           MonoInst *load;
11734
11735                                           NEW_TEMPLOAD (cfg, load, mono_find_exvar_for_offset (cfg, clause->handler_offset)->inst_c0);
11736                                         */
11737
11738                                         exc_ins = mono_emit_jit_icall (cfg, mono_thread_get_undeniable_exception, NULL);
11739
11740                                         NEW_BBLOCK (cfg, dont_throw);
11741
11742                                         /*
11743                                          * Currently, we always rethrow the abort exception, despite the 
11744                                          * fact that this is not correct. See thread6.cs for an example. 
11745                                          * But propagating the abort exception is more important than 
11746                                          * getting the sematics right.
11747                                          */
11748                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, exc_ins->dreg, 0);
11749                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, dont_throw);
11750                                         MONO_EMIT_NEW_UNALU (cfg, OP_THROW, -1, exc_ins->dreg);
11751
11752                                         MONO_START_BB (cfg, dont_throw);
11753                                 }
11754                         }
11755
11756 #ifdef ENABLE_LLVM
11757                         cfg->cbb->try_end = (intptr_t)(ip - header->code);
11758 #endif
11759
11760                         if ((handlers = mono_find_final_block (cfg, ip, target, MONO_EXCEPTION_CLAUSE_FINALLY))) {
11761                                 GList *tmp;
11762                                 MonoExceptionClause *clause;
11763
11764                                 for (tmp = handlers; tmp; tmp = tmp->next) {
11765                                         clause = (MonoExceptionClause *)tmp->data;
11766                                         tblock = cfg->cil_offset_to_bb [clause->handler_offset];
11767                                         g_assert (tblock);
11768                                         link_bblock (cfg, cfg->cbb, tblock);
11769                                         MONO_INST_NEW (cfg, ins, OP_CALL_HANDLER);
11770                                         ins->inst_target_bb = tblock;
11771                                         ins->inst_eh_block = clause;
11772                                         MONO_ADD_INS (cfg->cbb, ins);
11773                                         cfg->cbb->has_call_handler = 1;
11774                                         if (COMPILE_LLVM (cfg)) {
11775                                                 MonoBasicBlock *target_bb;
11776
11777                                                 /* 
11778                                                  * Link the finally bblock with the target, since it will
11779                                                  * conceptually branch there.
11780                                                  */
11781                                                 GET_BBLOCK (cfg, tblock, cfg->cil_start + clause->handler_offset + clause->handler_len - 1);
11782                                                 GET_BBLOCK (cfg, target_bb, target);
11783                                                 link_bblock (cfg, tblock, target_bb);
11784                                         }
11785                                 }
11786                                 g_list_free (handlers);
11787                         } 
11788
11789                         MONO_INST_NEW (cfg, ins, OP_BR);
11790                         MONO_ADD_INS (cfg->cbb, ins);
11791                         GET_BBLOCK (cfg, tblock, target);
11792                         link_bblock (cfg, cfg->cbb, tblock);
11793                         ins->inst_target_bb = tblock;
11794
11795                         start_new_bblock = 1;
11796
11797                         if (*ip == CEE_LEAVE)
11798                                 ip += 5;
11799                         else
11800                                 ip += 2;
11801
11802                         break;
11803                 }
11804
11805                         /*
11806                          * Mono specific opcodes
11807                          */
11808                 case MONO_CUSTOM_PREFIX: {
11809
11810                         g_assert (method->wrapper_type != MONO_WRAPPER_NONE);
11811
11812                         CHECK_OPSIZE (2);
11813                         switch (ip [1]) {
11814                         case CEE_MONO_ICALL: {
11815                                 gpointer func;
11816                                 MonoJitICallInfo *info;
11817
11818                                 token = read32 (ip + 2);
11819                                 func = mono_method_get_wrapper_data (method, token);
11820                                 info = mono_find_jit_icall_by_addr (func);
11821                                 if (!info)
11822                                         g_error ("Could not find icall address in wrapper %s", mono_method_full_name (method, 1));
11823                                 g_assert (info);
11824
11825                                 CHECK_STACK (info->sig->param_count);
11826                                 sp -= info->sig->param_count;
11827
11828                                 ins = mono_emit_jit_icall (cfg, info->func, sp);
11829                                 if (!MONO_TYPE_IS_VOID (info->sig->ret))
11830                                         *sp++ = ins;
11831
11832                                 ip += 6;
11833                                 inline_costs += 10 * num_calls++;
11834
11835                                 break;
11836                         }
11837                         case CEE_MONO_LDPTR_CARD_TABLE:
11838                         case CEE_MONO_LDPTR_NURSERY_START:
11839                         case CEE_MONO_LDPTR_NURSERY_BITS:
11840                         case CEE_MONO_LDPTR_INT_REQ_FLAG: {
11841                                 CHECK_STACK_OVF (1);
11842
11843                                 switch (ip [1]) {
11844                                         case CEE_MONO_LDPTR_CARD_TABLE:
11845                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_CARD_TABLE_ADDR, NULL);
11846                                                 break;
11847                                         case CEE_MONO_LDPTR_NURSERY_START:
11848                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_NURSERY_START, NULL);
11849                                                 break;
11850                                         case CEE_MONO_LDPTR_NURSERY_BITS:
11851                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_NURSERY_BITS, NULL);
11852                                                 break;
11853                                         case CEE_MONO_LDPTR_INT_REQ_FLAG:
11854                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG, NULL);
11855                                                 break;
11856                                 }
11857
11858                                 *sp++ = ins;
11859                                 ip += 2;
11860                                 inline_costs += 10 * num_calls++;
11861                                 break;
11862                         }
11863                         case CEE_MONO_LDPTR: {
11864                                 gpointer ptr;
11865
11866                                 CHECK_STACK_OVF (1);
11867                                 CHECK_OPSIZE (6);
11868                                 token = read32 (ip + 2);
11869
11870                                 ptr = mono_method_get_wrapper_data (method, token);
11871                                 EMIT_NEW_PCONST (cfg, ins, ptr);
11872                                 *sp++ = ins;
11873                                 ip += 6;
11874                                 inline_costs += 10 * num_calls++;
11875                                 /* Can't embed random pointers into AOT code */
11876                                 DISABLE_AOT (cfg);
11877                                 break;
11878                         }
11879                         case CEE_MONO_JIT_ICALL_ADDR: {
11880                                 MonoJitICallInfo *callinfo;
11881                                 gpointer ptr;
11882
11883                                 CHECK_STACK_OVF (1);
11884                                 CHECK_OPSIZE (6);
11885                                 token = read32 (ip + 2);
11886
11887                                 ptr = mono_method_get_wrapper_data (method, token);
11888                                 callinfo = mono_find_jit_icall_by_addr (ptr);
11889                                 g_assert (callinfo);
11890                                 EMIT_NEW_JIT_ICALL_ADDRCONST (cfg, ins, (char*)callinfo->name);
11891                                 *sp++ = ins;
11892                                 ip += 6;
11893                                 inline_costs += 10 * num_calls++;
11894                                 break;
11895                         }
11896                         case CEE_MONO_ICALL_ADDR: {
11897                                 MonoMethod *cmethod;
11898                                 gpointer ptr;
11899
11900                                 CHECK_STACK_OVF (1);
11901                                 CHECK_OPSIZE (6);
11902                                 token = read32 (ip + 2);
11903
11904                                 cmethod = (MonoMethod *)mono_method_get_wrapper_data (method, token);
11905
11906                                 if (cfg->compile_aot) {
11907                                         if (cfg->direct_pinvoke && ip + 6 < end && (ip [6] == CEE_POP)) {
11908                                                 /*
11909                                                  * This is generated by emit_native_wrapper () to resolve the pinvoke address
11910                                                  * before the call, its not needed when using direct pinvoke.
11911                                                  * This is not an optimization, but its used to avoid looking up pinvokes
11912                                                  * on platforms which don't support dlopen ().
11913                                                  */
11914                                                 EMIT_NEW_PCONST (cfg, ins, NULL);
11915                                         } else {
11916                                                 EMIT_NEW_AOTCONST (cfg, ins, MONO_PATCH_INFO_ICALL_ADDR, cmethod);
11917                                         }
11918                                 } else {
11919                                         ptr = mono_lookup_internal_call (cmethod);
11920                                         g_assert (ptr);
11921                                         EMIT_NEW_PCONST (cfg, ins, ptr);
11922                                 }
11923                                 *sp++ = ins;
11924                                 ip += 6;
11925                                 break;
11926                         }
11927                         case CEE_MONO_VTADDR: {
11928                                 MonoInst *src_var, *src;
11929
11930                                 CHECK_STACK (1);
11931                                 --sp;
11932
11933                                 // FIXME:
11934                                 src_var = get_vreg_to_inst (cfg, sp [0]->dreg);
11935                                 EMIT_NEW_VARLOADA ((cfg), (src), src_var, src_var->inst_vtype);
11936                                 *sp++ = src;
11937                                 ip += 2;
11938                                 break;
11939                         }
11940                         case CEE_MONO_NEWOBJ: {
11941                                 MonoInst *iargs [2];
11942
11943                                 CHECK_STACK_OVF (1);
11944                                 CHECK_OPSIZE (6);
11945                                 token = read32 (ip + 2);
11946                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
11947                                 mono_class_init (klass);
11948                                 NEW_DOMAINCONST (cfg, iargs [0]);
11949                                 MONO_ADD_INS (cfg->cbb, iargs [0]);
11950                                 NEW_CLASSCONST (cfg, iargs [1], klass);
11951                                 MONO_ADD_INS (cfg->cbb, iargs [1]);
11952                                 *sp++ = mono_emit_jit_icall (cfg, ves_icall_object_new, iargs);
11953                                 ip += 6;
11954                                 inline_costs += 10 * num_calls++;
11955                                 break;
11956                         }
11957                         case CEE_MONO_OBJADDR:
11958                                 CHECK_STACK (1);
11959                                 --sp;
11960                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
11961                                 ins->dreg = alloc_ireg_mp (cfg);
11962                                 ins->sreg1 = sp [0]->dreg;
11963                                 ins->type = STACK_MP;
11964                                 MONO_ADD_INS (cfg->cbb, ins);
11965                                 *sp++ = ins;
11966                                 ip += 2;
11967                                 break;
11968                         case CEE_MONO_LDNATIVEOBJ:
11969                                 /*
11970                                  * Similar to LDOBJ, but instead load the unmanaged 
11971                                  * representation of the vtype to the stack.
11972                                  */
11973                                 CHECK_STACK (1);
11974                                 CHECK_OPSIZE (6);
11975                                 --sp;
11976                                 token = read32 (ip + 2);
11977                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
11978                                 g_assert (klass->valuetype);
11979                                 mono_class_init (klass);
11980
11981                                 {
11982                                         MonoInst *src, *dest, *temp;
11983
11984                                         src = sp [0];
11985                                         temp = mono_compile_create_var (cfg, &klass->byval_arg, OP_LOCAL);
11986                                         temp->backend.is_pinvoke = 1;
11987                                         EMIT_NEW_TEMPLOADA (cfg, dest, temp->inst_c0);
11988                                         mini_emit_stobj (cfg, dest, src, klass, TRUE);
11989
11990                                         EMIT_NEW_TEMPLOAD (cfg, dest, temp->inst_c0);
11991                                         dest->type = STACK_VTYPE;
11992                                         dest->klass = klass;
11993
11994                                         *sp ++ = dest;
11995                                         ip += 6;
11996                                 }
11997                                 break;
11998                         case CEE_MONO_RETOBJ: {
11999                                 /*
12000                                  * Same as RET, but return the native representation of a vtype
12001                                  * to the caller.
12002                                  */
12003                                 g_assert (cfg->ret);
12004                                 g_assert (mono_method_signature (method)->pinvoke); 
12005                                 CHECK_STACK (1);
12006                                 --sp;
12007                                 
12008                                 CHECK_OPSIZE (6);
12009                                 token = read32 (ip + 2);    
12010                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
12011
12012                                 if (!cfg->vret_addr) {
12013                                         g_assert (cfg->ret_var_is_local);
12014
12015                                         EMIT_NEW_VARLOADA (cfg, ins, cfg->ret, cfg->ret->inst_vtype);
12016                                 } else {
12017                                         EMIT_NEW_RETLOADA (cfg, ins);
12018                                 }
12019                                 mini_emit_stobj (cfg, ins, sp [0], klass, TRUE);
12020                                 
12021                                 if (sp != stack_start)
12022                                         UNVERIFIED;
12023                                 
12024                                 MONO_INST_NEW (cfg, ins, OP_BR);
12025                                 ins->inst_target_bb = end_bblock;
12026                                 MONO_ADD_INS (cfg->cbb, ins);
12027                                 link_bblock (cfg, cfg->cbb, end_bblock);
12028                                 start_new_bblock = 1;
12029                                 ip += 6;
12030                                 break;
12031                         }
12032                         case CEE_MONO_SAVE_LMF:
12033                         case CEE_MONO_RESTORE_LMF:
12034                                 ip += 2;
12035                                 break;
12036                         case CEE_MONO_CLASSCONST:
12037                                 CHECK_STACK_OVF (1);
12038                                 CHECK_OPSIZE (6);
12039                                 token = read32 (ip + 2);
12040                                 EMIT_NEW_CLASSCONST (cfg, ins, mono_method_get_wrapper_data (method, token));
12041                                 *sp++ = ins;
12042                                 ip += 6;
12043                                 inline_costs += 10 * num_calls++;
12044                                 break;
12045                         case CEE_MONO_NOT_TAKEN:
12046                                 cfg->cbb->out_of_line = TRUE;
12047                                 ip += 2;
12048                                 break;
12049                         case CEE_MONO_TLS: {
12050                                 MonoTlsKey key;
12051
12052                                 CHECK_STACK_OVF (1);
12053                                 CHECK_OPSIZE (6);
12054                                 key = (MonoTlsKey)read32 (ip + 2);
12055                                 g_assert (key < TLS_KEY_NUM);
12056
12057                                 ins = mono_create_tls_get (cfg, key);
12058                                 g_assert (ins);
12059                                 ins->type = STACK_PTR;
12060                                 *sp++ = ins;
12061                                 ip += 6;
12062                                 break;
12063                         }
12064                         case CEE_MONO_DYN_CALL: {
12065                                 MonoCallInst *call;
12066
12067                                 /* It would be easier to call a trampoline, but that would put an
12068                                  * extra frame on the stack, confusing exception handling. So
12069                                  * implement it inline using an opcode for now.
12070                                  */
12071
12072                                 if (!cfg->dyn_call_var) {
12073                                         cfg->dyn_call_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
12074                                         /* prevent it from being register allocated */
12075                                         cfg->dyn_call_var->flags |= MONO_INST_VOLATILE;
12076                                 }
12077
12078                                 /* Has to use a call inst since it local regalloc expects it */
12079                                 MONO_INST_NEW_CALL (cfg, call, OP_DYN_CALL);
12080                                 ins = (MonoInst*)call;
12081                                 sp -= 2;
12082                                 ins->sreg1 = sp [0]->dreg;
12083                                 ins->sreg2 = sp [1]->dreg;
12084                                 MONO_ADD_INS (cfg->cbb, ins);
12085
12086                                 cfg->param_area = MAX (cfg->param_area, cfg->backend->dyn_call_param_area);
12087
12088                                 ip += 2;
12089                                 inline_costs += 10 * num_calls++;
12090
12091                                 break;
12092                         }
12093                         case CEE_MONO_MEMORY_BARRIER: {
12094                                 CHECK_OPSIZE (6);
12095                                 emit_memory_barrier (cfg, (int)read32 (ip + 2));
12096                                 ip += 6;
12097                                 break;
12098                         }
12099                         case CEE_MONO_ATOMIC_STORE_I4: {
12100                                 g_assert (mono_arch_opcode_supported (OP_ATOMIC_STORE_I4));
12101
12102                                 CHECK_OPSIZE (6);
12103                                 CHECK_STACK (2);
12104                                 sp -= 2;
12105
12106                                 MONO_INST_NEW (cfg, ins, OP_ATOMIC_STORE_I4);
12107                                 ins->dreg = sp [0]->dreg;
12108                                 ins->sreg1 = sp [1]->dreg;
12109                                 ins->backend.memory_barrier_kind = (int) read32 (ip + 2);
12110                                 MONO_ADD_INS (cfg->cbb, ins);
12111
12112                                 ip += 6;
12113                                 break;
12114                         }
12115                         case CEE_MONO_JIT_ATTACH: {
12116                                 MonoInst *args [16], *domain_ins;
12117                                 MonoInst *ad_ins, *jit_tls_ins;
12118                                 MonoBasicBlock *next_bb = NULL, *call_bb = NULL;
12119
12120                                 g_assert (!mono_threads_is_coop_enabled ());
12121
12122                                 cfg->orig_domain_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
12123
12124                                 EMIT_NEW_PCONST (cfg, ins, NULL);
12125                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->orig_domain_var->dreg, ins->dreg);
12126
12127                                 ad_ins = mono_create_tls_get (cfg, TLS_KEY_DOMAIN);
12128                                 jit_tls_ins = mono_create_tls_get (cfg, TLS_KEY_JIT_TLS);
12129
12130                                 if (ad_ins && jit_tls_ins) {
12131                                         NEW_BBLOCK (cfg, next_bb);
12132                                         NEW_BBLOCK (cfg, call_bb);
12133
12134                                         if (cfg->compile_aot) {
12135                                                 /* AOT code is only used in the root domain */
12136                                                 EMIT_NEW_PCONST (cfg, domain_ins, NULL);
12137                                         } else {
12138                                                 EMIT_NEW_PCONST (cfg, domain_ins, cfg->domain);
12139                                         }
12140                                         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, ad_ins->dreg, domain_ins->dreg);
12141                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, call_bb);
12142
12143                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, jit_tls_ins->dreg, 0);
12144                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, call_bb);
12145
12146                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, next_bb);
12147                                         MONO_START_BB (cfg, call_bb);
12148                                 }
12149
12150                                 /* AOT code is only used in the root domain */
12151                                 EMIT_NEW_PCONST (cfg, args [0], cfg->compile_aot ? NULL : cfg->domain);
12152                                 if (cfg->compile_aot) {
12153                                         MonoInst *addr;
12154
12155                                         /*
12156                                          * This is called on unattached threads, so it cannot go through the trampoline
12157                                          * infrastructure. Use an indirect call through a got slot initialized at load time
12158                                          * instead.
12159                                          */
12160                                         EMIT_NEW_AOTCONST (cfg, addr, MONO_PATCH_INFO_JIT_THREAD_ATTACH, NULL);
12161                                         ins = mono_emit_calli (cfg, helper_sig_jit_thread_attach, args, addr, NULL, NULL);
12162                                 } else {
12163                                         ins = mono_emit_jit_icall (cfg, mono_jit_thread_attach, args);
12164                                 }
12165                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->orig_domain_var->dreg, ins->dreg);
12166
12167                                 if (next_bb)
12168                                         MONO_START_BB (cfg, next_bb);
12169
12170                                 ip += 2;
12171                                 break;
12172                         }
12173                         case CEE_MONO_JIT_DETACH: {
12174                                 MonoInst *args [16];
12175
12176                                 /* Restore the original domain */
12177                                 dreg = alloc_ireg (cfg);
12178                                 EMIT_NEW_UNALU (cfg, args [0], OP_MOVE, dreg, cfg->orig_domain_var->dreg);
12179                                 mono_emit_jit_icall (cfg, mono_jit_set_domain, args);
12180                                 ip += 2;
12181                                 break;
12182                         }
12183                         case CEE_MONO_CALLI_EXTRA_ARG: {
12184                                 MonoInst *addr;
12185                                 MonoMethodSignature *fsig;
12186                                 MonoInst *arg;
12187
12188                                 /*
12189                                  * This is the same as CEE_CALLI, but passes an additional argument
12190                                  * to the called method in llvmonly mode.
12191                                  * This is only used by delegate invoke wrappers to call the
12192                                  * actual delegate method.
12193                                  */
12194                                 g_assert (method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE);
12195
12196                                 CHECK_OPSIZE (6);
12197                                 token = read32 (ip + 2);
12198
12199                                 ins = NULL;
12200
12201                                 cmethod = NULL;
12202                                 CHECK_STACK (1);
12203                                 --sp;
12204                                 addr = *sp;
12205                                 fsig = mini_get_signature (method, token, generic_context, &cfg->error);
12206                                 CHECK_CFG_ERROR;
12207
12208                                 if (cfg->llvm_only)
12209                                         cfg->signatures = g_slist_prepend_mempool (cfg->mempool, cfg->signatures, fsig);
12210
12211                                 n = fsig->param_count + fsig->hasthis + 1;
12212
12213                                 CHECK_STACK (n);
12214
12215                                 sp -= n;
12216                                 arg = sp [n - 1];
12217
12218                                 if (cfg->llvm_only) {
12219                                         /*
12220                                          * The lowest bit of 'arg' determines whenever the callee uses the gsharedvt
12221                                          * cconv. This is set by mono_init_delegate ().
12222                                          */
12223                                         if (cfg->gsharedvt && mini_is_gsharedvt_variable_signature (fsig)) {
12224                                                 MonoInst *callee = addr;
12225                                                 MonoInst *call, *localloc_ins;
12226                                                 MonoBasicBlock *is_gsharedvt_bb, *end_bb;
12227                                                 int low_bit_reg = alloc_preg (cfg);
12228
12229                                                 NEW_BBLOCK (cfg, is_gsharedvt_bb);
12230                                                 NEW_BBLOCK (cfg, end_bb);
12231
12232                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PAND_IMM, low_bit_reg, arg->dreg, 1);
12233                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, low_bit_reg, 0);
12234                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, is_gsharedvt_bb);
12235
12236                                                 /* Normal case: callee uses a normal cconv, have to add an out wrapper */
12237                                                 addr = emit_get_rgctx_sig (cfg, context_used,
12238                                                                                                    fsig, MONO_RGCTX_INFO_SIG_GSHAREDVT_OUT_TRAMPOLINE_CALLI);
12239                                                 /*
12240                                                  * ADDR points to a gsharedvt-out wrapper, have to pass <callee, arg> as an extra arg.
12241                                                  */
12242                                                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC_IMM);
12243                                                 ins->dreg = alloc_preg (cfg);
12244                                                 ins->inst_imm = 2 * SIZEOF_VOID_P;
12245                                                 MONO_ADD_INS (cfg->cbb, ins);
12246                                                 localloc_ins = ins;
12247                                                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
12248                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, 0, callee->dreg);
12249                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, SIZEOF_VOID_P, arg->dreg);
12250
12251                                                 call = emit_extra_arg_calli (cfg, fsig, sp, localloc_ins->dreg, addr);
12252                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
12253
12254                                                 /* Gsharedvt case: callee uses a gsharedvt cconv, no conversion is needed */
12255                                                 MONO_START_BB (cfg, is_gsharedvt_bb);
12256                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PXOR_IMM, arg->dreg, arg->dreg, 1);
12257                                                 ins = emit_extra_arg_calli (cfg, fsig, sp, arg->dreg, callee);
12258                                                 ins->dreg = call->dreg;
12259
12260                                                 MONO_START_BB (cfg, end_bb);
12261                                         } else {
12262                                                 /* Caller uses a normal calling conv */
12263
12264                                                 MonoInst *callee = addr;
12265                                                 MonoInst *call, *localloc_ins;
12266                                                 MonoBasicBlock *is_gsharedvt_bb, *end_bb;
12267                                                 int low_bit_reg = alloc_preg (cfg);
12268
12269                                                 NEW_BBLOCK (cfg, is_gsharedvt_bb);
12270                                                 NEW_BBLOCK (cfg, end_bb);
12271
12272                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PAND_IMM, low_bit_reg, arg->dreg, 1);
12273                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, low_bit_reg, 0);
12274                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, is_gsharedvt_bb);
12275
12276                                                 /* Normal case: callee uses a normal cconv, no conversion is needed */
12277                                                 call = emit_extra_arg_calli (cfg, fsig, sp, arg->dreg, callee);
12278                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
12279                                                 /* Gsharedvt case: callee uses a gsharedvt cconv, have to add an in wrapper */
12280                                                 MONO_START_BB (cfg, is_gsharedvt_bb);
12281                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PXOR_IMM, arg->dreg, arg->dreg, 1);
12282                                                 NEW_AOTCONST (cfg, addr, MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER, fsig);
12283                                                 MONO_ADD_INS (cfg->cbb, addr);
12284                                                 /*
12285                                                  * ADDR points to a gsharedvt-in wrapper, have to pass <callee, arg> as an extra arg.
12286                                                  */
12287                                                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC_IMM);
12288                                                 ins->dreg = alloc_preg (cfg);
12289                                                 ins->inst_imm = 2 * SIZEOF_VOID_P;
12290                                                 MONO_ADD_INS (cfg->cbb, ins);
12291                                                 localloc_ins = ins;
12292                                                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
12293                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, 0, callee->dreg);
12294                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, SIZEOF_VOID_P, arg->dreg);
12295
12296                                                 ins = emit_extra_arg_calli (cfg, fsig, sp, localloc_ins->dreg, addr);
12297                                                 ins->dreg = call->dreg;
12298                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
12299
12300                                                 MONO_START_BB (cfg, end_bb);
12301                                         }
12302                                 } else {
12303                                         /* Same as CEE_CALLI */
12304                                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) {
12305                                                 /*
12306                                                  * We pass the address to the gsharedvt trampoline in the rgctx reg
12307                                                  */
12308                                                 MonoInst *callee = addr;
12309
12310                                                 addr = emit_get_rgctx_sig (cfg, context_used,
12311                                                                                                    fsig, MONO_RGCTX_INFO_SIG_GSHAREDVT_OUT_TRAMPOLINE_CALLI);
12312                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, callee);
12313                                         } else {
12314                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
12315                                         }
12316                                 }
12317
12318                                 if (!MONO_TYPE_IS_VOID (fsig->ret))
12319                                         *sp++ = mono_emit_widen_call_res (cfg, ins, fsig);
12320
12321                                 CHECK_CFG_EXCEPTION;
12322
12323                                 ip += 6;
12324                                 ins_flag = 0;
12325                                 constrained_class = NULL;
12326                                 break;
12327                         }
12328                         case CEE_MONO_LDDOMAIN:
12329                                 CHECK_STACK_OVF (1);
12330                                 EMIT_NEW_PCONST (cfg, ins, cfg->compile_aot ? NULL : cfg->domain);
12331                                 ip += 2;
12332                                 *sp++ = ins;
12333                                 break;
12334                         case CEE_MONO_GET_LAST_ERROR:
12335                                 CHECK_OPSIZE (2);
12336                                 CHECK_STACK_OVF (1);
12337
12338                                 MONO_INST_NEW (cfg, ins, OP_GET_LAST_ERROR);
12339                                 ins->dreg = alloc_dreg (cfg, STACK_I4);
12340                                 ins->type = STACK_I4;
12341                                 MONO_ADD_INS (cfg->cbb, ins);
12342
12343                                 ip += 2;
12344                                 *sp++ = ins;
12345                                 break;
12346                         default:
12347                                 g_error ("opcode 0x%02x 0x%02x not handled", MONO_CUSTOM_PREFIX, ip [1]);
12348                                 break;
12349                         }
12350                         break;
12351                 }
12352
12353                 case CEE_PREFIX1: {
12354                         CHECK_OPSIZE (2);
12355                         switch (ip [1]) {
12356                         case CEE_ARGLIST: {
12357                                 /* somewhat similar to LDTOKEN */
12358                                 MonoInst *addr, *vtvar;
12359                                 CHECK_STACK_OVF (1);
12360                                 vtvar = mono_compile_create_var (cfg, &mono_defaults.argumenthandle_class->byval_arg, OP_LOCAL); 
12361
12362                                 EMIT_NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
12363                                 EMIT_NEW_UNALU (cfg, ins, OP_ARGLIST, -1, addr->dreg);
12364
12365                                 EMIT_NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
12366                                 ins->type = STACK_VTYPE;
12367                                 ins->klass = mono_defaults.argumenthandle_class;
12368                                 *sp++ = ins;
12369                                 ip += 2;
12370                                 break;
12371                         }
12372                         case CEE_CEQ:
12373                         case CEE_CGT:
12374                         case CEE_CGT_UN:
12375                         case CEE_CLT:
12376                         case CEE_CLT_UN: {
12377                                 MonoInst *cmp, *arg1, *arg2;
12378
12379                                 CHECK_STACK (2);
12380                                 sp -= 2;
12381                                 arg1 = sp [0];
12382                                 arg2 = sp [1];
12383
12384                                 /*
12385                                  * The following transforms:
12386                                  *    CEE_CEQ    into OP_CEQ
12387                                  *    CEE_CGT    into OP_CGT
12388                                  *    CEE_CGT_UN into OP_CGT_UN
12389                                  *    CEE_CLT    into OP_CLT
12390                                  *    CEE_CLT_UN into OP_CLT_UN
12391                                  */
12392                                 MONO_INST_NEW (cfg, cmp, (OP_CEQ - CEE_CEQ) + ip [1]);
12393
12394                                 MONO_INST_NEW (cfg, ins, cmp->opcode);
12395                                 cmp->sreg1 = arg1->dreg;
12396                                 cmp->sreg2 = arg2->dreg;
12397                                 type_from_op (cfg, cmp, arg1, arg2);
12398                                 CHECK_TYPE (cmp);
12399                                 add_widen_op (cfg, cmp, &arg1, &arg2);
12400                                 if ((arg1->type == STACK_I8) || ((SIZEOF_VOID_P == 8) && ((arg1->type == STACK_PTR) || (arg1->type == STACK_OBJ) || (arg1->type == STACK_MP))))
12401                                         cmp->opcode = OP_LCOMPARE;
12402                                 else if (arg1->type == STACK_R4)
12403                                         cmp->opcode = OP_RCOMPARE;
12404                                 else if (arg1->type == STACK_R8)
12405                                         cmp->opcode = OP_FCOMPARE;
12406                                 else
12407                                         cmp->opcode = OP_ICOMPARE;
12408                                 MONO_ADD_INS (cfg->cbb, cmp);
12409                                 ins->type = STACK_I4;
12410                                 ins->dreg = alloc_dreg (cfg, (MonoStackType)ins->type);
12411                                 type_from_op (cfg, ins, arg1, arg2);
12412
12413                                 if (cmp->opcode == OP_FCOMPARE || cmp->opcode == OP_RCOMPARE) {
12414                                         /*
12415                                          * The backends expect the fceq opcodes to do the
12416                                          * comparison too.
12417                                          */
12418                                         ins->sreg1 = cmp->sreg1;
12419                                         ins->sreg2 = cmp->sreg2;
12420                                         NULLIFY_INS (cmp);
12421                                 }
12422                                 MONO_ADD_INS (cfg->cbb, ins);
12423                                 *sp++ = ins;
12424                                 ip += 2;
12425                                 break;
12426                         }
12427                         case CEE_LDFTN: {
12428                                 MonoInst *argconst;
12429                                 MonoMethod *cil_method;
12430
12431                                 CHECK_STACK_OVF (1);
12432                                 CHECK_OPSIZE (6);
12433                                 n = read32 (ip + 2);
12434                                 cmethod = mini_get_method (cfg, method, n, NULL, generic_context);
12435                                 CHECK_CFG_ERROR;
12436
12437                                 mono_class_init (cmethod->klass);
12438
12439                                 mono_save_token_info (cfg, image, n, cmethod);
12440
12441                                 context_used = mini_method_check_context_used (cfg, cmethod);
12442
12443                                 cil_method = cmethod;
12444                                 if (!dont_verify && !cfg->skip_visibility && !mono_method_can_access_method (method, cmethod))
12445                                         emit_method_access_failure (cfg, method, cil_method);
12446
12447                                 if (mono_security_core_clr_enabled ())
12448                                         ensure_method_is_allowed_to_call_method (cfg, method, cmethod);
12449
12450                                 /* 
12451                                  * Optimize the common case of ldftn+delegate creation
12452                                  */
12453                                 if ((sp > stack_start) && (ip + 6 + 5 < end) && ip_in_bb (cfg, cfg->cbb, ip + 6) && (ip [6] == CEE_NEWOBJ)) {
12454                                         MonoMethod *ctor_method = mini_get_method (cfg, method, read32 (ip + 7), NULL, generic_context);
12455                                         if (ctor_method && (ctor_method->klass->parent == mono_defaults.multicastdelegate_class)) {
12456                                                 MonoInst *target_ins, *handle_ins;
12457                                                 MonoMethod *invoke;
12458                                                 int invoke_context_used;
12459
12460                                                 invoke = mono_get_delegate_invoke (ctor_method->klass);
12461                                                 if (!invoke || !mono_method_signature (invoke))
12462                                                         LOAD_ERROR;
12463
12464                                                 invoke_context_used = mini_method_check_context_used (cfg, invoke);
12465
12466                                                 target_ins = sp [-1];
12467
12468                                                 if (mono_security_core_clr_enabled ())
12469                                                         ensure_method_is_allowed_to_call_method (cfg, method, ctor_method);
12470
12471                                                 if (!(cmethod->flags & METHOD_ATTRIBUTE_STATIC)) {
12472                                                         /*LAME IMPL: We must not add a null check for virtual invoke delegates.*/
12473                                                         if (mono_method_signature (invoke)->param_count == mono_method_signature (cmethod)->param_count) {
12474                                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, target_ins->dreg, 0);
12475                                                                 MONO_EMIT_NEW_COND_EXC (cfg, EQ, "ArgumentException");
12476                                                         }
12477                                                 }
12478
12479                                                 /* FIXME: SGEN support */
12480                                                 if (invoke_context_used == 0 || cfg->llvm_only) {
12481                                                         ip += 6;
12482                                                         if (cfg->verbose_level > 3)
12483                                                                 g_print ("converting (in B%d: stack: %d) %s", cfg->cbb->block_num, (int)(sp - stack_start), mono_disasm_code_one (NULL, method, ip, NULL));
12484                                                         if ((handle_ins = handle_delegate_ctor (cfg, ctor_method->klass, target_ins, cmethod, context_used, FALSE))) {
12485                                                                 sp --;
12486                                                                 *sp = handle_ins;
12487                                                                 CHECK_CFG_EXCEPTION;
12488                                                                 ip += 5;
12489                                                                 sp ++;
12490                                                                 break;
12491                                                         }
12492                                                         ip -= 6;
12493                                                 }
12494                                         }
12495                                 }
12496
12497                                 argconst = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_METHOD);
12498                                 ins = mono_emit_jit_icall (cfg, mono_ldftn, &argconst);
12499                                 *sp++ = ins;
12500                                 
12501                                 ip += 6;
12502                                 inline_costs += 10 * num_calls++;
12503                                 break;
12504                         }
12505                         case CEE_LDVIRTFTN: {
12506                                 MonoInst *args [2];
12507
12508                                 CHECK_STACK (1);
12509                                 CHECK_OPSIZE (6);
12510                                 n = read32 (ip + 2);
12511                                 cmethod = mini_get_method (cfg, method, n, NULL, generic_context);
12512                                 CHECK_CFG_ERROR;
12513
12514                                 mono_class_init (cmethod->klass);
12515  
12516                                 context_used = mini_method_check_context_used (cfg, cmethod);
12517
12518                                 if (mono_security_core_clr_enabled ())
12519                                         ensure_method_is_allowed_to_call_method (cfg, method, cmethod);
12520
12521                                 /*
12522                                  * Optimize the common case of ldvirtftn+delegate creation
12523                                  */
12524                                 if ((sp > stack_start) && (ip + 6 + 5 < end) && ip_in_bb (cfg, cfg->cbb, ip + 6) && (ip [6] == CEE_NEWOBJ) && (ip > header->code && ip [-1] == CEE_DUP)) {
12525                                         MonoMethod *ctor_method = mini_get_method (cfg, method, read32 (ip + 7), NULL, generic_context);
12526                                         if (ctor_method && (ctor_method->klass->parent == mono_defaults.multicastdelegate_class)) {
12527                                                 MonoInst *target_ins, *handle_ins;
12528                                                 MonoMethod *invoke;
12529                                                 int invoke_context_used;
12530                                                 gboolean is_virtual = cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL;
12531
12532                                                 invoke = mono_get_delegate_invoke (ctor_method->klass);
12533                                                 if (!invoke || !mono_method_signature (invoke))
12534                                                         LOAD_ERROR;
12535
12536                                                 invoke_context_used = mini_method_check_context_used (cfg, invoke);
12537
12538                                                 target_ins = sp [-1];
12539
12540                                                 if (mono_security_core_clr_enabled ())
12541                                                         ensure_method_is_allowed_to_call_method (cfg, method, ctor_method);
12542
12543                                                 /* FIXME: SGEN support */
12544                                                 if (invoke_context_used == 0 || cfg->llvm_only) {
12545                                                         ip += 6;
12546                                                         if (cfg->verbose_level > 3)
12547                                                                 g_print ("converting (in B%d: stack: %d) %s", cfg->cbb->block_num, (int)(sp - stack_start), mono_disasm_code_one (NULL, method, ip, NULL));
12548                                                         if ((handle_ins = handle_delegate_ctor (cfg, ctor_method->klass, target_ins, cmethod, context_used, is_virtual))) {
12549                                                                 sp -= 2;
12550                                                                 *sp = handle_ins;
12551                                                                 CHECK_CFG_EXCEPTION;
12552                                                                 ip += 5;
12553                                                                 sp ++;
12554                                                                 break;
12555                                                         }
12556                                                         ip -= 6;
12557                                                 }
12558                                         }
12559                                 }
12560
12561                                 --sp;
12562                                 args [0] = *sp;
12563
12564                                 args [1] = emit_get_rgctx_method (cfg, context_used,
12565                                                                                                   cmethod, MONO_RGCTX_INFO_METHOD);
12566
12567                                 if (context_used)
12568                                         *sp++ = mono_emit_jit_icall (cfg, mono_ldvirtfn_gshared, args);
12569                                 else
12570                                         *sp++ = mono_emit_jit_icall (cfg, mono_ldvirtfn, args);
12571
12572                                 ip += 6;
12573                                 inline_costs += 10 * num_calls++;
12574                                 break;
12575                         }
12576                         case CEE_LDARG:
12577                                 CHECK_STACK_OVF (1);
12578                                 CHECK_OPSIZE (4);
12579                                 n = read16 (ip + 2);
12580                                 CHECK_ARG (n);
12581                                 EMIT_NEW_ARGLOAD (cfg, ins, n);
12582                                 *sp++ = ins;
12583                                 ip += 4;
12584                                 break;
12585                         case CEE_LDARGA:
12586                                 CHECK_STACK_OVF (1);
12587                                 CHECK_OPSIZE (4);
12588                                 n = read16 (ip + 2);
12589                                 CHECK_ARG (n);
12590                                 NEW_ARGLOADA (cfg, ins, n);
12591                                 MONO_ADD_INS (cfg->cbb, ins);
12592                                 *sp++ = ins;
12593                                 ip += 4;
12594                                 break;
12595                         case CEE_STARG:
12596                                 CHECK_STACK (1);
12597                                 --sp;
12598                                 CHECK_OPSIZE (4);
12599                                 n = read16 (ip + 2);
12600                                 CHECK_ARG (n);
12601                                 if (!dont_verify_stloc && target_type_is_incompatible (cfg, param_types [n], *sp))
12602                                         UNVERIFIED;
12603                                 EMIT_NEW_ARGSTORE (cfg, ins, n, *sp);
12604                                 ip += 4;
12605                                 break;
12606                         case CEE_LDLOC:
12607                                 CHECK_STACK_OVF (1);
12608                                 CHECK_OPSIZE (4);
12609                                 n = read16 (ip + 2);
12610                                 CHECK_LOCAL (n);
12611                                 EMIT_NEW_LOCLOAD (cfg, ins, n);
12612                                 *sp++ = ins;
12613                                 ip += 4;
12614                                 break;
12615                         case CEE_LDLOCA: {
12616                                 unsigned char *tmp_ip;
12617                                 CHECK_STACK_OVF (1);
12618                                 CHECK_OPSIZE (4);
12619                                 n = read16 (ip + 2);
12620                                 CHECK_LOCAL (n);
12621
12622                                 if ((tmp_ip = emit_optimized_ldloca_ir (cfg, ip, end, 2))) {
12623                                         ip = tmp_ip;
12624                                         inline_costs += 1;
12625                                         break;
12626                                 }                       
12627                                 
12628                                 EMIT_NEW_LOCLOADA (cfg, ins, n);
12629                                 *sp++ = ins;
12630                                 ip += 4;
12631                                 break;
12632                         }
12633                         case CEE_STLOC:
12634                                 CHECK_STACK (1);
12635                                 --sp;
12636                                 CHECK_OPSIZE (4);
12637                                 n = read16 (ip + 2);
12638                                 CHECK_LOCAL (n);
12639                                 if (!dont_verify_stloc && target_type_is_incompatible (cfg, header->locals [n], *sp))
12640                                         UNVERIFIED;
12641                                 emit_stloc_ir (cfg, sp, header, n);
12642                                 ip += 4;
12643                                 inline_costs += 1;
12644                                 break;
12645                         case CEE_LOCALLOC: {
12646                                 CHECK_STACK (1);
12647                                 MonoBasicBlock *non_zero_bb, *end_bb;
12648                                 int alloc_ptr = alloc_preg (cfg);
12649                                 --sp;
12650                                 if (sp != stack_start) 
12651                                         UNVERIFIED;
12652                                 if (cfg->method != method) 
12653                                         /* 
12654                                          * Inlining this into a loop in a parent could lead to 
12655                                          * stack overflows which is different behavior than the
12656                                          * non-inlined case, thus disable inlining in this case.
12657                                          */
12658                                         INLINE_FAILURE("localloc");
12659
12660                                 NEW_BBLOCK (cfg, non_zero_bb);
12661                                 NEW_BBLOCK (cfg, end_bb);
12662
12663                                 /* if size != zero */
12664                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, sp [0]->dreg, 0);
12665                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, non_zero_bb);
12666
12667                                 //size is zero, so result is NULL
12668                                 MONO_EMIT_NEW_PCONST (cfg, alloc_ptr, NULL);
12669                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
12670
12671                                 MONO_START_BB (cfg, non_zero_bb);
12672                                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC);
12673                                 ins->dreg = alloc_ptr;
12674                                 ins->sreg1 = sp [0]->dreg;
12675                                 ins->type = STACK_PTR;
12676                                 MONO_ADD_INS (cfg->cbb, ins);
12677
12678                                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
12679                                 if (init_locals)
12680                                         ins->flags |= MONO_INST_INIT;
12681
12682                                 MONO_START_BB (cfg, end_bb);
12683                                 EMIT_NEW_UNALU (cfg, ins, OP_MOVE, alloc_preg (cfg), alloc_ptr);
12684                                 ins->type = STACK_PTR;
12685
12686                                 *sp++ = ins;
12687                                 ip += 2;
12688                                 break;
12689                         }
12690                         case CEE_ENDFILTER: {
12691                                 MonoExceptionClause *clause, *nearest;
12692                                 int cc;
12693
12694                                 CHECK_STACK (1);
12695                                 --sp;
12696                                 if ((sp != stack_start) || (sp [0]->type != STACK_I4)) 
12697                                         UNVERIFIED;
12698                                 MONO_INST_NEW (cfg, ins, OP_ENDFILTER);
12699                                 ins->sreg1 = (*sp)->dreg;
12700                                 MONO_ADD_INS (cfg->cbb, ins);
12701                                 start_new_bblock = 1;
12702                                 ip += 2;
12703
12704                                 nearest = NULL;
12705                                 for (cc = 0; cc < header->num_clauses; ++cc) {
12706                                         clause = &header->clauses [cc];
12707                                         if ((clause->flags & MONO_EXCEPTION_CLAUSE_FILTER) &&
12708                                                 ((ip - header->code) > clause->data.filter_offset && (ip - header->code) <= clause->handler_offset) &&
12709                                             (!nearest || (clause->data.filter_offset < nearest->data.filter_offset)))
12710                                                 nearest = clause;
12711                                 }
12712                                 g_assert (nearest);
12713                                 if ((ip - header->code) != nearest->handler_offset)
12714                                         UNVERIFIED;
12715
12716                                 break;
12717                         }
12718                         case CEE_UNALIGNED_:
12719                                 ins_flag |= MONO_INST_UNALIGNED;
12720                                 /* FIXME: record alignment? we can assume 1 for now */
12721                                 CHECK_OPSIZE (3);
12722                                 ip += 3;
12723                                 break;
12724                         case CEE_VOLATILE_:
12725                                 ins_flag |= MONO_INST_VOLATILE;
12726                                 ip += 2;
12727                                 break;
12728                         case CEE_TAIL_:
12729                                 ins_flag   |= MONO_INST_TAILCALL;
12730                                 cfg->flags |= MONO_CFG_HAS_TAIL;
12731                                 /* Can't inline tail calls at this time */
12732                                 inline_costs += 100000;
12733                                 ip += 2;
12734                                 break;
12735                         case CEE_INITOBJ:
12736                                 CHECK_STACK (1);
12737                                 --sp;
12738                                 CHECK_OPSIZE (6);
12739                                 token = read32 (ip + 2);
12740                                 klass = mini_get_class (method, token, generic_context);
12741                                 CHECK_TYPELOAD (klass);
12742                                 if (generic_class_is_reference_type (cfg, klass))
12743                                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STORE_MEMBASE_IMM, sp [0]->dreg, 0, 0);
12744                                 else
12745                                         mini_emit_initobj (cfg, *sp, NULL, klass);
12746                                 ip += 6;
12747                                 inline_costs += 1;
12748                                 break;
12749                         case CEE_CONSTRAINED_:
12750                                 CHECK_OPSIZE (6);
12751                                 token = read32 (ip + 2);
12752                                 constrained_class = mini_get_class (method, token, generic_context);
12753                                 CHECK_TYPELOAD (constrained_class);
12754                                 ip += 6;
12755                                 break;
12756                         case CEE_CPBLK:
12757                         case CEE_INITBLK: {
12758                                 MonoInst *iargs [3];
12759                                 CHECK_STACK (3);
12760                                 sp -= 3;
12761
12762                                 /* Skip optimized paths for volatile operations. */
12763                                 if ((ip [1] == CEE_CPBLK) && !(ins_flag & MONO_INST_VOLATILE) && (cfg->opt & MONO_OPT_INTRINS) && (sp [2]->opcode == OP_ICONST) && ((n = sp [2]->inst_c0) <= sizeof (gpointer) * 5)) {
12764                                         mini_emit_memcpy (cfg, sp [0]->dreg, 0, sp [1]->dreg, 0, sp [2]->inst_c0, 0);
12765                                 } else if ((ip [1] == CEE_INITBLK) && !(ins_flag & MONO_INST_VOLATILE) && (cfg->opt & MONO_OPT_INTRINS) && (sp [2]->opcode == OP_ICONST) && ((n = sp [2]->inst_c0) <= sizeof (gpointer) * 5) && (sp [1]->opcode == OP_ICONST) && (sp [1]->inst_c0 == 0)) {
12766                                         /* emit_memset only works when val == 0 */
12767                                         mini_emit_memset (cfg, sp [0]->dreg, 0, sp [2]->inst_c0, sp [1]->inst_c0, 0);
12768                                 } else {
12769                                         MonoInst *call;
12770                                         iargs [0] = sp [0];
12771                                         iargs [1] = sp [1];
12772                                         iargs [2] = sp [2];
12773                                         if (ip [1] == CEE_CPBLK) {
12774                                                 /*
12775                                                  * FIXME: It's unclear whether we should be emitting both the acquire
12776                                                  * and release barriers for cpblk. It is technically both a load and
12777                                                  * store operation, so it seems like that's the sensible thing to do.
12778                                                  *
12779                                                  * FIXME: We emit full barriers on both sides of the operation for
12780                                                  * simplicity. We should have a separate atomic memcpy method instead.
12781                                                  */
12782                                                 MonoMethod *memcpy_method = get_memcpy_method ();
12783
12784                                                 if (ins_flag & MONO_INST_VOLATILE)
12785                                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
12786
12787                                                 call = mono_emit_method_call (cfg, memcpy_method, iargs, NULL);
12788                                                 call->flags |= ins_flag;
12789
12790                                                 if (ins_flag & MONO_INST_VOLATILE)
12791                                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
12792                                         } else {
12793                                                 MonoMethod *memset_method = get_memset_method ();
12794                                                 if (ins_flag & MONO_INST_VOLATILE) {
12795                                                         /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
12796                                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
12797                                                 }
12798                                                 call = mono_emit_method_call (cfg, memset_method, iargs, NULL);
12799                                                 call->flags |= ins_flag;
12800                                         }
12801                                 }
12802                                 ip += 2;
12803                                 ins_flag = 0;
12804                                 inline_costs += 1;
12805                                 break;
12806                         }
12807                         case CEE_NO_:
12808                                 CHECK_OPSIZE (3);
12809                                 if (ip [2] & 0x1)
12810                                         ins_flag |= MONO_INST_NOTYPECHECK;
12811                                 if (ip [2] & 0x2)
12812                                         ins_flag |= MONO_INST_NORANGECHECK;
12813                                 /* we ignore the no-nullcheck for now since we
12814                                  * really do it explicitly only when doing callvirt->call
12815                                  */
12816                                 ip += 3;
12817                                 break;
12818                         case CEE_RETHROW: {
12819                                 MonoInst *load;
12820                                 int handler_offset = -1;
12821
12822                                 for (i = 0; i < header->num_clauses; ++i) {
12823                                         MonoExceptionClause *clause = &header->clauses [i];
12824                                         if (MONO_OFFSET_IN_HANDLER (clause, ip - header->code) && !(clause->flags & MONO_EXCEPTION_CLAUSE_FINALLY)) {
12825                                                 handler_offset = clause->handler_offset;
12826                                                 break;
12827                                         }
12828                                 }
12829
12830                                 cfg->cbb->flags |= BB_EXCEPTION_UNSAFE;
12831
12832                                 if (handler_offset == -1)
12833                                         UNVERIFIED;
12834
12835                                 EMIT_NEW_TEMPLOAD (cfg, load, mono_find_exvar_for_offset (cfg, handler_offset)->inst_c0);
12836                                 MONO_INST_NEW (cfg, ins, OP_RETHROW);
12837                                 ins->sreg1 = load->dreg;
12838                                 MONO_ADD_INS (cfg->cbb, ins);
12839
12840                                 MONO_INST_NEW (cfg, ins, OP_NOT_REACHED);
12841                                 MONO_ADD_INS (cfg->cbb, ins);
12842
12843                                 sp = stack_start;
12844                                 link_bblock (cfg, cfg->cbb, end_bblock);
12845                                 start_new_bblock = 1;
12846                                 ip += 2;
12847                                 break;
12848                         }
12849                         case CEE_SIZEOF: {
12850                                 guint32 val;
12851                                 int ialign;
12852
12853                                 CHECK_STACK_OVF (1);
12854                                 CHECK_OPSIZE (6);
12855                                 token = read32 (ip + 2);
12856                                 if (mono_metadata_token_table (token) == MONO_TABLE_TYPESPEC && !image_is_dynamic (method->klass->image) && !generic_context) {
12857                                         MonoType *type = mono_type_create_from_typespec_checked (image, token, &cfg->error);
12858                                         CHECK_CFG_ERROR;
12859
12860                                         val = mono_type_size (type, &ialign);
12861                                 } else {
12862                                         MonoClass *klass = mini_get_class (method, token, generic_context);
12863                                         CHECK_TYPELOAD (klass);
12864
12865                                         val = mono_type_size (&klass->byval_arg, &ialign);
12866
12867                                         if (mini_is_gsharedvt_klass (klass))
12868                                                 GSHAREDVT_FAILURE (*ip);
12869                                 }
12870                                 EMIT_NEW_ICONST (cfg, ins, val);
12871                                 *sp++= ins;
12872                                 ip += 6;
12873                                 break;
12874                         }
12875                         case CEE_REFANYTYPE: {
12876                                 MonoInst *src_var, *src;
12877
12878                                 GSHAREDVT_FAILURE (*ip);
12879
12880                                 CHECK_STACK (1);
12881                                 --sp;
12882
12883                                 // FIXME:
12884                                 src_var = get_vreg_to_inst (cfg, sp [0]->dreg);
12885                                 if (!src_var)
12886                                         src_var = mono_compile_create_var_for_vreg (cfg, &mono_defaults.typed_reference_class->byval_arg, OP_LOCAL, sp [0]->dreg);
12887                                 EMIT_NEW_VARLOADA (cfg, src, src_var, src_var->inst_vtype);
12888                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &mono_defaults.typehandle_class->byval_arg, src->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, type));
12889                                 *sp++ = ins;
12890                                 ip += 2;
12891                                 break;
12892                         }
12893                         case CEE_READONLY_:
12894                                 readonly = TRUE;
12895                                 ip += 2;
12896                                 break;
12897
12898                         case CEE_UNUSED56:
12899                         case CEE_UNUSED57:
12900                         case CEE_UNUSED70:
12901                         case CEE_UNUSED:
12902                         case CEE_UNUSED99:
12903                                 UNVERIFIED;
12904                                 
12905                         default:
12906                                 g_warning ("opcode 0xfe 0x%02x not handled", ip [1]);
12907                                 UNVERIFIED;
12908                         }
12909                         break;
12910                 }
12911                 case CEE_UNUSED58:
12912                 case CEE_UNUSED1:
12913                         UNVERIFIED;
12914
12915                 default:
12916                         g_warning ("opcode 0x%02x not handled", *ip);
12917                         UNVERIFIED;
12918                 }
12919         }
12920         if (start_new_bblock != 1)
12921                 UNVERIFIED;
12922
12923         cfg->cbb->cil_length = ip - cfg->cbb->cil_code;
12924         if (cfg->cbb->next_bb) {
12925                 /* This could already be set because of inlining, #693905 */
12926                 MonoBasicBlock *bb = cfg->cbb;
12927
12928                 while (bb->next_bb)
12929                         bb = bb->next_bb;
12930                 bb->next_bb = end_bblock;
12931         } else {
12932                 cfg->cbb->next_bb = end_bblock;
12933         }
12934
12935         if (cfg->method == method && cfg->domainvar) {
12936                 MonoInst *store;
12937                 MonoInst *get_domain;
12938
12939                 cfg->cbb = init_localsbb;
12940
12941                 get_domain = mono_create_tls_get (cfg, TLS_KEY_DOMAIN);
12942                 NEW_TEMPSTORE (cfg, store, cfg->domainvar->inst_c0, get_domain);
12943                 MONO_ADD_INS (cfg->cbb, store);
12944         }
12945
12946 #if defined(TARGET_POWERPC) || defined(TARGET_X86)
12947         if (cfg->compile_aot)
12948                 /* FIXME: The plt slots require a GOT var even if the method doesn't use it */
12949                 mono_get_got_var (cfg);
12950 #endif
12951
12952         if (cfg->method == method && cfg->got_var)
12953                 mono_emit_load_got_addr (cfg);
12954
12955         if (init_localsbb) {
12956                 cfg->cbb = init_localsbb;
12957                 cfg->ip = NULL;
12958                 for (i = 0; i < header->num_locals; ++i) {
12959                         emit_init_local (cfg, i, header->locals [i], init_locals);
12960                 }
12961         }
12962
12963         if (cfg->init_ref_vars && cfg->method == method) {
12964                 /* Emit initialization for ref vars */
12965                 // FIXME: Avoid duplication initialization for IL locals.
12966                 for (i = 0; i < cfg->num_varinfo; ++i) {
12967                         MonoInst *ins = cfg->varinfo [i];
12968
12969                         if (ins->opcode == OP_LOCAL && ins->type == STACK_OBJ)
12970                                 MONO_EMIT_NEW_PCONST (cfg, ins->dreg, NULL);
12971                 }
12972         }
12973
12974         if (cfg->lmf_var && cfg->method == method && !cfg->llvm_only) {
12975                 cfg->cbb = init_localsbb;
12976                 emit_push_lmf (cfg);
12977         }
12978
12979         cfg->cbb = init_localsbb;
12980         emit_instrumentation_call (cfg, mono_profiler_method_enter);
12981
12982         if (seq_points) {
12983                 MonoBasicBlock *bb;
12984
12985                 /*
12986                  * Make seq points at backward branch targets interruptable.
12987                  */
12988                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb)
12989                         if (bb->code && bb->in_count > 1 && bb->code->opcode == OP_SEQ_POINT)
12990                                 bb->code->flags |= MONO_INST_SINGLE_STEP_LOC;
12991         }
12992
12993         /* Add a sequence point for method entry/exit events */
12994         if (seq_points && cfg->gen_sdb_seq_points) {
12995                 NEW_SEQ_POINT (cfg, ins, METHOD_ENTRY_IL_OFFSET, FALSE);
12996                 MONO_ADD_INS (init_localsbb, ins);
12997                 NEW_SEQ_POINT (cfg, ins, METHOD_EXIT_IL_OFFSET, FALSE);
12998                 MONO_ADD_INS (cfg->bb_exit, ins);
12999         }
13000
13001         /*
13002          * Add seq points for IL offsets which have line number info, but wasn't generated a seq point during JITting because
13003          * the code they refer to was dead (#11880).
13004          */
13005         if (sym_seq_points) {
13006                 for (i = 0; i < header->code_size; ++i) {
13007                         if (mono_bitset_test_fast (seq_point_locs, i) && !mono_bitset_test_fast (seq_point_set_locs, i)) {
13008                                 MonoInst *ins;
13009
13010                                 NEW_SEQ_POINT (cfg, ins, i, FALSE);
13011                                 mono_add_seq_point (cfg, NULL, ins, SEQ_POINT_NATIVE_OFFSET_DEAD_CODE);
13012                         }
13013                 }
13014         }
13015
13016         cfg->ip = NULL;
13017
13018         if (cfg->method == method) {
13019                 MonoBasicBlock *bb;
13020                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
13021                         if (bb == cfg->bb_init)
13022                                 bb->region = -1;
13023                         else
13024                                 bb->region = mono_find_block_region (cfg, bb->real_offset);
13025                         if (cfg->spvars)
13026                                 mono_create_spvar_for_region (cfg, bb->region);
13027                         if (cfg->verbose_level > 2)
13028                                 printf ("REGION BB%d IL_%04x ID_%08X\n", bb->block_num, bb->real_offset, bb->region);
13029                 }
13030         } else {
13031                 MonoBasicBlock *bb;
13032                 /* get_most_deep_clause () in mini-llvm.c depends on this for inlined bblocks */
13033                 for (bb = start_bblock; bb != end_bblock; bb  = bb->next_bb) {
13034                         bb->real_offset = inline_offset;
13035                 }
13036         }
13037
13038         if (inline_costs < 0) {
13039                 char *mname;
13040
13041                 /* Method is too large */
13042                 mname = mono_method_full_name (method, TRUE);
13043                 mono_cfg_set_exception_invalid_program (cfg, g_strdup_printf ("Method %s is too complex.", mname));
13044                 g_free (mname);
13045         }
13046
13047         if ((cfg->verbose_level > 2) && (cfg->method == method)) 
13048                 mono_print_code (cfg, "AFTER METHOD-TO-IR");
13049
13050         goto cleanup;
13051
13052 mono_error_exit:
13053         g_assert (!mono_error_ok (&cfg->error));
13054         goto cleanup;
13055  
13056  exception_exit:
13057         g_assert (cfg->exception_type != MONO_EXCEPTION_NONE);
13058         goto cleanup;
13059
13060  unverified:
13061         set_exception_type_from_invalid_il (cfg, method, ip);
13062         goto cleanup;
13063
13064  cleanup:
13065         g_slist_free (class_inits);
13066         mono_basic_block_free (original_bb);
13067         cfg->dont_inline = g_list_remove (cfg->dont_inline, method);
13068         if (cfg->exception_type)
13069                 return -1;
13070         else
13071                 return inline_costs;
13072 }
13073
13074 static int
13075 store_membase_reg_to_store_membase_imm (int opcode)
13076 {
13077         switch (opcode) {
13078         case OP_STORE_MEMBASE_REG:
13079                 return OP_STORE_MEMBASE_IMM;
13080         case OP_STOREI1_MEMBASE_REG:
13081                 return OP_STOREI1_MEMBASE_IMM;
13082         case OP_STOREI2_MEMBASE_REG:
13083                 return OP_STOREI2_MEMBASE_IMM;
13084         case OP_STOREI4_MEMBASE_REG:
13085                 return OP_STOREI4_MEMBASE_IMM;
13086         case OP_STOREI8_MEMBASE_REG:
13087                 return OP_STOREI8_MEMBASE_IMM;
13088         default:
13089                 g_assert_not_reached ();
13090         }
13091
13092         return -1;
13093 }               
13094
13095 int
13096 mono_op_to_op_imm (int opcode)
13097 {
13098         switch (opcode) {
13099         case OP_IADD:
13100                 return OP_IADD_IMM;
13101         case OP_ISUB:
13102                 return OP_ISUB_IMM;
13103         case OP_IDIV:
13104                 return OP_IDIV_IMM;
13105         case OP_IDIV_UN:
13106                 return OP_IDIV_UN_IMM;
13107         case OP_IREM:
13108                 return OP_IREM_IMM;
13109         case OP_IREM_UN:
13110                 return OP_IREM_UN_IMM;
13111         case OP_IMUL:
13112                 return OP_IMUL_IMM;
13113         case OP_IAND:
13114                 return OP_IAND_IMM;
13115         case OP_IOR:
13116                 return OP_IOR_IMM;
13117         case OP_IXOR:
13118                 return OP_IXOR_IMM;
13119         case OP_ISHL:
13120                 return OP_ISHL_IMM;
13121         case OP_ISHR:
13122                 return OP_ISHR_IMM;
13123         case OP_ISHR_UN:
13124                 return OP_ISHR_UN_IMM;
13125
13126         case OP_LADD:
13127                 return OP_LADD_IMM;
13128         case OP_LSUB:
13129                 return OP_LSUB_IMM;
13130         case OP_LAND:
13131                 return OP_LAND_IMM;
13132         case OP_LOR:
13133                 return OP_LOR_IMM;
13134         case OP_LXOR:
13135                 return OP_LXOR_IMM;
13136         case OP_LSHL:
13137                 return OP_LSHL_IMM;
13138         case OP_LSHR:
13139                 return OP_LSHR_IMM;
13140         case OP_LSHR_UN:
13141                 return OP_LSHR_UN_IMM;
13142 #if SIZEOF_REGISTER == 8
13143         case OP_LREM:
13144                 return OP_LREM_IMM;
13145 #endif
13146
13147         case OP_COMPARE:
13148                 return OP_COMPARE_IMM;
13149         case OP_ICOMPARE:
13150                 return OP_ICOMPARE_IMM;
13151         case OP_LCOMPARE:
13152                 return OP_LCOMPARE_IMM;
13153
13154         case OP_STORE_MEMBASE_REG:
13155                 return OP_STORE_MEMBASE_IMM;
13156         case OP_STOREI1_MEMBASE_REG:
13157                 return OP_STOREI1_MEMBASE_IMM;
13158         case OP_STOREI2_MEMBASE_REG:
13159                 return OP_STOREI2_MEMBASE_IMM;
13160         case OP_STOREI4_MEMBASE_REG:
13161                 return OP_STOREI4_MEMBASE_IMM;
13162
13163 #if defined(TARGET_X86) || defined (TARGET_AMD64)
13164         case OP_X86_PUSH:
13165                 return OP_X86_PUSH_IMM;
13166         case OP_X86_COMPARE_MEMBASE_REG:
13167                 return OP_X86_COMPARE_MEMBASE_IMM;
13168 #endif
13169 #if defined(TARGET_AMD64)
13170         case OP_AMD64_ICOMPARE_MEMBASE_REG:
13171                 return OP_AMD64_ICOMPARE_MEMBASE_IMM;
13172 #endif
13173         case OP_VOIDCALL_REG:
13174                 return OP_VOIDCALL;
13175         case OP_CALL_REG:
13176                 return OP_CALL;
13177         case OP_LCALL_REG:
13178                 return OP_LCALL;
13179         case OP_FCALL_REG:
13180                 return OP_FCALL;
13181         case OP_LOCALLOC:
13182                 return OP_LOCALLOC_IMM;
13183         }
13184
13185         return -1;
13186 }
13187
13188 static int
13189 ldind_to_load_membase (int opcode)
13190 {
13191         switch (opcode) {
13192         case CEE_LDIND_I1:
13193                 return OP_LOADI1_MEMBASE;
13194         case CEE_LDIND_U1:
13195                 return OP_LOADU1_MEMBASE;
13196         case CEE_LDIND_I2:
13197                 return OP_LOADI2_MEMBASE;
13198         case CEE_LDIND_U2:
13199                 return OP_LOADU2_MEMBASE;
13200         case CEE_LDIND_I4:
13201                 return OP_LOADI4_MEMBASE;
13202         case CEE_LDIND_U4:
13203                 return OP_LOADU4_MEMBASE;
13204         case CEE_LDIND_I:
13205                 return OP_LOAD_MEMBASE;
13206         case CEE_LDIND_REF:
13207                 return OP_LOAD_MEMBASE;
13208         case CEE_LDIND_I8:
13209                 return OP_LOADI8_MEMBASE;
13210         case CEE_LDIND_R4:
13211                 return OP_LOADR4_MEMBASE;
13212         case CEE_LDIND_R8:
13213                 return OP_LOADR8_MEMBASE;
13214         default:
13215                 g_assert_not_reached ();
13216         }
13217
13218         return -1;
13219 }
13220
13221 static int
13222 stind_to_store_membase (int opcode)
13223 {
13224         switch (opcode) {
13225         case CEE_STIND_I1:
13226                 return OP_STOREI1_MEMBASE_REG;
13227         case CEE_STIND_I2:
13228                 return OP_STOREI2_MEMBASE_REG;
13229         case CEE_STIND_I4:
13230                 return OP_STOREI4_MEMBASE_REG;
13231         case CEE_STIND_I:
13232         case CEE_STIND_REF:
13233                 return OP_STORE_MEMBASE_REG;
13234         case CEE_STIND_I8:
13235                 return OP_STOREI8_MEMBASE_REG;
13236         case CEE_STIND_R4:
13237                 return OP_STORER4_MEMBASE_REG;
13238         case CEE_STIND_R8:
13239                 return OP_STORER8_MEMBASE_REG;
13240         default:
13241                 g_assert_not_reached ();
13242         }
13243
13244         return -1;
13245 }
13246
13247 int
13248 mono_load_membase_to_load_mem (int opcode)
13249 {
13250         // FIXME: Add a MONO_ARCH_HAVE_LOAD_MEM macro
13251 #if defined(TARGET_X86) || defined(TARGET_AMD64)
13252         switch (opcode) {
13253         case OP_LOAD_MEMBASE:
13254                 return OP_LOAD_MEM;
13255         case OP_LOADU1_MEMBASE:
13256                 return OP_LOADU1_MEM;
13257         case OP_LOADU2_MEMBASE:
13258                 return OP_LOADU2_MEM;
13259         case OP_LOADI4_MEMBASE:
13260                 return OP_LOADI4_MEM;
13261         case OP_LOADU4_MEMBASE:
13262                 return OP_LOADU4_MEM;
13263 #if SIZEOF_REGISTER == 8
13264         case OP_LOADI8_MEMBASE:
13265                 return OP_LOADI8_MEM;
13266 #endif
13267         }
13268 #endif
13269
13270         return -1;
13271 }
13272
13273 static inline int
13274 op_to_op_dest_membase (int store_opcode, int opcode)
13275 {
13276 #if defined(TARGET_X86)
13277         if (!((store_opcode == OP_STORE_MEMBASE_REG) || (store_opcode == OP_STOREI4_MEMBASE_REG)))
13278                 return -1;
13279
13280         switch (opcode) {
13281         case OP_IADD:
13282                 return OP_X86_ADD_MEMBASE_REG;
13283         case OP_ISUB:
13284                 return OP_X86_SUB_MEMBASE_REG;
13285         case OP_IAND:
13286                 return OP_X86_AND_MEMBASE_REG;
13287         case OP_IOR:
13288                 return OP_X86_OR_MEMBASE_REG;
13289         case OP_IXOR:
13290                 return OP_X86_XOR_MEMBASE_REG;
13291         case OP_ADD_IMM:
13292         case OP_IADD_IMM:
13293                 return OP_X86_ADD_MEMBASE_IMM;
13294         case OP_SUB_IMM:
13295         case OP_ISUB_IMM:
13296                 return OP_X86_SUB_MEMBASE_IMM;
13297         case OP_AND_IMM:
13298         case OP_IAND_IMM:
13299                 return OP_X86_AND_MEMBASE_IMM;
13300         case OP_OR_IMM:
13301         case OP_IOR_IMM:
13302                 return OP_X86_OR_MEMBASE_IMM;
13303         case OP_XOR_IMM:
13304         case OP_IXOR_IMM:
13305                 return OP_X86_XOR_MEMBASE_IMM;
13306         case OP_MOVE:
13307                 return OP_NOP;
13308         }
13309 #endif
13310
13311 #if defined(TARGET_AMD64)
13312         if (!((store_opcode == OP_STORE_MEMBASE_REG) || (store_opcode == OP_STOREI4_MEMBASE_REG) || (store_opcode == OP_STOREI8_MEMBASE_REG)))
13313                 return -1;
13314
13315         switch (opcode) {
13316         case OP_IADD:
13317                 return OP_X86_ADD_MEMBASE_REG;
13318         case OP_ISUB:
13319                 return OP_X86_SUB_MEMBASE_REG;
13320         case OP_IAND:
13321                 return OP_X86_AND_MEMBASE_REG;
13322         case OP_IOR:
13323                 return OP_X86_OR_MEMBASE_REG;
13324         case OP_IXOR:
13325                 return OP_X86_XOR_MEMBASE_REG;
13326         case OP_IADD_IMM:
13327                 return OP_X86_ADD_MEMBASE_IMM;
13328         case OP_ISUB_IMM:
13329                 return OP_X86_SUB_MEMBASE_IMM;
13330         case OP_IAND_IMM:
13331                 return OP_X86_AND_MEMBASE_IMM;
13332         case OP_IOR_IMM:
13333                 return OP_X86_OR_MEMBASE_IMM;
13334         case OP_IXOR_IMM:
13335                 return OP_X86_XOR_MEMBASE_IMM;
13336         case OP_LADD:
13337                 return OP_AMD64_ADD_MEMBASE_REG;
13338         case OP_LSUB:
13339                 return OP_AMD64_SUB_MEMBASE_REG;
13340         case OP_LAND:
13341                 return OP_AMD64_AND_MEMBASE_REG;
13342         case OP_LOR:
13343                 return OP_AMD64_OR_MEMBASE_REG;
13344         case OP_LXOR:
13345                 return OP_AMD64_XOR_MEMBASE_REG;
13346         case OP_ADD_IMM:
13347         case OP_LADD_IMM:
13348                 return OP_AMD64_ADD_MEMBASE_IMM;
13349         case OP_SUB_IMM:
13350         case OP_LSUB_IMM:
13351                 return OP_AMD64_SUB_MEMBASE_IMM;
13352         case OP_AND_IMM:
13353         case OP_LAND_IMM:
13354                 return OP_AMD64_AND_MEMBASE_IMM;
13355         case OP_OR_IMM:
13356         case OP_LOR_IMM:
13357                 return OP_AMD64_OR_MEMBASE_IMM;
13358         case OP_XOR_IMM:
13359         case OP_LXOR_IMM:
13360                 return OP_AMD64_XOR_MEMBASE_IMM;
13361         case OP_MOVE:
13362                 return OP_NOP;
13363         }
13364 #endif
13365
13366         return -1;
13367 }
13368
13369 static inline int
13370 op_to_op_store_membase (int store_opcode, int opcode)
13371 {
13372 #if defined(TARGET_X86) || defined(TARGET_AMD64)
13373         switch (opcode) {
13374         case OP_ICEQ:
13375                 if (store_opcode == OP_STOREI1_MEMBASE_REG)
13376                         return OP_X86_SETEQ_MEMBASE;
13377         case OP_CNE:
13378                 if (store_opcode == OP_STOREI1_MEMBASE_REG)
13379                         return OP_X86_SETNE_MEMBASE;
13380         }
13381 #endif
13382
13383         return -1;
13384 }
13385
13386 static inline int
13387 op_to_op_src1_membase (MonoCompile *cfg, int load_opcode, int opcode)
13388 {
13389 #ifdef TARGET_X86
13390         /* FIXME: This has sign extension issues */
13391         /*
13392         if ((opcode == OP_ICOMPARE_IMM) && (load_opcode == OP_LOADU1_MEMBASE))
13393                 return OP_X86_COMPARE_MEMBASE8_IMM;
13394         */
13395
13396         if (!((load_opcode == OP_LOAD_MEMBASE) || (load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE)))
13397                 return -1;
13398
13399         switch (opcode) {
13400         case OP_X86_PUSH:
13401                 return OP_X86_PUSH_MEMBASE;
13402         case OP_COMPARE_IMM:
13403         case OP_ICOMPARE_IMM:
13404                 return OP_X86_COMPARE_MEMBASE_IMM;
13405         case OP_COMPARE:
13406         case OP_ICOMPARE:
13407                 return OP_X86_COMPARE_MEMBASE_REG;
13408         }
13409 #endif
13410
13411 #ifdef TARGET_AMD64
13412         /* FIXME: This has sign extension issues */
13413         /*
13414         if ((opcode == OP_ICOMPARE_IMM) && (load_opcode == OP_LOADU1_MEMBASE))
13415                 return OP_X86_COMPARE_MEMBASE8_IMM;
13416         */
13417
13418         switch (opcode) {
13419         case OP_X86_PUSH:
13420                 if ((load_opcode == OP_LOAD_MEMBASE && !cfg->backend->ilp32) || (load_opcode == OP_LOADI8_MEMBASE))
13421                         return OP_X86_PUSH_MEMBASE;
13422                 break;
13423                 /* FIXME: This only works for 32 bit immediates
13424         case OP_COMPARE_IMM:
13425         case OP_LCOMPARE_IMM:
13426                 if ((load_opcode == OP_LOAD_MEMBASE) || (load_opcode == OP_LOADI8_MEMBASE))
13427                         return OP_AMD64_COMPARE_MEMBASE_IMM;
13428                 */
13429         case OP_ICOMPARE_IMM:
13430                 if ((load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE))
13431                         return OP_AMD64_ICOMPARE_MEMBASE_IMM;
13432                 break;
13433         case OP_COMPARE:
13434         case OP_LCOMPARE:
13435                 if (cfg->backend->ilp32 && load_opcode == OP_LOAD_MEMBASE)
13436                         return OP_AMD64_ICOMPARE_MEMBASE_REG;
13437                 if ((load_opcode == OP_LOAD_MEMBASE && !cfg->backend->ilp32) || (load_opcode == OP_LOADI8_MEMBASE))
13438                         return OP_AMD64_COMPARE_MEMBASE_REG;
13439                 break;
13440         case OP_ICOMPARE:
13441                 if ((load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE))
13442                         return OP_AMD64_ICOMPARE_MEMBASE_REG;
13443                 break;
13444         }
13445 #endif
13446
13447         return -1;
13448 }
13449
13450 static inline int
13451 op_to_op_src2_membase (MonoCompile *cfg, int load_opcode, int opcode)
13452 {
13453 #ifdef TARGET_X86
13454         if (!((load_opcode == OP_LOAD_MEMBASE) || (load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE)))
13455                 return -1;
13456         
13457         switch (opcode) {
13458         case OP_COMPARE:
13459         case OP_ICOMPARE:
13460                 return OP_X86_COMPARE_REG_MEMBASE;
13461         case OP_IADD:
13462                 return OP_X86_ADD_REG_MEMBASE;
13463         case OP_ISUB:
13464                 return OP_X86_SUB_REG_MEMBASE;
13465         case OP_IAND:
13466                 return OP_X86_AND_REG_MEMBASE;
13467         case OP_IOR:
13468                 return OP_X86_OR_REG_MEMBASE;
13469         case OP_IXOR:
13470                 return OP_X86_XOR_REG_MEMBASE;
13471         }
13472 #endif
13473
13474 #ifdef TARGET_AMD64
13475         if ((load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE) || (load_opcode == OP_LOAD_MEMBASE && cfg->backend->ilp32)) {
13476                 switch (opcode) {
13477                 case OP_ICOMPARE:
13478                         return OP_AMD64_ICOMPARE_REG_MEMBASE;
13479                 case OP_IADD:
13480                         return OP_X86_ADD_REG_MEMBASE;
13481                 case OP_ISUB:
13482                         return OP_X86_SUB_REG_MEMBASE;
13483                 case OP_IAND:
13484                         return OP_X86_AND_REG_MEMBASE;
13485                 case OP_IOR:
13486                         return OP_X86_OR_REG_MEMBASE;
13487                 case OP_IXOR:
13488                         return OP_X86_XOR_REG_MEMBASE;
13489                 }
13490         } else if ((load_opcode == OP_LOADI8_MEMBASE) || (load_opcode == OP_LOAD_MEMBASE && !cfg->backend->ilp32)) {
13491                 switch (opcode) {
13492                 case OP_COMPARE:
13493                 case OP_LCOMPARE:
13494                         return OP_AMD64_COMPARE_REG_MEMBASE;
13495                 case OP_LADD:
13496                         return OP_AMD64_ADD_REG_MEMBASE;
13497                 case OP_LSUB:
13498                         return OP_AMD64_SUB_REG_MEMBASE;
13499                 case OP_LAND:
13500                         return OP_AMD64_AND_REG_MEMBASE;
13501                 case OP_LOR:
13502                         return OP_AMD64_OR_REG_MEMBASE;
13503                 case OP_LXOR:
13504                         return OP_AMD64_XOR_REG_MEMBASE;
13505                 }
13506         }
13507 #endif
13508
13509         return -1;
13510 }
13511
13512 int
13513 mono_op_to_op_imm_noemul (int opcode)
13514 {
13515         switch (opcode) {
13516 #if SIZEOF_REGISTER == 4 && !defined(MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS)
13517         case OP_LSHR:
13518         case OP_LSHL:
13519         case OP_LSHR_UN:
13520                 return -1;
13521 #endif
13522 #if defined(MONO_ARCH_EMULATE_MUL_DIV) || defined(MONO_ARCH_EMULATE_DIV)
13523         case OP_IDIV:
13524         case OP_IDIV_UN:
13525         case OP_IREM:
13526         case OP_IREM_UN:
13527                 return -1;
13528 #endif
13529 #if defined(MONO_ARCH_EMULATE_MUL_DIV)
13530         case OP_IMUL:
13531                 return -1;
13532 #endif
13533         default:
13534                 return mono_op_to_op_imm (opcode);
13535         }
13536 }
13537
13538 /**
13539  * mono_handle_global_vregs:
13540  *
13541  *   Make vregs used in more than one bblock 'global', i.e. allocate a variable
13542  * for them.
13543  */
13544 void
13545 mono_handle_global_vregs (MonoCompile *cfg)
13546 {
13547         gint32 *vreg_to_bb;
13548         MonoBasicBlock *bb;
13549         int i, pos;
13550
13551         vreg_to_bb = (gint32 *)mono_mempool_alloc0 (cfg->mempool, sizeof (gint32*) * cfg->next_vreg + 1);
13552
13553 #ifdef MONO_ARCH_SIMD_INTRINSICS
13554         if (cfg->uses_simd_intrinsics)
13555                 mono_simd_simplify_indirection (cfg);
13556 #endif
13557
13558         /* Find local vregs used in more than one bb */
13559         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
13560                 MonoInst *ins = bb->code;       
13561                 int block_num = bb->block_num;
13562
13563                 if (cfg->verbose_level > 2)
13564                         printf ("\nHANDLE-GLOBAL-VREGS BLOCK %d:\n", bb->block_num);
13565
13566                 cfg->cbb = bb;
13567                 for (; ins; ins = ins->next) {
13568                         const char *spec = INS_INFO (ins->opcode);
13569                         int regtype = 0, regindex;
13570                         gint32 prev_bb;
13571
13572                         if (G_UNLIKELY (cfg->verbose_level > 2))
13573                                 mono_print_ins (ins);
13574
13575                         g_assert (ins->opcode >= MONO_CEE_LAST);
13576
13577                         for (regindex = 0; regindex < 4; regindex ++) {
13578                                 int vreg = 0;
13579
13580                                 if (regindex == 0) {
13581                                         regtype = spec [MONO_INST_DEST];
13582                                         if (regtype == ' ')
13583                                                 continue;
13584                                         vreg = ins->dreg;
13585                                 } else if (regindex == 1) {
13586                                         regtype = spec [MONO_INST_SRC1];
13587                                         if (regtype == ' ')
13588                                                 continue;
13589                                         vreg = ins->sreg1;
13590                                 } else if (regindex == 2) {
13591                                         regtype = spec [MONO_INST_SRC2];
13592                                         if (regtype == ' ')
13593                                                 continue;
13594                                         vreg = ins->sreg2;
13595                                 } else if (regindex == 3) {
13596                                         regtype = spec [MONO_INST_SRC3];
13597                                         if (regtype == ' ')
13598                                                 continue;
13599                                         vreg = ins->sreg3;
13600                                 }
13601
13602 #if SIZEOF_REGISTER == 4
13603                                 /* In the LLVM case, the long opcodes are not decomposed */
13604                                 if (regtype == 'l' && !COMPILE_LLVM (cfg)) {
13605                                         /*
13606                                          * Since some instructions reference the original long vreg,
13607                                          * and some reference the two component vregs, it is quite hard
13608                                          * to determine when it needs to be global. So be conservative.
13609                                          */
13610                                         if (!get_vreg_to_inst (cfg, vreg)) {
13611                                                 mono_compile_create_var_for_vreg (cfg, &mono_defaults.int64_class->byval_arg, OP_LOCAL, vreg);
13612
13613                                                 if (cfg->verbose_level > 2)
13614                                                         printf ("LONG VREG R%d made global.\n", vreg);
13615                                         }
13616
13617                                         /*
13618                                          * Make the component vregs volatile since the optimizations can
13619                                          * get confused otherwise.
13620                                          */
13621                                         get_vreg_to_inst (cfg, MONO_LVREG_LS (vreg))->flags |= MONO_INST_VOLATILE;
13622                                         get_vreg_to_inst (cfg, MONO_LVREG_MS (vreg))->flags |= MONO_INST_VOLATILE;
13623                                 }
13624 #endif
13625
13626                                 g_assert (vreg != -1);
13627
13628                                 prev_bb = vreg_to_bb [vreg];
13629                                 if (prev_bb == 0) {
13630                                         /* 0 is a valid block num */
13631                                         vreg_to_bb [vreg] = block_num + 1;
13632                                 } else if ((prev_bb != block_num + 1) && (prev_bb != -1)) {
13633                                         if (((regtype == 'i' && (vreg < MONO_MAX_IREGS))) || (regtype == 'f' && (vreg < MONO_MAX_FREGS)))
13634                                                 continue;
13635
13636                                         if (!get_vreg_to_inst (cfg, vreg)) {
13637                                                 if (G_UNLIKELY (cfg->verbose_level > 2))
13638                                                         printf ("VREG R%d used in BB%d and BB%d made global.\n", vreg, vreg_to_bb [vreg], block_num);
13639
13640                                                 switch (regtype) {
13641                                                 case 'i':
13642                                                         if (vreg_is_ref (cfg, vreg))
13643                                                                 mono_compile_create_var_for_vreg (cfg, &mono_defaults.object_class->byval_arg, OP_LOCAL, vreg);
13644                                                         else
13645                                                                 mono_compile_create_var_for_vreg (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL, vreg);
13646                                                         break;
13647                                                 case 'l':
13648                                                         mono_compile_create_var_for_vreg (cfg, &mono_defaults.int64_class->byval_arg, OP_LOCAL, vreg);
13649                                                         break;
13650                                                 case 'f':
13651                                                         mono_compile_create_var_for_vreg (cfg, &mono_defaults.double_class->byval_arg, OP_LOCAL, vreg);
13652                                                         break;
13653                                                 case 'v':
13654                                                 case 'x':
13655                                                         mono_compile_create_var_for_vreg (cfg, &ins->klass->byval_arg, OP_LOCAL, vreg);
13656                                                         break;
13657                                                 default:
13658                                                         g_assert_not_reached ();
13659                                                 }
13660                                         }
13661
13662                                         /* Flag as having been used in more than one bb */
13663                                         vreg_to_bb [vreg] = -1;
13664                                 }
13665                         }
13666                 }
13667         }
13668
13669         /* If a variable is used in only one bblock, convert it into a local vreg */
13670         for (i = 0; i < cfg->num_varinfo; i++) {
13671                 MonoInst *var = cfg->varinfo [i];
13672                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
13673
13674                 switch (var->type) {
13675                 case STACK_I4:
13676                 case STACK_OBJ:
13677                 case STACK_PTR:
13678                 case STACK_MP:
13679                 case STACK_VTYPE:
13680 #if SIZEOF_REGISTER == 8
13681                 case STACK_I8:
13682 #endif
13683 #if !defined(TARGET_X86)
13684                 /* Enabling this screws up the fp stack on x86 */
13685                 case STACK_R8:
13686 #endif
13687                         if (mono_arch_is_soft_float ())
13688                                 break;
13689
13690                         /*
13691                         if (var->type == STACK_VTYPE && cfg->gsharedvt && mini_is_gsharedvt_variable_type (var->inst_vtype))
13692                                 break;
13693                         */
13694
13695                         /* Arguments are implicitly global */
13696                         /* Putting R4 vars into registers doesn't work currently */
13697                         /* The gsharedvt vars are implicitly referenced by ldaddr opcodes, but those opcodes are only generated later */
13698                         if ((var->opcode != OP_ARG) && (var != cfg->ret) && !(var->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT)) && (vreg_to_bb [var->dreg] != -1) && (var->klass->byval_arg.type != MONO_TYPE_R4) && !cfg->disable_vreg_to_lvreg && var != cfg->gsharedvt_info_var && var != cfg->gsharedvt_locals_var && var != cfg->lmf_addr_var) {
13699                                 /* 
13700                                  * Make that the variable's liveness interval doesn't contain a call, since
13701                                  * that would cause the lvreg to be spilled, making the whole optimization
13702                                  * useless.
13703                                  */
13704                                 /* This is too slow for JIT compilation */
13705 #if 0
13706                                 if (cfg->compile_aot && vreg_to_bb [var->dreg]) {
13707                                         MonoInst *ins;
13708                                         int def_index, call_index, ins_index;
13709                                         gboolean spilled = FALSE;
13710
13711                                         def_index = -1;
13712                                         call_index = -1;
13713                                         ins_index = 0;
13714                                         for (ins = vreg_to_bb [var->dreg]->code; ins; ins = ins->next) {
13715                                                 const char *spec = INS_INFO (ins->opcode);
13716
13717                                                 if ((spec [MONO_INST_DEST] != ' ') && (ins->dreg == var->dreg))
13718                                                         def_index = ins_index;
13719
13720                                                 if (((spec [MONO_INST_SRC1] != ' ') && (ins->sreg1 == var->dreg)) ||
13721                                                         ((spec [MONO_INST_SRC1] != ' ') && (ins->sreg1 == var->dreg))) {
13722                                                         if (call_index > def_index) {
13723                                                                 spilled = TRUE;
13724                                                                 break;
13725                                                         }
13726                                                 }
13727
13728                                                 if (MONO_IS_CALL (ins))
13729                                                         call_index = ins_index;
13730
13731                                                 ins_index ++;
13732                                         }
13733
13734                                         if (spilled)
13735                                                 break;
13736                                 }
13737 #endif
13738
13739                                 if (G_UNLIKELY (cfg->verbose_level > 2))
13740                                         printf ("CONVERTED R%d(%d) TO VREG.\n", var->dreg, vmv->idx);
13741                                 var->flags |= MONO_INST_IS_DEAD;
13742                                 cfg->vreg_to_inst [var->dreg] = NULL;
13743                         }
13744                         break;
13745                 }
13746         }
13747
13748         /* 
13749          * Compress the varinfo and vars tables so the liveness computation is faster and
13750          * takes up less space.
13751          */
13752         pos = 0;
13753         for (i = 0; i < cfg->num_varinfo; ++i) {
13754                 MonoInst *var = cfg->varinfo [i];
13755                 if (pos < i && cfg->locals_start == i)
13756                         cfg->locals_start = pos;
13757                 if (!(var->flags & MONO_INST_IS_DEAD)) {
13758                         if (pos < i) {
13759                                 cfg->varinfo [pos] = cfg->varinfo [i];
13760                                 cfg->varinfo [pos]->inst_c0 = pos;
13761                                 memcpy (&cfg->vars [pos], &cfg->vars [i], sizeof (MonoMethodVar));
13762                                 cfg->vars [pos].idx = pos;
13763 #if SIZEOF_REGISTER == 4
13764                                 if (cfg->varinfo [pos]->type == STACK_I8) {
13765                                         /* Modify the two component vars too */
13766                                         MonoInst *var1;
13767
13768                                         var1 = get_vreg_to_inst (cfg, MONO_LVREG_LS (cfg->varinfo [pos]->dreg));
13769                                         var1->inst_c0 = pos;
13770                                         var1 = get_vreg_to_inst (cfg, MONO_LVREG_MS (cfg->varinfo [pos]->dreg));
13771                                         var1->inst_c0 = pos;
13772                                 }
13773 #endif
13774                         }
13775                         pos ++;
13776                 }
13777         }
13778         cfg->num_varinfo = pos;
13779         if (cfg->locals_start > cfg->num_varinfo)
13780                 cfg->locals_start = cfg->num_varinfo;
13781 }
13782
13783 /*
13784  * mono_allocate_gsharedvt_vars:
13785  *
13786  *   Allocate variables with gsharedvt types to entries in the MonoGSharedVtMethodRuntimeInfo.entries array.
13787  * Initialize cfg->gsharedvt_vreg_to_idx with the mapping between vregs and indexes.
13788  */
13789 void
13790 mono_allocate_gsharedvt_vars (MonoCompile *cfg)
13791 {
13792         int i;
13793
13794         cfg->gsharedvt_vreg_to_idx = (int *)mono_mempool_alloc0 (cfg->mempool, sizeof (int) * cfg->next_vreg);
13795
13796         for (i = 0; i < cfg->num_varinfo; ++i) {
13797                 MonoInst *ins = cfg->varinfo [i];
13798                 int idx;
13799
13800                 if (mini_is_gsharedvt_variable_type (ins->inst_vtype)) {
13801                         if (i >= cfg->locals_start) {
13802                                 /* Local */
13803                                 idx = get_gsharedvt_info_slot (cfg, ins->inst_vtype, MONO_RGCTX_INFO_LOCAL_OFFSET);
13804                                 cfg->gsharedvt_vreg_to_idx [ins->dreg] = idx + 1;
13805                                 ins->opcode = OP_GSHAREDVT_LOCAL;
13806                                 ins->inst_imm = idx;
13807                         } else {
13808                                 /* Arg */
13809                                 cfg->gsharedvt_vreg_to_idx [ins->dreg] = -1;
13810                                 ins->opcode = OP_GSHAREDVT_ARG_REGOFFSET;
13811                         }
13812                 }
13813         }
13814 }
13815
13816 /**
13817  * mono_spill_global_vars:
13818  *
13819  *   Generate spill code for variables which are not allocated to registers, 
13820  * and replace vregs with their allocated hregs. *need_local_opts is set to TRUE if
13821  * code is generated which could be optimized by the local optimization passes.
13822  */
13823 void
13824 mono_spill_global_vars (MonoCompile *cfg, gboolean *need_local_opts)
13825 {
13826         MonoBasicBlock *bb;
13827         char spec2 [16];
13828         int orig_next_vreg;
13829         guint32 *vreg_to_lvreg;
13830         guint32 *lvregs;
13831         guint32 i, lvregs_len, lvregs_size;
13832         gboolean dest_has_lvreg = FALSE;
13833         MonoStackType stacktypes [128];
13834         MonoInst **live_range_start, **live_range_end;
13835         MonoBasicBlock **live_range_start_bb, **live_range_end_bb;
13836
13837         *need_local_opts = FALSE;
13838
13839         memset (spec2, 0, sizeof (spec2));
13840
13841         /* FIXME: Move this function to mini.c */
13842         stacktypes ['i'] = STACK_PTR;
13843         stacktypes ['l'] = STACK_I8;
13844         stacktypes ['f'] = STACK_R8;
13845 #ifdef MONO_ARCH_SIMD_INTRINSICS
13846         stacktypes ['x'] = STACK_VTYPE;
13847 #endif
13848
13849 #if SIZEOF_REGISTER == 4
13850         /* Create MonoInsts for longs */
13851         for (i = 0; i < cfg->num_varinfo; i++) {
13852                 MonoInst *ins = cfg->varinfo [i];
13853
13854                 if ((ins->opcode != OP_REGVAR) && !(ins->flags & MONO_INST_IS_DEAD)) {
13855                         switch (ins->type) {
13856                         case STACK_R8:
13857                         case STACK_I8: {
13858                                 MonoInst *tree;
13859
13860                                 if (ins->type == STACK_R8 && !COMPILE_SOFT_FLOAT (cfg))
13861                                         break;
13862
13863                                 g_assert (ins->opcode == OP_REGOFFSET);
13864
13865                                 tree = get_vreg_to_inst (cfg, MONO_LVREG_LS (ins->dreg));
13866                                 g_assert (tree);
13867                                 tree->opcode = OP_REGOFFSET;
13868                                 tree->inst_basereg = ins->inst_basereg;
13869                                 tree->inst_offset = ins->inst_offset + MINI_LS_WORD_OFFSET;
13870
13871                                 tree = get_vreg_to_inst (cfg, MONO_LVREG_MS (ins->dreg));
13872                                 g_assert (tree);
13873                                 tree->opcode = OP_REGOFFSET;
13874                                 tree->inst_basereg = ins->inst_basereg;
13875                                 tree->inst_offset = ins->inst_offset + MINI_MS_WORD_OFFSET;
13876                                 break;
13877                         }
13878                         default:
13879                                 break;
13880                         }
13881                 }
13882         }
13883 #endif
13884
13885         if (cfg->compute_gc_maps) {
13886                 /* registers need liveness info even for !non refs */
13887                 for (i = 0; i < cfg->num_varinfo; i++) {
13888                         MonoInst *ins = cfg->varinfo [i];
13889
13890                         if (ins->opcode == OP_REGVAR)
13891                                 ins->flags |= MONO_INST_GC_TRACK;
13892                 }
13893         }
13894                 
13895         /* FIXME: widening and truncation */
13896
13897         /*
13898          * As an optimization, when a variable allocated to the stack is first loaded into 
13899          * an lvreg, we will remember the lvreg and use it the next time instead of loading
13900          * the variable again.
13901          */
13902         orig_next_vreg = cfg->next_vreg;
13903         vreg_to_lvreg = (guint32 *)mono_mempool_alloc0 (cfg->mempool, sizeof (guint32) * cfg->next_vreg);
13904         lvregs_size = 1024;
13905         lvregs = (guint32 *)mono_mempool_alloc (cfg->mempool, sizeof (guint32) * lvregs_size);
13906         lvregs_len = 0;
13907
13908         /* 
13909          * These arrays contain the first and last instructions accessing a given
13910          * variable.
13911          * Since we emit bblocks in the same order we process them here, and we
13912          * don't split live ranges, these will precisely describe the live range of
13913          * the variable, i.e. the instruction range where a valid value can be found
13914          * in the variables location.
13915          * The live range is computed using the liveness info computed by the liveness pass.
13916          * We can't use vmv->range, since that is an abstract live range, and we need
13917          * one which is instruction precise.
13918          * FIXME: Variables used in out-of-line bblocks have a hole in their live range.
13919          */
13920         /* FIXME: Only do this if debugging info is requested */
13921         live_range_start = g_new0 (MonoInst*, cfg->next_vreg);
13922         live_range_end = g_new0 (MonoInst*, cfg->next_vreg);
13923         live_range_start_bb = g_new (MonoBasicBlock*, cfg->next_vreg);
13924         live_range_end_bb = g_new (MonoBasicBlock*, cfg->next_vreg);
13925         
13926         /* Add spill loads/stores */
13927         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
13928                 MonoInst *ins;
13929
13930                 if (cfg->verbose_level > 2)
13931                         printf ("\nSPILL BLOCK %d:\n", bb->block_num);
13932
13933                 /* Clear vreg_to_lvreg array */
13934                 for (i = 0; i < lvregs_len; i++)
13935                         vreg_to_lvreg [lvregs [i]] = 0;
13936                 lvregs_len = 0;
13937
13938                 cfg->cbb = bb;
13939                 MONO_BB_FOR_EACH_INS (bb, ins) {
13940                         const char *spec = INS_INFO (ins->opcode);
13941                         int regtype, srcindex, sreg, tmp_reg, prev_dreg, num_sregs;
13942                         gboolean store, no_lvreg;
13943                         int sregs [MONO_MAX_SRC_REGS];
13944
13945                         if (G_UNLIKELY (cfg->verbose_level > 2))
13946                                 mono_print_ins (ins);
13947
13948                         if (ins->opcode == OP_NOP)
13949                                 continue;
13950
13951                         /* 
13952                          * We handle LDADDR here as well, since it can only be decomposed
13953                          * when variable addresses are known.
13954                          */
13955                         if (ins->opcode == OP_LDADDR) {
13956                                 MonoInst *var = (MonoInst *)ins->inst_p0;
13957
13958                                 if (var->opcode == OP_VTARG_ADDR) {
13959                                         /* Happens on SPARC/S390 where vtypes are passed by reference */
13960                                         MonoInst *vtaddr = var->inst_left;
13961                                         if (vtaddr->opcode == OP_REGVAR) {
13962                                                 ins->opcode = OP_MOVE;
13963                                                 ins->sreg1 = vtaddr->dreg;
13964                                         }
13965                                         else if (var->inst_left->opcode == OP_REGOFFSET) {
13966                                                 ins->opcode = OP_LOAD_MEMBASE;
13967                                                 ins->inst_basereg = vtaddr->inst_basereg;
13968                                                 ins->inst_offset = vtaddr->inst_offset;
13969                                         } else
13970                                                 NOT_IMPLEMENTED;
13971                                 } else if (cfg->gsharedvt && cfg->gsharedvt_vreg_to_idx [var->dreg] < 0) {
13972                                         /* gsharedvt arg passed by ref */
13973                                         g_assert (var->opcode == OP_GSHAREDVT_ARG_REGOFFSET);
13974
13975                                         ins->opcode = OP_LOAD_MEMBASE;
13976                                         ins->inst_basereg = var->inst_basereg;
13977                                         ins->inst_offset = var->inst_offset;
13978                                 } else if (cfg->gsharedvt && cfg->gsharedvt_vreg_to_idx [var->dreg]) {
13979                                         MonoInst *load, *load2, *load3;
13980                                         int idx = cfg->gsharedvt_vreg_to_idx [var->dreg] - 1;
13981                                         int reg1, reg2, reg3;
13982                                         MonoInst *info_var = cfg->gsharedvt_info_var;
13983                                         MonoInst *locals_var = cfg->gsharedvt_locals_var;
13984
13985                                         /*
13986                                          * gsharedvt local.
13987                                          * Compute the address of the local as gsharedvt_locals_var + gsharedvt_info_var->locals_offsets [idx].
13988                                          */
13989
13990                                         g_assert (var->opcode == OP_GSHAREDVT_LOCAL);
13991
13992                                         g_assert (info_var);
13993                                         g_assert (locals_var);
13994
13995                                         /* Mark the instruction used to compute the locals var as used */
13996                                         cfg->gsharedvt_locals_var_ins = NULL;
13997
13998                                         /* Load the offset */
13999                                         if (info_var->opcode == OP_REGOFFSET) {
14000                                                 reg1 = alloc_ireg (cfg);
14001                                                 NEW_LOAD_MEMBASE (cfg, load, OP_LOAD_MEMBASE, reg1, info_var->inst_basereg, info_var->inst_offset);
14002                                         } else if (info_var->opcode == OP_REGVAR) {
14003                                                 load = NULL;
14004                                                 reg1 = info_var->dreg;
14005                                         } else {
14006                                                 g_assert_not_reached ();
14007                                         }
14008                                         reg2 = alloc_ireg (cfg);
14009                                         NEW_LOAD_MEMBASE (cfg, load2, OP_LOADI4_MEMBASE, reg2, reg1, MONO_STRUCT_OFFSET (MonoGSharedVtMethodRuntimeInfo, entries) + (idx * sizeof (gpointer)));
14010                                         /* Load the locals area address */
14011                                         reg3 = alloc_ireg (cfg);
14012                                         if (locals_var->opcode == OP_REGOFFSET) {
14013                                                 NEW_LOAD_MEMBASE (cfg, load3, OP_LOAD_MEMBASE, reg3, locals_var->inst_basereg, locals_var->inst_offset);
14014                                         } else if (locals_var->opcode == OP_REGVAR) {
14015                                                 NEW_UNALU (cfg, load3, OP_MOVE, reg3, locals_var->dreg);
14016                                         } else {
14017                                                 g_assert_not_reached ();
14018                                         }
14019                                         /* Compute the address */
14020                                         ins->opcode = OP_PADD;
14021                                         ins->sreg1 = reg3;
14022                                         ins->sreg2 = reg2;
14023
14024                                         mono_bblock_insert_before_ins (bb, ins, load3);
14025                                         mono_bblock_insert_before_ins (bb, load3, load2);
14026                                         if (load)
14027                                                 mono_bblock_insert_before_ins (bb, load2, load);
14028                                 } else {
14029                                         g_assert (var->opcode == OP_REGOFFSET);
14030
14031                                         ins->opcode = OP_ADD_IMM;
14032                                         ins->sreg1 = var->inst_basereg;
14033                                         ins->inst_imm = var->inst_offset;
14034                                 }
14035
14036                                 *need_local_opts = TRUE;
14037                                 spec = INS_INFO (ins->opcode);
14038                         }
14039
14040                         if (ins->opcode < MONO_CEE_LAST) {
14041                                 mono_print_ins (ins);
14042                                 g_assert_not_reached ();
14043                         }
14044
14045                         /*
14046                          * Store opcodes have destbasereg in the dreg, but in reality, it is an
14047                          * src register.
14048                          * FIXME:
14049                          */
14050                         if (MONO_IS_STORE_MEMBASE (ins)) {
14051                                 tmp_reg = ins->dreg;
14052                                 ins->dreg = ins->sreg2;
14053                                 ins->sreg2 = tmp_reg;
14054                                 store = TRUE;
14055
14056                                 spec2 [MONO_INST_DEST] = ' ';
14057                                 spec2 [MONO_INST_SRC1] = spec [MONO_INST_SRC1];
14058                                 spec2 [MONO_INST_SRC2] = spec [MONO_INST_DEST];
14059                                 spec2 [MONO_INST_SRC3] = ' ';
14060                                 spec = spec2;
14061                         } else if (MONO_IS_STORE_MEMINDEX (ins))
14062                                 g_assert_not_reached ();
14063                         else
14064                                 store = FALSE;
14065                         no_lvreg = FALSE;
14066
14067                         if (G_UNLIKELY (cfg->verbose_level > 2)) {
14068                                 printf ("\t %.3s %d", spec, ins->dreg);
14069                                 num_sregs = mono_inst_get_src_registers (ins, sregs);
14070                                 for (srcindex = 0; srcindex < num_sregs; ++srcindex)
14071                                         printf (" %d", sregs [srcindex]);
14072                                 printf ("\n");
14073                         }
14074
14075                         /***************/
14076                         /*    DREG     */
14077                         /***************/
14078                         regtype = spec [MONO_INST_DEST];
14079                         g_assert (((ins->dreg == -1) && (regtype == ' ')) || ((ins->dreg != -1) && (regtype != ' ')));
14080                         prev_dreg = -1;
14081
14082                         if ((ins->dreg != -1) && get_vreg_to_inst (cfg, ins->dreg)) {
14083                                 MonoInst *var = get_vreg_to_inst (cfg, ins->dreg);
14084                                 MonoInst *store_ins;
14085                                 int store_opcode;
14086                                 MonoInst *def_ins = ins;
14087                                 int dreg = ins->dreg; /* The original vreg */
14088
14089                                 store_opcode = mono_type_to_store_membase (cfg, var->inst_vtype);
14090
14091                                 if (var->opcode == OP_REGVAR) {
14092                                         ins->dreg = var->dreg;
14093                                 } else if ((ins->dreg == ins->sreg1) && (spec [MONO_INST_DEST] == 'i') && (spec [MONO_INST_SRC1] == 'i') && !vreg_to_lvreg [ins->dreg] && (op_to_op_dest_membase (store_opcode, ins->opcode) != -1)) {
14094                                         /* 
14095                                          * Instead of emitting a load+store, use a _membase opcode.
14096                                          */
14097                                         g_assert (var->opcode == OP_REGOFFSET);
14098                                         if (ins->opcode == OP_MOVE) {
14099                                                 NULLIFY_INS (ins);
14100                                                 def_ins = NULL;
14101                                         } else {
14102                                                 ins->opcode = op_to_op_dest_membase (store_opcode, ins->opcode);
14103                                                 ins->inst_basereg = var->inst_basereg;
14104                                                 ins->inst_offset = var->inst_offset;
14105                                                 ins->dreg = -1;
14106                                         }
14107                                         spec = INS_INFO (ins->opcode);
14108                                 } else {
14109                                         guint32 lvreg;
14110
14111                                         g_assert (var->opcode == OP_REGOFFSET);
14112
14113                                         prev_dreg = ins->dreg;
14114
14115                                         /* Invalidate any previous lvreg for this vreg */
14116                                         vreg_to_lvreg [ins->dreg] = 0;
14117
14118                                         lvreg = 0;
14119
14120                                         if (COMPILE_SOFT_FLOAT (cfg) && store_opcode == OP_STORER8_MEMBASE_REG) {
14121                                                 regtype = 'l';
14122                                                 store_opcode = OP_STOREI8_MEMBASE_REG;
14123                                         }
14124
14125                                         ins->dreg = alloc_dreg (cfg, stacktypes [regtype]);
14126
14127 #if SIZEOF_REGISTER != 8
14128                                         if (regtype == 'l') {
14129                                                 NEW_STORE_MEMBASE (cfg, store_ins, OP_STOREI4_MEMBASE_REG, var->inst_basereg, var->inst_offset + MINI_LS_WORD_OFFSET, MONO_LVREG_LS (ins->dreg));
14130                                                 mono_bblock_insert_after_ins (bb, ins, store_ins);
14131                                                 NEW_STORE_MEMBASE (cfg, store_ins, OP_STOREI4_MEMBASE_REG, var->inst_basereg, var->inst_offset + MINI_MS_WORD_OFFSET, MONO_LVREG_MS (ins->dreg));
14132                                                 mono_bblock_insert_after_ins (bb, ins, store_ins);
14133                                                 def_ins = store_ins;
14134                                         }
14135                                         else
14136 #endif
14137                                         {
14138                                                 g_assert (store_opcode != OP_STOREV_MEMBASE);
14139
14140                                                 /* Try to fuse the store into the instruction itself */
14141                                                 /* FIXME: Add more instructions */
14142                                                 if (!lvreg && ((ins->opcode == OP_ICONST) || ((ins->opcode == OP_I8CONST) && (ins->inst_c0 == 0)))) {
14143                                                         ins->opcode = store_membase_reg_to_store_membase_imm (store_opcode);
14144                                                         ins->inst_imm = ins->inst_c0;
14145                                                         ins->inst_destbasereg = var->inst_basereg;
14146                                                         ins->inst_offset = var->inst_offset;
14147                                                         spec = INS_INFO (ins->opcode);
14148                                                 } else if (!lvreg && ((ins->opcode == OP_MOVE) || (ins->opcode == OP_FMOVE) || (ins->opcode == OP_LMOVE) || (ins->opcode == OP_RMOVE))) {
14149                                                         ins->opcode = store_opcode;
14150                                                         ins->inst_destbasereg = var->inst_basereg;
14151                                                         ins->inst_offset = var->inst_offset;
14152
14153                                                         no_lvreg = TRUE;
14154
14155                                                         tmp_reg = ins->dreg;
14156                                                         ins->dreg = ins->sreg2;
14157                                                         ins->sreg2 = tmp_reg;
14158                                                         store = TRUE;
14159
14160                                                         spec2 [MONO_INST_DEST] = ' ';
14161                                                         spec2 [MONO_INST_SRC1] = spec [MONO_INST_SRC1];
14162                                                         spec2 [MONO_INST_SRC2] = spec [MONO_INST_DEST];
14163                                                         spec2 [MONO_INST_SRC3] = ' ';
14164                                                         spec = spec2;
14165                                                 } else if (!lvreg && (op_to_op_store_membase (store_opcode, ins->opcode) != -1)) {
14166                                                         // FIXME: The backends expect the base reg to be in inst_basereg
14167                                                         ins->opcode = op_to_op_store_membase (store_opcode, ins->opcode);
14168                                                         ins->dreg = -1;
14169                                                         ins->inst_basereg = var->inst_basereg;
14170                                                         ins->inst_offset = var->inst_offset;
14171                                                         spec = INS_INFO (ins->opcode);
14172                                                 } else {
14173                                                         /* printf ("INS: "); mono_print_ins (ins); */
14174                                                         /* Create a store instruction */
14175                                                         NEW_STORE_MEMBASE (cfg, store_ins, store_opcode, var->inst_basereg, var->inst_offset, ins->dreg);
14176
14177                                                         /* Insert it after the instruction */
14178                                                         mono_bblock_insert_after_ins (bb, ins, store_ins);
14179
14180                                                         def_ins = store_ins;
14181
14182                                                         /* 
14183                                                          * We can't assign ins->dreg to var->dreg here, since the
14184                                                          * sregs could use it. So set a flag, and do it after
14185                                                          * the sregs.
14186                                                          */
14187                                                         if ((!cfg->backend->use_fpstack || ((store_opcode != OP_STORER8_MEMBASE_REG) && (store_opcode != OP_STORER4_MEMBASE_REG))) && !((var)->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT)))
14188                                                                 dest_has_lvreg = TRUE;
14189                                                 }
14190                                         }
14191                                 }
14192
14193                                 if (def_ins && !live_range_start [dreg]) {
14194                                         live_range_start [dreg] = def_ins;
14195                                         live_range_start_bb [dreg] = bb;
14196                                 }
14197
14198                                 if (cfg->compute_gc_maps && def_ins && (var->flags & MONO_INST_GC_TRACK)) {
14199                                         MonoInst *tmp;
14200
14201                                         MONO_INST_NEW (cfg, tmp, OP_GC_LIVENESS_DEF);
14202                                         tmp->inst_c1 = dreg;
14203                                         mono_bblock_insert_after_ins (bb, def_ins, tmp);
14204                                 }
14205                         }
14206
14207                         /************/
14208                         /*  SREGS   */
14209                         /************/
14210                         num_sregs = mono_inst_get_src_registers (ins, sregs);
14211                         for (srcindex = 0; srcindex < 3; ++srcindex) {
14212                                 regtype = spec [MONO_INST_SRC1 + srcindex];
14213                                 sreg = sregs [srcindex];
14214
14215                                 g_assert (((sreg == -1) && (regtype == ' ')) || ((sreg != -1) && (regtype != ' ')));
14216                                 if ((sreg != -1) && get_vreg_to_inst (cfg, sreg)) {
14217                                         MonoInst *var = get_vreg_to_inst (cfg, sreg);
14218                                         MonoInst *use_ins = ins;
14219                                         MonoInst *load_ins;
14220                                         guint32 load_opcode;
14221
14222                                         if (var->opcode == OP_REGVAR) {
14223                                                 sregs [srcindex] = var->dreg;
14224                                                 //mono_inst_set_src_registers (ins, sregs);
14225                                                 live_range_end [sreg] = use_ins;
14226                                                 live_range_end_bb [sreg] = bb;
14227
14228                                                 if (cfg->compute_gc_maps && var->dreg < orig_next_vreg && (var->flags & MONO_INST_GC_TRACK)) {
14229                                                         MonoInst *tmp;
14230
14231                                                         MONO_INST_NEW (cfg, tmp, OP_GC_LIVENESS_USE);
14232                                                         /* var->dreg is a hreg */
14233                                                         tmp->inst_c1 = sreg;
14234                                                         mono_bblock_insert_after_ins (bb, ins, tmp);
14235                                                 }
14236
14237                                                 continue;
14238                                         }
14239
14240                                         g_assert (var->opcode == OP_REGOFFSET);
14241                                                 
14242                                         load_opcode = mono_type_to_load_membase (cfg, var->inst_vtype);
14243
14244                                         g_assert (load_opcode != OP_LOADV_MEMBASE);
14245
14246                                         if (vreg_to_lvreg [sreg]) {
14247                                                 g_assert (vreg_to_lvreg [sreg] != -1);
14248
14249                                                 /* The variable is already loaded to an lvreg */
14250                                                 if (G_UNLIKELY (cfg->verbose_level > 2))
14251                                                         printf ("\t\tUse lvreg R%d for R%d.\n", vreg_to_lvreg [sreg], sreg);
14252                                                 sregs [srcindex] = vreg_to_lvreg [sreg];
14253                                                 //mono_inst_set_src_registers (ins, sregs);
14254                                                 continue;
14255                                         }
14256
14257                                         /* Try to fuse the load into the instruction */
14258                                         if ((srcindex == 0) && (op_to_op_src1_membase (cfg, load_opcode, ins->opcode) != -1)) {
14259                                                 ins->opcode = op_to_op_src1_membase (cfg, load_opcode, ins->opcode);
14260                                                 sregs [0] = var->inst_basereg;
14261                                                 //mono_inst_set_src_registers (ins, sregs);
14262                                                 ins->inst_offset = var->inst_offset;
14263                                         } else if ((srcindex == 1) && (op_to_op_src2_membase (cfg, load_opcode, ins->opcode) != -1)) {
14264                                                 ins->opcode = op_to_op_src2_membase (cfg, load_opcode, ins->opcode);
14265                                                 sregs [1] = var->inst_basereg;
14266                                                 //mono_inst_set_src_registers (ins, sregs);
14267                                                 ins->inst_offset = var->inst_offset;
14268                                         } else {
14269                                                 if (MONO_IS_REAL_MOVE (ins)) {
14270                                                         ins->opcode = OP_NOP;
14271                                                         sreg = ins->dreg;
14272                                                 } else {
14273                                                         //printf ("%d ", srcindex); mono_print_ins (ins);
14274
14275                                                         sreg = alloc_dreg (cfg, stacktypes [regtype]);
14276
14277                                                         if ((!cfg->backend->use_fpstack || ((load_opcode != OP_LOADR8_MEMBASE) && (load_opcode != OP_LOADR4_MEMBASE))) && !((var)->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT)) && !no_lvreg) {
14278                                                                 if (var->dreg == prev_dreg) {
14279                                                                         /*
14280                                                                          * sreg refers to the value loaded by the load
14281                                                                          * emitted below, but we need to use ins->dreg
14282                                                                          * since it refers to the store emitted earlier.
14283                                                                          */
14284                                                                         sreg = ins->dreg;
14285                                                                 }
14286                                                                 g_assert (sreg != -1);
14287                                                                 vreg_to_lvreg [var->dreg] = sreg;
14288                                                                 if (lvregs_len >= lvregs_size) {
14289                                                                         guint32 *new_lvregs = mono_mempool_alloc0 (cfg->mempool, sizeof (guint32) * lvregs_size * 2);
14290                                                                         memcpy (new_lvregs, lvregs, sizeof (guint32) * lvregs_size);
14291                                                                         lvregs = new_lvregs;
14292                                                                         lvregs_size *= 2;
14293                                                                 }
14294                                                                 lvregs [lvregs_len ++] = var->dreg;
14295                                                         }
14296                                                 }
14297
14298                                                 sregs [srcindex] = sreg;
14299                                                 //mono_inst_set_src_registers (ins, sregs);
14300
14301 #if SIZEOF_REGISTER != 8
14302                                                 if (regtype == 'l') {
14303                                                         NEW_LOAD_MEMBASE (cfg, load_ins, OP_LOADI4_MEMBASE, MONO_LVREG_MS (sreg), var->inst_basereg, var->inst_offset + MINI_MS_WORD_OFFSET);
14304                                                         mono_bblock_insert_before_ins (bb, ins, load_ins);
14305                                                         NEW_LOAD_MEMBASE (cfg, load_ins, OP_LOADI4_MEMBASE, MONO_LVREG_LS (sreg), var->inst_basereg, var->inst_offset + MINI_LS_WORD_OFFSET);
14306                                                         mono_bblock_insert_before_ins (bb, ins, load_ins);
14307                                                         use_ins = load_ins;
14308                                                 }
14309                                                 else
14310 #endif
14311                                                 {
14312 #if SIZEOF_REGISTER == 4
14313                                                         g_assert (load_opcode != OP_LOADI8_MEMBASE);
14314 #endif
14315                                                         NEW_LOAD_MEMBASE (cfg, load_ins, load_opcode, sreg, var->inst_basereg, var->inst_offset);
14316                                                         mono_bblock_insert_before_ins (bb, ins, load_ins);
14317                                                         use_ins = load_ins;
14318                                                 }
14319                                         }
14320
14321                                         if (var->dreg < orig_next_vreg) {
14322                                                 live_range_end [var->dreg] = use_ins;
14323                                                 live_range_end_bb [var->dreg] = bb;
14324                                         }
14325
14326                                         if (cfg->compute_gc_maps && var->dreg < orig_next_vreg && (var->flags & MONO_INST_GC_TRACK)) {
14327                                                 MonoInst *tmp;
14328
14329                                                 MONO_INST_NEW (cfg, tmp, OP_GC_LIVENESS_USE);
14330                                                 tmp->inst_c1 = var->dreg;
14331                                                 mono_bblock_insert_after_ins (bb, ins, tmp);
14332                                         }
14333                                 }
14334                         }
14335                         mono_inst_set_src_registers (ins, sregs);
14336
14337                         if (dest_has_lvreg) {
14338                                 g_assert (ins->dreg != -1);
14339                                 vreg_to_lvreg [prev_dreg] = ins->dreg;
14340                                 if (lvregs_len >= lvregs_size) {
14341                                         guint32 *new_lvregs = mono_mempool_alloc0 (cfg->mempool, sizeof (guint32) * lvregs_size * 2);
14342                                         memcpy (new_lvregs, lvregs, sizeof (guint32) * lvregs_size);
14343                                         lvregs = new_lvregs;
14344                                         lvregs_size *= 2;
14345                                 }
14346                                 lvregs [lvregs_len ++] = prev_dreg;
14347                                 dest_has_lvreg = FALSE;
14348                         }
14349
14350                         if (store) {
14351                                 tmp_reg = ins->dreg;
14352                                 ins->dreg = ins->sreg2;
14353                                 ins->sreg2 = tmp_reg;
14354                         }
14355
14356                         if (MONO_IS_CALL (ins)) {
14357                                 /* Clear vreg_to_lvreg array */
14358                                 for (i = 0; i < lvregs_len; i++)
14359                                         vreg_to_lvreg [lvregs [i]] = 0;
14360                                 lvregs_len = 0;
14361                         } else if (ins->opcode == OP_NOP) {
14362                                 ins->dreg = -1;
14363                                 MONO_INST_NULLIFY_SREGS (ins);
14364                         }
14365
14366                         if (cfg->verbose_level > 2)
14367                                 mono_print_ins_index (1, ins);
14368                 }
14369
14370                 /* Extend the live range based on the liveness info */
14371                 if (cfg->compute_precise_live_ranges && bb->live_out_set && bb->code) {
14372                         for (i = 0; i < cfg->num_varinfo; i ++) {
14373                                 MonoMethodVar *vi = MONO_VARINFO (cfg, i);
14374
14375                                 if (vreg_is_volatile (cfg, vi->vreg))
14376                                         /* The liveness info is incomplete */
14377                                         continue;
14378
14379                                 if (mono_bitset_test_fast (bb->live_in_set, i) && !live_range_start [vi->vreg]) {
14380                                         /* Live from at least the first ins of this bb */
14381                                         live_range_start [vi->vreg] = bb->code;
14382                                         live_range_start_bb [vi->vreg] = bb;
14383                                 }
14384
14385                                 if (mono_bitset_test_fast (bb->live_out_set, i)) {
14386                                         /* Live at least until the last ins of this bb */
14387                                         live_range_end [vi->vreg] = bb->last_ins;
14388                                         live_range_end_bb [vi->vreg] = bb;
14389                                 }
14390                         }
14391                 }
14392         }
14393         
14394         /*
14395          * Emit LIVERANGE_START/LIVERANGE_END opcodes, the backend will implement them
14396          * by storing the current native offset into MonoMethodVar->live_range_start/end.
14397          */
14398         if (cfg->backend->have_liverange_ops && cfg->compute_precise_live_ranges && cfg->comp_done & MONO_COMP_LIVENESS) {
14399                 for (i = 0; i < cfg->num_varinfo; ++i) {
14400                         int vreg = MONO_VARINFO (cfg, i)->vreg;
14401                         MonoInst *ins;
14402
14403                         if (live_range_start [vreg]) {
14404                                 MONO_INST_NEW (cfg, ins, OP_LIVERANGE_START);
14405                                 ins->inst_c0 = i;
14406                                 ins->inst_c1 = vreg;
14407                                 mono_bblock_insert_after_ins (live_range_start_bb [vreg], live_range_start [vreg], ins);
14408                         }
14409                         if (live_range_end [vreg]) {
14410                                 MONO_INST_NEW (cfg, ins, OP_LIVERANGE_END);
14411                                 ins->inst_c0 = i;
14412                                 ins->inst_c1 = vreg;
14413                                 if (live_range_end [vreg] == live_range_end_bb [vreg]->last_ins)
14414                                         mono_add_ins_to_end (live_range_end_bb [vreg], ins);
14415                                 else
14416                                         mono_bblock_insert_after_ins (live_range_end_bb [vreg], live_range_end [vreg], ins);
14417                         }
14418                 }
14419         }
14420
14421         if (cfg->gsharedvt_locals_var_ins) {
14422                 /* Nullify if unused */
14423                 cfg->gsharedvt_locals_var_ins->opcode = OP_PCONST;
14424                 cfg->gsharedvt_locals_var_ins->inst_imm = 0;
14425         }
14426
14427         g_free (live_range_start);
14428         g_free (live_range_end);
14429         g_free (live_range_start_bb);
14430         g_free (live_range_end_bb);
14431 }
14432
14433
14434 /**
14435  * FIXME:
14436  * - use 'iadd' instead of 'int_add'
14437  * - handling ovf opcodes: decompose in method_to_ir.
14438  * - unify iregs/fregs
14439  *   -> partly done, the missing parts are:
14440  *   - a more complete unification would involve unifying the hregs as well, so
14441  *     code wouldn't need if (fp) all over the place. but that would mean the hregs
14442  *     would no longer map to the machine hregs, so the code generators would need to
14443  *     be modified. Also, on ia64 for example, niregs + nfregs > 256 -> bitmasks
14444  *     wouldn't work any more. Duplicating the code in mono_local_regalloc () into
14445  *     fp/non-fp branches speeds it up by about 15%.
14446  * - use sext/zext opcodes instead of shifts
14447  * - add OP_ICALL
14448  * - get rid of TEMPLOADs if possible and use vregs instead
14449  * - clean up usage of OP_P/OP_ opcodes
14450  * - cleanup usage of DUMMY_USE
14451  * - cleanup the setting of ins->type for MonoInst's which are pushed on the 
14452  *   stack
14453  * - set the stack type and allocate a dreg in the EMIT_NEW macros
14454  * - get rid of all the <foo>2 stuff when the new JIT is ready.
14455  * - make sure handle_stack_args () is called before the branch is emitted
14456  * - when the new IR is done, get rid of all unused stuff
14457  * - COMPARE/BEQ as separate instructions or unify them ?
14458  *   - keeping them separate allows specialized compare instructions like
14459  *     compare_imm, compare_membase
14460  *   - most back ends unify fp compare+branch, fp compare+ceq
14461  * - integrate mono_save_args into inline_method
14462  * - get rid of the empty bblocks created by MONO_EMIT_NEW_BRACH_BLOCK2
14463  * - handle long shift opts on 32 bit platforms somehow: they require 
14464  *   3 sregs (2 for arg1 and 1 for arg2)
14465  * - make byref a 'normal' type.
14466  * - use vregs for bb->out_stacks if possible, handle_global_vreg will make them a
14467  *   variable if needed.
14468  * - do not start a new IL level bblock when cfg->cbb is changed by a function call
14469  *   like inline_method.
14470  * - remove inlining restrictions
14471  * - fix LNEG and enable cfold of INEG
14472  * - generalize x86 optimizations like ldelema as a peephole optimization
14473  * - add store_mem_imm for amd64
14474  * - optimize the loading of the interruption flag in the managed->native wrappers
14475  * - avoid special handling of OP_NOP in passes
14476  * - move code inserting instructions into one function/macro.
14477  * - try a coalescing phase after liveness analysis
14478  * - add float -> vreg conversion + local optimizations on !x86
14479  * - figure out how to handle decomposed branches during optimizations, ie.
14480  *   compare+branch, op_jump_table+op_br etc.
14481  * - promote RuntimeXHandles to vregs
14482  * - vtype cleanups:
14483  *   - add a NEW_VARLOADA_VREG macro
14484  * - the vtype optimizations are blocked by the LDADDR opcodes generated for 
14485  *   accessing vtype fields.
14486  * - get rid of I8CONST on 64 bit platforms
14487  * - dealing with the increase in code size due to branches created during opcode
14488  *   decomposition:
14489  *   - use extended basic blocks
14490  *     - all parts of the JIT
14491  *     - handle_global_vregs () && local regalloc
14492  *   - avoid introducing global vregs during decomposition, like 'vtable' in isinst
14493  * - sources of increase in code size:
14494  *   - vtypes
14495  *   - long compares
14496  *   - isinst and castclass
14497  *   - lvregs not allocated to global registers even if used multiple times
14498  * - call cctors outside the JIT, to make -v output more readable and JIT timings more
14499  *   meaningful.
14500  * - check for fp stack leakage in other opcodes too. (-> 'exceptions' optimization)
14501  * - add all micro optimizations from the old JIT
14502  * - put tree optimizations into the deadce pass
14503  * - decompose op_start_handler/op_endfilter/op_endfinally earlier using an arch
14504  *   specific function.
14505  * - unify the float comparison opcodes with the other comparison opcodes, i.e.
14506  *   fcompare + branchCC.
14507  * - create a helper function for allocating a stack slot, taking into account 
14508  *   MONO_CFG_HAS_SPILLUP.
14509  * - merge r68207.
14510  * - merge the ia64 switch changes.
14511  * - optimize mono_regstate2_alloc_int/float.
14512  * - fix the pessimistic handling of variables accessed in exception handler blocks.
14513  * - need to write a tree optimization pass, but the creation of trees is difficult, i.e.
14514  *   parts of the tree could be separated by other instructions, killing the tree
14515  *   arguments, or stores killing loads etc. Also, should we fold loads into other
14516  *   instructions if the result of the load is used multiple times ?
14517  * - make the REM_IMM optimization in mini-x86.c arch-independent.
14518  * - LAST MERGE: 108395.
14519  * - when returning vtypes in registers, generate IR and append it to the end of the
14520  *   last bb instead of doing it in the epilog.
14521  * - change the store opcodes so they use sreg1 instead of dreg to store the base register.
14522  */
14523
14524 /*
14525
14526 NOTES
14527 -----
14528
14529 - When to decompose opcodes:
14530   - earlier: this makes some optimizations hard to implement, since the low level IR
14531   no longer contains the neccessary information. But it is easier to do.
14532   - later: harder to implement, enables more optimizations.
14533 - Branches inside bblocks:
14534   - created when decomposing complex opcodes. 
14535     - branches to another bblock: harmless, but not tracked by the branch 
14536       optimizations, so need to branch to a label at the start of the bblock.
14537     - branches to inside the same bblock: very problematic, trips up the local
14538       reg allocator. Can be fixed by spitting the current bblock, but that is a
14539       complex operation, since some local vregs can become global vregs etc.
14540 - Local/global vregs:
14541   - local vregs: temporary vregs used inside one bblock. Assigned to hregs by the
14542     local register allocator.
14543   - global vregs: used in more than one bblock. Have an associated MonoMethodVar
14544     structure, created by mono_create_var (). Assigned to hregs or the stack by
14545     the global register allocator.
14546 - When to do optimizations like alu->alu_imm:
14547   - earlier -> saves work later on since the IR will be smaller/simpler
14548   - later -> can work on more instructions
14549 - Handling of valuetypes:
14550   - When a vtype is pushed on the stack, a new temporary is created, an 
14551     instruction computing its address (LDADDR) is emitted and pushed on
14552     the stack. Need to optimize cases when the vtype is used immediately as in
14553     argument passing, stloc etc.
14554 - Instead of the to_end stuff in the old JIT, simply call the function handling
14555   the values on the stack before emitting the last instruction of the bb.
14556 */
14557
14558 #else /* !DISABLE_JIT */
14559
14560 void
14561 mono_set_break_policy (MonoBreakPolicyFunc policy_callback)
14562 {
14563 }
14564
14565 #endif /* !DISABLE_JIT */