[mini] decompose `isinst` and `castclass` in a later pass
[mono.git] / mono / mini / method-to-ir.c
1 /*
2  * method-to-ir.c: Convert CIL to the JIT internal representation
3  *
4  * Author:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * (C) 2002 Ximian, Inc.
9  * Copyright 2003-2010 Novell, Inc (http://www.novell.com)
10  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
11  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
12  */
13
14 #include <config.h>
15
16 #ifndef DISABLE_JIT
17
18 #include <signal.h>
19
20 #ifdef HAVE_UNISTD_H
21 #include <unistd.h>
22 #endif
23
24 #include <math.h>
25 #include <string.h>
26 #include <ctype.h>
27
28 #ifdef HAVE_SYS_TIME_H
29 #include <sys/time.h>
30 #endif
31
32 #ifdef HAVE_ALLOCA_H
33 #include <alloca.h>
34 #endif
35
36 #include <mono/utils/memcheck.h>
37 #include "mini.h"
38 #include <mono/metadata/abi-details.h>
39 #include <mono/metadata/assembly.h>
40 #include <mono/metadata/attrdefs.h>
41 #include <mono/metadata/loader.h>
42 #include <mono/metadata/tabledefs.h>
43 #include <mono/metadata/class.h>
44 #include <mono/metadata/object.h>
45 #include <mono/metadata/exception.h>
46 #include <mono/metadata/opcodes.h>
47 #include <mono/metadata/mono-endian.h>
48 #include <mono/metadata/tokentype.h>
49 #include <mono/metadata/tabledefs.h>
50 #include <mono/metadata/marshal.h>
51 #include <mono/metadata/debug-helpers.h>
52 #include <mono/metadata/mono-debug.h>
53 #include <mono/metadata/mono-debug-debugger.h>
54 #include <mono/metadata/gc-internals.h>
55 #include <mono/metadata/security-manager.h>
56 #include <mono/metadata/threads-types.h>
57 #include <mono/metadata/security-core-clr.h>
58 #include <mono/metadata/profiler-private.h>
59 #include <mono/metadata/profiler.h>
60 #include <mono/metadata/monitor.h>
61 #include <mono/metadata/debug-mono-symfile.h>
62 #include <mono/utils/mono-compiler.h>
63 #include <mono/utils/mono-memory-model.h>
64 #include <mono/utils/mono-error-internals.h>
65 #include <mono/metadata/mono-basic-block.h>
66 #include <mono/metadata/reflection-internals.h>
67 #include <mono/utils/mono-threads-coop.h>
68
69 #include "trace.h"
70
71 #include "ir-emit.h"
72
73 #include "jit-icalls.h"
74 #include "jit.h"
75 #include "debugger-agent.h"
76 #include "seq-points.h"
77 #include "aot-compiler.h"
78 #include "mini-llvm.h"
79
80 #define BRANCH_COST 10
81 #define INLINE_LENGTH_LIMIT 20
82
83 /* These have 'cfg' as an implicit argument */
84 #define INLINE_FAILURE(msg) do {                                                                        \
85         if ((cfg->method != cfg->current_method) && (cfg->current_method->wrapper_type == MONO_WRAPPER_NONE)) { \
86                 inline_failure (cfg, msg);                                                                              \
87                 goto exception_exit;                                                                                    \
88         } \
89         } while (0)
90 #define CHECK_CFG_EXCEPTION do {\
91                 if (cfg->exception_type != MONO_EXCEPTION_NONE) \
92                         goto exception_exit;                                            \
93         } while (0)
94 #define FIELD_ACCESS_FAILURE(method, field) do {                                        \
95                 field_access_failure ((cfg), (method), (field));                        \
96                 goto exception_exit;    \
97         } while (0)
98 #define GENERIC_SHARING_FAILURE(opcode) do {            \
99                 if (cfg->gshared) {                                                                     \
100                         gshared_failure (cfg, opcode, __FILE__, __LINE__);      \
101                         goto exception_exit;    \
102                 }                       \
103         } while (0)
104 #define GSHAREDVT_FAILURE(opcode) do {          \
105         if (cfg->gsharedvt) {                                                                                           \
106                 gsharedvt_failure (cfg, opcode, __FILE__, __LINE__);                    \
107                 goto exception_exit;                                                                                    \
108         }                                                                                                                                       \
109         } while (0)
110 #define OUT_OF_MEMORY_FAILURE do {      \
111                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);                \
112                 mono_error_set_out_of_memory (&cfg->error, "");                                 \
113                 goto exception_exit;    \
114         } while (0)
115 #define DISABLE_AOT(cfg) do { \
116                 if ((cfg)->verbose_level >= 2)                                            \
117                         printf ("AOT disabled: %s:%d\n", __FILE__, __LINE__);   \
118                 (cfg)->disable_aot = TRUE;                                                        \
119         } while (0)
120 #define LOAD_ERROR do { \
121                 break_on_unverified ();                                                         \
122                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD); \
123                 goto exception_exit;                                                                    \
124         } while (0)
125
126 #define TYPE_LOAD_ERROR(klass) do { \
127                 cfg->exception_ptr = klass; \
128                 LOAD_ERROR;                                     \
129         } while (0)
130
131 #define CHECK_CFG_ERROR do {\
132                 if (!mono_error_ok (&cfg->error)) { \
133                         mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);        \
134                         goto mono_error_exit; \
135                 } \
136         } while (0)
137
138 /* Determine whenever 'ins' represents a load of the 'this' argument */
139 #define MONO_CHECK_THIS(ins) (mono_method_signature (cfg->method)->hasthis && ((ins)->opcode == OP_MOVE) && ((ins)->sreg1 == cfg->args [0]->dreg))
140
141 static int ldind_to_load_membase (int opcode);
142 static int stind_to_store_membase (int opcode);
143
144 int mono_op_to_op_imm (int opcode);
145 int mono_op_to_op_imm_noemul (int opcode);
146
147 MONO_API MonoInst* mono_emit_native_call (MonoCompile *cfg, gconstpointer func, MonoMethodSignature *sig, MonoInst **args);
148
149 static int inline_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **sp,
150                                                   guchar *ip, guint real_offset, gboolean inline_always);
151 static MonoInst*
152 emit_llvmonly_virtual_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, int context_used, MonoInst **sp);
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_thunk;
158
159
160 /* type loading helpers */
161 static GENERATE_GET_CLASS_WITH_CACHE (runtime_helpers, System.Runtime.CompilerServices, RuntimeHelpers)
162 static GENERATE_TRY_GET_CLASS_WITH_CACHE (debuggable_attribute, System.Diagnostics, DebuggableAttribute)
163
164 /*
165  * Instruction metadata
166  */
167 #ifdef MINI_OP
168 #undef MINI_OP
169 #endif
170 #ifdef MINI_OP3
171 #undef MINI_OP3
172 #endif
173 #define MINI_OP(a,b,dest,src1,src2) dest, src1, src2, ' ',
174 #define MINI_OP3(a,b,dest,src1,src2,src3) dest, src1, src2, src3,
175 #define NONE ' '
176 #define IREG 'i'
177 #define FREG 'f'
178 #define VREG 'v'
179 #define XREG 'x'
180 #if SIZEOF_REGISTER == 8 && SIZEOF_REGISTER == SIZEOF_VOID_P
181 #define LREG IREG
182 #else
183 #define LREG 'l'
184 #endif
185 /* keep in sync with the enum in mini.h */
186 const char
187 ins_info[] = {
188 #include "mini-ops.h"
189 };
190 #undef MINI_OP
191 #undef MINI_OP3
192
193 #define MINI_OP(a,b,dest,src1,src2) ((src2) != NONE ? 2 : ((src1) != NONE ? 1 : 0)),
194 #define MINI_OP3(a,b,dest,src1,src2,src3) ((src3) != NONE ? 3 : ((src2) != NONE ? 2 : ((src1) != NONE ? 1 : 0))),
195 /* 
196  * This should contain the index of the last sreg + 1. This is not the same
197  * as the number of sregs for opcodes like IA64_CMP_EQ_IMM.
198  */
199 const gint8 ins_sreg_counts[] = {
200 #include "mini-ops.h"
201 };
202 #undef MINI_OP
203 #undef MINI_OP3
204
205 #define MONO_INIT_VARINFO(vi,id) do { \
206         (vi)->range.first_use.pos.bid = 0xffff; \
207         (vi)->reg = -1; \
208         (vi)->idx = (id); \
209 } while (0)
210
211 guint32
212 mono_alloc_ireg (MonoCompile *cfg)
213 {
214         return alloc_ireg (cfg);
215 }
216
217 guint32
218 mono_alloc_lreg (MonoCompile *cfg)
219 {
220         return alloc_lreg (cfg);
221 }
222
223 guint32
224 mono_alloc_freg (MonoCompile *cfg)
225 {
226         return alloc_freg (cfg);
227 }
228
229 guint32
230 mono_alloc_preg (MonoCompile *cfg)
231 {
232         return alloc_preg (cfg);
233 }
234
235 guint32
236 mono_alloc_dreg (MonoCompile *cfg, MonoStackType stack_type)
237 {
238         return alloc_dreg (cfg, stack_type);
239 }
240
241 /*
242  * mono_alloc_ireg_ref:
243  *
244  *   Allocate an IREG, and mark it as holding a GC ref.
245  */
246 guint32
247 mono_alloc_ireg_ref (MonoCompile *cfg)
248 {
249         return alloc_ireg_ref (cfg);
250 }
251
252 /*
253  * mono_alloc_ireg_mp:
254  *
255  *   Allocate an IREG, and mark it as holding a managed pointer.
256  */
257 guint32
258 mono_alloc_ireg_mp (MonoCompile *cfg)
259 {
260         return alloc_ireg_mp (cfg);
261 }
262
263 /*
264  * mono_alloc_ireg_copy:
265  *
266  *   Allocate an IREG with the same GC type as VREG.
267  */
268 guint32
269 mono_alloc_ireg_copy (MonoCompile *cfg, guint32 vreg)
270 {
271         if (vreg_is_ref (cfg, vreg))
272                 return alloc_ireg_ref (cfg);
273         else if (vreg_is_mp (cfg, vreg))
274                 return alloc_ireg_mp (cfg);
275         else
276                 return alloc_ireg (cfg);
277 }
278
279 guint
280 mono_type_to_regmove (MonoCompile *cfg, MonoType *type)
281 {
282         if (type->byref)
283                 return OP_MOVE;
284
285         type = mini_get_underlying_type (type);
286 handle_enum:
287         switch (type->type) {
288         case MONO_TYPE_I1:
289         case MONO_TYPE_U1:
290                 return OP_MOVE;
291         case MONO_TYPE_I2:
292         case MONO_TYPE_U2:
293                 return OP_MOVE;
294         case MONO_TYPE_I4:
295         case MONO_TYPE_U4:
296                 return OP_MOVE;
297         case MONO_TYPE_I:
298         case MONO_TYPE_U:
299         case MONO_TYPE_PTR:
300         case MONO_TYPE_FNPTR:
301                 return OP_MOVE;
302         case MONO_TYPE_CLASS:
303         case MONO_TYPE_STRING:
304         case MONO_TYPE_OBJECT:
305         case MONO_TYPE_SZARRAY:
306         case MONO_TYPE_ARRAY:    
307                 return OP_MOVE;
308         case MONO_TYPE_I8:
309         case MONO_TYPE_U8:
310 #if SIZEOF_REGISTER == 8
311                 return OP_MOVE;
312 #else
313                 return OP_LMOVE;
314 #endif
315         case MONO_TYPE_R4:
316                 return cfg->r4fp ? OP_RMOVE : OP_FMOVE;
317         case MONO_TYPE_R8:
318                 return OP_FMOVE;
319         case MONO_TYPE_VALUETYPE:
320                 if (type->data.klass->enumtype) {
321                         type = mono_class_enum_basetype (type->data.klass);
322                         goto handle_enum;
323                 }
324                 if (MONO_CLASS_IS_SIMD (cfg, mono_class_from_mono_type (type)))
325                         return OP_XMOVE;
326                 return OP_VMOVE;
327         case MONO_TYPE_TYPEDBYREF:
328                 return OP_VMOVE;
329         case MONO_TYPE_GENERICINST:
330                 type = &type->data.generic_class->container_class->byval_arg;
331                 goto handle_enum;
332         case MONO_TYPE_VAR:
333         case MONO_TYPE_MVAR:
334                 g_assert (cfg->gshared);
335                 if (mini_type_var_is_vt (type))
336                         return OP_VMOVE;
337                 else
338                         return mono_type_to_regmove (cfg, mini_get_underlying_type (type));
339         default:
340                 g_error ("unknown type 0x%02x in type_to_regstore", type->type);
341         }
342         return -1;
343 }
344
345 void
346 mono_print_bb (MonoBasicBlock *bb, const char *msg)
347 {
348         int i;
349         MonoInst *tree;
350
351         printf ("\n%s %d: [IN: ", msg, bb->block_num);
352         for (i = 0; i < bb->in_count; ++i)
353                 printf (" BB%d(%d)", bb->in_bb [i]->block_num, bb->in_bb [i]->dfn);
354         printf (", OUT: ");
355         for (i = 0; i < bb->out_count; ++i)
356                 printf (" BB%d(%d)", bb->out_bb [i]->block_num, bb->out_bb [i]->dfn);
357         printf (" ]\n");
358         for (tree = bb->code; tree; tree = tree->next)
359                 mono_print_ins_index (-1, tree);
360 }
361
362 void
363 mono_create_helper_signatures (void)
364 {
365         helper_sig_domain_get = mono_create_icall_signature ("ptr");
366         helper_sig_rgctx_lazy_fetch_trampoline = mono_create_icall_signature ("ptr ptr");
367         helper_sig_llvmonly_imt_thunk = mono_create_icall_signature ("ptr ptr ptr");
368 }
369
370 static MONO_NEVER_INLINE void
371 break_on_unverified (void)
372 {
373         if (mini_get_debug_options ()->break_on_unverified)
374                 G_BREAKPOINT ();
375 }
376
377 static MONO_NEVER_INLINE void
378 field_access_failure (MonoCompile *cfg, MonoMethod *method, MonoClassField *field)
379 {
380         char *method_fname = mono_method_full_name (method, TRUE);
381         char *field_fname = mono_field_full_name (field);
382         mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
383         mono_error_set_generic_error (&cfg->error, "System", "FieldAccessException", "Field `%s' is inaccessible from method `%s'\n", field_fname, method_fname);
384         g_free (method_fname);
385         g_free (field_fname);
386 }
387
388 static MONO_NEVER_INLINE void
389 inline_failure (MonoCompile *cfg, const char *msg)
390 {
391         if (cfg->verbose_level >= 2)
392                 printf ("inline failed: %s\n", msg);
393         mono_cfg_set_exception (cfg, MONO_EXCEPTION_INLINE_FAILED);
394 }
395
396 static MONO_NEVER_INLINE void
397 gshared_failure (MonoCompile *cfg, int opcode, const char *file, int line)
398 {
399         if (cfg->verbose_level > 2)                                                                                     \
400                 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);
401         mono_cfg_set_exception (cfg, MONO_EXCEPTION_GENERIC_SHARING_FAILED);
402 }
403
404 static MONO_NEVER_INLINE void
405 gsharedvt_failure (MonoCompile *cfg, int opcode, const char *file, int line)
406 {
407         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);
408         if (cfg->verbose_level >= 2)
409                 printf ("%s\n", cfg->exception_message);
410         mono_cfg_set_exception (cfg, MONO_EXCEPTION_GENERIC_SHARING_FAILED);
411 }
412
413 /*
414  * When using gsharedvt, some instatiations might be verifiable, and some might be not. i.e. 
415  * foo<T> (int i) { ldarg.0; box T; }
416  */
417 #define UNVERIFIED do { \
418         if (cfg->gsharedvt) { \
419                 if (cfg->verbose_level > 2)                                                                     \
420                         printf ("gsharedvt method failed to verify, falling back to instantiation.\n"); \
421                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_GENERIC_SHARING_FAILED); \
422                 goto exception_exit;                                                                                    \
423         }                                                                                                                                       \
424         break_on_unverified ();                                                                                         \
425         goto unverified;                                                                                                        \
426 } while (0)
427
428 #define GET_BBLOCK(cfg,tblock,ip) do {  \
429                 (tblock) = cfg->cil_offset_to_bb [(ip) - cfg->cil_start]; \
430                 if (!(tblock)) {        \
431                         if ((ip) >= end || (ip) < header->code) UNVERIFIED; \
432             NEW_BBLOCK (cfg, (tblock)); \
433                         (tblock)->cil_code = (ip);      \
434                         ADD_BBLOCK (cfg, (tblock));     \
435                 } \
436         } while (0)
437
438 #if defined(TARGET_X86) || defined(TARGET_AMD64)
439 #define EMIT_NEW_X86_LEA(cfg,dest,sr1,sr2,shift,imm) do { \
440                 MONO_INST_NEW (cfg, dest, OP_X86_LEA); \
441                 (dest)->dreg = alloc_ireg_mp ((cfg)); \
442                 (dest)->sreg1 = (sr1); \
443                 (dest)->sreg2 = (sr2); \
444                 (dest)->inst_imm = (imm); \
445                 (dest)->backend.shift_amount = (shift); \
446                 MONO_ADD_INS ((cfg)->cbb, (dest)); \
447         } while (0)
448 #endif
449
450 /* Emit conversions so both operands of a binary opcode are of the same type */
451 static void
452 add_widen_op (MonoCompile *cfg, MonoInst *ins, MonoInst **arg1_ref, MonoInst **arg2_ref)
453 {
454         MonoInst *arg1 = *arg1_ref;
455         MonoInst *arg2 = *arg2_ref;
456
457         if (cfg->r4fp &&
458                 ((arg1->type == STACK_R4 && arg2->type == STACK_R8) ||
459                  (arg1->type == STACK_R8 && arg2->type == STACK_R4))) {
460                 MonoInst *conv;
461
462                 /* Mixing r4/r8 is allowed by the spec */
463                 if (arg1->type == STACK_R4) {
464                         int dreg = alloc_freg (cfg);
465
466                         EMIT_NEW_UNALU (cfg, conv, OP_RCONV_TO_R8, dreg, arg1->dreg);
467                         conv->type = STACK_R8;
468                         ins->sreg1 = dreg;
469                         *arg1_ref = conv;
470                 }
471                 if (arg2->type == STACK_R4) {
472                         int dreg = alloc_freg (cfg);
473
474                         EMIT_NEW_UNALU (cfg, conv, OP_RCONV_TO_R8, dreg, arg2->dreg);
475                         conv->type = STACK_R8;
476                         ins->sreg2 = dreg;
477                         *arg2_ref = conv;
478                 }
479         }
480
481 #if SIZEOF_REGISTER == 8
482         /* FIXME: Need to add many more cases */
483         if ((arg1)->type == STACK_PTR && (arg2)->type == STACK_I4) {
484                 MonoInst *widen;
485
486                 int dr = alloc_preg (cfg);
487                 EMIT_NEW_UNALU (cfg, widen, OP_SEXT_I4, dr, (arg2)->dreg);
488                 (ins)->sreg2 = widen->dreg;
489         }
490 #endif
491 }
492
493 #define ADD_BINOP(op) do {      \
494                 MONO_INST_NEW (cfg, ins, (op)); \
495                 sp -= 2;        \
496                 ins->sreg1 = sp [0]->dreg;      \
497                 ins->sreg2 = sp [1]->dreg;      \
498                 type_from_op (cfg, ins, sp [0], sp [1]);        \
499                 CHECK_TYPE (ins);       \
500                 /* Have to insert a widening op */               \
501         add_widen_op (cfg, ins, &sp [0], &sp [1]);               \
502         ins->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type); \
503         MONO_ADD_INS ((cfg)->cbb, (ins)); \
504         *sp++ = mono_decompose_opcode ((cfg), (ins));   \
505         } while (0)
506
507 #define ADD_UNOP(op) do {       \
508                 MONO_INST_NEW (cfg, ins, (op)); \
509                 sp--;   \
510                 ins->sreg1 = sp [0]->dreg;      \
511                 type_from_op (cfg, ins, sp [0], NULL);  \
512                 CHECK_TYPE (ins);       \
513         (ins)->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type); \
514         MONO_ADD_INS ((cfg)->cbb, (ins)); \
515                 *sp++ = mono_decompose_opcode (cfg, ins);       \
516         } while (0)
517
518 #define ADD_BINCOND(next_block) do {    \
519                 MonoInst *cmp;  \
520                 sp -= 2; \
521                 MONO_INST_NEW(cfg, cmp, OP_COMPARE);    \
522                 cmp->sreg1 = sp [0]->dreg;      \
523                 cmp->sreg2 = sp [1]->dreg;      \
524                 type_from_op (cfg, cmp, sp [0], sp [1]);        \
525                 CHECK_TYPE (cmp);       \
526                 add_widen_op (cfg, cmp, &sp [0], &sp [1]);                                              \
527                 type_from_op (cfg, ins, sp [0], sp [1]);                                                        \
528                 ins->inst_many_bb = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);   \
529                 GET_BBLOCK (cfg, tblock, target);               \
530                 link_bblock (cfg, cfg->cbb, tblock);    \
531                 ins->inst_true_bb = tblock;     \
532                 if ((next_block)) {     \
533                         link_bblock (cfg, cfg->cbb, (next_block));      \
534                         ins->inst_false_bb = (next_block);      \
535                         start_new_bblock = 1;   \
536                 } else {        \
537                         GET_BBLOCK (cfg, tblock, ip);           \
538                         link_bblock (cfg, cfg->cbb, tblock);    \
539                         ins->inst_false_bb = tblock;    \
540                         start_new_bblock = 2;   \
541                 }       \
542                 if (sp != stack_start) {                                                                        \
543                     handle_stack_args (cfg, stack_start, sp - stack_start); \
544                         CHECK_UNVERIFIABLE (cfg); \
545                 } \
546         MONO_ADD_INS (cfg->cbb, cmp); \
547                 MONO_ADD_INS (cfg->cbb, ins);   \
548         } while (0)
549
550 /* *
551  * link_bblock: Links two basic blocks
552  *
553  * links two basic blocks in the control flow graph, the 'from'
554  * argument is the starting block and the 'to' argument is the block
555  * the control flow ends to after 'from'.
556  */
557 static void
558 link_bblock (MonoCompile *cfg, MonoBasicBlock *from, MonoBasicBlock* to)
559 {
560         MonoBasicBlock **newa;
561         int i, found;
562
563 #if 0
564         if (from->cil_code) {
565                 if (to->cil_code)
566                         printf ("edge from IL%04x to IL_%04x\n", from->cil_code - cfg->cil_code, to->cil_code - cfg->cil_code);
567                 else
568                         printf ("edge from IL%04x to exit\n", from->cil_code - cfg->cil_code);
569         } else {
570                 if (to->cil_code)
571                         printf ("edge from entry to IL_%04x\n", to->cil_code - cfg->cil_code);
572                 else
573                         printf ("edge from entry to exit\n");
574         }
575 #endif
576
577         found = FALSE;
578         for (i = 0; i < from->out_count; ++i) {
579                 if (to == from->out_bb [i]) {
580                         found = TRUE;
581                         break;
582                 }
583         }
584         if (!found) {
585                 newa = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (from->out_count + 1));
586                 for (i = 0; i < from->out_count; ++i) {
587                         newa [i] = from->out_bb [i];
588                 }
589                 newa [i] = to;
590                 from->out_count++;
591                 from->out_bb = newa;
592         }
593
594         found = FALSE;
595         for (i = 0; i < to->in_count; ++i) {
596                 if (from == to->in_bb [i]) {
597                         found = TRUE;
598                         break;
599                 }
600         }
601         if (!found) {
602                 newa = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof (gpointer) * (to->in_count + 1));
603                 for (i = 0; i < to->in_count; ++i) {
604                         newa [i] = to->in_bb [i];
605                 }
606                 newa [i] = from;
607                 to->in_count++;
608                 to->in_bb = newa;
609         }
610 }
611
612 void
613 mono_link_bblock (MonoCompile *cfg, MonoBasicBlock *from, MonoBasicBlock* to)
614 {
615         link_bblock (cfg, from, to);
616 }
617
618 /**
619  * mono_find_block_region:
620  *
621  *   We mark each basic block with a region ID. We use that to avoid BB
622  *   optimizations when blocks are in different regions.
623  *
624  * Returns:
625  *   A region token that encodes where this region is, and information
626  *   about the clause owner for this block.
627  *
628  *   The region encodes the try/catch/filter clause that owns this block
629  *   as well as the type.  -1 is a special value that represents a block
630  *   that is in none of try/catch/filter.
631  */
632 static int
633 mono_find_block_region (MonoCompile *cfg, int offset)
634 {
635         MonoMethodHeader *header = cfg->header;
636         MonoExceptionClause *clause;
637         int i;
638
639         for (i = 0; i < header->num_clauses; ++i) {
640                 clause = &header->clauses [i];
641                 if ((clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) && (offset >= clause->data.filter_offset) &&
642                     (offset < (clause->handler_offset)))
643                         return ((i + 1) << 8) | MONO_REGION_FILTER | clause->flags;
644                            
645                 if (MONO_OFFSET_IN_HANDLER (clause, offset)) {
646                         if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
647                                 return ((i + 1) << 8) | MONO_REGION_FINALLY | clause->flags;
648                         else if (clause->flags == MONO_EXCEPTION_CLAUSE_FAULT)
649                                 return ((i + 1) << 8) | MONO_REGION_FAULT | clause->flags;
650                         else
651                                 return ((i + 1) << 8) | MONO_REGION_CATCH | clause->flags;
652                 }
653         }
654         for (i = 0; i < header->num_clauses; ++i) {
655                 clause = &header->clauses [i];
656
657                 if (MONO_OFFSET_IN_CLAUSE (clause, offset))
658                         return ((i + 1) << 8) | clause->flags;
659         }
660
661         return -1;
662 }
663
664 static GList*
665 mono_find_final_block (MonoCompile *cfg, unsigned char *ip, unsigned char *target, int type)
666 {
667         MonoMethodHeader *header = cfg->header;
668         MonoExceptionClause *clause;
669         int i;
670         GList *res = NULL;
671
672         for (i = 0; i < header->num_clauses; ++i) {
673                 clause = &header->clauses [i];
674                 if (MONO_OFFSET_IN_CLAUSE (clause, (ip - header->code)) && 
675                     (!MONO_OFFSET_IN_CLAUSE (clause, (target - header->code)))) {
676                         if (clause->flags == type)
677                                 res = g_list_append (res, clause);
678                 }
679         }
680         return res;
681 }
682
683 static void
684 mono_create_spvar_for_region (MonoCompile *cfg, int region)
685 {
686         MonoInst *var;
687
688         var = (MonoInst *)g_hash_table_lookup (cfg->spvars, GINT_TO_POINTER (region));
689         if (var)
690                 return;
691
692         var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
693         /* prevent it from being register allocated */
694         var->flags |= MONO_INST_VOLATILE;
695
696         g_hash_table_insert (cfg->spvars, GINT_TO_POINTER (region), var);
697 }
698
699 MonoInst *
700 mono_find_exvar_for_offset (MonoCompile *cfg, int offset)
701 {
702         return (MonoInst *)g_hash_table_lookup (cfg->exvars, GINT_TO_POINTER (offset));
703 }
704
705 static MonoInst*
706 mono_create_exvar_for_offset (MonoCompile *cfg, int offset)
707 {
708         MonoInst *var;
709
710         var = (MonoInst *)g_hash_table_lookup (cfg->exvars, GINT_TO_POINTER (offset));
711         if (var)
712                 return var;
713
714         var = mono_compile_create_var (cfg, &mono_defaults.object_class->byval_arg, OP_LOCAL);
715         /* prevent it from being register allocated */
716         var->flags |= MONO_INST_VOLATILE;
717
718         g_hash_table_insert (cfg->exvars, GINT_TO_POINTER (offset), var);
719
720         return var;
721 }
722
723 /*
724  * Returns the type used in the eval stack when @type is loaded.
725  * FIXME: return a MonoType/MonoClass for the byref and VALUETYPE cases.
726  */
727 void
728 type_to_eval_stack_type (MonoCompile *cfg, MonoType *type, MonoInst *inst)
729 {
730         MonoClass *klass;
731
732         type = mini_get_underlying_type (type);
733         inst->klass = klass = mono_class_from_mono_type (type);
734         if (type->byref) {
735                 inst->type = STACK_MP;
736                 return;
737         }
738
739 handle_enum:
740         switch (type->type) {
741         case MONO_TYPE_VOID:
742                 inst->type = STACK_INV;
743                 return;
744         case MONO_TYPE_I1:
745         case MONO_TYPE_U1:
746         case MONO_TYPE_I2:
747         case MONO_TYPE_U2:
748         case MONO_TYPE_I4:
749         case MONO_TYPE_U4:
750                 inst->type = STACK_I4;
751                 return;
752         case MONO_TYPE_I:
753         case MONO_TYPE_U:
754         case MONO_TYPE_PTR:
755         case MONO_TYPE_FNPTR:
756                 inst->type = STACK_PTR;
757                 return;
758         case MONO_TYPE_CLASS:
759         case MONO_TYPE_STRING:
760         case MONO_TYPE_OBJECT:
761         case MONO_TYPE_SZARRAY:
762         case MONO_TYPE_ARRAY:    
763                 inst->type = STACK_OBJ;
764                 return;
765         case MONO_TYPE_I8:
766         case MONO_TYPE_U8:
767                 inst->type = STACK_I8;
768                 return;
769         case MONO_TYPE_R4:
770                 inst->type = cfg->r4_stack_type;
771                 break;
772         case MONO_TYPE_R8:
773                 inst->type = STACK_R8;
774                 return;
775         case MONO_TYPE_VALUETYPE:
776                 if (type->data.klass->enumtype) {
777                         type = mono_class_enum_basetype (type->data.klass);
778                         goto handle_enum;
779                 } else {
780                         inst->klass = klass;
781                         inst->type = STACK_VTYPE;
782                         return;
783                 }
784         case MONO_TYPE_TYPEDBYREF:
785                 inst->klass = mono_defaults.typed_reference_class;
786                 inst->type = STACK_VTYPE;
787                 return;
788         case MONO_TYPE_GENERICINST:
789                 type = &type->data.generic_class->container_class->byval_arg;
790                 goto handle_enum;
791         case MONO_TYPE_VAR:
792         case MONO_TYPE_MVAR:
793                 g_assert (cfg->gshared);
794                 if (mini_is_gsharedvt_type (type)) {
795                         g_assert (cfg->gsharedvt);
796                         inst->type = STACK_VTYPE;
797                 } else {
798                         type_to_eval_stack_type (cfg, mini_get_underlying_type (type), inst);
799                 }
800                 return;
801         default:
802                 g_error ("unknown type 0x%02x in eval stack type", type->type);
803         }
804 }
805
806 /*
807  * The following tables are used to quickly validate the IL code in type_from_op ().
808  */
809 static const char
810 bin_num_table [STACK_MAX] [STACK_MAX] = {
811         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
812         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
813         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
814         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_MP,  STACK_INV, STACK_INV},
815         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_R8,  STACK_INV, STACK_INV, STACK_INV, STACK_R8},
816         {STACK_INV, STACK_MP,  STACK_INV, STACK_MP,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV},
817         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
818         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
819         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_R8, STACK_INV, STACK_INV, STACK_INV, STACK_R4}
820 };
821
822 static const char 
823 neg_table [] = {
824         STACK_INV, STACK_I4, STACK_I8, STACK_PTR, STACK_R8, STACK_INV, STACK_INV, STACK_INV, STACK_R4
825 };
826
827 /* reduce the size of this table */
828 static const char
829 bin_int_table [STACK_MAX] [STACK_MAX] = {
830         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
831         {STACK_INV, STACK_I4,  STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
832         {STACK_INV, STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
833         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
834         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
835         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
836         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
837         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
838 };
839
840 static const char
841 bin_comp_table [STACK_MAX] [STACK_MAX] = {
842 /*      Inv i  L  p  F  &  O  vt r4 */
843         {0},
844         {0, 1, 0, 1, 0, 0, 0, 0}, /* i, int32 */
845         {0, 0, 1, 0, 0, 0, 0, 0}, /* L, int64 */
846         {0, 1, 0, 1, 0, 2, 4, 0}, /* p, ptr */
847         {0, 0, 0, 0, 1, 0, 0, 0, 1}, /* F, R8 */
848         {0, 0, 0, 2, 0, 1, 0, 0}, /* &, managed pointer */
849         {0, 0, 0, 4, 0, 0, 3, 0}, /* O, reference */
850         {0, 0, 0, 0, 0, 0, 0, 0}, /* vt value type */
851         {0, 0, 0, 0, 1, 0, 0, 0, 1}, /* r, r4 */
852 };
853
854 /* reduce the size of this table */
855 static const char
856 shift_table [STACK_MAX] [STACK_MAX] = {
857         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
858         {STACK_INV, STACK_I4,  STACK_INV, STACK_I4,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
859         {STACK_INV, STACK_I8,  STACK_INV, STACK_I8,  STACK_INV, STACK_INV, STACK_INV, STACK_INV},
860         {STACK_INV, STACK_PTR, STACK_INV, STACK_PTR, 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         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
863         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV},
864         {STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV, STACK_INV}
865 };
866
867 /*
868  * Tables to map from the non-specific opcode to the matching
869  * type-specific opcode.
870  */
871 /* handles from CEE_ADD to CEE_SHR_UN (CEE_REM_UN for floats) */
872 static const guint16
873 binops_op_map [STACK_MAX] = {
874         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
875 };
876
877 /* handles from CEE_NEG to CEE_CONV_U8 */
878 static const guint16
879 unops_op_map [STACK_MAX] = {
880         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
881 };
882
883 /* handles from CEE_CONV_U2 to CEE_SUB_OVF_UN */
884 static const guint16
885 ovfops_op_map [STACK_MAX] = {
886         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
887 };
888
889 /* handles from CEE_CONV_OVF_I1_UN to CEE_CONV_OVF_U_UN */
890 static const guint16
891 ovf2ops_op_map [STACK_MAX] = {
892         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
893 };
894
895 /* handles from CEE_CONV_OVF_I1 to CEE_CONV_OVF_U8 */
896 static const guint16
897 ovf3ops_op_map [STACK_MAX] = {
898         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
899 };
900
901 /* handles from CEE_BEQ to CEE_BLT_UN */
902 static const guint16
903 beqops_op_map [STACK_MAX] = {
904         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
905 };
906
907 /* handles from CEE_CEQ to CEE_CLT_UN */
908 static const guint16
909 ceqops_op_map [STACK_MAX] = {
910         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
911 };
912
913 /*
914  * Sets ins->type (the type on the eval stack) according to the
915  * type of the opcode and the arguments to it.
916  * Invalid IL code is marked by setting ins->type to the invalid value STACK_INV.
917  *
918  * FIXME: this function sets ins->type unconditionally in some cases, but
919  * it should set it to invalid for some types (a conv.x on an object)
920  */
921 static void
922 type_from_op (MonoCompile *cfg, MonoInst *ins, MonoInst *src1, MonoInst *src2)
923 {
924         switch (ins->opcode) {
925         /* binops */
926         case CEE_ADD:
927         case CEE_SUB:
928         case CEE_MUL:
929         case CEE_DIV:
930         case CEE_REM:
931                 /* FIXME: check unverifiable args for STACK_MP */
932                 ins->type = bin_num_table [src1->type] [src2->type];
933                 ins->opcode += binops_op_map [ins->type];
934                 break;
935         case CEE_DIV_UN:
936         case CEE_REM_UN:
937         case CEE_AND:
938         case CEE_OR:
939         case CEE_XOR:
940                 ins->type = bin_int_table [src1->type] [src2->type];
941                 ins->opcode += binops_op_map [ins->type];
942                 break;
943         case CEE_SHL:
944         case CEE_SHR:
945         case CEE_SHR_UN:
946                 ins->type = shift_table [src1->type] [src2->type];
947                 ins->opcode += binops_op_map [ins->type];
948                 break;
949         case OP_COMPARE:
950         case OP_LCOMPARE:
951         case OP_ICOMPARE:
952                 ins->type = bin_comp_table [src1->type] [src2->type] ? STACK_I4: STACK_INV;
953                 if ((src1->type == STACK_I8) || ((SIZEOF_VOID_P == 8) && ((src1->type == STACK_PTR) || (src1->type == STACK_OBJ) || (src1->type == STACK_MP))))
954                         ins->opcode = OP_LCOMPARE;
955                 else if (src1->type == STACK_R4)
956                         ins->opcode = OP_RCOMPARE;
957                 else if (src1->type == STACK_R8)
958                         ins->opcode = OP_FCOMPARE;
959                 else
960                         ins->opcode = OP_ICOMPARE;
961                 break;
962         case OP_ICOMPARE_IMM:
963                 ins->type = bin_comp_table [src1->type] [src1->type] ? STACK_I4 : STACK_INV;
964                 if ((src1->type == STACK_I8) || ((SIZEOF_VOID_P == 8) && ((src1->type == STACK_PTR) || (src1->type == STACK_OBJ) || (src1->type == STACK_MP))))
965                         ins->opcode = OP_LCOMPARE_IMM;          
966                 break;
967         case CEE_BEQ:
968         case CEE_BGE:
969         case CEE_BGT:
970         case CEE_BLE:
971         case CEE_BLT:
972         case CEE_BNE_UN:
973         case CEE_BGE_UN:
974         case CEE_BGT_UN:
975         case CEE_BLE_UN:
976         case CEE_BLT_UN:
977                 ins->opcode += beqops_op_map [src1->type];
978                 break;
979         case OP_CEQ:
980                 ins->type = bin_comp_table [src1->type] [src2->type] ? STACK_I4: STACK_INV;
981                 ins->opcode += ceqops_op_map [src1->type];
982                 break;
983         case OP_CGT:
984         case OP_CGT_UN:
985         case OP_CLT:
986         case OP_CLT_UN:
987                 ins->type = (bin_comp_table [src1->type] [src2->type] & 1) ? STACK_I4: STACK_INV;
988                 ins->opcode += ceqops_op_map [src1->type];
989                 break;
990         /* unops */
991         case CEE_NEG:
992                 ins->type = neg_table [src1->type];
993                 ins->opcode += unops_op_map [ins->type];
994                 break;
995         case CEE_NOT:
996                 if (src1->type >= STACK_I4 && src1->type <= STACK_PTR)
997                         ins->type = src1->type;
998                 else
999                         ins->type = STACK_INV;
1000                 ins->opcode += unops_op_map [ins->type];
1001                 break;
1002         case CEE_CONV_I1:
1003         case CEE_CONV_I2:
1004         case CEE_CONV_I4:
1005         case CEE_CONV_U4:
1006                 ins->type = STACK_I4;
1007                 ins->opcode += unops_op_map [src1->type];
1008                 break;
1009         case CEE_CONV_R_UN:
1010                 ins->type = STACK_R8;
1011                 switch (src1->type) {
1012                 case STACK_I4:
1013                 case STACK_PTR:
1014                         ins->opcode = OP_ICONV_TO_R_UN;
1015                         break;
1016                 case STACK_I8:
1017                         ins->opcode = OP_LCONV_TO_R_UN; 
1018                         break;
1019                 }
1020                 break;
1021         case CEE_CONV_OVF_I1:
1022         case CEE_CONV_OVF_U1:
1023         case CEE_CONV_OVF_I2:
1024         case CEE_CONV_OVF_U2:
1025         case CEE_CONV_OVF_I4:
1026         case CEE_CONV_OVF_U4:
1027                 ins->type = STACK_I4;
1028                 ins->opcode += ovf3ops_op_map [src1->type];
1029                 break;
1030         case CEE_CONV_OVF_I_UN:
1031         case CEE_CONV_OVF_U_UN:
1032                 ins->type = STACK_PTR;
1033                 ins->opcode += ovf2ops_op_map [src1->type];
1034                 break;
1035         case CEE_CONV_OVF_I1_UN:
1036         case CEE_CONV_OVF_I2_UN:
1037         case CEE_CONV_OVF_I4_UN:
1038         case CEE_CONV_OVF_U1_UN:
1039         case CEE_CONV_OVF_U2_UN:
1040         case CEE_CONV_OVF_U4_UN:
1041                 ins->type = STACK_I4;
1042                 ins->opcode += ovf2ops_op_map [src1->type];
1043                 break;
1044         case CEE_CONV_U:
1045                 ins->type = STACK_PTR;
1046                 switch (src1->type) {
1047                 case STACK_I4:
1048                         ins->opcode = OP_ICONV_TO_U;
1049                         break;
1050                 case STACK_PTR:
1051                 case STACK_MP:
1052 #if SIZEOF_VOID_P == 8
1053                         ins->opcode = OP_LCONV_TO_U;
1054 #else
1055                         ins->opcode = OP_MOVE;
1056 #endif
1057                         break;
1058                 case STACK_I8:
1059                         ins->opcode = OP_LCONV_TO_U;
1060                         break;
1061                 case STACK_R8:
1062                         ins->opcode = OP_FCONV_TO_U;
1063                         break;
1064                 }
1065                 break;
1066         case CEE_CONV_I8:
1067         case CEE_CONV_U8:
1068                 ins->type = STACK_I8;
1069                 ins->opcode += unops_op_map [src1->type];
1070                 break;
1071         case CEE_CONV_OVF_I8:
1072         case CEE_CONV_OVF_U8:
1073                 ins->type = STACK_I8;
1074                 ins->opcode += ovf3ops_op_map [src1->type];
1075                 break;
1076         case CEE_CONV_OVF_U8_UN:
1077         case CEE_CONV_OVF_I8_UN:
1078                 ins->type = STACK_I8;
1079                 ins->opcode += ovf2ops_op_map [src1->type];
1080                 break;
1081         case CEE_CONV_R4:
1082                 ins->type = cfg->r4_stack_type;
1083                 ins->opcode += unops_op_map [src1->type];
1084                 break;
1085         case CEE_CONV_R8:
1086                 ins->type = STACK_R8;
1087                 ins->opcode += unops_op_map [src1->type];
1088                 break;
1089         case OP_CKFINITE:
1090                 ins->type = STACK_R8;           
1091                 break;
1092         case CEE_CONV_U2:
1093         case CEE_CONV_U1:
1094                 ins->type = STACK_I4;
1095                 ins->opcode += ovfops_op_map [src1->type];
1096                 break;
1097         case CEE_CONV_I:
1098         case CEE_CONV_OVF_I:
1099         case CEE_CONV_OVF_U:
1100                 ins->type = STACK_PTR;
1101                 ins->opcode += ovfops_op_map [src1->type];
1102                 break;
1103         case CEE_ADD_OVF:
1104         case CEE_ADD_OVF_UN:
1105         case CEE_MUL_OVF:
1106         case CEE_MUL_OVF_UN:
1107         case CEE_SUB_OVF:
1108         case CEE_SUB_OVF_UN:
1109                 ins->type = bin_num_table [src1->type] [src2->type];
1110                 ins->opcode += ovfops_op_map [src1->type];
1111                 if (ins->type == STACK_R8)
1112                         ins->type = STACK_INV;
1113                 break;
1114         case OP_LOAD_MEMBASE:
1115                 ins->type = STACK_PTR;
1116                 break;
1117         case OP_LOADI1_MEMBASE:
1118         case OP_LOADU1_MEMBASE:
1119         case OP_LOADI2_MEMBASE:
1120         case OP_LOADU2_MEMBASE:
1121         case OP_LOADI4_MEMBASE:
1122         case OP_LOADU4_MEMBASE:
1123                 ins->type = STACK_PTR;
1124                 break;
1125         case OP_LOADI8_MEMBASE:
1126                 ins->type = STACK_I8;
1127                 break;
1128         case OP_LOADR4_MEMBASE:
1129                 ins->type = cfg->r4_stack_type;
1130                 break;
1131         case OP_LOADR8_MEMBASE:
1132                 ins->type = STACK_R8;
1133                 break;
1134         default:
1135                 g_error ("opcode 0x%04x not handled in type from op", ins->opcode);
1136                 break;
1137         }
1138
1139         if (ins->type == STACK_MP)
1140                 ins->klass = mono_defaults.object_class;
1141 }
1142
1143 static const char 
1144 ldind_type [] = {
1145         STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I4, STACK_I8, STACK_PTR, STACK_R8, STACK_R8, STACK_OBJ
1146 };
1147
1148 #if 0
1149
1150 static const char
1151 param_table [STACK_MAX] [STACK_MAX] = {
1152         {0},
1153 };
1154
1155 static int
1156 check_values_to_signature (MonoInst *args, MonoType *this_ins, MonoMethodSignature *sig)
1157 {
1158         int i;
1159
1160         if (sig->hasthis) {
1161                 switch (args->type) {
1162                 case STACK_I4:
1163                 case STACK_I8:
1164                 case STACK_R8:
1165                 case STACK_VTYPE:
1166                 case STACK_INV:
1167                         return 0;
1168                 }
1169                 args++;
1170         }
1171         for (i = 0; i < sig->param_count; ++i) {
1172                 switch (args [i].type) {
1173                 case STACK_INV:
1174                         return 0;
1175                 case STACK_MP:
1176                         if (!sig->params [i]->byref)
1177                                 return 0;
1178                         continue;
1179                 case STACK_OBJ:
1180                         if (sig->params [i]->byref)
1181                                 return 0;
1182                         switch (sig->params [i]->type) {
1183                         case MONO_TYPE_CLASS:
1184                         case MONO_TYPE_STRING:
1185                         case MONO_TYPE_OBJECT:
1186                         case MONO_TYPE_SZARRAY:
1187                         case MONO_TYPE_ARRAY:
1188                                 break;
1189                         default:
1190                                 return 0;
1191                         }
1192                         continue;
1193                 case STACK_R8:
1194                         if (sig->params [i]->byref)
1195                                 return 0;
1196                         if (sig->params [i]->type != MONO_TYPE_R4 && sig->params [i]->type != MONO_TYPE_R8)
1197                                 return 0;
1198                         continue;
1199                 case STACK_PTR:
1200                 case STACK_I4:
1201                 case STACK_I8:
1202                 case STACK_VTYPE:
1203                         break;
1204                 }
1205                 /*if (!param_table [args [i].type] [sig->params [i]->type])
1206                         return 0;*/
1207         }
1208         return 1;
1209 }
1210 #endif
1211
1212 /*
1213  * When we need a pointer to the current domain many times in a method, we
1214  * call mono_domain_get() once and we store the result in a local variable.
1215  * This function returns the variable that represents the MonoDomain*.
1216  */
1217 inline static MonoInst *
1218 mono_get_domainvar (MonoCompile *cfg)
1219 {
1220         if (!cfg->domainvar)
1221                 cfg->domainvar = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1222         return cfg->domainvar;
1223 }
1224
1225 /*
1226  * The got_var contains the address of the Global Offset Table when AOT 
1227  * compiling.
1228  */
1229 MonoInst *
1230 mono_get_got_var (MonoCompile *cfg)
1231 {
1232         if (!cfg->compile_aot || !cfg->backend->need_got_var)
1233                 return NULL;
1234         if (!cfg->got_var) {
1235                 cfg->got_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1236         }
1237         return cfg->got_var;
1238 }
1239
1240 static MonoInst *
1241 mono_get_vtable_var (MonoCompile *cfg)
1242 {
1243         g_assert (cfg->gshared);
1244
1245         if (!cfg->rgctx_var) {
1246                 cfg->rgctx_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
1247                 /* force the var to be stack allocated */
1248                 cfg->rgctx_var->flags |= MONO_INST_VOLATILE;
1249         }
1250
1251         return cfg->rgctx_var;
1252 }
1253
1254 static MonoType*
1255 type_from_stack_type (MonoInst *ins) {
1256         switch (ins->type) {
1257         case STACK_I4: return &mono_defaults.int32_class->byval_arg;
1258         case STACK_I8: return &mono_defaults.int64_class->byval_arg;
1259         case STACK_PTR: return &mono_defaults.int_class->byval_arg;
1260         case STACK_R4: return &mono_defaults.single_class->byval_arg;
1261         case STACK_R8: return &mono_defaults.double_class->byval_arg;
1262         case STACK_MP:
1263                 return &ins->klass->this_arg;
1264         case STACK_OBJ: return &mono_defaults.object_class->byval_arg;
1265         case STACK_VTYPE: return &ins->klass->byval_arg;
1266         default:
1267                 g_error ("stack type %d to monotype not handled\n", ins->type);
1268         }
1269         return NULL;
1270 }
1271
1272 static G_GNUC_UNUSED int
1273 type_to_stack_type (MonoCompile *cfg, MonoType *t)
1274 {
1275         t = mono_type_get_underlying_type (t);
1276         switch (t->type) {
1277         case MONO_TYPE_I1:
1278         case MONO_TYPE_U1:
1279         case MONO_TYPE_I2:
1280         case MONO_TYPE_U2:
1281         case MONO_TYPE_I4:
1282         case MONO_TYPE_U4:
1283                 return STACK_I4;
1284         case MONO_TYPE_I:
1285         case MONO_TYPE_U:
1286         case MONO_TYPE_PTR:
1287         case MONO_TYPE_FNPTR:
1288                 return STACK_PTR;
1289         case MONO_TYPE_CLASS:
1290         case MONO_TYPE_STRING:
1291         case MONO_TYPE_OBJECT:
1292         case MONO_TYPE_SZARRAY:
1293         case MONO_TYPE_ARRAY:    
1294                 return STACK_OBJ;
1295         case MONO_TYPE_I8:
1296         case MONO_TYPE_U8:
1297                 return STACK_I8;
1298         case MONO_TYPE_R4:
1299                 return cfg->r4_stack_type;
1300         case MONO_TYPE_R8:
1301                 return STACK_R8;
1302         case MONO_TYPE_VALUETYPE:
1303         case MONO_TYPE_TYPEDBYREF:
1304                 return STACK_VTYPE;
1305         case MONO_TYPE_GENERICINST:
1306                 if (mono_type_generic_inst_is_valuetype (t))
1307                         return STACK_VTYPE;
1308                 else
1309                         return STACK_OBJ;
1310                 break;
1311         default:
1312                 g_assert_not_reached ();
1313         }
1314
1315         return -1;
1316 }
1317
1318 static MonoClass*
1319 array_access_to_klass (int opcode)
1320 {
1321         switch (opcode) {
1322         case CEE_LDELEM_U1:
1323                 return mono_defaults.byte_class;
1324         case CEE_LDELEM_U2:
1325                 return mono_defaults.uint16_class;
1326         case CEE_LDELEM_I:
1327         case CEE_STELEM_I:
1328                 return mono_defaults.int_class;
1329         case CEE_LDELEM_I1:
1330         case CEE_STELEM_I1:
1331                 return mono_defaults.sbyte_class;
1332         case CEE_LDELEM_I2:
1333         case CEE_STELEM_I2:
1334                 return mono_defaults.int16_class;
1335         case CEE_LDELEM_I4:
1336         case CEE_STELEM_I4:
1337                 return mono_defaults.int32_class;
1338         case CEE_LDELEM_U4:
1339                 return mono_defaults.uint32_class;
1340         case CEE_LDELEM_I8:
1341         case CEE_STELEM_I8:
1342                 return mono_defaults.int64_class;
1343         case CEE_LDELEM_R4:
1344         case CEE_STELEM_R4:
1345                 return mono_defaults.single_class;
1346         case CEE_LDELEM_R8:
1347         case CEE_STELEM_R8:
1348                 return mono_defaults.double_class;
1349         case CEE_LDELEM_REF:
1350         case CEE_STELEM_REF:
1351                 return mono_defaults.object_class;
1352         default:
1353                 g_assert_not_reached ();
1354         }
1355         return NULL;
1356 }
1357
1358 /*
1359  * We try to share variables when possible
1360  */
1361 static MonoInst *
1362 mono_compile_get_interface_var (MonoCompile *cfg, int slot, MonoInst *ins)
1363 {
1364         MonoInst *res;
1365         int pos, vnum;
1366
1367         /* inlining can result in deeper stacks */ 
1368         if (slot >= cfg->header->max_stack)
1369                 return mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1370
1371         pos = ins->type - 1 + slot * STACK_MAX;
1372
1373         switch (ins->type) {
1374         case STACK_I4:
1375         case STACK_I8:
1376         case STACK_R8:
1377         case STACK_PTR:
1378         case STACK_MP:
1379         case STACK_OBJ:
1380                 if ((vnum = cfg->intvars [pos]))
1381                         return cfg->varinfo [vnum];
1382                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1383                 cfg->intvars [pos] = res->inst_c0;
1384                 break;
1385         default:
1386                 res = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
1387         }
1388         return res;
1389 }
1390
1391 static void
1392 mono_save_token_info (MonoCompile *cfg, MonoImage *image, guint32 token, gpointer key)
1393 {
1394         /* 
1395          * Don't use this if a generic_context is set, since that means AOT can't
1396          * look up the method using just the image+token.
1397          * table == 0 means this is a reference made from a wrapper.
1398          */
1399         if (cfg->compile_aot && !cfg->generic_context && (mono_metadata_token_table (token) > 0)) {
1400                 MonoJumpInfoToken *jump_info_token = (MonoJumpInfoToken *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfoToken));
1401                 jump_info_token->image = image;
1402                 jump_info_token->token = token;
1403                 g_hash_table_insert (cfg->token_info_hash, key, jump_info_token);
1404         }
1405 }
1406
1407 /*
1408  * This function is called to handle items that are left on the evaluation stack
1409  * at basic block boundaries. What happens is that we save the values to local variables
1410  * and we reload them later when first entering the target basic block (with the
1411  * handle_loaded_temps () function).
1412  * A single joint point will use the same variables (stored in the array bb->out_stack or
1413  * bb->in_stack, if the basic block is before or after the joint point).
1414  *
1415  * This function needs to be called _before_ emitting the last instruction of
1416  * the bb (i.e. before emitting a branch).
1417  * If the stack merge fails at a join point, cfg->unverifiable is set.
1418  */
1419 static void
1420 handle_stack_args (MonoCompile *cfg, MonoInst **sp, int count)
1421 {
1422         int i, bindex;
1423         MonoBasicBlock *bb = cfg->cbb;
1424         MonoBasicBlock *outb;
1425         MonoInst *inst, **locals;
1426         gboolean found;
1427
1428         if (!count)
1429                 return;
1430         if (cfg->verbose_level > 3)
1431                 printf ("%d item(s) on exit from B%d\n", count, bb->block_num);
1432         if (!bb->out_scount) {
1433                 bb->out_scount = count;
1434                 //printf ("bblock %d has out:", bb->block_num);
1435                 found = FALSE;
1436                 for (i = 0; i < bb->out_count; ++i) {
1437                         outb = bb->out_bb [i];
1438                         /* exception handlers are linked, but they should not be considered for stack args */
1439                         if (outb->flags & BB_EXCEPTION_HANDLER)
1440                                 continue;
1441                         //printf (" %d", outb->block_num);
1442                         if (outb->in_stack) {
1443                                 found = TRUE;
1444                                 bb->out_stack = outb->in_stack;
1445                                 break;
1446                         }
1447                 }
1448                 //printf ("\n");
1449                 if (!found) {
1450                         bb->out_stack = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * count);
1451                         for (i = 0; i < count; ++i) {
1452                                 /* 
1453                                  * try to reuse temps already allocated for this purpouse, if they occupy the same
1454                                  * stack slot and if they are of the same type.
1455                                  * This won't cause conflicts since if 'local' is used to 
1456                                  * store one of the values in the in_stack of a bblock, then
1457                                  * the same variable will be used for the same outgoing stack 
1458                                  * slot as well. 
1459                                  * This doesn't work when inlining methods, since the bblocks
1460                                  * in the inlined methods do not inherit their in_stack from
1461                                  * the bblock they are inlined to. See bug #58863 for an
1462                                  * example.
1463                                  */
1464                                 if (cfg->inlined_method)
1465                                         bb->out_stack [i] = mono_compile_create_var (cfg, type_from_stack_type (sp [i]), OP_LOCAL);
1466                                 else
1467                                         bb->out_stack [i] = mono_compile_get_interface_var (cfg, i, sp [i]);
1468                         }
1469                 }
1470         }
1471
1472         for (i = 0; i < bb->out_count; ++i) {
1473                 outb = bb->out_bb [i];
1474                 /* exception handlers are linked, but they should not be considered for stack args */
1475                 if (outb->flags & BB_EXCEPTION_HANDLER)
1476                         continue;
1477                 if (outb->in_scount) {
1478                         if (outb->in_scount != bb->out_scount) {
1479                                 cfg->unverifiable = TRUE;
1480                                 return;
1481                         }
1482                         continue; /* check they are the same locals */
1483                 }
1484                 outb->in_scount = count;
1485                 outb->in_stack = bb->out_stack;
1486         }
1487
1488         locals = bb->out_stack;
1489         cfg->cbb = bb;
1490         for (i = 0; i < count; ++i) {
1491                 EMIT_NEW_TEMPSTORE (cfg, inst, locals [i]->inst_c0, sp [i]);
1492                 inst->cil_code = sp [i]->cil_code;
1493                 sp [i] = locals [i];
1494                 if (cfg->verbose_level > 3)
1495                         printf ("storing %d to temp %d\n", i, (int)locals [i]->inst_c0);
1496         }
1497
1498         /*
1499          * It is possible that the out bblocks already have in_stack assigned, and
1500          * the in_stacks differ. In this case, we will store to all the different 
1501          * in_stacks.
1502          */
1503
1504         found = TRUE;
1505         bindex = 0;
1506         while (found) {
1507                 /* Find a bblock which has a different in_stack */
1508                 found = FALSE;
1509                 while (bindex < bb->out_count) {
1510                         outb = bb->out_bb [bindex];
1511                         /* exception handlers are linked, but they should not be considered for stack args */
1512                         if (outb->flags & BB_EXCEPTION_HANDLER) {
1513                                 bindex++;
1514                                 continue;
1515                         }
1516                         if (outb->in_stack != locals) {
1517                                 for (i = 0; i < count; ++i) {
1518                                         EMIT_NEW_TEMPSTORE (cfg, inst, outb->in_stack [i]->inst_c0, sp [i]);
1519                                         inst->cil_code = sp [i]->cil_code;
1520                                         sp [i] = locals [i];
1521                                         if (cfg->verbose_level > 3)
1522                                                 printf ("storing %d to temp %d\n", i, (int)outb->in_stack [i]->inst_c0);
1523                                 }
1524                                 locals = outb->in_stack;
1525                                 found = TRUE;
1526                                 break;
1527                         }
1528                         bindex ++;
1529                 }
1530         }
1531 }
1532
1533 static MonoInst*
1534 emit_runtime_constant (MonoCompile *cfg, MonoJumpInfoType patch_type, gpointer data)
1535 {
1536         MonoInst *ins;
1537
1538         if (cfg->compile_aot) {
1539                 EMIT_NEW_AOTCONST (cfg, ins, patch_type, data);
1540         } else {
1541                 MonoJumpInfo ji;
1542                 gpointer target;
1543                 MonoError error;
1544
1545                 ji.type = patch_type;
1546                 ji.data.target = data;
1547                 target = mono_resolve_patch_target (NULL, cfg->domain, NULL, &ji, FALSE, &error);
1548                 mono_error_assert_ok (&error);
1549
1550                 EMIT_NEW_PCONST (cfg, ins, target);
1551         }
1552         return ins;
1553 }
1554
1555 static void
1556 mini_emit_interface_bitmap_check (MonoCompile *cfg, int intf_bit_reg, int base_reg, int offset, MonoClass *klass)
1557 {
1558         int ibitmap_reg = alloc_preg (cfg);
1559 #ifdef COMPRESSED_INTERFACE_BITMAP
1560         MonoInst *args [2];
1561         MonoInst *res, *ins;
1562         NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, ibitmap_reg, base_reg, offset);
1563         MONO_ADD_INS (cfg->cbb, ins);
1564         args [0] = ins;
1565         args [1] = emit_runtime_constant (cfg, MONO_PATCH_INFO_IID, klass);
1566         res = mono_emit_jit_icall (cfg, mono_class_interface_match, args);
1567         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, intf_bit_reg, res->dreg);
1568 #else
1569         int ibitmap_byte_reg = alloc_preg (cfg);
1570
1571         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, ibitmap_reg, base_reg, offset);
1572
1573         if (cfg->compile_aot) {
1574                 int iid_reg = alloc_preg (cfg);
1575                 int shifted_iid_reg = alloc_preg (cfg);
1576                 int ibitmap_byte_address_reg = alloc_preg (cfg);
1577                 int masked_iid_reg = alloc_preg (cfg);
1578                 int iid_one_bit_reg = alloc_preg (cfg);
1579                 int iid_bit_reg = alloc_preg (cfg);
1580                 MONO_EMIT_NEW_AOTCONST (cfg, iid_reg, klass, MONO_PATCH_INFO_IID);
1581                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_IMM, shifted_iid_reg, iid_reg, 3);
1582                 MONO_EMIT_NEW_BIALU (cfg, OP_PADD, ibitmap_byte_address_reg, ibitmap_reg, shifted_iid_reg);
1583                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, ibitmap_byte_reg, ibitmap_byte_address_reg, 0);
1584                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, masked_iid_reg, iid_reg, 7);
1585                 MONO_EMIT_NEW_ICONST (cfg, iid_one_bit_reg, 1);
1586                 MONO_EMIT_NEW_BIALU (cfg, OP_ISHL, iid_bit_reg, iid_one_bit_reg, masked_iid_reg);
1587                 MONO_EMIT_NEW_BIALU (cfg, OP_IAND, intf_bit_reg, ibitmap_byte_reg, iid_bit_reg);
1588         } else {
1589                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, ibitmap_byte_reg, ibitmap_reg, klass->interface_id >> 3);
1590                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_AND_IMM, intf_bit_reg, ibitmap_byte_reg, 1 << (klass->interface_id & 7));
1591         }
1592 #endif
1593 }
1594
1595 /* 
1596  * Emit code which loads into "intf_bit_reg" a nonzero value if the MonoClass
1597  * stored in "klass_reg" implements the interface "klass".
1598  */
1599 static void
1600 mini_emit_load_intf_bit_reg_class (MonoCompile *cfg, int intf_bit_reg, int klass_reg, MonoClass *klass)
1601 {
1602         mini_emit_interface_bitmap_check (cfg, intf_bit_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, interface_bitmap), klass);
1603 }
1604
1605 /* 
1606  * Emit code which loads into "intf_bit_reg" a nonzero value if the MonoVTable
1607  * stored in "vtable_reg" implements the interface "klass".
1608  */
1609 static void
1610 mini_emit_load_intf_bit_reg_vtable (MonoCompile *cfg, int intf_bit_reg, int vtable_reg, MonoClass *klass)
1611 {
1612         mini_emit_interface_bitmap_check (cfg, intf_bit_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, interface_bitmap), klass);
1613 }
1614
1615 /* 
1616  * Emit code which checks whenever the interface id of @klass is smaller than
1617  * than the value given by max_iid_reg.
1618 */
1619 static void
1620 mini_emit_max_iid_check (MonoCompile *cfg, int max_iid_reg, MonoClass *klass,
1621                                                  MonoBasicBlock *false_target)
1622 {
1623         if (cfg->compile_aot) {
1624                 int iid_reg = alloc_preg (cfg);
1625                 MONO_EMIT_NEW_AOTCONST (cfg, iid_reg, klass, MONO_PATCH_INFO_IID);
1626                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, max_iid_reg, iid_reg);
1627         }
1628         else
1629                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, max_iid_reg, klass->interface_id);
1630         if (false_target)
1631                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBLT_UN, false_target);
1632         else
1633                 MONO_EMIT_NEW_COND_EXC (cfg, LT_UN, "InvalidCastException");
1634 }
1635
1636 /* Same as above, but obtains max_iid from a vtable */
1637 static void
1638 mini_emit_max_iid_check_vtable (MonoCompile *cfg, int vtable_reg, MonoClass *klass,
1639                                                                  MonoBasicBlock *false_target)
1640 {
1641         int max_iid_reg = alloc_preg (cfg);
1642                 
1643         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU2_MEMBASE, max_iid_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, max_interface_id));
1644         mini_emit_max_iid_check (cfg, max_iid_reg, klass, false_target);
1645 }
1646
1647 /* Same as above, but obtains max_iid from a klass */
1648 static void
1649 mini_emit_max_iid_check_class (MonoCompile *cfg, int klass_reg, MonoClass *klass,
1650                                                                  MonoBasicBlock *false_target)
1651 {
1652         int max_iid_reg = alloc_preg (cfg);
1653
1654         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU2_MEMBASE, max_iid_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, max_interface_id));
1655         mini_emit_max_iid_check (cfg, max_iid_reg, klass, false_target);
1656 }
1657
1658 static void
1659 mini_emit_isninst_cast_inst (MonoCompile *cfg, int klass_reg, MonoClass *klass, MonoInst *klass_ins, MonoBasicBlock *false_target, MonoBasicBlock *true_target)
1660 {
1661         int idepth_reg = alloc_preg (cfg);
1662         int stypes_reg = alloc_preg (cfg);
1663         int stype = alloc_preg (cfg);
1664
1665         mono_class_setup_supertypes (klass);
1666
1667         if (klass->idepth > MONO_DEFAULT_SUPERTABLE_SIZE) {
1668                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU2_MEMBASE, idepth_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, idepth));
1669                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, idepth_reg, klass->idepth);
1670                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBLT_UN, false_target);
1671         }
1672         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, stypes_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, supertypes));
1673         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, stype, stypes_reg, ((klass->idepth - 1) * SIZEOF_VOID_P));
1674         if (klass_ins) {
1675                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, stype, klass_ins->dreg);
1676         } else if (cfg->compile_aot) {
1677                 int const_reg = alloc_preg (cfg);
1678                 MONO_EMIT_NEW_CLASSCONST (cfg, const_reg, klass);
1679                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, stype, const_reg);
1680         } else {
1681                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, stype, klass);
1682         }
1683         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, true_target);
1684 }
1685
1686 static void
1687 mini_emit_isninst_cast (MonoCompile *cfg, int klass_reg, MonoClass *klass, MonoBasicBlock *false_target, MonoBasicBlock *true_target)
1688 {
1689         mini_emit_isninst_cast_inst (cfg, klass_reg, klass, NULL, false_target, true_target);
1690 }
1691
1692 static void
1693 mini_emit_iface_cast (MonoCompile *cfg, int vtable_reg, MonoClass *klass, MonoBasicBlock *false_target, MonoBasicBlock *true_target)
1694 {
1695         int intf_reg = alloc_preg (cfg);
1696
1697         mini_emit_max_iid_check_vtable (cfg, vtable_reg, klass, false_target);
1698         mini_emit_load_intf_bit_reg_vtable (cfg, intf_reg, vtable_reg, klass);
1699         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, intf_reg, 0);
1700         if (true_target)
1701                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, true_target);
1702         else
1703                 MONO_EMIT_NEW_COND_EXC (cfg, EQ, "InvalidCastException");               
1704 }
1705
1706 /*
1707  * Variant of the above that takes a register to the class, not the vtable.
1708  */
1709 static void
1710 mini_emit_iface_class_cast (MonoCompile *cfg, int klass_reg, MonoClass *klass, MonoBasicBlock *false_target, MonoBasicBlock *true_target)
1711 {
1712         int intf_bit_reg = alloc_preg (cfg);
1713
1714         mini_emit_max_iid_check_class (cfg, klass_reg, klass, false_target);
1715         mini_emit_load_intf_bit_reg_class (cfg, intf_bit_reg, klass_reg, klass);
1716         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, intf_bit_reg, 0);
1717         if (true_target)
1718                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, true_target);
1719         else
1720                 MONO_EMIT_NEW_COND_EXC (cfg, EQ, "InvalidCastException");
1721 }
1722
1723 static inline void
1724 mini_emit_class_check_inst (MonoCompile *cfg, int klass_reg, MonoClass *klass, MonoInst *klass_inst)
1725 {
1726         if (klass_inst) {
1727                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, klass_reg, klass_inst->dreg);
1728         } else {
1729                 MonoInst *ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_CLASS, klass);
1730                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, klass_reg, ins->dreg);
1731         }
1732         MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
1733 }
1734
1735 static inline void
1736 mini_emit_class_check (MonoCompile *cfg, int klass_reg, MonoClass *klass)
1737 {
1738         mini_emit_class_check_inst (cfg, klass_reg, klass, NULL);
1739 }
1740
1741 static inline void
1742 mini_emit_class_check_branch (MonoCompile *cfg, int klass_reg, MonoClass *klass, int branch_op, MonoBasicBlock *target)
1743 {
1744         if (cfg->compile_aot) {
1745                 int const_reg = alloc_preg (cfg);
1746                 MONO_EMIT_NEW_CLASSCONST (cfg, const_reg, klass);
1747                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, klass_reg, const_reg);
1748         } else {
1749                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, klass_reg, klass);
1750         }
1751         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, branch_op, target);
1752 }
1753
1754 static void
1755 mini_emit_castclass (MonoCompile *cfg, int obj_reg, int klass_reg, MonoClass *klass, MonoBasicBlock *object_is_null);
1756         
1757 static void
1758 mini_emit_castclass_inst (MonoCompile *cfg, int obj_reg, int klass_reg, MonoClass *klass, MonoInst *klass_inst, MonoBasicBlock *object_is_null)
1759 {
1760         if (klass->rank) {
1761                 int rank_reg = alloc_preg (cfg);
1762                 int eclass_reg = alloc_preg (cfg);
1763
1764                 g_assert (!klass_inst);
1765                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, rank_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, rank));
1766                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rank_reg, klass->rank);
1767                 MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
1768                 //              MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
1769                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, eclass_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, cast_class));
1770                 if (klass->cast_class == mono_defaults.object_class) {
1771                         int parent_reg = alloc_preg (cfg);
1772                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, parent_reg, eclass_reg, MONO_STRUCT_OFFSET (MonoClass, parent));
1773                         mini_emit_class_check_branch (cfg, parent_reg, mono_defaults.enum_class->parent, OP_PBNE_UN, object_is_null);
1774                         mini_emit_class_check (cfg, eclass_reg, mono_defaults.enum_class);
1775                 } else if (klass->cast_class == mono_defaults.enum_class->parent) {
1776                         mini_emit_class_check_branch (cfg, eclass_reg, mono_defaults.enum_class->parent, OP_PBEQ, object_is_null);
1777                         mini_emit_class_check (cfg, eclass_reg, mono_defaults.enum_class);
1778                 } else if (klass->cast_class == mono_defaults.enum_class) {
1779                         mini_emit_class_check (cfg, eclass_reg, mono_defaults.enum_class);
1780                 } else if (klass->cast_class->flags & TYPE_ATTRIBUTE_INTERFACE) {
1781                         mini_emit_iface_class_cast (cfg, eclass_reg, klass->cast_class, NULL, NULL);
1782                 } else {
1783                         // Pass -1 as obj_reg to skip the check below for arrays of arrays
1784                         mini_emit_castclass (cfg, -1, eclass_reg, klass->cast_class, object_is_null);
1785                 }
1786
1787                 if ((klass->rank == 1) && (klass->byval_arg.type == MONO_TYPE_SZARRAY) && (obj_reg != -1)) {
1788                         /* Check that the object is a vector too */
1789                         int bounds_reg = alloc_preg (cfg);
1790                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, bounds_reg, obj_reg, MONO_STRUCT_OFFSET (MonoArray, bounds));
1791                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, bounds_reg, 0);
1792                         MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
1793                 }
1794         } else {
1795                 int idepth_reg = alloc_preg (cfg);
1796                 int stypes_reg = alloc_preg (cfg);
1797                 int stype = alloc_preg (cfg);
1798
1799                 mono_class_setup_supertypes (klass);
1800
1801                 if (klass->idepth > MONO_DEFAULT_SUPERTABLE_SIZE) {
1802                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU2_MEMBASE, idepth_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, idepth));
1803                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, idepth_reg, klass->idepth);
1804                         MONO_EMIT_NEW_COND_EXC (cfg, LT_UN, "InvalidCastException");
1805                 }
1806                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, stypes_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, supertypes));
1807                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, stype, stypes_reg, ((klass->idepth - 1) * SIZEOF_VOID_P));
1808                 mini_emit_class_check_inst (cfg, stype, klass, klass_inst);
1809         }
1810 }
1811
1812 static void
1813 mini_emit_castclass (MonoCompile *cfg, int obj_reg, int klass_reg, MonoClass *klass, MonoBasicBlock *object_is_null)
1814 {
1815         mini_emit_castclass_inst (cfg, obj_reg, klass_reg, klass, NULL, object_is_null);
1816 }
1817
1818 static void 
1819 mini_emit_memset (MonoCompile *cfg, int destreg, int offset, int size, int val, int align)
1820 {
1821         int val_reg;
1822
1823         g_assert (val == 0);
1824
1825         if (align == 0)
1826                 align = 4;
1827
1828         if ((size <= SIZEOF_REGISTER) && (size <= align)) {
1829                 switch (size) {
1830                 case 1:
1831                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI1_MEMBASE_IMM, destreg, offset, val);
1832                         return;
1833                 case 2:
1834                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI2_MEMBASE_IMM, destreg, offset, val);
1835                         return;
1836                 case 4:
1837                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI4_MEMBASE_IMM, destreg, offset, val);
1838                         return;
1839 #if SIZEOF_REGISTER == 8
1840                 case 8:
1841                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI8_MEMBASE_IMM, destreg, offset, val);
1842                         return;
1843 #endif
1844                 }
1845         }
1846
1847         val_reg = alloc_preg (cfg);
1848
1849         if (SIZEOF_REGISTER == 8)
1850                 MONO_EMIT_NEW_I8CONST (cfg, val_reg, val);
1851         else
1852                 MONO_EMIT_NEW_ICONST (cfg, val_reg, val);
1853
1854         if (align < 4) {
1855                 /* This could be optimized further if neccesary */
1856                 while (size >= 1) {
1857                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, offset, val_reg);
1858                         offset += 1;
1859                         size -= 1;
1860                 }
1861                 return;
1862         }       
1863
1864         if (!cfg->backend->no_unaligned_access && SIZEOF_REGISTER == 8) {
1865                 if (offset % 8) {
1866                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, offset, val_reg);
1867                         offset += 4;
1868                         size -= 4;
1869                 }
1870                 while (size >= 8) {
1871                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, destreg, offset, val_reg);
1872                         offset += 8;
1873                         size -= 8;
1874                 }
1875         }       
1876
1877         while (size >= 4) {
1878                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, offset, val_reg);
1879                 offset += 4;
1880                 size -= 4;
1881         }
1882         while (size >= 2) {
1883                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI2_MEMBASE_REG, destreg, offset, val_reg);
1884                 offset += 2;
1885                 size -= 2;
1886         }
1887         while (size >= 1) {
1888                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, offset, val_reg);
1889                 offset += 1;
1890                 size -= 1;
1891         }
1892 }
1893
1894 void 
1895 mini_emit_memcpy (MonoCompile *cfg, int destreg, int doffset, int srcreg, int soffset, int size, int align)
1896 {
1897         int cur_reg;
1898
1899         if (align == 0)
1900                 align = 4;
1901
1902         /*FIXME arbitrary hack to avoid unbound code expansion.*/
1903         g_assert (size < 10000);
1904
1905         if (align < 4) {
1906                 /* This could be optimized further if neccesary */
1907                 while (size >= 1) {
1908                         cur_reg = alloc_preg (cfg);
1909                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, cur_reg, srcreg, soffset);
1910                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, doffset, cur_reg);
1911                         doffset += 1;
1912                         soffset += 1;
1913                         size -= 1;
1914                 }
1915         }
1916
1917         if (!cfg->backend->no_unaligned_access && SIZEOF_REGISTER == 8) {
1918                 while (size >= 8) {
1919                         cur_reg = alloc_preg (cfg);
1920                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI8_MEMBASE, cur_reg, srcreg, soffset);
1921                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, destreg, doffset, cur_reg);
1922                         doffset += 8;
1923                         soffset += 8;
1924                         size -= 8;
1925                 }
1926         }       
1927
1928         while (size >= 4) {
1929                 cur_reg = alloc_preg (cfg);
1930                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, cur_reg, srcreg, soffset);
1931                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, doffset, cur_reg);
1932                 doffset += 4;
1933                 soffset += 4;
1934                 size -= 4;
1935         }
1936         while (size >= 2) {
1937                 cur_reg = alloc_preg (cfg);
1938                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI2_MEMBASE, cur_reg, srcreg, soffset);
1939                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI2_MEMBASE_REG, destreg, doffset, cur_reg);
1940                 doffset += 2;
1941                 soffset += 2;
1942                 size -= 2;
1943         }
1944         while (size >= 1) {
1945                 cur_reg = alloc_preg (cfg);
1946                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, cur_reg, srcreg, soffset);
1947                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, doffset, cur_reg);
1948                 doffset += 1;
1949                 soffset += 1;
1950                 size -= 1;
1951         }
1952 }
1953
1954 static void
1955 emit_tls_set (MonoCompile *cfg, int sreg1, MonoTlsKey tls_key)
1956 {
1957         MonoInst *ins, *c;
1958
1959         if (cfg->compile_aot) {
1960                 EMIT_NEW_TLS_OFFSETCONST (cfg, c, tls_key);
1961                 MONO_INST_NEW (cfg, ins, OP_TLS_SET_REG);
1962                 ins->sreg1 = sreg1;
1963                 ins->sreg2 = c->dreg;
1964                 MONO_ADD_INS (cfg->cbb, ins);
1965         } else {
1966                 MONO_INST_NEW (cfg, ins, OP_TLS_SET);
1967                 ins->sreg1 = sreg1;
1968                 ins->inst_offset = mini_get_tls_offset (tls_key);
1969                 MONO_ADD_INS (cfg->cbb, ins);
1970         }
1971 }
1972
1973 /*
1974  * emit_push_lmf:
1975  *
1976  *   Emit IR to push the current LMF onto the LMF stack.
1977  */
1978 static void
1979 emit_push_lmf (MonoCompile *cfg)
1980 {
1981         /*
1982          * Emit IR to push the LMF:
1983          * lmf_addr = <lmf_addr from tls>
1984          * lmf->lmf_addr = lmf_addr
1985          * lmf->prev_lmf = *lmf_addr
1986          * *lmf_addr = lmf
1987          */
1988         int lmf_reg, prev_lmf_reg;
1989         MonoInst *ins, *lmf_ins;
1990
1991         if (!cfg->lmf_ir)
1992                 return;
1993
1994         if (cfg->lmf_ir_mono_lmf && mini_tls_get_supported (cfg, TLS_KEY_LMF)) {
1995                 /* Load current lmf */
1996                 lmf_ins = mono_get_lmf_intrinsic (cfg);
1997                 g_assert (lmf_ins);
1998                 MONO_ADD_INS (cfg->cbb, lmf_ins);
1999                 EMIT_NEW_VARLOADA (cfg, ins, cfg->lmf_var, NULL);
2000                 lmf_reg = ins->dreg;
2001                 /* Save previous_lmf */
2002                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, lmf_reg, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf), lmf_ins->dreg);
2003                 /* Set new LMF */
2004                 emit_tls_set (cfg, lmf_reg, TLS_KEY_LMF);
2005         } else {
2006                 /*
2007                  * Store lmf_addr in a variable, so it can be allocated to a global register.
2008                  */
2009                 if (!cfg->lmf_addr_var)
2010                         cfg->lmf_addr_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2011
2012 #ifdef HOST_WIN32
2013                 ins = mono_get_jit_tls_intrinsic (cfg);
2014                 if (ins) {
2015                         int jit_tls_dreg = ins->dreg;
2016
2017                         MONO_ADD_INS (cfg->cbb, ins);
2018                         lmf_reg = alloc_preg (cfg);
2019                         EMIT_NEW_BIALU_IMM (cfg, lmf_ins, OP_PADD_IMM, lmf_reg, jit_tls_dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, lmf));
2020                 } else {
2021                         lmf_ins = mono_emit_jit_icall (cfg, mono_get_lmf_addr, NULL);
2022                 }
2023 #else
2024                 lmf_ins = mono_get_lmf_addr_intrinsic (cfg);
2025                 if (lmf_ins) {
2026                         MONO_ADD_INS (cfg->cbb, lmf_ins);
2027                 } else {
2028 #ifdef TARGET_IOS
2029                         MonoInst *args [16], *jit_tls_ins, *ins;
2030
2031                         /* Inline mono_get_lmf_addr () */
2032                         /* jit_tls = pthread_getspecific (mono_jit_tls_id); lmf_addr = &jit_tls->lmf; */
2033
2034                         /* Load mono_jit_tls_id */
2035                         if (cfg->compile_aot)
2036                                 EMIT_NEW_AOTCONST (cfg, args [0], MONO_PATCH_INFO_JIT_TLS_ID, NULL);
2037                         else
2038                                 EMIT_NEW_ICONST (cfg, args [0], mono_jit_tls_id);
2039                         /* call pthread_getspecific () */
2040                         jit_tls_ins = mono_emit_jit_icall (cfg, pthread_getspecific, args);
2041                         /* lmf_addr = &jit_tls->lmf */
2042                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, cfg->lmf_addr_var->dreg, jit_tls_ins->dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, lmf));
2043                         lmf_ins = ins;
2044 #else
2045                         lmf_ins = mono_emit_jit_icall (cfg, mono_get_lmf_addr, NULL);
2046 #endif
2047                 }
2048 #endif
2049                 lmf_ins->dreg = cfg->lmf_addr_var->dreg;
2050
2051                 EMIT_NEW_VARLOADA (cfg, ins, cfg->lmf_var, NULL);
2052                 lmf_reg = ins->dreg;
2053
2054                 prev_lmf_reg = alloc_preg (cfg);
2055                 /* Save previous_lmf */
2056                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, prev_lmf_reg, cfg->lmf_addr_var->dreg, 0);
2057                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, lmf_reg, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf), prev_lmf_reg);
2058                 /* Set new lmf */
2059                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, cfg->lmf_addr_var->dreg, 0, lmf_reg);
2060         }
2061 }
2062
2063 /*
2064  * emit_pop_lmf:
2065  *
2066  *   Emit IR to pop the current LMF from the LMF stack.
2067  */
2068 static void
2069 emit_pop_lmf (MonoCompile *cfg)
2070 {
2071         int lmf_reg, lmf_addr_reg, prev_lmf_reg;
2072         MonoInst *ins;
2073
2074         if (!cfg->lmf_ir)
2075                 return;
2076
2077         EMIT_NEW_VARLOADA (cfg, ins, cfg->lmf_var, NULL);
2078         lmf_reg = ins->dreg;
2079
2080         if (cfg->lmf_ir_mono_lmf && mini_tls_get_supported (cfg, TLS_KEY_LMF)) {
2081                 /* Load previous_lmf */
2082                 prev_lmf_reg = alloc_preg (cfg);
2083                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, prev_lmf_reg, lmf_reg, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
2084                 /* Set new LMF */
2085                 emit_tls_set (cfg, prev_lmf_reg, TLS_KEY_LMF);
2086         } else {
2087                 /*
2088                  * Emit IR to pop the LMF:
2089                  * *(lmf->lmf_addr) = lmf->prev_lmf
2090                  */
2091                 /* This could be called before emit_push_lmf () */
2092                 if (!cfg->lmf_addr_var)
2093                         cfg->lmf_addr_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2094                 lmf_addr_reg = cfg->lmf_addr_var->dreg;
2095
2096                 prev_lmf_reg = alloc_preg (cfg);
2097                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, prev_lmf_reg, lmf_reg, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
2098                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, lmf_addr_reg, 0, prev_lmf_reg);
2099         }
2100 }
2101
2102 static void
2103 emit_instrumentation_call (MonoCompile *cfg, void *func)
2104 {
2105         MonoInst *iargs [1];
2106
2107         /*
2108          * Avoid instrumenting inlined methods since it can
2109          * distort profiling results.
2110          */
2111         if (cfg->method != cfg->current_method)
2112                 return;
2113
2114         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE) {
2115                 EMIT_NEW_METHODCONST (cfg, iargs [0], cfg->method);
2116                 mono_emit_jit_icall (cfg, func, iargs);
2117         }
2118 }
2119
2120 static int
2121 ret_type_to_call_opcode (MonoCompile *cfg, MonoType *type, int calli, int virt)
2122 {
2123 handle_enum:
2124         type = mini_get_underlying_type (type);
2125         switch (type->type) {
2126         case MONO_TYPE_VOID:
2127                 return calli? OP_VOIDCALL_REG: virt? OP_VOIDCALL_MEMBASE: OP_VOIDCALL;
2128         case MONO_TYPE_I1:
2129         case MONO_TYPE_U1:
2130         case MONO_TYPE_I2:
2131         case MONO_TYPE_U2:
2132         case MONO_TYPE_I4:
2133         case MONO_TYPE_U4:
2134                 return calli? OP_CALL_REG: virt? OP_CALL_MEMBASE: OP_CALL;
2135         case MONO_TYPE_I:
2136         case MONO_TYPE_U:
2137         case MONO_TYPE_PTR:
2138         case MONO_TYPE_FNPTR:
2139                 return calli? OP_CALL_REG: virt? OP_CALL_MEMBASE: OP_CALL;
2140         case MONO_TYPE_CLASS:
2141         case MONO_TYPE_STRING:
2142         case MONO_TYPE_OBJECT:
2143         case MONO_TYPE_SZARRAY:
2144         case MONO_TYPE_ARRAY:    
2145                 return calli? OP_CALL_REG: virt? OP_CALL_MEMBASE: OP_CALL;
2146         case MONO_TYPE_I8:
2147         case MONO_TYPE_U8:
2148                 return calli? OP_LCALL_REG: virt? OP_LCALL_MEMBASE: OP_LCALL;
2149         case MONO_TYPE_R4:
2150                 if (cfg->r4fp)
2151                         return calli? OP_RCALL_REG: virt? OP_RCALL_MEMBASE: OP_RCALL;
2152                 else
2153                         return calli? OP_FCALL_REG: virt? OP_FCALL_MEMBASE: OP_FCALL;
2154         case MONO_TYPE_R8:
2155                 return calli? OP_FCALL_REG: virt? OP_FCALL_MEMBASE: OP_FCALL;
2156         case MONO_TYPE_VALUETYPE:
2157                 if (type->data.klass->enumtype) {
2158                         type = mono_class_enum_basetype (type->data.klass);
2159                         goto handle_enum;
2160                 } else
2161                         return calli? OP_VCALL_REG: virt? OP_VCALL_MEMBASE: OP_VCALL;
2162         case MONO_TYPE_TYPEDBYREF:
2163                 return calli? OP_VCALL_REG: virt? OP_VCALL_MEMBASE: OP_VCALL;
2164         case MONO_TYPE_GENERICINST:
2165                 type = &type->data.generic_class->container_class->byval_arg;
2166                 goto handle_enum;
2167         case MONO_TYPE_VAR:
2168         case MONO_TYPE_MVAR:
2169                 /* gsharedvt */
2170                 return calli? OP_VCALL_REG: virt? OP_VCALL_MEMBASE: OP_VCALL;
2171         default:
2172                 g_error ("unknown type 0x%02x in ret_type_to_call_opcode", type->type);
2173         }
2174         return -1;
2175 }
2176
2177 //XXX this ignores if t is byref
2178 #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)))))
2179
2180 /*
2181  * target_type_is_incompatible:
2182  * @cfg: MonoCompile context
2183  *
2184  * Check that the item @arg on the evaluation stack can be stored
2185  * in the target type (can be a local, or field, etc).
2186  * The cfg arg can be used to check if we need verification or just
2187  * validity checks.
2188  *
2189  * Returns: non-0 value if arg can't be stored on a target.
2190  */
2191 static int
2192 target_type_is_incompatible (MonoCompile *cfg, MonoType *target, MonoInst *arg)
2193 {
2194         MonoType *simple_type;
2195         MonoClass *klass;
2196
2197         if (target->byref) {
2198                 /* FIXME: check that the pointed to types match */
2199                 if (arg->type == STACK_MP) {
2200                         if (cfg->verbose_level) printf ("ok\n");
2201                         /* This is needed to handle gshared types + ldaddr. We lower the types so we can handle enums and other typedef-like types. */
2202                         MonoClass *target_class_lowered = mono_class_from_mono_type (mini_get_underlying_type (&mono_class_from_mono_type (target)->byval_arg));
2203                         MonoClass *source_class_lowered = mono_class_from_mono_type (mini_get_underlying_type (&arg->klass->byval_arg));
2204
2205                         /* if the target is native int& or same type */
2206                         if (target->type == MONO_TYPE_I || target_class_lowered == source_class_lowered)
2207                                 return 0;
2208
2209                         /* Both are primitive type byrefs and the source points to a larger type that the destination */
2210                         if (MONO_TYPE_IS_PRIMITIVE_SCALAR (&target_class_lowered->byval_arg) && MONO_TYPE_IS_PRIMITIVE_SCALAR (&source_class_lowered->byval_arg) &&
2211                                 mono_class_instance_size (target_class_lowered) <= mono_class_instance_size (source_class_lowered))
2212                                 return 0;
2213                         return 1;
2214                 }
2215                 if (arg->type == STACK_PTR)
2216                         return 0;
2217                 return 1;
2218         }
2219
2220         simple_type = mini_get_underlying_type (target);
2221         switch (simple_type->type) {
2222         case MONO_TYPE_VOID:
2223                 return 1;
2224         case MONO_TYPE_I1:
2225         case MONO_TYPE_U1:
2226         case MONO_TYPE_I2:
2227         case MONO_TYPE_U2:
2228         case MONO_TYPE_I4:
2229         case MONO_TYPE_U4:
2230                 if (arg->type != STACK_I4 && arg->type != STACK_PTR)
2231                         return 1;
2232                 return 0;
2233         case MONO_TYPE_PTR:
2234                 /* STACK_MP is needed when setting pinned locals */
2235                 if (arg->type != STACK_I4 && arg->type != STACK_PTR && arg->type != STACK_MP)
2236                         return 1;
2237                 return 0;
2238         case MONO_TYPE_I:
2239         case MONO_TYPE_U:
2240         case MONO_TYPE_FNPTR:
2241                 /* 
2242                  * Some opcodes like ldloca returns 'transient pointers' which can be stored in
2243                  * in native int. (#688008).
2244                  */
2245                 if (arg->type != STACK_I4 && arg->type != STACK_PTR && arg->type != STACK_MP)
2246                         return 1;
2247                 return 0;
2248         case MONO_TYPE_CLASS:
2249         case MONO_TYPE_STRING:
2250         case MONO_TYPE_OBJECT:
2251         case MONO_TYPE_SZARRAY:
2252         case MONO_TYPE_ARRAY:    
2253                 if (arg->type != STACK_OBJ)
2254                         return 1;
2255                 /* FIXME: check type compatibility */
2256                 return 0;
2257         case MONO_TYPE_I8:
2258         case MONO_TYPE_U8:
2259                 if (arg->type != STACK_I8)
2260                         return 1;
2261                 return 0;
2262         case MONO_TYPE_R4:
2263                 if (arg->type != cfg->r4_stack_type)
2264                         return 1;
2265                 return 0;
2266         case MONO_TYPE_R8:
2267                 if (arg->type != STACK_R8)
2268                         return 1;
2269                 return 0;
2270         case MONO_TYPE_VALUETYPE:
2271                 if (arg->type != STACK_VTYPE)
2272                         return 1;
2273                 klass = mono_class_from_mono_type (simple_type);
2274                 if (klass != arg->klass)
2275                         return 1;
2276                 return 0;
2277         case MONO_TYPE_TYPEDBYREF:
2278                 if (arg->type != STACK_VTYPE)
2279                         return 1;
2280                 klass = mono_class_from_mono_type (simple_type);
2281                 if (klass != arg->klass)
2282                         return 1;
2283                 return 0;
2284         case MONO_TYPE_GENERICINST:
2285                 if (mono_type_generic_inst_is_valuetype (simple_type)) {
2286                         MonoClass *target_class;
2287                         if (arg->type != STACK_VTYPE)
2288                                 return 1;
2289                         klass = mono_class_from_mono_type (simple_type);
2290                         target_class = mono_class_from_mono_type (target);
2291                         /* The second cases is needed when doing partial sharing */
2292                         if (klass != arg->klass && target_class != arg->klass && target_class != mono_class_from_mono_type (mini_get_underlying_type (&arg->klass->byval_arg)))
2293                                 return 1;
2294                         return 0;
2295                 } else {
2296                         if (arg->type != STACK_OBJ)
2297                                 return 1;
2298                         /* FIXME: check type compatibility */
2299                         return 0;
2300                 }
2301         case MONO_TYPE_VAR:
2302         case MONO_TYPE_MVAR:
2303                 g_assert (cfg->gshared);
2304                 if (mini_type_var_is_vt (simple_type)) {
2305                         if (arg->type != STACK_VTYPE)
2306                                 return 1;
2307                 } else {
2308                         if (arg->type != STACK_OBJ)
2309                                 return 1;
2310                 }
2311                 return 0;
2312         default:
2313                 g_error ("unknown type 0x%02x in target_type_is_incompatible", simple_type->type);
2314         }
2315         return 1;
2316 }
2317
2318 /*
2319  * Prepare arguments for passing to a function call.
2320  * Return a non-zero value if the arguments can't be passed to the given
2321  * signature.
2322  * The type checks are not yet complete and some conversions may need
2323  * casts on 32 or 64 bit architectures.
2324  *
2325  * FIXME: implement this using target_type_is_incompatible ()
2326  */
2327 static int
2328 check_call_signature (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **args)
2329 {
2330         MonoType *simple_type;
2331         int i;
2332
2333         if (sig->hasthis) {
2334                 if (args [0]->type != STACK_OBJ && args [0]->type != STACK_MP && args [0]->type != STACK_PTR)
2335                         return 1;
2336                 args++;
2337         }
2338         for (i = 0; i < sig->param_count; ++i) {
2339                 if (sig->params [i]->byref) {
2340                         if (args [i]->type != STACK_MP && args [i]->type != STACK_PTR)
2341                                 return 1;
2342                         continue;
2343                 }
2344                 simple_type = mini_get_underlying_type (sig->params [i]);
2345 handle_enum:
2346                 switch (simple_type->type) {
2347                 case MONO_TYPE_VOID:
2348                         return 1;
2349                         continue;
2350                 case MONO_TYPE_I1:
2351                 case MONO_TYPE_U1:
2352                 case MONO_TYPE_I2:
2353                 case MONO_TYPE_U2:
2354                 case MONO_TYPE_I4:
2355                 case MONO_TYPE_U4:
2356                         if (args [i]->type != STACK_I4 && args [i]->type != STACK_PTR)
2357                                 return 1;
2358                         continue;
2359                 case MONO_TYPE_I:
2360                 case MONO_TYPE_U:
2361                 case MONO_TYPE_PTR:
2362                 case MONO_TYPE_FNPTR:
2363                         if (args [i]->type != STACK_I4 && args [i]->type != STACK_PTR && args [i]->type != STACK_MP && args [i]->type != STACK_OBJ)
2364                                 return 1;
2365                         continue;
2366                 case MONO_TYPE_CLASS:
2367                 case MONO_TYPE_STRING:
2368                 case MONO_TYPE_OBJECT:
2369                 case MONO_TYPE_SZARRAY:
2370                 case MONO_TYPE_ARRAY:    
2371                         if (args [i]->type != STACK_OBJ)
2372                                 return 1;
2373                         continue;
2374                 case MONO_TYPE_I8:
2375                 case MONO_TYPE_U8:
2376                         if (args [i]->type != STACK_I8)
2377                                 return 1;
2378                         continue;
2379                 case MONO_TYPE_R4:
2380                         if (args [i]->type != cfg->r4_stack_type)
2381                                 return 1;
2382                         continue;
2383                 case MONO_TYPE_R8:
2384                         if (args [i]->type != STACK_R8)
2385                                 return 1;
2386                         continue;
2387                 case MONO_TYPE_VALUETYPE:
2388                         if (simple_type->data.klass->enumtype) {
2389                                 simple_type = mono_class_enum_basetype (simple_type->data.klass);
2390                                 goto handle_enum;
2391                         }
2392                         if (args [i]->type != STACK_VTYPE)
2393                                 return 1;
2394                         continue;
2395                 case MONO_TYPE_TYPEDBYREF:
2396                         if (args [i]->type != STACK_VTYPE)
2397                                 return 1;
2398                         continue;
2399                 case MONO_TYPE_GENERICINST:
2400                         simple_type = &simple_type->data.generic_class->container_class->byval_arg;
2401                         goto handle_enum;
2402                 case MONO_TYPE_VAR:
2403                 case MONO_TYPE_MVAR:
2404                         /* gsharedvt */
2405                         if (args [i]->type != STACK_VTYPE)
2406                                 return 1;
2407                         continue;
2408                 default:
2409                         g_error ("unknown type 0x%02x in check_call_signature",
2410                                  simple_type->type);
2411                 }
2412         }
2413         return 0;
2414 }
2415
2416 static int
2417 callvirt_to_call (int opcode)
2418 {
2419         switch (opcode) {
2420         case OP_CALL_MEMBASE:
2421                 return OP_CALL;
2422         case OP_VOIDCALL_MEMBASE:
2423                 return OP_VOIDCALL;
2424         case OP_FCALL_MEMBASE:
2425                 return OP_FCALL;
2426         case OP_RCALL_MEMBASE:
2427                 return OP_RCALL;
2428         case OP_VCALL_MEMBASE:
2429                 return OP_VCALL;
2430         case OP_LCALL_MEMBASE:
2431                 return OP_LCALL;
2432         default:
2433                 g_assert_not_reached ();
2434         }
2435
2436         return -1;
2437 }
2438
2439 static int
2440 callvirt_to_call_reg (int opcode)
2441 {
2442         switch (opcode) {
2443         case OP_CALL_MEMBASE:
2444                 return OP_CALL_REG;
2445         case OP_VOIDCALL_MEMBASE:
2446                 return OP_VOIDCALL_REG;
2447         case OP_FCALL_MEMBASE:
2448                 return OP_FCALL_REG;
2449         case OP_RCALL_MEMBASE:
2450                 return OP_RCALL_REG;
2451         case OP_VCALL_MEMBASE:
2452                 return OP_VCALL_REG;
2453         case OP_LCALL_MEMBASE:
2454                 return OP_LCALL_REG;
2455         default:
2456                 g_assert_not_reached ();
2457         }
2458
2459         return -1;
2460 }
2461
2462 /* Either METHOD or IMT_ARG needs to be set */
2463 static void
2464 emit_imt_argument (MonoCompile *cfg, MonoCallInst *call, MonoMethod *method, MonoInst *imt_arg)
2465 {
2466         int method_reg;
2467
2468         if (COMPILE_LLVM (cfg)) {
2469                 if (imt_arg) {
2470                         method_reg = alloc_preg (cfg);
2471                         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, method_reg, imt_arg->dreg);
2472                 } else {
2473                         MonoInst *ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_METHODCONST, method);
2474                         method_reg = ins->dreg;
2475                 }
2476
2477 #ifdef ENABLE_LLVM
2478                 call->imt_arg_reg = method_reg;
2479 #endif
2480                 mono_call_inst_add_outarg_reg (cfg, call, method_reg, MONO_ARCH_IMT_REG, FALSE);
2481                 return;
2482         }
2483
2484         if (imt_arg) {
2485                 method_reg = alloc_preg (cfg);
2486                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, method_reg, imt_arg->dreg);
2487         } else {
2488                 MonoInst *ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_METHODCONST, method);
2489                 method_reg = ins->dreg;
2490         }
2491
2492         mono_call_inst_add_outarg_reg (cfg, call, method_reg, MONO_ARCH_IMT_REG, FALSE);
2493 }
2494
2495 static MonoJumpInfo *
2496 mono_patch_info_new (MonoMemPool *mp, int ip, MonoJumpInfoType type, gconstpointer target)
2497 {
2498         MonoJumpInfo *ji = (MonoJumpInfo *)mono_mempool_alloc (mp, sizeof (MonoJumpInfo));
2499
2500         ji->ip.i = ip;
2501         ji->type = type;
2502         ji->data.target = target;
2503
2504         return ji;
2505 }
2506
2507 static int
2508 mini_class_check_context_used (MonoCompile *cfg, MonoClass *klass)
2509 {
2510         if (cfg->gshared)
2511                 return mono_class_check_context_used (klass);
2512         else
2513                 return 0;
2514 }
2515
2516 static int
2517 mini_method_check_context_used (MonoCompile *cfg, MonoMethod *method)
2518 {
2519         if (cfg->gshared)
2520                 return mono_method_check_context_used (method);
2521         else
2522                 return 0;
2523 }
2524
2525 /*
2526  * check_method_sharing:
2527  *
2528  *   Check whenever the vtable or an mrgctx needs to be passed when calling CMETHOD.
2529  */
2530 static void
2531 check_method_sharing (MonoCompile *cfg, MonoMethod *cmethod, gboolean *out_pass_vtable, gboolean *out_pass_mrgctx)
2532 {
2533         gboolean pass_vtable = FALSE;
2534         gboolean pass_mrgctx = FALSE;
2535
2536         if (((cmethod->flags & METHOD_ATTRIBUTE_STATIC) || cmethod->klass->valuetype) &&
2537                 (cmethod->klass->generic_class || cmethod->klass->generic_container)) {
2538                 gboolean sharable = FALSE;
2539
2540                 if (mono_method_is_generic_sharable_full (cmethod, TRUE, TRUE, TRUE))
2541                         sharable = TRUE;
2542
2543                 /*
2544                  * Pass vtable iff target method might
2545                  * be shared, which means that sharing
2546                  * is enabled for its class and its
2547                  * context is sharable (and it's not a
2548                  * generic method).
2549                  */
2550                 if (sharable && !(mini_method_get_context (cmethod) && mini_method_get_context (cmethod)->method_inst))
2551                         pass_vtable = TRUE;
2552         }
2553
2554         if (mini_method_get_context (cmethod) &&
2555                 mini_method_get_context (cmethod)->method_inst) {
2556                 g_assert (!pass_vtable);
2557
2558                 if (mono_method_is_generic_sharable_full (cmethod, TRUE, TRUE, TRUE)) {
2559                         pass_mrgctx = TRUE;
2560                 } else {
2561                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (mono_method_signature (cmethod)))
2562                                 pass_mrgctx = TRUE;
2563                 }
2564         }
2565
2566         if (out_pass_vtable)
2567                 *out_pass_vtable = pass_vtable;
2568         if (out_pass_mrgctx)
2569                 *out_pass_mrgctx = pass_mrgctx;
2570 }
2571
2572 inline static MonoCallInst *
2573 mono_emit_call_args (MonoCompile *cfg, MonoMethodSignature *sig, 
2574                                          MonoInst **args, int calli, int virtual_, int tail, int rgctx, int unbox_trampoline)
2575 {
2576         MonoType *sig_ret;
2577         MonoCallInst *call;
2578 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
2579         int i;
2580 #endif
2581
2582         if (cfg->llvm_only)
2583                 tail = FALSE;
2584
2585         if (tail) {
2586                 emit_instrumentation_call (cfg, mono_profiler_method_leave);
2587
2588                 MONO_INST_NEW_CALL (cfg, call, OP_TAILCALL);
2589         } else
2590                 MONO_INST_NEW_CALL (cfg, call, ret_type_to_call_opcode (cfg, sig->ret, calli, virtual_));
2591
2592         call->args = args;
2593         call->signature = sig;
2594         call->rgctx_reg = rgctx;
2595         sig_ret = mini_get_underlying_type (sig->ret);
2596
2597         type_to_eval_stack_type ((cfg), sig_ret, &call->inst);
2598
2599         if (tail) {
2600                 if (mini_type_is_vtype (sig_ret)) {
2601                         call->vret_var = cfg->vret_addr;
2602                         //g_assert_not_reached ();
2603                 }
2604         } else if (mini_type_is_vtype (sig_ret)) {
2605                 MonoInst *temp = mono_compile_create_var (cfg, sig_ret, OP_LOCAL);
2606                 MonoInst *loada;
2607
2608                 temp->backend.is_pinvoke = sig->pinvoke;
2609
2610                 /*
2611                  * We use a new opcode OP_OUTARG_VTRETADDR instead of LDADDR for emitting the
2612                  * address of return value to increase optimization opportunities.
2613                  * Before vtype decomposition, the dreg of the call ins itself represents the
2614                  * fact the call modifies the return value. After decomposition, the call will
2615                  * be transformed into one of the OP_VOIDCALL opcodes, and the VTRETADDR opcode
2616                  * will be transformed into an LDADDR.
2617                  */
2618                 MONO_INST_NEW (cfg, loada, OP_OUTARG_VTRETADDR);
2619                 loada->dreg = alloc_preg (cfg);
2620                 loada->inst_p0 = temp;
2621                 /* We reference the call too since call->dreg could change during optimization */
2622                 loada->inst_p1 = call;
2623                 MONO_ADD_INS (cfg->cbb, loada);
2624
2625                 call->inst.dreg = temp->dreg;
2626
2627                 call->vret_var = loada;
2628         } else if (!MONO_TYPE_IS_VOID (sig_ret))
2629                 call->inst.dreg = alloc_dreg (cfg, (MonoStackType)call->inst.type);
2630
2631 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
2632         if (COMPILE_SOFT_FLOAT (cfg)) {
2633                 /* 
2634                  * If the call has a float argument, we would need to do an r8->r4 conversion using 
2635                  * an icall, but that cannot be done during the call sequence since it would clobber
2636                  * the call registers + the stack. So we do it before emitting the call.
2637                  */
2638                 for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
2639                         MonoType *t;
2640                         MonoInst *in = call->args [i];
2641
2642                         if (i >= sig->hasthis)
2643                                 t = sig->params [i - sig->hasthis];
2644                         else
2645                                 t = &mono_defaults.int_class->byval_arg;
2646                         t = mono_type_get_underlying_type (t);
2647
2648                         if (!t->byref && t->type == MONO_TYPE_R4) {
2649                                 MonoInst *iargs [1];
2650                                 MonoInst *conv;
2651
2652                                 iargs [0] = in;
2653                                 conv = mono_emit_jit_icall (cfg, mono_fload_r4_arg, iargs);
2654
2655                                 /* The result will be in an int vreg */
2656                                 call->args [i] = conv;
2657                         }
2658                 }
2659         }
2660 #endif
2661
2662         call->need_unbox_trampoline = unbox_trampoline;
2663
2664 #ifdef ENABLE_LLVM
2665         if (COMPILE_LLVM (cfg))
2666                 mono_llvm_emit_call (cfg, call);
2667         else
2668                 mono_arch_emit_call (cfg, call);
2669 #else
2670         mono_arch_emit_call (cfg, call);
2671 #endif
2672
2673         cfg->param_area = MAX (cfg->param_area, call->stack_usage);
2674         cfg->flags |= MONO_CFG_HAS_CALLS;
2675         
2676         return call;
2677 }
2678
2679 static void
2680 set_rgctx_arg (MonoCompile *cfg, MonoCallInst *call, int rgctx_reg, MonoInst *rgctx_arg)
2681 {
2682         mono_call_inst_add_outarg_reg (cfg, call, rgctx_reg, MONO_ARCH_RGCTX_REG, FALSE);
2683         cfg->uses_rgctx_reg = TRUE;
2684         call->rgctx_reg = TRUE;
2685 #ifdef ENABLE_LLVM
2686         call->rgctx_arg_reg = rgctx_reg;
2687 #endif
2688 }       
2689
2690 inline static MonoInst*
2691 mono_emit_calli (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **args, MonoInst *addr, MonoInst *imt_arg, MonoInst *rgctx_arg)
2692 {
2693         MonoCallInst *call;
2694         MonoInst *ins;
2695         int rgctx_reg = -1;
2696         gboolean check_sp = FALSE;
2697
2698         if (cfg->check_pinvoke_callconv && cfg->method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) {
2699                 WrapperInfo *info = mono_marshal_get_wrapper_info (cfg->method);
2700
2701                 if (info && info->subtype == WRAPPER_SUBTYPE_PINVOKE)
2702                         check_sp = TRUE;
2703         }
2704
2705         if (rgctx_arg) {
2706                 rgctx_reg = mono_alloc_preg (cfg);
2707                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, rgctx_reg, rgctx_arg->dreg);
2708         }
2709
2710         if (check_sp) {
2711                 if (!cfg->stack_inbalance_var)
2712                         cfg->stack_inbalance_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2713
2714                 MONO_INST_NEW (cfg, ins, OP_GET_SP);
2715                 ins->dreg = cfg->stack_inbalance_var->dreg;
2716                 MONO_ADD_INS (cfg->cbb, ins);
2717         }
2718
2719         call = mono_emit_call_args (cfg, sig, args, TRUE, FALSE, FALSE, rgctx_arg ? TRUE : FALSE, FALSE);
2720
2721         call->inst.sreg1 = addr->dreg;
2722
2723         if (imt_arg)
2724                 emit_imt_argument (cfg, call, NULL, imt_arg);
2725
2726         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2727
2728         if (check_sp) {
2729                 int sp_reg;
2730
2731                 sp_reg = mono_alloc_preg (cfg);
2732
2733                 MONO_INST_NEW (cfg, ins, OP_GET_SP);
2734                 ins->dreg = sp_reg;
2735                 MONO_ADD_INS (cfg->cbb, ins);
2736
2737                 /* Restore the stack so we don't crash when throwing the exception */
2738                 MONO_INST_NEW (cfg, ins, OP_SET_SP);
2739                 ins->sreg1 = cfg->stack_inbalance_var->dreg;
2740                 MONO_ADD_INS (cfg->cbb, ins);
2741
2742                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, cfg->stack_inbalance_var->dreg, sp_reg);
2743                 MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "ExecutionEngineException");
2744         }
2745
2746         if (rgctx_arg)
2747                 set_rgctx_arg (cfg, call, rgctx_reg, rgctx_arg);
2748
2749         return (MonoInst*)call;
2750 }
2751
2752 static MonoInst*
2753 emit_get_gsharedvt_info_klass (MonoCompile *cfg, MonoClass *klass, MonoRgctxInfoType rgctx_type);
2754
2755 static MonoInst*
2756 emit_get_rgctx_method (MonoCompile *cfg, int context_used, MonoMethod *cmethod, MonoRgctxInfoType rgctx_type);
2757 static MonoInst*
2758 emit_get_rgctx_klass (MonoCompile *cfg, int context_used, MonoClass *klass, MonoRgctxInfoType rgctx_type);
2759
2760 static MonoInst*
2761 mono_emit_method_call_full (MonoCompile *cfg, MonoMethod *method, MonoMethodSignature *sig, gboolean tail,
2762                                                         MonoInst **args, MonoInst *this_ins, MonoInst *imt_arg, MonoInst *rgctx_arg)
2763 {
2764 #ifndef DISABLE_REMOTING
2765         gboolean might_be_remote = FALSE;
2766 #endif
2767         gboolean virtual_ = this_ins != NULL;
2768         gboolean enable_for_aot = TRUE;
2769         int context_used;
2770         MonoCallInst *call;
2771         MonoInst *call_target = NULL;
2772         int rgctx_reg = 0;
2773         gboolean need_unbox_trampoline;
2774
2775         if (!sig)
2776                 sig = mono_method_signature (method);
2777
2778         if (cfg->llvm_only && (method->klass->flags & TYPE_ATTRIBUTE_INTERFACE))
2779                 g_assert_not_reached ();
2780
2781         if (rgctx_arg) {
2782                 rgctx_reg = mono_alloc_preg (cfg);
2783                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, rgctx_reg, rgctx_arg->dreg);
2784         }
2785
2786         if (method->string_ctor) {
2787                 /* Create the real signature */
2788                 /* FIXME: Cache these */
2789                 MonoMethodSignature *ctor_sig = mono_metadata_signature_dup_mempool (cfg->mempool, sig);
2790                 ctor_sig->ret = &mono_defaults.string_class->byval_arg;
2791
2792                 sig = ctor_sig;
2793         }
2794
2795         context_used = mini_method_check_context_used (cfg, method);
2796
2797 #ifndef DISABLE_REMOTING
2798         might_be_remote = this_ins && sig->hasthis &&
2799                 (mono_class_is_marshalbyref (method->klass) || method->klass == mono_defaults.object_class) &&
2800                 !(method->flags & METHOD_ATTRIBUTE_VIRTUAL) && (!MONO_CHECK_THIS (this_ins) || context_used);
2801
2802         if (might_be_remote && context_used) {
2803                 MonoInst *addr;
2804
2805                 g_assert (cfg->gshared);
2806
2807                 addr = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_REMOTING_INVOKE_WITH_CHECK);
2808
2809                 return mono_emit_calli (cfg, sig, args, addr, NULL, NULL);
2810         }
2811 #endif
2812
2813         if (cfg->llvm_only && !call_target && virtual_ && (method->flags & METHOD_ATTRIBUTE_VIRTUAL))
2814                 return emit_llvmonly_virtual_call (cfg, method, sig, 0, args);
2815
2816         need_unbox_trampoline = method->klass == mono_defaults.object_class || (method->klass->flags & TYPE_ATTRIBUTE_INTERFACE);
2817
2818         call = mono_emit_call_args (cfg, sig, args, FALSE, virtual_, tail, rgctx_arg ? TRUE : FALSE, need_unbox_trampoline);
2819
2820 #ifndef DISABLE_REMOTING
2821         if (might_be_remote)
2822                 call->method = mono_marshal_get_remoting_invoke_with_check (method);
2823         else
2824 #endif
2825                 call->method = method;
2826         call->inst.flags |= MONO_INST_HAS_METHOD;
2827         call->inst.inst_left = this_ins;
2828         call->tail_call = tail;
2829
2830         if (virtual_) {
2831                 int vtable_reg, slot_reg, this_reg;
2832                 int offset;
2833
2834                 this_reg = this_ins->dreg;
2835
2836                 if (!cfg->llvm_only && (method->klass->parent == mono_defaults.multicastdelegate_class) && !strcmp (method->name, "Invoke")) {
2837                         MonoInst *dummy_use;
2838
2839                         MONO_EMIT_NULL_CHECK (cfg, this_reg);
2840
2841                         /* Make a call to delegate->invoke_impl */
2842                         call->inst.inst_basereg = this_reg;
2843                         call->inst.inst_offset = MONO_STRUCT_OFFSET (MonoDelegate, invoke_impl);
2844                         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2845
2846                         /* We must emit a dummy use here because the delegate trampoline will
2847                         replace the 'this' argument with the delegate target making this activation
2848                         no longer a root for the delegate.
2849                         This is an issue for delegates that target collectible code such as dynamic
2850                         methods of GC'able assemblies.
2851
2852                         For a test case look into #667921.
2853
2854                         FIXME: a dummy use is not the best way to do it as the local register allocator
2855                         will put it on a caller save register and spil it around the call. 
2856                         Ideally, we would either put it on a callee save register or only do the store part.  
2857                          */
2858                         EMIT_NEW_DUMMY_USE (cfg, dummy_use, args [0]);
2859
2860                         return (MonoInst*)call;
2861                 }
2862
2863                 if ((!cfg->compile_aot || enable_for_aot) && 
2864                         (!(method->flags & METHOD_ATTRIBUTE_VIRTUAL) || 
2865                          (MONO_METHOD_IS_FINAL (method) &&
2866                           method->wrapper_type != MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)) &&
2867                         !(mono_class_is_marshalbyref (method->klass) && context_used)) {
2868                         /* 
2869                          * the method is not virtual, we just need to ensure this is not null
2870                          * and then we can call the method directly.
2871                          */
2872 #ifndef DISABLE_REMOTING
2873                         if (mono_class_is_marshalbyref (method->klass) || method->klass == mono_defaults.object_class) {
2874                                 /* 
2875                                  * The check above ensures method is not gshared, this is needed since
2876                                  * gshared methods can't have wrappers.
2877                                  */
2878                                 method = call->method = mono_marshal_get_remoting_invoke_with_check (method);
2879                         }
2880 #endif
2881
2882                         if (!method->string_ctor)
2883                                 MONO_EMIT_NEW_CHECK_THIS (cfg, this_reg);
2884
2885                         call->inst.opcode = callvirt_to_call (call->inst.opcode);
2886                 } else if ((method->flags & METHOD_ATTRIBUTE_VIRTUAL) && MONO_METHOD_IS_FINAL (method)) {
2887                         /*
2888                          * the method is virtual, but we can statically dispatch since either
2889                          * it's class or the method itself are sealed.
2890                          * But first we need to ensure it's not a null reference.
2891                          */
2892                         MONO_EMIT_NEW_CHECK_THIS (cfg, this_reg);
2893
2894                         call->inst.opcode = callvirt_to_call (call->inst.opcode);
2895                 } else if (call_target) {
2896                         vtable_reg = alloc_preg (cfg);
2897                         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
2898
2899                         call->inst.opcode = callvirt_to_call_reg (call->inst.opcode);
2900                         call->inst.sreg1 = call_target->dreg;
2901                         call->inst.flags &= !MONO_INST_HAS_METHOD;
2902                 } else {
2903                         vtable_reg = alloc_preg (cfg);
2904                         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
2905                         if (method->klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
2906                                 guint32 imt_slot = mono_method_get_imt_slot (method);
2907                                 emit_imt_argument (cfg, call, call->method, imt_arg);
2908                                 slot_reg = vtable_reg;
2909                                 offset = ((gint32)imt_slot - MONO_IMT_SIZE) * SIZEOF_VOID_P;
2910                         } else {
2911                                 slot_reg = vtable_reg;
2912                                 offset = MONO_STRUCT_OFFSET (MonoVTable, vtable) +
2913                                         ((mono_method_get_vtable_index (method)) * (SIZEOF_VOID_P));
2914                                 if (imt_arg) {
2915                                         g_assert (mono_method_signature (method)->generic_param_count);
2916                                         emit_imt_argument (cfg, call, call->method, imt_arg);
2917                                 }
2918                         }
2919
2920                         call->inst.sreg1 = slot_reg;
2921                         call->inst.inst_offset = offset;
2922                         call->is_virtual = TRUE;
2923                 }
2924         }
2925
2926         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2927
2928         if (rgctx_arg)
2929                 set_rgctx_arg (cfg, call, rgctx_reg, rgctx_arg);
2930
2931         return (MonoInst*)call;
2932 }
2933
2934 MonoInst*
2935 mono_emit_method_call (MonoCompile *cfg, MonoMethod *method, MonoInst **args, MonoInst *this_ins)
2936 {
2937         return mono_emit_method_call_full (cfg, method, mono_method_signature (method), FALSE, args, this_ins, NULL, NULL);
2938 }
2939
2940 MonoInst*
2941 mono_emit_native_call (MonoCompile *cfg, gconstpointer func, MonoMethodSignature *sig,
2942                                            MonoInst **args)
2943 {
2944         MonoCallInst *call;
2945
2946         g_assert (sig);
2947
2948         call = mono_emit_call_args (cfg, sig, args, FALSE, FALSE, FALSE, FALSE, FALSE);
2949         call->fptr = func;
2950
2951         MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
2952
2953         return (MonoInst*)call;
2954 }
2955
2956 MonoInst*
2957 mono_emit_jit_icall (MonoCompile *cfg, gconstpointer func, MonoInst **args)
2958 {
2959         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (func);
2960
2961         g_assert (info);
2962
2963         return mono_emit_native_call (cfg, mono_icall_get_wrapper (info), info->sig, args);
2964 }
2965
2966 /*
2967  * mono_emit_abs_call:
2968  *
2969  *   Emit a call to the runtime function described by PATCH_TYPE and DATA.
2970  */
2971 inline static MonoInst*
2972 mono_emit_abs_call (MonoCompile *cfg, MonoJumpInfoType patch_type, gconstpointer data, 
2973                                         MonoMethodSignature *sig, MonoInst **args)
2974 {
2975         MonoJumpInfo *ji = mono_patch_info_new (cfg->mempool, 0, patch_type, data);
2976         MonoInst *ins;
2977
2978         /* 
2979          * We pass ji as the call address, the PATCH_INFO_ABS resolving code will
2980          * handle it.
2981          */
2982         if (cfg->abs_patches == NULL)
2983                 cfg->abs_patches = g_hash_table_new (NULL, NULL);
2984         g_hash_table_insert (cfg->abs_patches, ji, ji);
2985         ins = mono_emit_native_call (cfg, ji, sig, args);
2986         ((MonoCallInst*)ins)->fptr_is_patch = TRUE;
2987         return ins;
2988 }
2989
2990 static MonoMethodSignature*
2991 sig_to_rgctx_sig (MonoMethodSignature *sig)
2992 {
2993         // FIXME: memory allocation
2994         MonoMethodSignature *res;
2995         int i;
2996
2997         res = (MonoMethodSignature *)g_malloc (MONO_SIZEOF_METHOD_SIGNATURE + (sig->param_count + 1) * sizeof (MonoType*));
2998         memcpy (res, sig, MONO_SIZEOF_METHOD_SIGNATURE);
2999         res->param_count = sig->param_count + 1;
3000         for (i = 0; i < sig->param_count; ++i)
3001                 res->params [i] = sig->params [i];
3002         res->params [sig->param_count] = &mono_defaults.int_class->this_arg;
3003         return res;
3004 }
3005
3006 /* Make an indirect call to FSIG passing an additional argument */
3007 static MonoInst*
3008 emit_extra_arg_calli (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **orig_args, int arg_reg, MonoInst *call_target)
3009 {
3010         MonoMethodSignature *csig;
3011         MonoInst *args_buf [16];
3012         MonoInst **args;
3013         int i, pindex, tmp_reg;
3014
3015         /* Make a call with an rgctx/extra arg */
3016         if (fsig->param_count + 2 < 16)
3017                 args = args_buf;
3018         else
3019                 args = (MonoInst **)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst*) * (fsig->param_count + 2));
3020         pindex = 0;
3021         if (fsig->hasthis)
3022                 args [pindex ++] = orig_args [0];
3023         for (i = 0; i < fsig->param_count; ++i)
3024                 args [pindex ++] = orig_args [fsig->hasthis + i];
3025         tmp_reg = alloc_preg (cfg);
3026         EMIT_NEW_UNALU (cfg, args [pindex], OP_MOVE, tmp_reg, arg_reg);
3027         csig = sig_to_rgctx_sig (fsig);
3028         return mono_emit_calli (cfg, csig, args, call_target, NULL, NULL);
3029 }
3030
3031 /* Emit an indirect call to the function descriptor ADDR */
3032 static MonoInst*
3033 emit_llvmonly_calli (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args, MonoInst *addr)
3034 {
3035         int addr_reg, arg_reg;
3036         MonoInst *call_target;
3037
3038         g_assert (cfg->llvm_only);
3039
3040         /*
3041          * addr points to a <addr, arg> pair, load both of them, and
3042          * make a call to addr, passing arg as an extra arg.
3043          */
3044         addr_reg = alloc_preg (cfg);
3045         EMIT_NEW_LOAD_MEMBASE (cfg, call_target, OP_LOAD_MEMBASE, addr_reg, addr->dreg, 0);
3046         arg_reg = alloc_preg (cfg);
3047         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, arg_reg, addr->dreg, sizeof (gpointer));
3048
3049         return emit_extra_arg_calli (cfg, fsig, args, arg_reg, call_target);
3050 }
3051
3052 static gboolean
3053 direct_icalls_enabled (MonoCompile *cfg)
3054 {
3055         /* LLVM on amd64 can't handle calls to non-32 bit addresses */
3056 #ifdef TARGET_AMD64
3057         if (cfg->compile_llvm && !cfg->llvm_only)
3058                 return FALSE;
3059 #endif
3060         if (cfg->gen_sdb_seq_points || cfg->disable_direct_icalls)
3061                 return FALSE;
3062         return TRUE;
3063 }
3064
3065 MonoInst*
3066 mono_emit_jit_icall_by_info (MonoCompile *cfg, int il_offset, MonoJitICallInfo *info, MonoInst **args)
3067 {
3068         /*
3069          * Call the jit icall without a wrapper if possible.
3070          * The wrapper is needed for the following reasons:
3071          * - to handle exceptions thrown using mono_raise_exceptions () from the
3072          *   icall function. The EH code needs the lmf frame pushed by the
3073          *   wrapper to be able to unwind back to managed code.
3074          * - to be able to do stack walks for asynchronously suspended
3075          *   threads when debugging.
3076          */
3077         if (info->no_raise && direct_icalls_enabled (cfg)) {
3078                 char *name;
3079                 int costs;
3080
3081                 if (!info->wrapper_method) {
3082                         name = g_strdup_printf ("__icall_wrapper_%s", info->name);
3083                         info->wrapper_method = mono_marshal_get_icall_wrapper (info->sig, name, info->func, TRUE);
3084                         g_free (name);
3085                         mono_memory_barrier ();
3086                 }
3087
3088                 /*
3089                  * Inline the wrapper method, which is basically a call to the C icall, and
3090                  * an exception check.
3091                  */
3092                 costs = inline_method (cfg, info->wrapper_method, NULL,
3093                                                            args, NULL, il_offset, TRUE);
3094                 g_assert (costs > 0);
3095                 g_assert (!MONO_TYPE_IS_VOID (info->sig->ret));
3096
3097                 return args [0];
3098         } else {
3099                 return mono_emit_native_call (cfg, mono_icall_get_wrapper (info), info->sig, args);
3100         }
3101 }
3102  
3103 static MonoInst*
3104 mono_emit_widen_call_res (MonoCompile *cfg, MonoInst *ins, MonoMethodSignature *fsig)
3105 {
3106         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
3107                 if ((fsig->pinvoke || LLVM_ENABLED) && !fsig->ret->byref) {
3108                         int widen_op = -1;
3109
3110                         /* 
3111                          * Native code might return non register sized integers 
3112                          * without initializing the upper bits.
3113                          */
3114                         switch (mono_type_to_load_membase (cfg, fsig->ret)) {
3115                         case OP_LOADI1_MEMBASE:
3116                                 widen_op = OP_ICONV_TO_I1;
3117                                 break;
3118                         case OP_LOADU1_MEMBASE:
3119                                 widen_op = OP_ICONV_TO_U1;
3120                                 break;
3121                         case OP_LOADI2_MEMBASE:
3122                                 widen_op = OP_ICONV_TO_I2;
3123                                 break;
3124                         case OP_LOADU2_MEMBASE:
3125                                 widen_op = OP_ICONV_TO_U2;
3126                                 break;
3127                         default:
3128                                 break;
3129                         }
3130
3131                         if (widen_op != -1) {
3132                                 int dreg = alloc_preg (cfg);
3133                                 MonoInst *widen;
3134
3135                                 EMIT_NEW_UNALU (cfg, widen, widen_op, dreg, ins->dreg);
3136                                 widen->type = ins->type;
3137                                 ins = widen;
3138                         }
3139                 }
3140         }
3141
3142         return ins;
3143 }
3144
3145
3146 static void
3147 emit_method_access_failure (MonoCompile *cfg, MonoMethod *method, MonoMethod *cil_method)
3148 {
3149         MonoInst *args [16];
3150
3151         args [0] = emit_get_rgctx_method (cfg, mono_method_check_context_used (method), method, MONO_RGCTX_INFO_METHOD);
3152         args [1] = emit_get_rgctx_method (cfg, mono_method_check_context_used (cil_method), cil_method, MONO_RGCTX_INFO_METHOD);
3153
3154         mono_emit_jit_icall (cfg, mono_throw_method_access, args);
3155 }
3156
3157 static MonoMethod*
3158 get_memcpy_method (void)
3159 {
3160         static MonoMethod *memcpy_method = NULL;
3161         if (!memcpy_method) {
3162                 memcpy_method = mono_class_get_method_from_name (mono_defaults.string_class, "memcpy", 3);
3163                 if (!memcpy_method)
3164                         g_error ("Old corlib found. Install a new one");
3165         }
3166         return memcpy_method;
3167 }
3168
3169 static void
3170 create_write_barrier_bitmap (MonoCompile *cfg, MonoClass *klass, unsigned *wb_bitmap, int offset)
3171 {
3172         MonoClassField *field;
3173         gpointer iter = NULL;
3174
3175         while ((field = mono_class_get_fields (klass, &iter))) {
3176                 int foffset;
3177
3178                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
3179                         continue;
3180                 foffset = klass->valuetype ? field->offset - sizeof (MonoObject): field->offset;
3181                 if (mini_type_is_reference (mono_field_get_type (field))) {
3182                         g_assert ((foffset % SIZEOF_VOID_P) == 0);
3183                         *wb_bitmap |= 1 << ((offset + foffset) / SIZEOF_VOID_P);
3184                 } else {
3185                         MonoClass *field_class = mono_class_from_mono_type (field->type);
3186                         if (field_class->has_references)
3187                                 create_write_barrier_bitmap (cfg, field_class, wb_bitmap, offset + foffset);
3188                 }
3189         }
3190 }
3191
3192 static void
3193 emit_write_barrier (MonoCompile *cfg, MonoInst *ptr, MonoInst *value)
3194 {
3195         int card_table_shift_bits;
3196         gpointer card_table_mask;
3197         guint8 *card_table;
3198         MonoInst *dummy_use;
3199         int nursery_shift_bits;
3200         size_t nursery_size;
3201
3202         if (!cfg->gen_write_barriers)
3203                 return;
3204
3205         card_table = mono_gc_get_card_table (&card_table_shift_bits, &card_table_mask);
3206
3207         mono_gc_get_nursery (&nursery_shift_bits, &nursery_size);
3208
3209         if (cfg->backend->have_card_table_wb && !cfg->compile_aot && card_table && nursery_shift_bits > 0 && !COMPILE_LLVM (cfg)) {
3210                 MonoInst *wbarrier;
3211
3212                 MONO_INST_NEW (cfg, wbarrier, OP_CARD_TABLE_WBARRIER);
3213                 wbarrier->sreg1 = ptr->dreg;
3214                 wbarrier->sreg2 = value->dreg;
3215                 MONO_ADD_INS (cfg->cbb, wbarrier);
3216         } else if (card_table && !cfg->compile_aot && !mono_gc_card_table_nursery_check ()) {
3217                 int offset_reg = alloc_preg (cfg);
3218                 int card_reg;
3219                 MonoInst *ins;
3220
3221                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_UN_IMM, offset_reg, ptr->dreg, card_table_shift_bits);
3222                 if (card_table_mask)
3223                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PAND_IMM, offset_reg, offset_reg, card_table_mask);
3224
3225                 /*We can't use PADD_IMM since the cardtable might end up in high addresses and amd64 doesn't support
3226                  * IMM's larger than 32bits.
3227                  */
3228                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_CARD_TABLE_ADDR, NULL);
3229                 card_reg = ins->dreg;
3230
3231                 MONO_EMIT_NEW_BIALU (cfg, OP_PADD, offset_reg, offset_reg, card_reg);
3232                 MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREI1_MEMBASE_IMM, offset_reg, 0, 1);
3233         } else {
3234                 MonoMethod *write_barrier = mono_gc_get_write_barrier ();
3235                 mono_emit_method_call (cfg, write_barrier, &ptr, NULL);
3236         }
3237
3238         EMIT_NEW_DUMMY_USE (cfg, dummy_use, value);
3239 }
3240
3241 static gboolean
3242 mono_emit_wb_aware_memcpy (MonoCompile *cfg, MonoClass *klass, MonoInst *iargs[4], int size, int align)
3243 {
3244         int dest_ptr_reg, tmp_reg, destreg, srcreg, offset;
3245         unsigned need_wb = 0;
3246
3247         if (align == 0)
3248                 align = 4;
3249
3250         /*types with references can't have alignment smaller than sizeof(void*) */
3251         if (align < SIZEOF_VOID_P)
3252                 return FALSE;
3253
3254         /*This value cannot be bigger than 32 due to the way we calculate the required wb bitmap.*/
3255         if (size > 32 * SIZEOF_VOID_P)
3256                 return FALSE;
3257
3258         create_write_barrier_bitmap (cfg, klass, &need_wb, 0);
3259
3260         /* We don't unroll more than 5 stores to avoid code bloat. */
3261         if (size > 5 * SIZEOF_VOID_P) {
3262                 /*This is harmless and simplify mono_gc_wbarrier_value_copy_bitmap */
3263                 size += (SIZEOF_VOID_P - 1);
3264                 size &= ~(SIZEOF_VOID_P - 1);
3265
3266                 EMIT_NEW_ICONST (cfg, iargs [2], size);
3267                 EMIT_NEW_ICONST (cfg, iargs [3], need_wb);
3268                 mono_emit_jit_icall (cfg, mono_gc_wbarrier_value_copy_bitmap, iargs);
3269                 return TRUE;
3270         }
3271
3272         destreg = iargs [0]->dreg;
3273         srcreg = iargs [1]->dreg;
3274         offset = 0;
3275
3276         dest_ptr_reg = alloc_preg (cfg);
3277         tmp_reg = alloc_preg (cfg);
3278
3279         /*tmp = dreg*/
3280         EMIT_NEW_UNALU (cfg, iargs [0], OP_MOVE, dest_ptr_reg, destreg);
3281
3282         while (size >= SIZEOF_VOID_P) {
3283                 MonoInst *load_inst;
3284                 MONO_INST_NEW (cfg, load_inst, OP_LOAD_MEMBASE);
3285                 load_inst->dreg = tmp_reg;
3286                 load_inst->inst_basereg = srcreg;
3287                 load_inst->inst_offset = offset;
3288                 MONO_ADD_INS (cfg->cbb, load_inst);
3289
3290                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, dest_ptr_reg, 0, tmp_reg);
3291
3292                 if (need_wb & 0x1)
3293                         emit_write_barrier (cfg, iargs [0], load_inst);
3294
3295                 offset += SIZEOF_VOID_P;
3296                 size -= SIZEOF_VOID_P;
3297                 need_wb >>= 1;
3298
3299                 /*tmp += sizeof (void*)*/
3300                 if (size >= SIZEOF_VOID_P) {
3301                         NEW_BIALU_IMM (cfg, iargs [0], OP_PADD_IMM, dest_ptr_reg, dest_ptr_reg, SIZEOF_VOID_P);
3302                         MONO_ADD_INS (cfg->cbb, iargs [0]);
3303                 }
3304         }
3305
3306         /* Those cannot be references since size < sizeof (void*) */
3307         while (size >= 4) {
3308                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, tmp_reg, srcreg, offset);
3309                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, destreg, offset, tmp_reg);
3310                 offset += 4;
3311                 size -= 4;
3312         }
3313
3314         while (size >= 2) {
3315                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI2_MEMBASE, tmp_reg, srcreg, offset);
3316                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI2_MEMBASE_REG, destreg, offset, tmp_reg);
3317                 offset += 2;
3318                 size -= 2;
3319         }
3320
3321         while (size >= 1) {
3322                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI1_MEMBASE, tmp_reg, srcreg, offset);
3323                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, destreg, offset, tmp_reg);
3324                 offset += 1;
3325                 size -= 1;
3326         }
3327
3328         return TRUE;
3329 }
3330
3331 /*
3332  * Emit code to copy a valuetype of type @klass whose address is stored in
3333  * @src->dreg to memory whose address is stored at @dest->dreg.
3334  */
3335 void
3336 mini_emit_stobj (MonoCompile *cfg, MonoInst *dest, MonoInst *src, MonoClass *klass, gboolean native)
3337 {
3338         MonoInst *iargs [4];
3339         int n;
3340         guint32 align = 0;
3341         MonoMethod *memcpy_method;
3342         MonoInst *size_ins = NULL;
3343         MonoInst *memcpy_ins = NULL;
3344
3345         g_assert (klass);
3346         if (cfg->gshared)
3347                 klass = mono_class_from_mono_type (mini_get_underlying_type (&klass->byval_arg));
3348
3349         /*
3350          * This check breaks with spilled vars... need to handle it during verification anyway.
3351          * g_assert (klass && klass == src->klass && klass == dest->klass);
3352          */
3353
3354         if (mini_is_gsharedvt_klass (klass)) {
3355                 g_assert (!native);
3356                 size_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_VALUE_SIZE);
3357                 memcpy_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_MEMCPY);
3358         }
3359
3360         if (native)
3361                 n = mono_class_native_size (klass, &align);
3362         else
3363                 n = mono_class_value_size (klass, &align);
3364
3365         /* if native is true there should be no references in the struct */
3366         if (cfg->gen_write_barriers && (klass->has_references || size_ins) && !native) {
3367                 /* Avoid barriers when storing to the stack */
3368                 if (!((dest->opcode == OP_ADD_IMM && dest->sreg1 == cfg->frame_reg) ||
3369                           (dest->opcode == OP_LDADDR))) {
3370                         int context_used;
3371
3372                         iargs [0] = dest;
3373                         iargs [1] = src;
3374
3375                         context_used = mini_class_check_context_used (cfg, klass);
3376
3377                         /* It's ok to intrinsify under gsharing since shared code types are layout stable. */
3378                         if (!size_ins && (cfg->opt & MONO_OPT_INTRINS) && mono_emit_wb_aware_memcpy (cfg, klass, iargs, n, align)) {
3379                                 return;
3380                         } else if (context_used) {
3381                                 iargs [2] = emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
3382                         }  else {
3383                                 iargs [2] = emit_runtime_constant (cfg, MONO_PATCH_INFO_CLASS, klass);
3384                                 if (!cfg->compile_aot)
3385                                         mono_class_compute_gc_descriptor (klass);
3386                         }
3387
3388                         if (size_ins)
3389                                 mono_emit_jit_icall (cfg, mono_gsharedvt_value_copy, iargs);
3390                         else
3391                                 mono_emit_jit_icall (cfg, mono_value_copy, iargs);
3392                         return;
3393                 }
3394         }
3395
3396         if (!size_ins && (cfg->opt & MONO_OPT_INTRINS) && n <= sizeof (gpointer) * 8) {
3397                 /* FIXME: Optimize the case when src/dest is OP_LDADDR */
3398                 mini_emit_memcpy (cfg, dest->dreg, 0, src->dreg, 0, n, align);
3399         } else {
3400                 iargs [0] = dest;
3401                 iargs [1] = src;
3402                 if (size_ins)
3403                         iargs [2] = size_ins;
3404                 else
3405                         EMIT_NEW_ICONST (cfg, iargs [2], n);
3406                 
3407                 memcpy_method = get_memcpy_method ();
3408                 if (memcpy_ins)
3409                         mono_emit_calli (cfg, mono_method_signature (memcpy_method), iargs, memcpy_ins, NULL, NULL);
3410                 else
3411                         mono_emit_method_call (cfg, memcpy_method, iargs, NULL);
3412         }
3413 }
3414
3415 static MonoMethod*
3416 get_memset_method (void)
3417 {
3418         static MonoMethod *memset_method = NULL;
3419         if (!memset_method) {
3420                 memset_method = mono_class_get_method_from_name (mono_defaults.string_class, "memset", 3);
3421                 if (!memset_method)
3422                         g_error ("Old corlib found. Install a new one");
3423         }
3424         return memset_method;
3425 }
3426
3427 void
3428 mini_emit_initobj (MonoCompile *cfg, MonoInst *dest, const guchar *ip, MonoClass *klass)
3429 {
3430         MonoInst *iargs [3];
3431         int n;
3432         guint32 align;
3433         MonoMethod *memset_method;
3434         MonoInst *size_ins = NULL;
3435         MonoInst *bzero_ins = NULL;
3436         static MonoMethod *bzero_method;
3437
3438         /* FIXME: Optimize this for the case when dest is an LDADDR */
3439         mono_class_init (klass);
3440         if (mini_is_gsharedvt_klass (klass)) {
3441                 size_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_VALUE_SIZE);
3442                 bzero_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_BZERO);
3443                 if (!bzero_method)
3444                         bzero_method = mono_class_get_method_from_name (mono_defaults.string_class, "bzero_aligned_1", 2);
3445                 g_assert (bzero_method);
3446                 iargs [0] = dest;
3447                 iargs [1] = size_ins;
3448                 mono_emit_calli (cfg, mono_method_signature (bzero_method), iargs, bzero_ins, NULL, NULL);
3449                 return;
3450         }
3451
3452         klass = mono_class_from_mono_type (mini_get_underlying_type (&klass->byval_arg));
3453
3454         n = mono_class_value_size (klass, &align);
3455
3456         if (n <= sizeof (gpointer) * 8) {
3457                 mini_emit_memset (cfg, dest->dreg, 0, n, 0, align);
3458         }
3459         else {
3460                 memset_method = get_memset_method ();
3461                 iargs [0] = dest;
3462                 EMIT_NEW_ICONST (cfg, iargs [1], 0);
3463                 EMIT_NEW_ICONST (cfg, iargs [2], n);
3464                 mono_emit_method_call (cfg, memset_method, iargs, NULL);
3465         }
3466 }
3467
3468 /*
3469  * emit_get_rgctx:
3470  *
3471  *   Emit IR to return either the this pointer for instance method,
3472  * or the mrgctx for static methods.
3473  */
3474 static MonoInst*
3475 emit_get_rgctx (MonoCompile *cfg, MonoMethod *method, int context_used)
3476 {
3477         MonoInst *this_ins = NULL;
3478
3479         g_assert (cfg->gshared);
3480
3481         if (!(method->flags & METHOD_ATTRIBUTE_STATIC) &&
3482                         !(context_used & MONO_GENERIC_CONTEXT_USED_METHOD) &&
3483                         !method->klass->valuetype)
3484                 EMIT_NEW_ARGLOAD (cfg, this_ins, 0);
3485
3486         if (context_used & MONO_GENERIC_CONTEXT_USED_METHOD) {
3487                 MonoInst *mrgctx_loc, *mrgctx_var;
3488
3489                 g_assert (!this_ins);
3490                 g_assert (method->is_inflated && mono_method_get_context (method)->method_inst);
3491
3492                 mrgctx_loc = mono_get_vtable_var (cfg);
3493                 EMIT_NEW_TEMPLOAD (cfg, mrgctx_var, mrgctx_loc->inst_c0);
3494
3495                 return mrgctx_var;
3496         } else if (method->flags & METHOD_ATTRIBUTE_STATIC || method->klass->valuetype) {
3497                 MonoInst *vtable_loc, *vtable_var;
3498
3499                 g_assert (!this_ins);
3500
3501                 vtable_loc = mono_get_vtable_var (cfg);
3502                 EMIT_NEW_TEMPLOAD (cfg, vtable_var, vtable_loc->inst_c0);
3503
3504                 if (method->is_inflated && mono_method_get_context (method)->method_inst) {
3505                         MonoInst *mrgctx_var = vtable_var;
3506                         int vtable_reg;
3507
3508                         vtable_reg = alloc_preg (cfg);
3509                         EMIT_NEW_LOAD_MEMBASE (cfg, vtable_var, OP_LOAD_MEMBASE, vtable_reg, mrgctx_var->dreg, MONO_STRUCT_OFFSET (MonoMethodRuntimeGenericContext, class_vtable));
3510                         vtable_var->type = STACK_PTR;
3511                 }
3512
3513                 return vtable_var;
3514         } else {
3515                 MonoInst *ins;
3516                 int vtable_reg;
3517         
3518                 vtable_reg = alloc_preg (cfg);
3519                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, vtable_reg, this_ins->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
3520                 return ins;
3521         }
3522 }
3523
3524 static MonoJumpInfoRgctxEntry *
3525 mono_patch_info_rgctx_entry_new (MonoMemPool *mp, MonoMethod *method, gboolean in_mrgctx, MonoJumpInfoType patch_type, gconstpointer patch_data, MonoRgctxInfoType info_type)
3526 {
3527         MonoJumpInfoRgctxEntry *res = (MonoJumpInfoRgctxEntry *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoRgctxEntry));
3528         res->method = method;
3529         res->in_mrgctx = in_mrgctx;
3530         res->data = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo));
3531         res->data->type = patch_type;
3532         res->data->data.target = patch_data;
3533         res->info_type = info_type;
3534
3535         return res;
3536 }
3537
3538 static inline MonoInst*
3539 emit_rgctx_fetch_inline (MonoCompile *cfg, MonoInst *rgctx, MonoJumpInfoRgctxEntry *entry)
3540 {
3541         MonoInst *args [16];
3542         MonoInst *call;
3543
3544         // FIXME: No fastpath since the slot is not a compile time constant
3545         args [0] = rgctx;
3546         EMIT_NEW_AOTCONST (cfg, args [1], MONO_PATCH_INFO_RGCTX_SLOT_INDEX, entry);
3547         if (entry->in_mrgctx)
3548                 call = mono_emit_jit_icall (cfg, mono_fill_method_rgctx, args);
3549         else
3550                 call = mono_emit_jit_icall (cfg, mono_fill_class_rgctx, args);
3551         return call;
3552 #if 0
3553         /*
3554          * FIXME: This can be called during decompose, which is a problem since it creates
3555          * new bblocks.
3556          * Also, the fastpath doesn't work since the slot number is dynamically allocated.
3557          */
3558         int i, slot, depth, index, rgctx_reg, val_reg, res_reg;
3559         gboolean mrgctx;
3560         MonoBasicBlock *is_null_bb, *end_bb;
3561         MonoInst *res, *ins, *call;
3562         MonoInst *args[16];
3563
3564         slot = mini_get_rgctx_entry_slot (entry);
3565
3566         mrgctx = MONO_RGCTX_SLOT_IS_MRGCTX (slot);
3567         index = MONO_RGCTX_SLOT_INDEX (slot);
3568         if (mrgctx)
3569                 index += MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT / sizeof (gpointer);
3570         for (depth = 0; ; ++depth) {
3571                 int size = mono_class_rgctx_get_array_size (depth, mrgctx);
3572
3573                 if (index < size - 1)
3574                         break;
3575                 index -= size - 1;
3576         }
3577
3578         NEW_BBLOCK (cfg, end_bb);
3579         NEW_BBLOCK (cfg, is_null_bb);
3580
3581         if (mrgctx) {
3582                 rgctx_reg = rgctx->dreg;
3583         } else {
3584                 rgctx_reg = alloc_preg (cfg);
3585
3586                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, rgctx_reg, rgctx->dreg, MONO_STRUCT_OFFSET (MonoVTable, runtime_generic_context));
3587                 // FIXME: Avoid this check by allocating the table when the vtable is created etc.
3588                 NEW_BBLOCK (cfg, is_null_bb);
3589
3590                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rgctx_reg, 0);
3591                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3592         }
3593
3594         for (i = 0; i < depth; ++i) {
3595                 int array_reg = alloc_preg (cfg);
3596
3597                 /* load ptr to next array */
3598                 if (mrgctx && i == 0)
3599                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, rgctx_reg, MONO_SIZEOF_METHOD_RUNTIME_GENERIC_CONTEXT);
3600                 else
3601                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, rgctx_reg, 0);
3602                 rgctx_reg = array_reg;
3603                 /* is the ptr null? */
3604                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rgctx_reg, 0);
3605                 /* if yes, jump to actual trampoline */
3606                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3607         }
3608
3609         /* fetch slot */
3610         val_reg = alloc_preg (cfg);
3611         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, val_reg, rgctx_reg, (index + 1) * sizeof (gpointer));
3612         /* is the slot null? */
3613         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, val_reg, 0);
3614         /* if yes, jump to actual trampoline */
3615         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3616
3617         /* Fastpath */
3618         res_reg = alloc_preg (cfg);
3619         MONO_INST_NEW (cfg, ins, OP_MOVE);
3620         ins->dreg = res_reg;
3621         ins->sreg1 = val_reg;
3622         MONO_ADD_INS (cfg->cbb, ins);
3623         res = ins;
3624         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
3625
3626         /* Slowpath */
3627         MONO_START_BB (cfg, is_null_bb);
3628         args [0] = rgctx;
3629         EMIT_NEW_ICONST (cfg, args [1], index);
3630         if (mrgctx)
3631                 call = mono_emit_jit_icall (cfg, mono_fill_method_rgctx, args);
3632         else
3633                 call = mono_emit_jit_icall (cfg, mono_fill_class_rgctx, args);
3634         MONO_INST_NEW (cfg, ins, OP_MOVE);
3635         ins->dreg = res_reg;
3636         ins->sreg1 = call->dreg;
3637         MONO_ADD_INS (cfg->cbb, ins);
3638         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
3639
3640         MONO_START_BB (cfg, end_bb);
3641
3642         return res;
3643 #endif
3644 }
3645
3646 /*
3647  * emit_rgctx_fetch:
3648  *
3649  *   Emit IR to load the value of the rgctx entry ENTRY from the rgctx
3650  * given by RGCTX.
3651  */
3652 static inline MonoInst*
3653 emit_rgctx_fetch (MonoCompile *cfg, MonoInst *rgctx, MonoJumpInfoRgctxEntry *entry)
3654 {
3655         if (cfg->llvm_only)
3656                 return emit_rgctx_fetch_inline (cfg, rgctx, entry);
3657         else
3658                 return mono_emit_abs_call (cfg, MONO_PATCH_INFO_RGCTX_FETCH, entry, helper_sig_rgctx_lazy_fetch_trampoline, &rgctx);
3659 }
3660
3661 static MonoInst*
3662 emit_get_rgctx_klass (MonoCompile *cfg, int context_used,
3663                                           MonoClass *klass, MonoRgctxInfoType rgctx_type)
3664 {
3665         MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->current_method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_CLASS, klass, rgctx_type);
3666         MonoInst *rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
3667
3668         return emit_rgctx_fetch (cfg, rgctx, entry);
3669 }
3670
3671 static MonoInst*
3672 emit_get_rgctx_sig (MonoCompile *cfg, int context_used,
3673                                         MonoMethodSignature *sig, MonoRgctxInfoType rgctx_type)
3674 {
3675         MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->current_method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_SIGNATURE, sig, rgctx_type);
3676         MonoInst *rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
3677
3678         return emit_rgctx_fetch (cfg, rgctx, entry);
3679 }
3680
3681 static MonoInst*
3682 emit_get_rgctx_gsharedvt_call (MonoCompile *cfg, int context_used,
3683                                                            MonoMethodSignature *sig, MonoMethod *cmethod, MonoRgctxInfoType rgctx_type)
3684 {
3685         MonoJumpInfoGSharedVtCall *call_info;
3686         MonoJumpInfoRgctxEntry *entry;
3687         MonoInst *rgctx;
3688
3689         call_info = (MonoJumpInfoGSharedVtCall *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfoGSharedVtCall));
3690         call_info->sig = sig;
3691         call_info->method = cmethod;
3692
3693         entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->current_method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_GSHAREDVT_CALL, call_info, rgctx_type);
3694         rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
3695
3696         return emit_rgctx_fetch (cfg, rgctx, entry);
3697 }
3698
3699 /*
3700  * emit_get_rgctx_virt_method:
3701  *
3702  *   Return data for method VIRT_METHOD for a receiver of type KLASS.
3703  */
3704 static MonoInst*
3705 emit_get_rgctx_virt_method (MonoCompile *cfg, int context_used,
3706                                                         MonoClass *klass, MonoMethod *virt_method, MonoRgctxInfoType rgctx_type)
3707 {
3708         MonoJumpInfoVirtMethod *info;
3709         MonoJumpInfoRgctxEntry *entry;
3710         MonoInst *rgctx;
3711
3712         info = (MonoJumpInfoVirtMethod *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoJumpInfoVirtMethod));
3713         info->klass = klass;
3714         info->method = virt_method;
3715
3716         entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->current_method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_VIRT_METHOD, info, rgctx_type);
3717         rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
3718
3719         return emit_rgctx_fetch (cfg, rgctx, entry);
3720 }
3721
3722 static MonoInst*
3723 emit_get_rgctx_gsharedvt_method (MonoCompile *cfg, int context_used,
3724                                                                  MonoMethod *cmethod, MonoGSharedVtMethodInfo *info)
3725 {
3726         MonoJumpInfoRgctxEntry *entry;
3727         MonoInst *rgctx;
3728
3729         entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->current_method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_GSHAREDVT_METHOD, info, MONO_RGCTX_INFO_METHOD_GSHAREDVT_INFO);
3730         rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
3731
3732         return emit_rgctx_fetch (cfg, rgctx, entry);
3733 }
3734
3735 /*
3736  * emit_get_rgctx_method:
3737  *
3738  *   Emit IR to load the property RGCTX_TYPE of CMETHOD. If context_used is 0, emit
3739  * normal constants, else emit a load from the rgctx.
3740  */
3741 static MonoInst*
3742 emit_get_rgctx_method (MonoCompile *cfg, int context_used,
3743                                            MonoMethod *cmethod, MonoRgctxInfoType rgctx_type)
3744 {
3745         if (!context_used) {
3746                 MonoInst *ins;
3747
3748                 switch (rgctx_type) {
3749                 case MONO_RGCTX_INFO_METHOD:
3750                         EMIT_NEW_METHODCONST (cfg, ins, cmethod);
3751                         return ins;
3752                 case MONO_RGCTX_INFO_METHOD_RGCTX:
3753                         EMIT_NEW_METHOD_RGCTX_CONST (cfg, ins, cmethod);
3754                         return ins;
3755                 default:
3756                         g_assert_not_reached ();
3757                 }
3758         } else {
3759                 MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->current_method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_METHODCONST, cmethod, rgctx_type);
3760                 MonoInst *rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
3761
3762                 return emit_rgctx_fetch (cfg, rgctx, entry);
3763         }
3764 }
3765
3766 static MonoInst*
3767 emit_get_rgctx_field (MonoCompile *cfg, int context_used,
3768                                           MonoClassField *field, MonoRgctxInfoType rgctx_type)
3769 {
3770         MonoJumpInfoRgctxEntry *entry = mono_patch_info_rgctx_entry_new (cfg->mempool, cfg->current_method, context_used & MONO_GENERIC_CONTEXT_USED_METHOD, MONO_PATCH_INFO_FIELD, field, rgctx_type);
3771         MonoInst *rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
3772
3773         return emit_rgctx_fetch (cfg, rgctx, entry);
3774 }
3775
3776 static int
3777 get_gsharedvt_info_slot (MonoCompile *cfg, gpointer data, MonoRgctxInfoType rgctx_type)
3778 {
3779         MonoGSharedVtMethodInfo *info = cfg->gsharedvt_info;
3780         MonoRuntimeGenericContextInfoTemplate *template_;
3781         int i, idx;
3782
3783         g_assert (info);
3784
3785         for (i = 0; i < info->num_entries; ++i) {
3786                 MonoRuntimeGenericContextInfoTemplate *otemplate = &info->entries [i];
3787
3788                 if (otemplate->info_type == rgctx_type && otemplate->data == data && rgctx_type != MONO_RGCTX_INFO_LOCAL_OFFSET)
3789                         return i;
3790         }
3791
3792         if (info->num_entries == info->count_entries) {
3793                 MonoRuntimeGenericContextInfoTemplate *new_entries;
3794                 int new_count_entries = info->count_entries ? info->count_entries * 2 : 16;
3795
3796                 new_entries = (MonoRuntimeGenericContextInfoTemplate *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoRuntimeGenericContextInfoTemplate) * new_count_entries);
3797
3798                 memcpy (new_entries, info->entries, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->count_entries);
3799                 info->entries = new_entries;
3800                 info->count_entries = new_count_entries;
3801         }
3802
3803         idx = info->num_entries;
3804         template_ = &info->entries [idx];
3805         template_->info_type = rgctx_type;
3806         template_->data = data;
3807
3808         info->num_entries ++;
3809
3810         return idx;
3811 }
3812
3813 /*
3814  * emit_get_gsharedvt_info:
3815  *
3816  *   This is similar to emit_get_rgctx_.., but loads the data from the gsharedvt info var instead of calling an rgctx fetch trampoline.
3817  */
3818 static MonoInst*
3819 emit_get_gsharedvt_info (MonoCompile *cfg, gpointer data, MonoRgctxInfoType rgctx_type)
3820 {
3821         MonoInst *ins;
3822         int idx, dreg;
3823
3824         idx = get_gsharedvt_info_slot (cfg, data, rgctx_type);
3825         /* Load info->entries [idx] */
3826         dreg = alloc_preg (cfg);
3827         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, cfg->gsharedvt_info_var->dreg, MONO_STRUCT_OFFSET (MonoGSharedVtMethodRuntimeInfo, entries) + (idx * sizeof (gpointer)));
3828
3829         return ins;
3830 }
3831
3832 static MonoInst*
3833 emit_get_gsharedvt_info_klass (MonoCompile *cfg, MonoClass *klass, MonoRgctxInfoType rgctx_type)
3834 {
3835         return emit_get_gsharedvt_info (cfg, &klass->byval_arg, rgctx_type);
3836 }
3837
3838 /*
3839  * On return the caller must check @klass for load errors.
3840  */
3841 static void
3842 emit_class_init (MonoCompile *cfg, MonoClass *klass)
3843 {
3844         MonoInst *vtable_arg;
3845         int context_used;
3846
3847         context_used = mini_class_check_context_used (cfg, klass);
3848
3849         if (context_used) {
3850                 vtable_arg = emit_get_rgctx_klass (cfg, context_used,
3851                                                                                    klass, MONO_RGCTX_INFO_VTABLE);
3852         } else {
3853                 MonoVTable *vtable = mono_class_vtable (cfg->domain, klass);
3854
3855                 if (!vtable)
3856                         return;
3857                 EMIT_NEW_VTABLECONST (cfg, vtable_arg, vtable);
3858         }
3859
3860         if (!COMPILE_LLVM (cfg) && cfg->backend->have_op_generic_class_init) {
3861                 MonoInst *ins;
3862
3863                 /*
3864                  * Using an opcode instead of emitting IR here allows the hiding of the call inside the opcode,
3865                  * so this doesn't have to clobber any regs and it doesn't break basic blocks.
3866                  */
3867                 MONO_INST_NEW (cfg, ins, OP_GENERIC_CLASS_INIT);
3868                 ins->sreg1 = vtable_arg->dreg;
3869                 MONO_ADD_INS (cfg->cbb, ins);
3870         } else {
3871                 static int byte_offset = -1;
3872                 static guint8 bitmask;
3873                 int bits_reg, inited_reg;
3874                 MonoBasicBlock *inited_bb;
3875                 MonoInst *args [16];
3876
3877                 if (byte_offset < 0)
3878                         mono_marshal_find_bitfield_offset (MonoVTable, initialized, &byte_offset, &bitmask);
3879
3880                 bits_reg = alloc_ireg (cfg);
3881                 inited_reg = alloc_ireg (cfg);
3882
3883                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, bits_reg, vtable_arg->dreg, byte_offset);
3884                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, inited_reg, bits_reg, bitmask);
3885
3886                 NEW_BBLOCK (cfg, inited_bb);
3887
3888                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, inited_reg, 0);
3889                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBNE_UN, inited_bb);
3890
3891                 args [0] = vtable_arg;
3892                 mono_emit_jit_icall (cfg, mono_generic_class_init, args);
3893
3894                 MONO_START_BB (cfg, inited_bb);
3895         }
3896 }
3897
3898 static void
3899 emit_seq_point (MonoCompile *cfg, MonoMethod *method, guint8* ip, gboolean intr_loc, gboolean nonempty_stack)
3900 {
3901         MonoInst *ins;
3902
3903         if (cfg->gen_seq_points && cfg->method == method) {
3904                 NEW_SEQ_POINT (cfg, ins, ip - cfg->header->code, intr_loc);
3905                 if (nonempty_stack)
3906                         ins->flags |= MONO_INST_NONEMPTY_STACK;
3907                 MONO_ADD_INS (cfg->cbb, ins);
3908         }
3909 }
3910
3911 static void
3912 save_cast_details (MonoCompile *cfg, MonoClass *klass, int obj_reg, gboolean null_check)
3913 {
3914         if (mini_get_debug_options ()->better_cast_details) {
3915                 int vtable_reg = alloc_preg (cfg);
3916                 int klass_reg = alloc_preg (cfg);
3917                 MonoBasicBlock *is_null_bb = NULL;
3918                 MonoInst *tls_get;
3919                 int to_klass_reg, context_used;
3920
3921                 if (null_check) {
3922                         NEW_BBLOCK (cfg, is_null_bb);
3923
3924                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, obj_reg, 0);
3925                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
3926                 }
3927
3928                 tls_get = mono_get_jit_tls_intrinsic (cfg);
3929                 if (!tls_get) {
3930                         fprintf (stderr, "error: --debug=casts not supported on this platform.\n.");
3931                         exit (1);
3932                 }
3933
3934                 MONO_ADD_INS (cfg->cbb, tls_get);
3935                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, vtable_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
3936                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
3937
3938                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, tls_get->dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, class_cast_from), klass_reg);
3939
3940                 context_used = mini_class_check_context_used (cfg, klass);
3941                 if (context_used) {
3942                         MonoInst *class_ins;
3943
3944                         class_ins = emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
3945                         to_klass_reg = class_ins->dreg;
3946                 } else {
3947                         to_klass_reg = alloc_preg (cfg);
3948                         MONO_EMIT_NEW_CLASSCONST (cfg, to_klass_reg, klass);
3949                 }
3950                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, tls_get->dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, class_cast_to), to_klass_reg);
3951
3952                 if (null_check)
3953                         MONO_START_BB (cfg, is_null_bb);
3954         }
3955 }
3956
3957 static void
3958 reset_cast_details (MonoCompile *cfg)
3959 {
3960         /* Reset the variables holding the cast details */
3961         if (mini_get_debug_options ()->better_cast_details) {
3962                 MonoInst *tls_get = mono_get_jit_tls_intrinsic (cfg);
3963
3964                 MONO_ADD_INS (cfg->cbb, tls_get);
3965                 /* It is enough to reset the from field */
3966                 MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STORE_MEMBASE_IMM, tls_get->dreg, MONO_STRUCT_OFFSET (MonoJitTlsData, class_cast_from), 0);
3967         }
3968 }
3969
3970 /*
3971  * On return the caller must check @array_class for load errors
3972  */
3973 static void
3974 mini_emit_check_array_type (MonoCompile *cfg, MonoInst *obj, MonoClass *array_class)
3975 {
3976         int vtable_reg = alloc_preg (cfg);
3977         int context_used;
3978
3979         context_used = mini_class_check_context_used (cfg, array_class);
3980
3981         save_cast_details (cfg, array_class, obj->dreg, FALSE);
3982
3983         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, obj->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
3984
3985         if (cfg->opt & MONO_OPT_SHARED) {
3986                 int class_reg = alloc_preg (cfg);
3987                 MonoInst *ins;
3988
3989                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, class_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
3990                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_CLASS, array_class);
3991                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, class_reg, ins->dreg);
3992         } else if (context_used) {
3993                 MonoInst *vtable_ins;
3994
3995                 vtable_ins = emit_get_rgctx_klass (cfg, context_used, array_class, MONO_RGCTX_INFO_VTABLE);
3996                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, vtable_reg, vtable_ins->dreg);
3997         } else {
3998                 if (cfg->compile_aot) {
3999                         int vt_reg;
4000                         MonoVTable *vtable;
4001
4002                         if (!(vtable = mono_class_vtable (cfg->domain, array_class)))
4003                                 return;
4004                         vt_reg = alloc_preg (cfg);
4005                         MONO_EMIT_NEW_VTABLECONST (cfg, vt_reg, vtable);
4006                         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, vtable_reg, vt_reg);
4007                 } else {
4008                         MonoVTable *vtable;
4009                         if (!(vtable = mono_class_vtable (cfg->domain, array_class)))
4010                                 return;
4011                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, vtable_reg, vtable);
4012                 }
4013         }
4014         
4015         MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "ArrayTypeMismatchException");
4016
4017         reset_cast_details (cfg);
4018 }
4019
4020 /**
4021  * Handles unbox of a Nullable<T>. If context_used is non zero, then shared 
4022  * generic code is generated.
4023  */
4024 static MonoInst*
4025 handle_unbox_nullable (MonoCompile* cfg, MonoInst* val, MonoClass* klass, int context_used)
4026 {
4027         MonoMethod* method = mono_class_get_method_from_name (klass, "Unbox", 1);
4028
4029         if (context_used) {
4030                 MonoInst *rgctx, *addr;
4031
4032                 /* FIXME: What if the class is shared?  We might not
4033                    have to get the address of the method from the
4034                    RGCTX. */
4035                 addr = emit_get_rgctx_method (cfg, context_used, method,
4036                                                                           MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
4037                 if (cfg->llvm_only && cfg->gsharedvt) {
4038                         return emit_llvmonly_calli (cfg, mono_method_signature (method), &val, addr);
4039                 } else {
4040                         rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
4041
4042                         return mono_emit_calli (cfg, mono_method_signature (method), &val, addr, NULL, rgctx);
4043                 }
4044         } else {
4045                 gboolean pass_vtable, pass_mrgctx;
4046                 MonoInst *rgctx_arg = NULL;
4047
4048                 check_method_sharing (cfg, method, &pass_vtable, &pass_mrgctx);
4049                 g_assert (!pass_mrgctx);
4050
4051                 if (pass_vtable) {
4052                         MonoVTable *vtable = mono_class_vtable (cfg->domain, method->klass);
4053
4054                         g_assert (vtable);
4055                         EMIT_NEW_VTABLECONST (cfg, rgctx_arg, vtable);
4056                 }
4057
4058                 return mono_emit_method_call_full (cfg, method, NULL, FALSE, &val, NULL, NULL, rgctx_arg);
4059         }
4060 }
4061
4062 static MonoInst*
4063 handle_unbox (MonoCompile *cfg, MonoClass *klass, MonoInst **sp, int context_used)
4064 {
4065         MonoInst *add;
4066         int obj_reg;
4067         int vtable_reg = alloc_dreg (cfg ,STACK_PTR);
4068         int klass_reg = alloc_dreg (cfg ,STACK_PTR);
4069         int eclass_reg = alloc_dreg (cfg ,STACK_PTR);
4070         int rank_reg = alloc_dreg (cfg ,STACK_I4);
4071
4072         obj_reg = sp [0]->dreg;
4073         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vtable_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4074         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, rank_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, rank));
4075
4076         /* FIXME: generics */
4077         g_assert (klass->rank == 0);
4078                         
4079         // Check rank == 0
4080         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rank_reg, 0);
4081         MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
4082
4083         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4084         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, eclass_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, element_class));
4085
4086         if (context_used) {
4087                 MonoInst *element_class;
4088
4089                 /* This assertion is from the unboxcast insn */
4090                 g_assert (klass->rank == 0);
4091
4092                 element_class = emit_get_rgctx_klass (cfg, context_used,
4093                                 klass, MONO_RGCTX_INFO_ELEMENT_KLASS);
4094
4095                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, eclass_reg, element_class->dreg);
4096                 MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
4097         } else {
4098                 save_cast_details (cfg, klass->element_class, obj_reg, FALSE);
4099                 mini_emit_class_check (cfg, eclass_reg, klass->element_class);
4100                 reset_cast_details (cfg);
4101         }
4102
4103         NEW_BIALU_IMM (cfg, add, OP_ADD_IMM, alloc_dreg (cfg, STACK_MP), obj_reg, sizeof (MonoObject));
4104         MONO_ADD_INS (cfg->cbb, add);
4105         add->type = STACK_MP;
4106         add->klass = klass;
4107
4108         return add;
4109 }
4110
4111 static MonoInst*
4112 handle_unbox_gsharedvt (MonoCompile *cfg, MonoClass *klass, MonoInst *obj)
4113 {
4114         MonoInst *addr, *klass_inst, *is_ref, *args[16];
4115         MonoBasicBlock *is_ref_bb, *is_nullable_bb, *end_bb;
4116         MonoInst *ins;
4117         int dreg, addr_reg;
4118
4119         klass_inst = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_KLASS);
4120
4121         /* obj */
4122         args [0] = obj;
4123
4124         /* klass */
4125         args [1] = klass_inst;
4126
4127         /* CASTCLASS */
4128         obj = mono_emit_jit_icall (cfg, mono_object_castclass_unbox, args);
4129
4130         NEW_BBLOCK (cfg, is_ref_bb);
4131         NEW_BBLOCK (cfg, is_nullable_bb);
4132         NEW_BBLOCK (cfg, end_bb);
4133         is_ref = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_CLASS_BOX_TYPE);
4134         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_REF);
4135         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_ref_bb);
4136
4137         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_NULLABLE);
4138         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_nullable_bb);
4139
4140         /* This will contain either the address of the unboxed vtype, or an address of the temporary where the ref is stored */
4141         addr_reg = alloc_dreg (cfg, STACK_MP);
4142
4143         /* Non-ref case */
4144         /* UNBOX */
4145         NEW_BIALU_IMM (cfg, addr, OP_ADD_IMM, addr_reg, obj->dreg, sizeof (MonoObject));
4146         MONO_ADD_INS (cfg->cbb, addr);
4147
4148         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4149
4150         /* Ref case */
4151         MONO_START_BB (cfg, is_ref_bb);
4152
4153         /* Save the ref to a temporary */
4154         dreg = alloc_ireg (cfg);
4155         EMIT_NEW_VARLOADA_VREG (cfg, addr, dreg, &klass->byval_arg);
4156         addr->dreg = addr_reg;
4157         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, addr->dreg, 0, obj->dreg);
4158         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4159
4160         /* Nullable case */
4161         MONO_START_BB (cfg, is_nullable_bb);
4162
4163         {
4164                 MonoInst *addr = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_NULLABLE_CLASS_UNBOX);
4165                 MonoInst *unbox_call;
4166                 MonoMethodSignature *unbox_sig;
4167
4168                 unbox_sig = (MonoMethodSignature *)mono_mempool_alloc0 (cfg->mempool, MONO_SIZEOF_METHOD_SIGNATURE + (1 * sizeof (MonoType *)));
4169                 unbox_sig->ret = &klass->byval_arg;
4170                 unbox_sig->param_count = 1;
4171                 unbox_sig->params [0] = &mono_defaults.object_class->byval_arg;
4172
4173                 if (cfg->llvm_only)
4174                         unbox_call = emit_llvmonly_calli (cfg, unbox_sig, &obj, addr);
4175                 else
4176                         unbox_call = mono_emit_calli (cfg, unbox_sig, &obj, addr, NULL, NULL);
4177
4178                 EMIT_NEW_VARLOADA_VREG (cfg, addr, unbox_call->dreg, &klass->byval_arg);
4179                 addr->dreg = addr_reg;
4180         }
4181
4182         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4183
4184         /* End */
4185         MONO_START_BB (cfg, end_bb);
4186
4187         /* LDOBJ */
4188         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr_reg, 0);
4189
4190         return ins;
4191 }
4192
4193 /*
4194  * Returns NULL and set the cfg exception on error.
4195  */
4196 static MonoInst*
4197 handle_alloc (MonoCompile *cfg, MonoClass *klass, gboolean for_box, int context_used)
4198 {
4199         MonoInst *iargs [2];
4200         void *alloc_ftn;
4201
4202         if (context_used) {
4203                 MonoInst *data;
4204                 MonoRgctxInfoType rgctx_info;
4205                 MonoInst *iargs [2];
4206                 gboolean known_instance_size = !mini_is_gsharedvt_klass (klass);
4207
4208                 MonoMethod *managed_alloc = mono_gc_get_managed_allocator (klass, for_box, known_instance_size);
4209
4210                 if (cfg->opt & MONO_OPT_SHARED)
4211                         rgctx_info = MONO_RGCTX_INFO_KLASS;
4212                 else
4213                         rgctx_info = MONO_RGCTX_INFO_VTABLE;
4214                 data = emit_get_rgctx_klass (cfg, context_used, klass, rgctx_info);
4215
4216                 if (cfg->opt & MONO_OPT_SHARED) {
4217                         EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
4218                         iargs [1] = data;
4219                         alloc_ftn = ves_icall_object_new;
4220                 } else {
4221                         iargs [0] = data;
4222                         alloc_ftn = ves_icall_object_new_specific;
4223                 }
4224
4225                 if (managed_alloc && !(cfg->opt & MONO_OPT_SHARED)) {
4226                         if (known_instance_size) {
4227                                 int size = mono_class_instance_size (klass);
4228                                 if (size < sizeof (MonoObject))
4229                                         g_error ("Invalid size %d for class %s", size, mono_type_get_full_name (klass));
4230
4231                                 EMIT_NEW_ICONST (cfg, iargs [1], size);
4232                         }
4233                         return mono_emit_method_call (cfg, managed_alloc, iargs, NULL);
4234                 }
4235
4236                 return mono_emit_jit_icall (cfg, alloc_ftn, iargs);
4237         }
4238
4239         if (cfg->opt & MONO_OPT_SHARED) {
4240                 EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
4241                 EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
4242
4243                 alloc_ftn = ves_icall_object_new;
4244         } else if (cfg->compile_aot && cfg->cbb->out_of_line && klass->type_token && klass->image == mono_defaults.corlib && !klass->generic_class) {
4245                 /* This happens often in argument checking code, eg. throw new FooException... */
4246                 /* Avoid relocations and save some space by calling a helper function specialized to mscorlib */
4247                 EMIT_NEW_ICONST (cfg, iargs [0], mono_metadata_token_index (klass->type_token));
4248                 return mono_emit_jit_icall (cfg, mono_helper_newobj_mscorlib, iargs);
4249         } else {
4250                 MonoVTable *vtable = mono_class_vtable (cfg->domain, klass);
4251                 MonoMethod *managed_alloc = NULL;
4252                 gboolean pass_lw;
4253
4254                 if (!vtable) {
4255                         mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD);
4256                         cfg->exception_ptr = klass;
4257                         return NULL;
4258                 }
4259
4260                 managed_alloc = mono_gc_get_managed_allocator (klass, for_box, TRUE);
4261
4262                 if (managed_alloc) {
4263                         int size = mono_class_instance_size (klass);
4264                         if (size < sizeof (MonoObject))
4265                                 g_error ("Invalid size %d for class %s", size, mono_type_get_full_name (klass));
4266
4267                         EMIT_NEW_VTABLECONST (cfg, iargs [0], vtable);
4268                         EMIT_NEW_ICONST (cfg, iargs [1], size);
4269                         return mono_emit_method_call (cfg, managed_alloc, iargs, NULL);
4270                 }
4271                 alloc_ftn = mono_class_get_allocation_ftn (vtable, for_box, &pass_lw);
4272                 if (pass_lw) {
4273                         guint32 lw = vtable->klass->instance_size;
4274                         lw = ((lw + (sizeof (gpointer) - 1)) & ~(sizeof (gpointer) - 1)) / sizeof (gpointer);
4275                         EMIT_NEW_ICONST (cfg, iargs [0], lw);
4276                         EMIT_NEW_VTABLECONST (cfg, iargs [1], vtable);
4277                 }
4278                 else {
4279                         EMIT_NEW_VTABLECONST (cfg, iargs [0], vtable);
4280                 }
4281         }
4282
4283         return mono_emit_jit_icall (cfg, alloc_ftn, iargs);
4284 }
4285         
4286 /*
4287  * Returns NULL and set the cfg exception on error.
4288  */     
4289 static MonoInst*
4290 handle_box (MonoCompile *cfg, MonoInst *val, MonoClass *klass, int context_used)
4291 {
4292         MonoInst *alloc, *ins;
4293
4294         if (mono_class_is_nullable (klass)) {
4295                 MonoMethod* method = mono_class_get_method_from_name (klass, "Box", 1);
4296
4297                 if (context_used) {
4298                         if (cfg->llvm_only && cfg->gsharedvt) {
4299                                 MonoInst *addr = emit_get_rgctx_method (cfg, context_used, method,
4300                                                                                                                 MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
4301                                 return emit_llvmonly_calli (cfg, mono_method_signature (method), &val, addr);
4302                         } else {
4303                                 /* FIXME: What if the class is shared?  We might not
4304                                    have to get the method address from the RGCTX. */
4305                                 MonoInst *addr = emit_get_rgctx_method (cfg, context_used, method,
4306                                                                                                                 MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
4307                                 MonoInst *rgctx = emit_get_rgctx (cfg, cfg->current_method, context_used);
4308
4309                                 return mono_emit_calli (cfg, mono_method_signature (method), &val, addr, NULL, rgctx);
4310                         }
4311                 } else {
4312                         gboolean pass_vtable, pass_mrgctx;
4313                         MonoInst *rgctx_arg = NULL;
4314
4315                         check_method_sharing (cfg, method, &pass_vtable, &pass_mrgctx);
4316                         g_assert (!pass_mrgctx);
4317
4318                         if (pass_vtable) {
4319                                 MonoVTable *vtable = mono_class_vtable (cfg->domain, method->klass);
4320
4321                                 g_assert (vtable);
4322                                 EMIT_NEW_VTABLECONST (cfg, rgctx_arg, vtable);
4323                         }
4324
4325                         return mono_emit_method_call_full (cfg, method, NULL, FALSE, &val, NULL, NULL, rgctx_arg);
4326                 }
4327         }
4328
4329         if (mini_is_gsharedvt_klass (klass)) {
4330                 MonoBasicBlock *is_ref_bb, *is_nullable_bb, *end_bb;
4331                 MonoInst *res, *is_ref, *src_var, *addr;
4332                 int dreg;
4333
4334                 dreg = alloc_ireg (cfg);
4335
4336                 NEW_BBLOCK (cfg, is_ref_bb);
4337                 NEW_BBLOCK (cfg, is_nullable_bb);
4338                 NEW_BBLOCK (cfg, end_bb);
4339                 is_ref = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_CLASS_BOX_TYPE);
4340                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_REF);
4341                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_ref_bb);
4342
4343                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, is_ref->dreg, MONO_GSHAREDVT_BOX_TYPE_NULLABLE);
4344                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_nullable_bb);
4345
4346                 /* Non-ref case */
4347                 alloc = handle_alloc (cfg, klass, TRUE, context_used);
4348                 if (!alloc)
4349                         return NULL;
4350                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, alloc->dreg, sizeof (MonoObject), val->dreg);
4351                 ins->opcode = OP_STOREV_MEMBASE;
4352
4353                 EMIT_NEW_UNALU (cfg, res, OP_MOVE, dreg, alloc->dreg);
4354                 res->type = STACK_OBJ;
4355                 res->klass = klass;
4356                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4357                 
4358                 /* Ref case */
4359                 MONO_START_BB (cfg, is_ref_bb);
4360
4361                 /* val is a vtype, so has to load the value manually */
4362                 src_var = get_vreg_to_inst (cfg, val->dreg);
4363                 if (!src_var)
4364                         src_var = mono_compile_create_var_for_vreg (cfg, &klass->byval_arg, OP_LOCAL, val->dreg);
4365                 EMIT_NEW_VARLOADA (cfg, addr, src_var, src_var->inst_vtype);
4366                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, addr->dreg, 0);
4367                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4368
4369                 /* Nullable case */
4370                 MONO_START_BB (cfg, is_nullable_bb);
4371
4372                 {
4373                         MonoInst *addr = emit_get_gsharedvt_info_klass (cfg, klass,
4374                                                                                                         MONO_RGCTX_INFO_NULLABLE_CLASS_BOX);
4375                         MonoInst *box_call;
4376                         MonoMethodSignature *box_sig;
4377
4378                         /*
4379                          * klass is Nullable<T>, need to call Nullable<T>.Box () using a gsharedvt signature, but we cannot
4380                          * construct that method at JIT time, so have to do things by hand.
4381                          */
4382                         box_sig = (MonoMethodSignature *)mono_mempool_alloc0 (cfg->mempool, MONO_SIZEOF_METHOD_SIGNATURE + (1 * sizeof (MonoType *)));
4383                         box_sig->ret = &mono_defaults.object_class->byval_arg;
4384                         box_sig->param_count = 1;
4385                         box_sig->params [0] = &klass->byval_arg;
4386
4387                         if (cfg->llvm_only)
4388                                 box_call = emit_llvmonly_calli (cfg, box_sig, &val, addr);
4389                         else
4390                                 box_call = mono_emit_calli (cfg, box_sig, &val, addr, NULL, NULL);
4391                         EMIT_NEW_UNALU (cfg, res, OP_MOVE, dreg, box_call->dreg);
4392                         res->type = STACK_OBJ;
4393                         res->klass = klass;
4394                 }
4395
4396                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4397
4398                 MONO_START_BB (cfg, end_bb);
4399
4400                 return res;
4401         } else {
4402                 alloc = handle_alloc (cfg, klass, TRUE, context_used);
4403                 if (!alloc)
4404                         return NULL;
4405
4406                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, alloc->dreg, sizeof (MonoObject), val->dreg);
4407                 return alloc;
4408         }
4409 }
4410
4411 static gboolean
4412 mini_class_has_reference_variant_generic_argument (MonoCompile *cfg, MonoClass *klass, int context_used)
4413 {
4414         int i;
4415         MonoGenericContainer *container;
4416         MonoGenericInst *ginst;
4417
4418         if (klass->generic_class) {
4419                 container = klass->generic_class->container_class->generic_container;
4420                 ginst = klass->generic_class->context.class_inst;
4421         } else if (klass->generic_container && context_used) {
4422                 container = klass->generic_container;
4423                 ginst = container->context.class_inst;
4424         } else {
4425                 return FALSE;
4426         }
4427
4428         for (i = 0; i < container->type_argc; ++i) {
4429                 MonoType *type;
4430                 if (!(mono_generic_container_get_param_info (container, i)->flags & (MONO_GEN_PARAM_VARIANT|MONO_GEN_PARAM_COVARIANT)))
4431                         continue;
4432                 type = ginst->type_argv [i];
4433                 if (mini_type_is_reference (type))
4434                         return TRUE;
4435         }
4436         return FALSE;
4437 }
4438
4439 static GHashTable* direct_icall_type_hash;
4440
4441 static gboolean
4442 icall_is_direct_callable (MonoCompile *cfg, MonoMethod *cmethod)
4443 {
4444         /* LLVM on amd64 can't handle calls to non-32 bit addresses */
4445         if (!direct_icalls_enabled (cfg))
4446                 return FALSE;
4447
4448         /*
4449          * An icall is directly callable if it doesn't directly or indirectly call mono_raise_exception ().
4450          * Whitelist a few icalls for now.
4451          */
4452         if (!direct_icall_type_hash) {
4453                 GHashTable *h = g_hash_table_new (g_str_hash, g_str_equal);
4454
4455                 g_hash_table_insert (h, (char*)"Decimal", GUINT_TO_POINTER (1));
4456                 g_hash_table_insert (h, (char*)"Number", GUINT_TO_POINTER (1));
4457                 g_hash_table_insert (h, (char*)"Buffer", GUINT_TO_POINTER (1));
4458                 g_hash_table_insert (h, (char*)"Monitor", GUINT_TO_POINTER (1));
4459                 mono_memory_barrier ();
4460                 direct_icall_type_hash = h;
4461         }
4462
4463         if (cmethod->klass == mono_defaults.math_class)
4464                 return TRUE;
4465         /* No locking needed */
4466         if (cmethod->klass->image == mono_defaults.corlib && g_hash_table_lookup (direct_icall_type_hash, cmethod->klass->name))
4467                 return TRUE;
4468         return FALSE;
4469 }
4470
4471 #define is_complex_isinst(klass) ((klass->flags & TYPE_ATTRIBUTE_INTERFACE) || klass->rank || mono_class_is_nullable (klass) || mono_class_is_marshalbyref (klass) || (klass->flags & TYPE_ATTRIBUTE_SEALED) || klass->byval_arg.type == MONO_TYPE_VAR || klass->byval_arg.type == MONO_TYPE_MVAR)
4472
4473 static MonoInst*
4474 emit_isinst_with_cache (MonoCompile *cfg, MonoClass *klass, MonoInst **args)
4475 {
4476         MonoMethod *mono_isinst = mono_marshal_get_isinst_with_cache ();
4477         return mono_emit_method_call (cfg, mono_isinst, args, NULL);
4478 }
4479
4480 static MonoInst*
4481 emit_castclass_with_cache (MonoCompile *cfg, MonoClass *klass, MonoInst **args)
4482 {
4483         MonoMethod *mono_castclass = mono_marshal_get_castclass_with_cache ();
4484         MonoInst *res;
4485
4486         save_cast_details (cfg, klass, args [0]->dreg, TRUE);
4487         res = mono_emit_method_call (cfg, mono_castclass, args, NULL);
4488         reset_cast_details (cfg);
4489
4490         return res;
4491 }
4492
4493 static int
4494 get_castclass_cache_idx (MonoCompile *cfg)
4495 {
4496         /* Each CASTCLASS_CACHE patch needs a unique index which identifies the call site */
4497         cfg->castclass_cache_index ++;
4498         return (cfg->method_index << 16) | cfg->castclass_cache_index;
4499 }
4500
4501
4502 static MonoInst*
4503 emit_isinst_with_cache_nonshared (MonoCompile *cfg, MonoInst *obj, MonoClass *klass)
4504 {
4505         MonoInst *args [3];
4506         int idx;
4507
4508         args [0] = obj; /* obj */
4509         EMIT_NEW_CLASSCONST (cfg, args [1], klass); /* klass */
4510
4511         idx = get_castclass_cache_idx (cfg); /* inline cache*/
4512         args [2] = emit_runtime_constant (cfg, MONO_PATCH_INFO_CASTCLASS_CACHE, GINT_TO_POINTER (idx));
4513
4514         return emit_isinst_with_cache (cfg, klass, args);
4515 }
4516
4517 static MonoInst*
4518 emit_castclass_with_cache_nonshared (MonoCompile *cfg, MonoInst *obj, MonoClass *klass)
4519 {
4520         MonoInst *args [3];
4521         int idx;
4522
4523         /* obj */
4524         args [0] = obj;
4525
4526         /* klass */
4527         EMIT_NEW_CLASSCONST (cfg, args [1], klass);
4528
4529         /* inline cache*/
4530         idx = get_castclass_cache_idx (cfg);
4531         args [2] = emit_runtime_constant (cfg, MONO_PATCH_INFO_CASTCLASS_CACHE, GINT_TO_POINTER (idx));
4532
4533         /*The wrapper doesn't inline well so the bloat of inlining doesn't pay off.*/
4534         return emit_castclass_with_cache (cfg, klass, args);
4535 }
4536
4537 /*
4538  * Returns NULL and set the cfg exception on error.
4539  */
4540 static MonoInst*
4541 handle_castclass (MonoCompile *cfg, MonoClass *klass, MonoInst *src, int context_used)
4542 {
4543         MonoBasicBlock *is_null_bb;
4544         int obj_reg = src->dreg;
4545         int vtable_reg = alloc_preg (cfg);
4546         MonoInst *klass_inst = NULL;
4547
4548         if (src->opcode == OP_PCONST && src->inst_p0 == 0)
4549                 return src;
4550
4551         if (context_used) {
4552                 MonoInst *args [3];
4553
4554                 if (mini_class_has_reference_variant_generic_argument (cfg, klass, context_used) || is_complex_isinst (klass)) {
4555                         MonoInst *cache_ins;
4556
4557                         cache_ins = emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_CAST_CACHE);
4558
4559                         /* obj */
4560                         args [0] = src;
4561
4562                         /* klass - it's the second element of the cache entry*/
4563                         EMIT_NEW_LOAD_MEMBASE (cfg, args [1], OP_LOAD_MEMBASE, alloc_preg (cfg), cache_ins->dreg, sizeof (gpointer));
4564
4565                         /* cache */
4566                         args [2] = cache_ins;
4567
4568                         return emit_castclass_with_cache (cfg, klass, args);
4569                 }
4570
4571                 klass_inst = emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
4572         }
4573
4574         NEW_BBLOCK (cfg, is_null_bb);
4575
4576         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, obj_reg, 0);
4577         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, is_null_bb);
4578
4579         save_cast_details (cfg, klass, obj_reg, FALSE);
4580
4581         if (klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
4582                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, vtable_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4583                 mini_emit_iface_cast (cfg, vtable_reg, klass, NULL, NULL);
4584         } else {
4585                 int klass_reg = alloc_preg (cfg);
4586
4587                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, vtable_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4588
4589                 if (!klass->rank && !cfg->compile_aot && !(cfg->opt & MONO_OPT_SHARED) && (klass->flags & TYPE_ATTRIBUTE_SEALED)) {
4590                         /* the remoting code is broken, access the class for now */
4591                         if (0) { /*FIXME what exactly is broken? This change refers to r39380 from 2005 and mention some remoting fixes were due.*/
4592                                 MonoVTable *vt = mono_class_vtable (cfg->domain, klass);
4593                                 if (!vt) {
4594                                         mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD);
4595                                         cfg->exception_ptr = klass;
4596                                         return NULL;
4597                                 }
4598                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, vtable_reg, vt);
4599                         } else {
4600                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4601                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, klass_reg, klass);
4602                         }
4603                         MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
4604                 } else {
4605                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4606                         mini_emit_castclass_inst (cfg, obj_reg, klass_reg, klass, klass_inst, is_null_bb);
4607                 }
4608         }
4609
4610         MONO_START_BB (cfg, is_null_bb);
4611
4612         reset_cast_details (cfg);
4613
4614         return src;
4615 }
4616
4617 /*
4618  * Returns NULL and set the cfg exception on error.
4619  */
4620 static MonoInst*
4621 handle_isinst (MonoCompile *cfg, MonoClass *klass, MonoInst *src, int context_used)
4622 {
4623         MonoInst *ins;
4624         MonoBasicBlock *is_null_bb, *false_bb, *end_bb;
4625         int obj_reg = src->dreg;
4626         int vtable_reg = alloc_preg (cfg);
4627         int res_reg = alloc_ireg_ref (cfg);
4628         MonoInst *klass_inst = NULL;
4629
4630         if (context_used) {
4631                 MonoInst *args [3];
4632
4633                 if(mini_class_has_reference_variant_generic_argument (cfg, klass, context_used) || is_complex_isinst (klass)) {
4634                         MonoInst *cache_ins = emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_CAST_CACHE);
4635
4636                         args [0] = src; /* obj */
4637
4638                         /* klass - it's the second element of the cache entry*/
4639                         EMIT_NEW_LOAD_MEMBASE (cfg, args [1], OP_LOAD_MEMBASE, alloc_preg (cfg), cache_ins->dreg, sizeof (gpointer));
4640
4641                         args [2] = cache_ins; /* cache */
4642                         return emit_isinst_with_cache (cfg, klass, args);
4643                 }
4644
4645                 klass_inst = emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
4646         }
4647
4648         NEW_BBLOCK (cfg, is_null_bb);
4649         NEW_BBLOCK (cfg, false_bb);
4650         NEW_BBLOCK (cfg, end_bb);
4651
4652         /* Do the assignment at the beginning, so the other assignment can be if converted */
4653         EMIT_NEW_UNALU (cfg, ins, OP_MOVE, res_reg, obj_reg);
4654         ins->type = STACK_OBJ;
4655         ins->klass = klass;
4656
4657         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, obj_reg, 0);
4658         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_null_bb);
4659
4660         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, vtable_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4661
4662         if (klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
4663                 g_assert (!context_used);
4664                 /* the is_null_bb target simply copies the input register to the output */
4665                 mini_emit_iface_cast (cfg, vtable_reg, klass, false_bb, is_null_bb);
4666         } else {
4667                 int klass_reg = alloc_preg (cfg);
4668
4669                 if (klass->rank) {
4670                         int rank_reg = alloc_preg (cfg);
4671                         int eclass_reg = alloc_preg (cfg);
4672
4673                         g_assert (!context_used);
4674                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, rank_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, rank));
4675                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, rank_reg, klass->rank);
4676                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, false_bb);
4677                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4678                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, eclass_reg, klass_reg, MONO_STRUCT_OFFSET (MonoClass, cast_class));
4679                         if (klass->cast_class == mono_defaults.object_class) {
4680                                 int parent_reg = alloc_preg (cfg);
4681                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, parent_reg, eclass_reg, MONO_STRUCT_OFFSET (MonoClass, parent));
4682                                 mini_emit_class_check_branch (cfg, parent_reg, mono_defaults.enum_class->parent, OP_PBNE_UN, is_null_bb);
4683                                 mini_emit_class_check_branch (cfg, eclass_reg, mono_defaults.enum_class, OP_PBEQ, is_null_bb);
4684                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, false_bb);
4685                         } else if (klass->cast_class == mono_defaults.enum_class->parent) {
4686                                 mini_emit_class_check_branch (cfg, eclass_reg, mono_defaults.enum_class->parent, OP_PBEQ, is_null_bb);
4687                                 mini_emit_class_check_branch (cfg, eclass_reg, mono_defaults.enum_class, OP_PBEQ, is_null_bb);                          
4688                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, false_bb);
4689                         } else if (klass->cast_class == mono_defaults.enum_class) {
4690                                 mini_emit_class_check_branch (cfg, eclass_reg, mono_defaults.enum_class, OP_PBEQ, is_null_bb);
4691                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, false_bb);
4692                         } else if (klass->cast_class->flags & TYPE_ATTRIBUTE_INTERFACE) {
4693                                 mini_emit_iface_class_cast (cfg, eclass_reg, klass->cast_class, false_bb, is_null_bb);
4694                         } else {
4695                                 if ((klass->rank == 1) && (klass->byval_arg.type == MONO_TYPE_SZARRAY)) {
4696                                         /* Check that the object is a vector too */
4697                                         int bounds_reg = alloc_preg (cfg);
4698                                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, bounds_reg, obj_reg, MONO_STRUCT_OFFSET (MonoArray, bounds));
4699                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, bounds_reg, 0);
4700                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, false_bb);
4701                                 }
4702
4703                                 /* the is_null_bb target simply copies the input register to the output */
4704                                 mini_emit_isninst_cast (cfg, eclass_reg, klass->cast_class, false_bb, is_null_bb);
4705                         }
4706                 } else if (mono_class_is_nullable (klass)) {
4707                         g_assert (!context_used);
4708                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4709                         /* the is_null_bb target simply copies the input register to the output */
4710                         mini_emit_isninst_cast (cfg, klass_reg, klass->cast_class, false_bb, is_null_bb);
4711                 } else {
4712                         if (!cfg->compile_aot && !(cfg->opt & MONO_OPT_SHARED) && (klass->flags & TYPE_ATTRIBUTE_SEALED)) {
4713                                 g_assert (!context_used);
4714                                 /* the remoting code is broken, access the class for now */
4715                                 if (0) {/*FIXME what exactly is broken? This change refers to r39380 from 2005 and mention some remoting fixes were due.*/
4716                                         MonoVTable *vt = mono_class_vtable (cfg->domain, klass);
4717                                         if (!vt) {
4718                                                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_TYPE_LOAD);
4719                                                 cfg->exception_ptr = klass;
4720                                                 return NULL;
4721                                         }
4722                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, vtable_reg, vt);
4723                                 } else {
4724                                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4725                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, klass_reg, klass);
4726                                 }
4727                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, false_bb);
4728                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, is_null_bb);
4729                         } else {
4730                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4731                                 /* the is_null_bb target simply copies the input register to the output */
4732                                 mini_emit_isninst_cast_inst (cfg, klass_reg, klass, klass_inst, false_bb, is_null_bb);
4733                         }
4734                 }
4735         }
4736
4737         MONO_START_BB (cfg, false_bb);
4738
4739         MONO_EMIT_NEW_PCONST (cfg, res_reg, 0);
4740         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4741
4742         MONO_START_BB (cfg, is_null_bb);
4743
4744         MONO_START_BB (cfg, end_bb);
4745
4746         return ins;
4747 }
4748
4749 static MonoInst*
4750 handle_cisinst (MonoCompile *cfg, MonoClass *klass, MonoInst *src)
4751 {
4752         /* This opcode takes as input an object reference and a class, and returns:
4753         0) if the object is an instance of the class,
4754         1) if the object is not instance of the class,
4755         2) if the object is a proxy whose type cannot be determined */
4756
4757         MonoInst *ins;
4758 #ifndef DISABLE_REMOTING
4759         MonoBasicBlock *true_bb, *false_bb, *false2_bb, *end_bb, *no_proxy_bb, *interface_fail_bb;
4760 #else
4761         MonoBasicBlock *true_bb, *false_bb, *end_bb;
4762 #endif
4763         int obj_reg = src->dreg;
4764         int dreg = alloc_ireg (cfg);
4765         int tmp_reg;
4766 #ifndef DISABLE_REMOTING
4767         int klass_reg = alloc_preg (cfg);
4768 #endif
4769
4770         NEW_BBLOCK (cfg, true_bb);
4771         NEW_BBLOCK (cfg, false_bb);
4772         NEW_BBLOCK (cfg, end_bb);
4773 #ifndef DISABLE_REMOTING
4774         NEW_BBLOCK (cfg, false2_bb);
4775         NEW_BBLOCK (cfg, no_proxy_bb);
4776 #endif
4777
4778         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, obj_reg, 0);
4779         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, false_bb);
4780
4781         if (klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
4782 #ifndef DISABLE_REMOTING
4783                 NEW_BBLOCK (cfg, interface_fail_bb);
4784 #endif
4785
4786                 tmp_reg = alloc_preg (cfg);
4787                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4788 #ifndef DISABLE_REMOTING
4789                 mini_emit_iface_cast (cfg, tmp_reg, klass, interface_fail_bb, true_bb);
4790                 MONO_START_BB (cfg, interface_fail_bb);
4791                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, tmp_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4792                 
4793                 mini_emit_class_check_branch (cfg, klass_reg, mono_defaults.transparent_proxy_class, OP_PBNE_UN, false_bb);
4794
4795                 tmp_reg = alloc_preg (cfg);
4796                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoTransparentProxy, custom_type_info));
4797                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, tmp_reg, 0);
4798                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, false2_bb);                
4799 #else
4800                 mini_emit_iface_cast (cfg, tmp_reg, klass, false_bb, true_bb);
4801 #endif
4802         } else {
4803 #ifndef DISABLE_REMOTING
4804                 tmp_reg = alloc_preg (cfg);
4805                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4806                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, tmp_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4807
4808                 mini_emit_class_check_branch (cfg, klass_reg, mono_defaults.transparent_proxy_class, OP_PBNE_UN, no_proxy_bb);          
4809                 tmp_reg = alloc_preg (cfg);
4810                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoTransparentProxy, remote_class));
4811                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, tmp_reg, MONO_STRUCT_OFFSET (MonoRemoteClass, proxy_class));
4812
4813                 tmp_reg = alloc_preg (cfg);             
4814                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoTransparentProxy, custom_type_info));
4815                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, tmp_reg, 0);
4816                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, no_proxy_bb);
4817                 
4818                 mini_emit_isninst_cast (cfg, klass_reg, klass, false2_bb, true_bb);
4819                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, false2_bb);
4820
4821                 MONO_START_BB (cfg, no_proxy_bb);
4822
4823                 mini_emit_isninst_cast (cfg, klass_reg, klass, false_bb, true_bb);
4824 #else
4825                 g_error ("transparent proxy support is disabled while trying to JIT code that uses it");
4826 #endif
4827         }
4828
4829         MONO_START_BB (cfg, false_bb);
4830
4831         MONO_EMIT_NEW_ICONST (cfg, dreg, 1);
4832         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4833
4834 #ifndef DISABLE_REMOTING
4835         MONO_START_BB (cfg, false2_bb);
4836
4837         MONO_EMIT_NEW_ICONST (cfg, dreg, 2);
4838         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4839 #endif
4840
4841         MONO_START_BB (cfg, true_bb);
4842
4843         MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
4844
4845         MONO_START_BB (cfg, end_bb);
4846
4847         /* FIXME: */
4848         MONO_INST_NEW (cfg, ins, OP_ICONST);
4849         ins->dreg = dreg;
4850         ins->type = STACK_I4;
4851
4852         return ins;
4853 }
4854
4855 static MonoInst*
4856 handle_ccastclass (MonoCompile *cfg, MonoClass *klass, MonoInst *src)
4857 {
4858         /* This opcode takes as input an object reference and a class, and returns:
4859         0) if the object is an instance of the class,
4860         1) if the object is a proxy whose type cannot be determined
4861         an InvalidCastException exception is thrown otherwhise*/
4862         
4863         MonoInst *ins;
4864 #ifndef DISABLE_REMOTING
4865         MonoBasicBlock *end_bb, *ok_result_bb, *no_proxy_bb, *interface_fail_bb, *fail_1_bb;
4866 #else
4867         MonoBasicBlock *ok_result_bb;
4868 #endif
4869         int obj_reg = src->dreg;
4870         int dreg = alloc_ireg (cfg);
4871         int tmp_reg = alloc_preg (cfg);
4872
4873 #ifndef DISABLE_REMOTING
4874         int klass_reg = alloc_preg (cfg);
4875         NEW_BBLOCK (cfg, end_bb);
4876 #endif
4877
4878         NEW_BBLOCK (cfg, ok_result_bb);
4879
4880         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, obj_reg, 0);
4881         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, ok_result_bb);
4882
4883         save_cast_details (cfg, klass, obj_reg, FALSE);
4884
4885         if (klass->flags & TYPE_ATTRIBUTE_INTERFACE) {
4886 #ifndef DISABLE_REMOTING
4887                 NEW_BBLOCK (cfg, interface_fail_bb);
4888         
4889                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4890                 mini_emit_iface_cast (cfg, tmp_reg, klass, interface_fail_bb, ok_result_bb);
4891                 MONO_START_BB (cfg, interface_fail_bb);
4892                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, tmp_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4893
4894                 mini_emit_class_check (cfg, klass_reg, mono_defaults.transparent_proxy_class);
4895
4896                 tmp_reg = alloc_preg (cfg);             
4897                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoTransparentProxy, custom_type_info));
4898                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, tmp_reg, 0);
4899                 MONO_EMIT_NEW_COND_EXC (cfg, EQ, "InvalidCastException");
4900                 
4901                 MONO_EMIT_NEW_ICONST (cfg, dreg, 1);
4902                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4903 #else
4904                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4905                 mini_emit_iface_cast (cfg, tmp_reg, klass, NULL, NULL);
4906                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, ok_result_bb);
4907 #endif
4908         } else {
4909 #ifndef DISABLE_REMOTING
4910                 NEW_BBLOCK (cfg, no_proxy_bb);
4911
4912                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
4913                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, tmp_reg, MONO_STRUCT_OFFSET (MonoVTable, klass));
4914                 mini_emit_class_check_branch (cfg, klass_reg, mono_defaults.transparent_proxy_class, OP_PBNE_UN, no_proxy_bb);          
4915
4916                 tmp_reg = alloc_preg (cfg);
4917                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoTransparentProxy, remote_class));
4918                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, tmp_reg, MONO_STRUCT_OFFSET (MonoRemoteClass, proxy_class));
4919
4920                 tmp_reg = alloc_preg (cfg);
4921                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, tmp_reg, obj_reg, MONO_STRUCT_OFFSET (MonoTransparentProxy, custom_type_info));
4922                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, tmp_reg, 0);
4923                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, no_proxy_bb);
4924
4925                 NEW_BBLOCK (cfg, fail_1_bb);
4926                 
4927                 mini_emit_isninst_cast (cfg, klass_reg, klass, fail_1_bb, ok_result_bb);
4928
4929                 MONO_START_BB (cfg, fail_1_bb);
4930
4931                 MONO_EMIT_NEW_ICONST (cfg, dreg, 1);
4932                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
4933
4934                 MONO_START_BB (cfg, no_proxy_bb);
4935
4936                 mini_emit_castclass (cfg, obj_reg, klass_reg, klass, ok_result_bb);
4937 #else
4938                 g_error ("Transparent proxy support is disabled while trying to JIT code that uses it");
4939 #endif
4940         }
4941
4942         MONO_START_BB (cfg, ok_result_bb);
4943
4944         MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
4945
4946 #ifndef DISABLE_REMOTING
4947         MONO_START_BB (cfg, end_bb);
4948 #endif
4949
4950         /* FIXME: */
4951         MONO_INST_NEW (cfg, ins, OP_ICONST);
4952         ins->dreg = dreg;
4953         ins->type = STACK_I4;
4954
4955         return ins;
4956 }
4957
4958 static G_GNUC_UNUSED MonoInst*
4959 handle_enum_has_flag (MonoCompile *cfg, MonoClass *klass, MonoInst *enum_this, MonoInst *enum_flag)
4960 {
4961         MonoType *enum_type = mono_type_get_underlying_type (&klass->byval_arg);
4962         guint32 load_opc = mono_type_to_load_membase (cfg, enum_type);
4963         gboolean is_i4;
4964
4965         switch (enum_type->type) {
4966         case MONO_TYPE_I8:
4967         case MONO_TYPE_U8:
4968 #if SIZEOF_REGISTER == 8
4969         case MONO_TYPE_I:
4970         case MONO_TYPE_U:
4971 #endif
4972                 is_i4 = FALSE;
4973                 break;
4974         default:
4975                 is_i4 = TRUE;
4976                 break;
4977         }
4978
4979         {
4980                 MonoInst *load, *and_, *cmp, *ceq;
4981                 int enum_reg = is_i4 ? alloc_ireg (cfg) : alloc_lreg (cfg);
4982                 int and_reg = is_i4 ? alloc_ireg (cfg) : alloc_lreg (cfg);
4983                 int dest_reg = alloc_ireg (cfg);
4984
4985                 EMIT_NEW_LOAD_MEMBASE (cfg, load, load_opc, enum_reg, enum_this->dreg, 0);
4986                 EMIT_NEW_BIALU (cfg, and_, is_i4 ? OP_IAND : OP_LAND, and_reg, enum_reg, enum_flag->dreg);
4987                 EMIT_NEW_BIALU (cfg, cmp, is_i4 ? OP_ICOMPARE : OP_LCOMPARE, -1, and_reg, enum_flag->dreg);
4988                 EMIT_NEW_UNALU (cfg, ceq, is_i4 ? OP_ICEQ : OP_LCEQ, dest_reg, -1);
4989
4990                 ceq->type = STACK_I4;
4991
4992                 if (!is_i4) {
4993                         load = mono_decompose_opcode (cfg, load);
4994                         and_ = mono_decompose_opcode (cfg, and_);
4995                         cmp = mono_decompose_opcode (cfg, cmp);
4996                         ceq = mono_decompose_opcode (cfg, ceq);
4997                 }
4998
4999                 return ceq;
5000         }
5001 }
5002
5003 /*
5004  * Returns NULL and set the cfg exception on error.
5005  */
5006 static G_GNUC_UNUSED MonoInst*
5007 handle_delegate_ctor (MonoCompile *cfg, MonoClass *klass, MonoInst *target, MonoMethod *method, int context_used, gboolean virtual_)
5008 {
5009         MonoInst *ptr;
5010         int dreg;
5011         gpointer trampoline;
5012         MonoInst *obj, *method_ins, *tramp_ins;
5013         MonoDomain *domain;
5014         guint8 **code_slot;
5015
5016         if (virtual_ && !cfg->llvm_only) {
5017                 MonoMethod *invoke = mono_get_delegate_invoke (klass);
5018                 g_assert (invoke);
5019
5020                 if (!mono_get_delegate_virtual_invoke_impl (mono_method_signature (invoke), context_used ? NULL : method))
5021                         return NULL;
5022         }
5023
5024         obj = handle_alloc (cfg, klass, FALSE, mono_class_check_context_used (klass));
5025         if (!obj)
5026                 return NULL;
5027
5028         /* Inline the contents of mono_delegate_ctor */
5029
5030         /* Set target field */
5031         /* Optimize away setting of NULL target */
5032         if (!(target->opcode == OP_PCONST && target->inst_p0 == 0)) {
5033                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, target), target->dreg);
5034                 if (cfg->gen_write_barriers) {
5035                         dreg = alloc_preg (cfg);
5036                         EMIT_NEW_BIALU_IMM (cfg, ptr, OP_PADD_IMM, dreg, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, target));
5037                         emit_write_barrier (cfg, ptr, target);
5038                 }
5039         }
5040
5041         /* Set method field */
5042         method_ins = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_METHOD);
5043         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method), method_ins->dreg);
5044
5045         /* 
5046          * To avoid looking up the compiled code belonging to the target method
5047          * in mono_delegate_trampoline (), we allocate a per-domain memory slot to
5048          * store it, and we fill it after the method has been compiled.
5049          */
5050         if (!method->dynamic && !(cfg->opt & MONO_OPT_SHARED)) {
5051                 MonoInst *code_slot_ins;
5052
5053                 if (context_used) {
5054                         code_slot_ins = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_METHOD_DELEGATE_CODE);
5055                 } else {
5056                         domain = mono_domain_get ();
5057                         mono_domain_lock (domain);
5058                         if (!domain_jit_info (domain)->method_code_hash)
5059                                 domain_jit_info (domain)->method_code_hash = g_hash_table_new (NULL, NULL);
5060                         code_slot = (guint8 **)g_hash_table_lookup (domain_jit_info (domain)->method_code_hash, method);
5061                         if (!code_slot) {
5062                                 code_slot = (guint8 **)mono_domain_alloc0 (domain, sizeof (gpointer));
5063                                 g_hash_table_insert (domain_jit_info (domain)->method_code_hash, method, code_slot);
5064                         }
5065                         mono_domain_unlock (domain);
5066
5067                         code_slot_ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_METHOD_CODE_SLOT, method);
5068                 }
5069                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method_code), code_slot_ins->dreg);                
5070         }
5071
5072         if (cfg->llvm_only) {
5073                 MonoInst *args [16];
5074
5075                 if (virtual_) {
5076                         args [0] = obj;
5077                         args [1] = target;
5078                         args [2] = emit_get_rgctx_method (cfg, context_used, method, MONO_RGCTX_INFO_METHOD);
5079                         mono_emit_jit_icall (cfg, mono_llvmonly_init_delegate_virtual, args);
5080                 } else {
5081                         args [0] = obj;
5082                         mono_emit_jit_icall (cfg, mono_llvmonly_init_delegate, args);
5083                 }
5084
5085                 return obj;
5086         }
5087
5088         if (cfg->compile_aot) {
5089                 MonoDelegateClassMethodPair *del_tramp;
5090
5091                 del_tramp = (MonoDelegateClassMethodPair *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoDelegateClassMethodPair));
5092                 del_tramp->klass = klass;
5093                 del_tramp->method = context_used ? NULL : method;
5094                 del_tramp->is_virtual = virtual_;
5095                 EMIT_NEW_AOTCONST (cfg, tramp_ins, MONO_PATCH_INFO_DELEGATE_TRAMPOLINE, del_tramp);
5096         } else {
5097                 if (virtual_)
5098                         trampoline = mono_create_delegate_virtual_trampoline (cfg->domain, klass, context_used ? NULL : method);
5099                 else
5100                         trampoline = mono_create_delegate_trampoline_info (cfg->domain, klass, context_used ? NULL : method);
5101                 EMIT_NEW_PCONST (cfg, tramp_ins, trampoline);
5102         }
5103
5104         /* Set invoke_impl field */
5105         if (virtual_) {
5106                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, invoke_impl), tramp_ins->dreg);
5107         } else {
5108                 dreg = alloc_preg (cfg);
5109                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, tramp_ins->dreg, MONO_STRUCT_OFFSET (MonoDelegateTrampInfo, invoke_impl));
5110                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, invoke_impl), dreg);
5111
5112                 dreg = alloc_preg (cfg);
5113                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, tramp_ins->dreg, MONO_STRUCT_OFFSET (MonoDelegateTrampInfo, method_ptr));
5114                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr), dreg);
5115         }
5116
5117         dreg = alloc_preg (cfg);
5118         MONO_EMIT_NEW_ICONST (cfg, dreg, virtual_ ? 1 : 0);
5119         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, obj->dreg, MONO_STRUCT_OFFSET (MonoDelegate, method_is_virtual), dreg);
5120
5121         /* All the checks which are in mono_delegate_ctor () are done by the delegate trampoline */
5122
5123         return obj;
5124 }
5125
5126 static MonoInst*
5127 handle_array_new (MonoCompile *cfg, int rank, MonoInst **sp, unsigned char *ip)
5128 {
5129         MonoJitICallInfo *info;
5130
5131         /* Need to register the icall so it gets an icall wrapper */
5132         info = mono_get_array_new_va_icall (rank);
5133
5134         cfg->flags |= MONO_CFG_HAS_VARARGS;
5135
5136         /* mono_array_new_va () needs a vararg calling convention */
5137         cfg->exception_message = g_strdup ("array-new");
5138         cfg->disable_llvm = TRUE;
5139
5140         /* FIXME: This uses info->sig, but it should use the signature of the wrapper */
5141         return mono_emit_native_call (cfg, mono_icall_get_wrapper (info), info->sig, sp);
5142 }
5143
5144 /*
5145  * handle_constrained_gsharedvt_call:
5146  *
5147  *   Handle constrained calls where the receiver is a gsharedvt type.
5148  * Return the instruction representing the call. Set the cfg exception on failure.
5149  */
5150 static MonoInst*
5151 handle_constrained_gsharedvt_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **sp, MonoClass *constrained_class,
5152                                                                    gboolean *ref_emit_widen)
5153 {
5154         MonoInst *ins = NULL;
5155         gboolean emit_widen = *ref_emit_widen;
5156
5157         /*
5158          * Constrained calls need to behave differently at runtime dependending on whenever the receiver is instantiated as ref type or as a vtype.
5159          * 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
5160          * pack the arguments into an array, and do the rest of the work in in an icall.
5161          */
5162         if (((cmethod->klass == mono_defaults.object_class) || (cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE) || (!cmethod->klass->valuetype && cmethod->klass->image != mono_defaults.corlib)) &&
5163                 (MONO_TYPE_IS_VOID (fsig->ret) || MONO_TYPE_IS_PRIMITIVE (fsig->ret) || MONO_TYPE_IS_REFERENCE (fsig->ret) || MONO_TYPE_ISSTRUCT (fsig->ret) || mini_is_gsharedvt_type (fsig->ret)) &&
5164                 (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]))))) {
5165                 MonoInst *args [16];
5166
5167                 /*
5168                  * This case handles calls to
5169                  * - object:ToString()/Equals()/GetHashCode(),
5170                  * - System.IComparable<T>:CompareTo()
5171                  * - System.IEquatable<T>:Equals ()
5172                  * plus some simple interface calls enough to support AsyncTaskMethodBuilder.
5173                  */
5174
5175                 args [0] = sp [0];
5176                 if (mono_method_check_context_used (cmethod))
5177                         args [1] = emit_get_rgctx_method (cfg, mono_method_check_context_used (cmethod), cmethod, MONO_RGCTX_INFO_METHOD);
5178                 else
5179                         EMIT_NEW_METHODCONST (cfg, args [1], cmethod);
5180                 args [2] = emit_get_rgctx_klass (cfg, mono_class_check_context_used (constrained_class), constrained_class, MONO_RGCTX_INFO_KLASS);
5181
5182                 /* !fsig->hasthis is for the wrapper for the Object.GetType () icall */
5183                 if (fsig->hasthis && fsig->param_count) {
5184                         /* Pass the arguments using a localloc-ed array using the format expected by runtime_invoke () */
5185                         MONO_INST_NEW (cfg, ins, OP_LOCALLOC_IMM);
5186                         ins->dreg = alloc_preg (cfg);
5187                         ins->inst_imm = fsig->param_count * sizeof (mgreg_t);
5188                         MONO_ADD_INS (cfg->cbb, ins);
5189                         args [4] = ins;
5190
5191                         if (mini_is_gsharedvt_type (fsig->params [0])) {
5192                                 int addr_reg, deref_arg_reg;
5193
5194                                 ins = emit_get_gsharedvt_info_klass (cfg, mono_class_from_mono_type (fsig->params [0]), MONO_RGCTX_INFO_CLASS_BOX_TYPE);
5195                                 deref_arg_reg = alloc_preg (cfg);
5196                                 /* deref_arg = BOX_TYPE != MONO_GSHAREDVT_BOX_TYPE_VTYPE */
5197                                 EMIT_NEW_BIALU_IMM (cfg, args [3], OP_ISUB_IMM, deref_arg_reg, ins->dreg, 1);
5198
5199                                 EMIT_NEW_VARLOADA_VREG (cfg, ins, sp [1]->dreg, fsig->params [0]);
5200                                 addr_reg = ins->dreg;
5201                                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, args [4]->dreg, 0, addr_reg);
5202                         } else {
5203                                 EMIT_NEW_ICONST (cfg, args [3], 0);
5204                                 EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STORE_MEMBASE_REG, args [4]->dreg, 0, sp [1]->dreg);
5205                         }
5206                 } else {
5207                         EMIT_NEW_ICONST (cfg, args [3], 0);
5208                         EMIT_NEW_ICONST (cfg, args [4], 0);
5209                 }
5210                 ins = mono_emit_jit_icall (cfg, mono_gsharedvt_constrained_call, args);
5211                 emit_widen = FALSE;
5212
5213                 if (mini_is_gsharedvt_type (fsig->ret)) {
5214                         ins = handle_unbox_gsharedvt (cfg, mono_class_from_mono_type (fsig->ret), ins);
5215                 } else if (MONO_TYPE_IS_PRIMITIVE (fsig->ret) || MONO_TYPE_ISSTRUCT (fsig->ret)) {
5216                         MonoInst *add;
5217
5218                         /* Unbox */
5219                         NEW_BIALU_IMM (cfg, add, OP_ADD_IMM, alloc_dreg (cfg, STACK_MP), ins->dreg, sizeof (MonoObject));
5220                         MONO_ADD_INS (cfg->cbb, add);
5221                         /* Load value */
5222                         NEW_LOAD_MEMBASE_TYPE (cfg, ins, fsig->ret, add->dreg, 0);
5223                         MONO_ADD_INS (cfg->cbb, ins);
5224                         /* ins represents the call result */
5225                 }
5226         } else {
5227                 GSHAREDVT_FAILURE (CEE_CALLVIRT);
5228         }
5229
5230         *ref_emit_widen = emit_widen;
5231
5232         return ins;
5233
5234  exception_exit:
5235         return NULL;
5236 }
5237
5238 static void
5239 mono_emit_load_got_addr (MonoCompile *cfg)
5240 {
5241         MonoInst *getaddr, *dummy_use;
5242
5243         if (!cfg->got_var || cfg->got_var_allocated)
5244                 return;
5245
5246         MONO_INST_NEW (cfg, getaddr, OP_LOAD_GOTADDR);
5247         getaddr->cil_code = cfg->header->code;
5248         getaddr->dreg = cfg->got_var->dreg;
5249
5250         /* Add it to the start of the first bblock */
5251         if (cfg->bb_entry->code) {
5252                 getaddr->next = cfg->bb_entry->code;
5253                 cfg->bb_entry->code = getaddr;
5254         }
5255         else
5256                 MONO_ADD_INS (cfg->bb_entry, getaddr);
5257
5258         cfg->got_var_allocated = TRUE;
5259
5260         /* 
5261          * Add a dummy use to keep the got_var alive, since real uses might
5262          * only be generated by the back ends.
5263          * Add it to end_bblock, so the variable's lifetime covers the whole
5264          * method.
5265          * It would be better to make the usage of the got var explicit in all
5266          * cases when the backend needs it (i.e. calls, throw etc.), so this
5267          * wouldn't be needed.
5268          */
5269         NEW_DUMMY_USE (cfg, dummy_use, cfg->got_var);
5270         MONO_ADD_INS (cfg->bb_exit, dummy_use);
5271 }
5272
5273 static int inline_limit;
5274 static gboolean inline_limit_inited;
5275
5276 static gboolean
5277 mono_method_check_inlining (MonoCompile *cfg, MonoMethod *method)
5278 {
5279         MonoMethodHeaderSummary header;
5280         MonoVTable *vtable;
5281 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
5282         MonoMethodSignature *sig = mono_method_signature (method);
5283         int i;
5284 #endif
5285
5286         if (cfg->disable_inline)
5287                 return FALSE;
5288         if (cfg->gshared)
5289                 return FALSE;
5290
5291         if (cfg->inline_depth > 10)
5292                 return FALSE;
5293
5294         if (!mono_method_get_header_summary (method, &header))
5295                 return FALSE;
5296
5297         /*runtime, icall and pinvoke are checked by summary call*/
5298         if ((method->iflags & METHOD_IMPL_ATTRIBUTE_NOINLINING) ||
5299             (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) ||
5300             (mono_class_is_marshalbyref (method->klass)) ||
5301             header.has_clauses)
5302                 return FALSE;
5303
5304         /* also consider num_locals? */
5305         /* Do the size check early to avoid creating vtables */
5306         if (!inline_limit_inited) {
5307                 if (g_getenv ("MONO_INLINELIMIT"))
5308                         inline_limit = atoi (g_getenv ("MONO_INLINELIMIT"));
5309                 else
5310                         inline_limit = INLINE_LENGTH_LIMIT;
5311                 inline_limit_inited = TRUE;
5312         }
5313         if (header.code_size >= inline_limit && !(method->iflags & METHOD_IMPL_ATTRIBUTE_AGGRESSIVE_INLINING))
5314                 return FALSE;
5315
5316         /*
5317          * if we can initialize the class of the method right away, we do,
5318          * otherwise we don't allow inlining if the class needs initialization,
5319          * since it would mean inserting a call to mono_runtime_class_init()
5320          * inside the inlined code
5321          */
5322         if (!(cfg->opt & MONO_OPT_SHARED)) {
5323                 /* The AggressiveInlining hint is a good excuse to force that cctor to run. */
5324                 if (method->iflags & METHOD_IMPL_ATTRIBUTE_AGGRESSIVE_INLINING) {
5325                         vtable = mono_class_vtable (cfg->domain, method->klass);
5326                         if (!vtable)
5327                                 return FALSE;
5328                         if (!cfg->compile_aot) {
5329                                 MonoError error;
5330                                 if (!mono_runtime_class_init_full (vtable, &error)) {
5331                                         mono_error_cleanup (&error);
5332                                         return FALSE;
5333                                 }
5334                         }
5335                 } else if (method->klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT) {
5336                         if (cfg->run_cctors && method->klass->has_cctor) {
5337                                 /*FIXME it would easier and lazier to just use mono_class_try_get_vtable */
5338                                 if (!method->klass->runtime_info)
5339                                         /* No vtable created yet */
5340                                         return FALSE;
5341                                 vtable = mono_class_vtable (cfg->domain, method->klass);
5342                                 if (!vtable)
5343                                         return FALSE;
5344                                 /* This makes so that inline cannot trigger */
5345                                 /* .cctors: too many apps depend on them */
5346                                 /* running with a specific order... */
5347                                 if (! vtable->initialized)
5348                                         return FALSE;
5349                                 MonoError error;
5350                                 if (!mono_runtime_class_init_full (vtable, &error)) {
5351                                         mono_error_cleanup (&error);
5352                                         return FALSE;
5353                                 }
5354                         }
5355                 } else if (mono_class_needs_cctor_run (method->klass, NULL)) {
5356                         if (!method->klass->runtime_info)
5357                                 /* No vtable created yet */
5358                                 return FALSE;
5359                         vtable = mono_class_vtable (cfg->domain, method->klass);
5360                         if (!vtable)
5361                                 return FALSE;
5362                         if (!vtable->initialized)
5363                                 return FALSE;
5364                 }
5365         } else {
5366                 /* 
5367                  * If we're compiling for shared code
5368                  * the cctor will need to be run at aot method load time, for example,
5369                  * or at the end of the compilation of the inlining method.
5370                  */
5371                 if (mono_class_needs_cctor_run (method->klass, NULL) && !((method->klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT)))
5372                         return FALSE;
5373         }
5374
5375 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
5376         if (mono_arch_is_soft_float ()) {
5377                 /* FIXME: */
5378                 if (sig->ret && sig->ret->type == MONO_TYPE_R4)
5379                         return FALSE;
5380                 for (i = 0; i < sig->param_count; ++i)
5381                         if (!sig->params [i]->byref && sig->params [i]->type == MONO_TYPE_R4)
5382                                 return FALSE;
5383         }
5384 #endif
5385
5386         if (g_list_find (cfg->dont_inline, method))
5387                 return FALSE;
5388
5389         return TRUE;
5390 }
5391
5392 static gboolean
5393 mini_field_access_needs_cctor_run (MonoCompile *cfg, MonoMethod *method, MonoClass *klass, MonoVTable *vtable)
5394 {
5395         if (!cfg->compile_aot) {
5396                 g_assert (vtable);
5397                 if (vtable->initialized)
5398                         return FALSE;
5399         }
5400
5401         if (klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT) {
5402                 if (cfg->method == method)
5403                         return FALSE;
5404         }
5405
5406         if (!mono_class_needs_cctor_run (klass, method))
5407                 return FALSE;
5408
5409         if (! (method->flags & METHOD_ATTRIBUTE_STATIC) && (klass == method->klass))
5410                 /* The initialization is already done before the method is called */
5411                 return FALSE;
5412
5413         return TRUE;
5414 }
5415
5416 static MonoInst*
5417 mini_emit_ldelema_1_ins (MonoCompile *cfg, MonoClass *klass, MonoInst *arr, MonoInst *index, gboolean bcheck)
5418 {
5419         MonoInst *ins;
5420         guint32 size;
5421         int mult_reg, add_reg, array_reg, index_reg, index2_reg;
5422         int context_used;
5423
5424         if (mini_is_gsharedvt_variable_klass (klass)) {
5425                 size = -1;
5426         } else {
5427                 mono_class_init (klass);
5428                 size = mono_class_array_element_size (klass);
5429         }
5430
5431         mult_reg = alloc_preg (cfg);
5432         array_reg = arr->dreg;
5433         index_reg = index->dreg;
5434
5435 #if SIZEOF_REGISTER == 8
5436         /* The array reg is 64 bits but the index reg is only 32 */
5437         if (COMPILE_LLVM (cfg)) {
5438                 /* Not needed */
5439                 index2_reg = index_reg;
5440         } else {
5441                 index2_reg = alloc_preg (cfg);
5442                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, index2_reg, index_reg);
5443         }
5444 #else
5445         if (index->type == STACK_I8) {
5446                 index2_reg = alloc_preg (cfg);
5447                 MONO_EMIT_NEW_UNALU (cfg, OP_LCONV_TO_I4, index2_reg, index_reg);
5448         } else {
5449                 index2_reg = index_reg;
5450         }
5451 #endif
5452
5453         if (bcheck)
5454                 MONO_EMIT_BOUNDS_CHECK (cfg, array_reg, MonoArray, max_length, index2_reg);
5455
5456 #if defined(TARGET_X86) || defined(TARGET_AMD64)
5457         if (size == 1 || size == 2 || size == 4 || size == 8) {
5458                 static const int fast_log2 [] = { 1, 0, 1, -1, 2, -1, -1, -1, 3 };
5459
5460                 EMIT_NEW_X86_LEA (cfg, ins, array_reg, index2_reg, fast_log2 [size], MONO_STRUCT_OFFSET (MonoArray, vector));
5461                 ins->klass = mono_class_get_element_class (klass);
5462                 ins->type = STACK_MP;
5463
5464                 return ins;
5465         }
5466 #endif          
5467
5468         add_reg = alloc_ireg_mp (cfg);
5469
5470         if (size == -1) {
5471                 MonoInst *rgctx_ins;
5472
5473                 /* gsharedvt */
5474                 g_assert (cfg->gshared);
5475                 context_used = mini_class_check_context_used (cfg, klass);
5476                 g_assert (context_used);
5477                 rgctx_ins = emit_get_gsharedvt_info_klass (cfg, klass, MONO_RGCTX_INFO_ARRAY_ELEMENT_SIZE);
5478                 MONO_EMIT_NEW_BIALU (cfg, OP_IMUL, mult_reg, index2_reg, rgctx_ins->dreg);
5479         } else {
5480                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_MUL_IMM, mult_reg, index2_reg, size);
5481         }
5482         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, add_reg, array_reg, mult_reg);
5483         NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, add_reg, add_reg, MONO_STRUCT_OFFSET (MonoArray, vector));
5484         ins->klass = mono_class_get_element_class (klass);
5485         ins->type = STACK_MP;
5486         MONO_ADD_INS (cfg->cbb, ins);
5487
5488         return ins;
5489 }
5490
5491 static MonoInst*
5492 mini_emit_ldelema_2_ins (MonoCompile *cfg, MonoClass *klass, MonoInst *arr, MonoInst *index_ins1, MonoInst *index_ins2)
5493 {
5494         int bounds_reg = alloc_preg (cfg);
5495         int add_reg = alloc_ireg_mp (cfg);
5496         int mult_reg = alloc_preg (cfg);
5497         int mult2_reg = alloc_preg (cfg);
5498         int low1_reg = alloc_preg (cfg);
5499         int low2_reg = alloc_preg (cfg);
5500         int high1_reg = alloc_preg (cfg);
5501         int high2_reg = alloc_preg (cfg);
5502         int realidx1_reg = alloc_preg (cfg);
5503         int realidx2_reg = alloc_preg (cfg);
5504         int sum_reg = alloc_preg (cfg);
5505         int index1, index2, tmpreg;
5506         MonoInst *ins;
5507         guint32 size;
5508
5509         mono_class_init (klass);
5510         size = mono_class_array_element_size (klass);
5511
5512         index1 = index_ins1->dreg;
5513         index2 = index_ins2->dreg;
5514
5515 #if SIZEOF_REGISTER == 8
5516         /* The array reg is 64 bits but the index reg is only 32 */
5517         if (COMPILE_LLVM (cfg)) {
5518                 /* Not needed */
5519         } else {
5520                 tmpreg = alloc_preg (cfg);
5521                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, tmpreg, index1);
5522                 index1 = tmpreg;
5523                 tmpreg = alloc_preg (cfg);
5524                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, tmpreg, index2);
5525                 index2 = tmpreg;
5526         }
5527 #else
5528         // FIXME: Do we need to do something here for i8 indexes, like in ldelema_1_ins ?
5529         tmpreg = -1;
5530 #endif
5531
5532         /* range checking */
5533         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, bounds_reg, 
5534                                        arr->dreg, MONO_STRUCT_OFFSET (MonoArray, bounds));
5535
5536         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, low1_reg, 
5537                                        bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, lower_bound));
5538         MONO_EMIT_NEW_BIALU (cfg, OP_PSUB, realidx1_reg, index1, low1_reg);
5539         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, high1_reg, 
5540                                        bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, length));
5541         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, high1_reg, realidx1_reg);
5542         MONO_EMIT_NEW_COND_EXC (cfg, LE_UN, "IndexOutOfRangeException");
5543
5544         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, low2_reg, 
5545                                        bounds_reg, sizeof (MonoArrayBounds) + MONO_STRUCT_OFFSET (MonoArrayBounds, lower_bound));
5546         MONO_EMIT_NEW_BIALU (cfg, OP_PSUB, realidx2_reg, index2, low2_reg);
5547         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, high2_reg, 
5548                                        bounds_reg, sizeof (MonoArrayBounds) + MONO_STRUCT_OFFSET (MonoArrayBounds, length));
5549         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, high2_reg, realidx2_reg);
5550         MONO_EMIT_NEW_COND_EXC (cfg, LE_UN, "IndexOutOfRangeException");
5551
5552         MONO_EMIT_NEW_BIALU (cfg, OP_PMUL, mult_reg, high2_reg, realidx1_reg);
5553         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, sum_reg, mult_reg, realidx2_reg);
5554         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PMUL_IMM, mult2_reg, sum_reg, size);
5555         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, add_reg, mult2_reg, arr->dreg);
5556         NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, add_reg, add_reg, MONO_STRUCT_OFFSET (MonoArray, vector));
5557
5558         ins->type = STACK_MP;
5559         ins->klass = klass;
5560         MONO_ADD_INS (cfg->cbb, ins);
5561
5562         return ins;
5563 }
5564
5565 static MonoInst*
5566 mini_emit_ldelema_ins (MonoCompile *cfg, MonoMethod *cmethod, MonoInst **sp, unsigned char *ip, gboolean is_set)
5567 {
5568         int rank;
5569         MonoInst *addr;
5570         MonoMethod *addr_method;
5571         int element_size;
5572         MonoClass *eclass = cmethod->klass->element_class;
5573
5574         rank = mono_method_signature (cmethod)->param_count - (is_set? 1: 0);
5575
5576         if (rank == 1)
5577                 return mini_emit_ldelema_1_ins (cfg, eclass, sp [0], sp [1], TRUE);
5578
5579         /* emit_ldelema_2 depends on OP_LMUL */
5580         if (!cfg->backend->emulate_mul_div && rank == 2 && (cfg->opt & MONO_OPT_INTRINS) && !mini_is_gsharedvt_variable_klass (eclass)) {
5581                 return mini_emit_ldelema_2_ins (cfg, eclass, sp [0], sp [1], sp [2]);
5582         }
5583
5584         if (mini_is_gsharedvt_variable_klass (eclass))
5585                 element_size = 0;
5586         else
5587                 element_size = mono_class_array_element_size (eclass);
5588         addr_method = mono_marshal_get_array_address (rank, element_size);
5589         addr = mono_emit_method_call (cfg, addr_method, sp, NULL);
5590
5591         return addr;
5592 }
5593
5594 static MonoBreakPolicy
5595 always_insert_breakpoint (MonoMethod *method)
5596 {
5597         return MONO_BREAK_POLICY_ALWAYS;
5598 }
5599
5600 static MonoBreakPolicyFunc break_policy_func = always_insert_breakpoint;
5601
5602 /**
5603  * mono_set_break_policy:
5604  * policy_callback: the new callback function
5605  *
5606  * Allow embedders to decide wherther to actually obey breakpoint instructions
5607  * (both break IL instructions and Debugger.Break () method calls), for example
5608  * to not allow an app to be aborted by a perfectly valid IL opcode when executing
5609  * untrusted or semi-trusted code.
5610  *
5611  * @policy_callback will be called every time a break point instruction needs to
5612  * be inserted with the method argument being the method that calls Debugger.Break()
5613  * or has the IL break instruction. The callback should return #MONO_BREAK_POLICY_NEVER
5614  * if it wants the breakpoint to not be effective in the given method.
5615  * #MONO_BREAK_POLICY_ALWAYS is the default.
5616  */
5617 void
5618 mono_set_break_policy (MonoBreakPolicyFunc policy_callback)
5619 {
5620         if (policy_callback)
5621                 break_policy_func = policy_callback;
5622         else
5623                 break_policy_func = always_insert_breakpoint;
5624 }
5625
5626 static gboolean
5627 should_insert_brekpoint (MonoMethod *method) {
5628         switch (break_policy_func (method)) {
5629         case MONO_BREAK_POLICY_ALWAYS:
5630                 return TRUE;
5631         case MONO_BREAK_POLICY_NEVER:
5632                 return FALSE;
5633         case MONO_BREAK_POLICY_ON_DBG:
5634                 g_warning ("mdb no longer supported");
5635                 return FALSE;
5636         default:
5637                 g_warning ("Incorrect value returned from break policy callback");
5638                 return FALSE;
5639         }
5640 }
5641
5642 /* optimize the simple GetGenericValueImpl/SetGenericValueImpl generic icalls */
5643 static MonoInst*
5644 emit_array_generic_access (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args, int is_set)
5645 {
5646         MonoInst *addr, *store, *load;
5647         MonoClass *eklass = mono_class_from_mono_type (fsig->params [2]);
5648
5649         /* the bounds check is already done by the callers */
5650         addr = mini_emit_ldelema_1_ins (cfg, eklass, args [0], args [1], FALSE);
5651         if (is_set) {
5652                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, &eklass->byval_arg, args [2]->dreg, 0);
5653                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, &eklass->byval_arg, addr->dreg, 0, load->dreg);
5654                 if (mini_type_is_reference (fsig->params [2]))
5655                         emit_write_barrier (cfg, addr, load);
5656         } else {
5657                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, &eklass->byval_arg, addr->dreg, 0);
5658                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, &eklass->byval_arg, args [2]->dreg, 0, load->dreg);
5659         }
5660         return store;
5661 }
5662
5663
5664 static gboolean
5665 generic_class_is_reference_type (MonoCompile *cfg, MonoClass *klass)
5666 {
5667         return mini_type_is_reference (&klass->byval_arg);
5668 }
5669
5670 static MonoInst*
5671 emit_array_store (MonoCompile *cfg, MonoClass *klass, MonoInst **sp, gboolean safety_checks)
5672 {
5673         if (safety_checks && generic_class_is_reference_type (cfg, klass) &&
5674                 !(sp [2]->opcode == OP_PCONST && sp [2]->inst_p0 == NULL)) {
5675                 MonoClass *obj_array = mono_array_class_get_cached (mono_defaults.object_class, 1);
5676                 MonoMethod *helper = mono_marshal_get_virtual_stelemref (obj_array);
5677                 MonoInst *iargs [3];
5678
5679                 if (!helper->slot)
5680                         mono_class_setup_vtable (obj_array);
5681                 g_assert (helper->slot);
5682
5683                 if (sp [0]->type != STACK_OBJ)
5684                         return NULL;
5685                 if (sp [2]->type != STACK_OBJ)
5686                         return NULL;
5687
5688                 iargs [2] = sp [2];
5689                 iargs [1] = sp [1];
5690                 iargs [0] = sp [0];
5691
5692                 return mono_emit_method_call (cfg, helper, iargs, sp [0]);
5693         } else {
5694                 MonoInst *ins;
5695
5696                 if (mini_is_gsharedvt_variable_klass (klass)) {
5697                         MonoInst *addr;
5698
5699                         // FIXME-VT: OP_ICONST optimization
5700                         addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
5701                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0, sp [2]->dreg);
5702                         ins->opcode = OP_STOREV_MEMBASE;
5703                 } else if (sp [1]->opcode == OP_ICONST) {
5704                         int array_reg = sp [0]->dreg;
5705                         int index_reg = sp [1]->dreg;
5706                         int offset = (mono_class_array_element_size (klass) * sp [1]->inst_c0) + MONO_STRUCT_OFFSET (MonoArray, vector);
5707
5708                         if (SIZEOF_REGISTER == 8 && COMPILE_LLVM (cfg))
5709                                 MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, index_reg, index_reg);
5710
5711                         if (safety_checks)
5712                                 MONO_EMIT_BOUNDS_CHECK (cfg, array_reg, MonoArray, max_length, index_reg);
5713                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, array_reg, offset, sp [2]->dreg);
5714                 } else {
5715                         MonoInst *addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], safety_checks);
5716                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0, sp [2]->dreg);
5717                         if (generic_class_is_reference_type (cfg, klass))
5718                                 emit_write_barrier (cfg, addr, sp [2]);
5719                 }
5720                 return ins;
5721         }
5722 }
5723
5724 static MonoInst*
5725 emit_array_unsafe_access (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args, int is_set)
5726 {
5727         MonoClass *eklass;
5728         
5729         if (is_set)
5730                 eklass = mono_class_from_mono_type (fsig->params [2]);
5731         else
5732                 eklass = mono_class_from_mono_type (fsig->ret);
5733
5734         if (is_set) {
5735                 return emit_array_store (cfg, eklass, args, FALSE);
5736         } else {
5737                 MonoInst *ins, *addr = mini_emit_ldelema_1_ins (cfg, eklass, args [0], args [1], FALSE);
5738                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &eklass->byval_arg, addr->dreg, 0);
5739                 return ins;
5740         }
5741 }
5742
5743 static gboolean
5744 is_unsafe_mov_compatible (MonoCompile *cfg, MonoClass *param_klass, MonoClass *return_klass)
5745 {
5746         uint32_t align;
5747         int param_size, return_size;
5748
5749         param_klass = mono_class_from_mono_type (mini_get_underlying_type (&param_klass->byval_arg));
5750         return_klass = mono_class_from_mono_type (mini_get_underlying_type (&return_klass->byval_arg));
5751
5752         if (cfg->verbose_level > 3)
5753                 printf ("[UNSAFE-MOV-INTRISIC] %s <- %s\n", return_klass->name, param_klass->name);
5754
5755         //Don't allow mixing reference types with value types
5756         if (param_klass->valuetype != return_klass->valuetype) {
5757                 if (cfg->verbose_level > 3)
5758                         printf ("[UNSAFE-MOV-INTRISIC]\tone of the args is a valuetype and the other is not\n");
5759                 return FALSE;
5760         }
5761
5762         if (!param_klass->valuetype) {
5763                 if (cfg->verbose_level > 3)
5764                         printf ("[UNSAFE-MOV-INTRISIC]\targs are reference types\n");
5765                 return TRUE;
5766         }
5767
5768         //That are blitable
5769         if (param_klass->has_references || return_klass->has_references)
5770                 return FALSE;
5771
5772         /* Avoid mixing structs and primitive types/enums, they need to be handled differently in the JIT */
5773         if ((MONO_TYPE_ISSTRUCT (&param_klass->byval_arg) && !MONO_TYPE_ISSTRUCT (&return_klass->byval_arg)) ||
5774                 (!MONO_TYPE_ISSTRUCT (&param_klass->byval_arg) && MONO_TYPE_ISSTRUCT (&return_klass->byval_arg))) {
5775                         if (cfg->verbose_level > 3)
5776                                 printf ("[UNSAFE-MOV-INTRISIC]\tmixing structs and scalars\n");
5777                 return FALSE;
5778         }
5779
5780         if (param_klass->byval_arg.type == MONO_TYPE_R4 || param_klass->byval_arg.type == MONO_TYPE_R8 ||
5781                 return_klass->byval_arg.type == MONO_TYPE_R4 || return_klass->byval_arg.type == MONO_TYPE_R8) {
5782                 if (cfg->verbose_level > 3)
5783                         printf ("[UNSAFE-MOV-INTRISIC]\tfloat or double are not supported\n");
5784                 return FALSE;
5785         }
5786
5787         param_size = mono_class_value_size (param_klass, &align);
5788         return_size = mono_class_value_size (return_klass, &align);
5789
5790         //We can do it if sizes match
5791         if (param_size == return_size) {
5792                 if (cfg->verbose_level > 3)
5793                         printf ("[UNSAFE-MOV-INTRISIC]\tsame size\n");
5794                 return TRUE;
5795         }
5796
5797         //No simple way to handle struct if sizes don't match
5798         if (MONO_TYPE_ISSTRUCT (&param_klass->byval_arg)) {
5799                 if (cfg->verbose_level > 3)
5800                         printf ("[UNSAFE-MOV-INTRISIC]\tsize mismatch and type is a struct\n");
5801                 return FALSE;
5802         }
5803
5804         /*
5805          * Same reg size category.
5806          * A quick note on why we don't require widening here.
5807          * The intrinsic is "R Array.UnsafeMov<S,R> (S s)".
5808          *
5809          * Since the source value comes from a function argument, the JIT will already have
5810          * the value in a VREG and performed any widening needed before (say, when loading from a field).
5811          */
5812         if (param_size <= 4 && return_size <= 4) {
5813                 if (cfg->verbose_level > 3)
5814                         printf ("[UNSAFE-MOV-INTRISIC]\tsize mismatch but both are of the same reg class\n");
5815                 return TRUE;
5816         }
5817
5818         return FALSE;
5819 }
5820
5821 static MonoInst*
5822 emit_array_unsafe_mov (MonoCompile *cfg, MonoMethodSignature *fsig, MonoInst **args)
5823 {
5824         MonoClass *param_klass = mono_class_from_mono_type (fsig->params [0]);
5825         MonoClass *return_klass = mono_class_from_mono_type (fsig->ret);
5826
5827         if (mini_is_gsharedvt_variable_type (fsig->ret))
5828                 return NULL;
5829
5830         //Valuetypes that are semantically equivalent or numbers than can be widened to
5831         if (is_unsafe_mov_compatible (cfg, param_klass, return_klass))
5832                 return args [0];
5833
5834         //Arrays of valuetypes that are semantically equivalent
5835         if (param_klass->rank == 1 && return_klass->rank == 1 && is_unsafe_mov_compatible (cfg, param_klass->element_class, return_klass->element_class))
5836                 return args [0];
5837
5838         return NULL;
5839 }
5840
5841 static MonoInst*
5842 mini_emit_inst_for_ctor (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5843 {
5844 #ifdef MONO_ARCH_SIMD_INTRINSICS
5845         MonoInst *ins = NULL;
5846
5847         if (cfg->opt & MONO_OPT_SIMD) {
5848                 ins = mono_emit_simd_intrinsics (cfg, cmethod, fsig, args);
5849                 if (ins)
5850                         return ins;
5851         }
5852 #endif
5853
5854         return mono_emit_native_types_intrinsics (cfg, cmethod, fsig, args);
5855 }
5856
5857 static MonoInst*
5858 emit_memory_barrier (MonoCompile *cfg, int kind)
5859 {
5860         MonoInst *ins = NULL;
5861         MONO_INST_NEW (cfg, ins, OP_MEMORY_BARRIER);
5862         MONO_ADD_INS (cfg->cbb, ins);
5863         ins->backend.memory_barrier_kind = kind;
5864
5865         return ins;
5866 }
5867
5868 static MonoInst*
5869 llvm_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5870 {
5871         MonoInst *ins = NULL;
5872         int opcode = 0;
5873
5874         /* The LLVM backend supports these intrinsics */
5875         if (cmethod->klass == mono_defaults.math_class) {
5876                 if (strcmp (cmethod->name, "Sin") == 0) {
5877                         opcode = OP_SIN;
5878                 } else if (strcmp (cmethod->name, "Cos") == 0) {
5879                         opcode = OP_COS;
5880                 } else if (strcmp (cmethod->name, "Sqrt") == 0) {
5881                         opcode = OP_SQRT;
5882                 } else if (strcmp (cmethod->name, "Abs") == 0 && fsig->params [0]->type == MONO_TYPE_R8) {
5883                         opcode = OP_ABS;
5884                 }
5885
5886                 if (opcode && fsig->param_count == 1) {
5887                         MONO_INST_NEW (cfg, ins, opcode);
5888                         ins->type = STACK_R8;
5889                         ins->dreg = mono_alloc_freg (cfg);
5890                         ins->sreg1 = args [0]->dreg;
5891                         MONO_ADD_INS (cfg->cbb, ins);
5892                 }
5893
5894                 opcode = 0;
5895                 if (cfg->opt & MONO_OPT_CMOV) {
5896                         if (strcmp (cmethod->name, "Min") == 0) {
5897                                 if (fsig->params [0]->type == MONO_TYPE_I4)
5898                                         opcode = OP_IMIN;
5899                                 if (fsig->params [0]->type == MONO_TYPE_U4)
5900                                         opcode = OP_IMIN_UN;
5901                                 else if (fsig->params [0]->type == MONO_TYPE_I8)
5902                                         opcode = OP_LMIN;
5903                                 else if (fsig->params [0]->type == MONO_TYPE_U8)
5904                                         opcode = OP_LMIN_UN;
5905                         } else if (strcmp (cmethod->name, "Max") == 0) {
5906                                 if (fsig->params [0]->type == MONO_TYPE_I4)
5907                                         opcode = OP_IMAX;
5908                                 if (fsig->params [0]->type == MONO_TYPE_U4)
5909                                         opcode = OP_IMAX_UN;
5910                                 else if (fsig->params [0]->type == MONO_TYPE_I8)
5911                                         opcode = OP_LMAX;
5912                                 else if (fsig->params [0]->type == MONO_TYPE_U8)
5913                                         opcode = OP_LMAX_UN;
5914                         }
5915                 }
5916
5917                 if (opcode && fsig->param_count == 2) {
5918                         MONO_INST_NEW (cfg, ins, opcode);
5919                         ins->type = fsig->params [0]->type == MONO_TYPE_I4 ? STACK_I4 : STACK_I8;
5920                         ins->dreg = mono_alloc_ireg (cfg);
5921                         ins->sreg1 = args [0]->dreg;
5922                         ins->sreg2 = args [1]->dreg;
5923                         MONO_ADD_INS (cfg->cbb, ins);
5924                 }
5925         }
5926
5927         return ins;
5928 }
5929
5930 static MonoInst*
5931 mini_emit_inst_for_sharable_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5932 {
5933         if (cmethod->klass == mono_defaults.array_class) {
5934                 if (strcmp (cmethod->name, "UnsafeStore") == 0)
5935                         return emit_array_unsafe_access (cfg, fsig, args, TRUE);
5936                 else if (strcmp (cmethod->name, "UnsafeLoad") == 0)
5937                         return emit_array_unsafe_access (cfg, fsig, args, FALSE);
5938                 else if (strcmp (cmethod->name, "UnsafeMov") == 0)
5939                         return emit_array_unsafe_mov (cfg, fsig, args);
5940         }
5941
5942         return NULL;
5943 }
5944
5945 static MonoInst*
5946 mini_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5947 {
5948         MonoInst *ins = NULL;
5949
5950          MonoClass *runtime_helpers_class = mono_class_get_runtime_helpers_class ();
5951
5952         if (cmethod->klass == mono_defaults.string_class) {
5953                 if (strcmp (cmethod->name, "get_Chars") == 0 && fsig->param_count + fsig->hasthis == 2) {
5954                         int dreg = alloc_ireg (cfg);
5955                         int index_reg = alloc_preg (cfg);
5956                         int add_reg = alloc_preg (cfg);
5957
5958 #if SIZEOF_REGISTER == 8
5959                         if (COMPILE_LLVM (cfg)) {
5960                                 MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, index_reg, args [1]->dreg);
5961                         } else {
5962                                 /* The array reg is 64 bits but the index reg is only 32 */
5963                                 MONO_EMIT_NEW_UNALU (cfg, OP_SEXT_I4, index_reg, args [1]->dreg);
5964                         }
5965 #else
5966                         index_reg = args [1]->dreg;
5967 #endif  
5968                         MONO_EMIT_BOUNDS_CHECK (cfg, args [0]->dreg, MonoString, length, index_reg);
5969
5970 #if defined(TARGET_X86) || defined(TARGET_AMD64)
5971                         EMIT_NEW_X86_LEA (cfg, ins, args [0]->dreg, index_reg, 1, MONO_STRUCT_OFFSET (MonoString, chars));
5972                         add_reg = ins->dreg;
5973                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADU2_MEMBASE, dreg, 
5974                                                                    add_reg, 0);
5975 #else
5976                         int mult_reg = alloc_preg (cfg);
5977                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, mult_reg, index_reg, 1);
5978                         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, add_reg, mult_reg, args [0]->dreg);
5979                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADU2_MEMBASE, dreg, 
5980                                                                    add_reg, MONO_STRUCT_OFFSET (MonoString, chars));
5981 #endif
5982                         type_from_op (cfg, ins, NULL, NULL);
5983                         return ins;
5984                 } else if (strcmp (cmethod->name, "get_Length") == 0 && fsig->param_count + fsig->hasthis == 1) {
5985                         int dreg = alloc_ireg (cfg);
5986                         /* Decompose later to allow more optimizations */
5987                         EMIT_NEW_UNALU (cfg, ins, OP_STRLEN, dreg, args [0]->dreg);
5988                         ins->type = STACK_I4;
5989                         ins->flags |= MONO_INST_FAULT;
5990                         cfg->cbb->has_array_access = TRUE;
5991                         cfg->flags |= MONO_CFG_HAS_ARRAY_ACCESS;
5992
5993                         return ins;
5994                 } else 
5995                         return NULL;
5996         } else if (cmethod->klass == mono_defaults.object_class) {
5997                 if (strcmp (cmethod->name, "GetType") == 0 && fsig->param_count + fsig->hasthis == 1) {
5998                         int dreg = alloc_ireg_ref (cfg);
5999                         int vt_reg = alloc_preg (cfg);
6000                         MONO_EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, vt_reg, args [0]->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
6001                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, vt_reg, MONO_STRUCT_OFFSET (MonoVTable, type));
6002                         type_from_op (cfg, ins, NULL, NULL);
6003
6004                         return ins;
6005                 } else if (!cfg->backend->emulate_mul_div && strcmp (cmethod->name, "InternalGetHashCode") == 0 && fsig->param_count == 1 && !mono_gc_is_moving ()) {
6006                         int dreg = alloc_ireg (cfg);
6007                         int t1 = alloc_ireg (cfg);
6008         
6009                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, t1, args [0]->dreg, 3);
6010                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_MUL_IMM, dreg, t1, 2654435761u);
6011                         ins->type = STACK_I4;
6012
6013                         return ins;
6014                 } else if (strcmp (cmethod->name, ".ctor") == 0 && fsig->param_count == 0) {
6015                         MONO_INST_NEW (cfg, ins, OP_NOP);
6016                         MONO_ADD_INS (cfg->cbb, ins);
6017                         return ins;
6018                 } else
6019                         return NULL;
6020         } else if (cmethod->klass == mono_defaults.array_class) {
6021                 if (strcmp (cmethod->name, "GetGenericValueImpl") == 0 && fsig->param_count + fsig->hasthis == 3 && !cfg->gsharedvt)
6022                         return emit_array_generic_access (cfg, fsig, args, FALSE);
6023                 else if (strcmp (cmethod->name, "SetGenericValueImpl") == 0 && fsig->param_count + fsig->hasthis == 3 && !cfg->gsharedvt)
6024                         return emit_array_generic_access (cfg, fsig, args, TRUE);
6025
6026 #ifndef MONO_BIG_ARRAYS
6027                 /*
6028                  * This is an inline version of GetLength/GetLowerBound(0) used frequently in
6029                  * Array methods.
6030                  */
6031                 else if (((strcmp (cmethod->name, "GetLength") == 0 && fsig->param_count + fsig->hasthis == 2) ||
6032                          (strcmp (cmethod->name, "GetLowerBound") == 0 && fsig->param_count + fsig->hasthis == 2)) &&
6033                          args [1]->opcode == OP_ICONST && args [1]->inst_c0 == 0) {
6034                         int dreg = alloc_ireg (cfg);
6035                         int bounds_reg = alloc_ireg_mp (cfg);
6036                         MonoBasicBlock *end_bb, *szarray_bb;
6037                         gboolean get_length = strcmp (cmethod->name, "GetLength") == 0;
6038
6039                         NEW_BBLOCK (cfg, end_bb);
6040                         NEW_BBLOCK (cfg, szarray_bb);
6041
6042                         EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, ins, OP_LOAD_MEMBASE, bounds_reg,
6043                                                                                  args [0]->dreg, MONO_STRUCT_OFFSET (MonoArray, bounds));
6044                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, bounds_reg, 0);
6045                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, szarray_bb);
6046                         /* Non-szarray case */
6047                         if (get_length)
6048                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADI4_MEMBASE, dreg,
6049                                                                            bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, length));
6050                         else
6051                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADI4_MEMBASE, dreg,
6052                                                                            bounds_reg, MONO_STRUCT_OFFSET (MonoArrayBounds, lower_bound));
6053                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
6054                         MONO_START_BB (cfg, szarray_bb);
6055                         /* Szarray case */
6056                         if (get_length)
6057                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADI4_MEMBASE, dreg,
6058                                                                            args [0]->dreg, MONO_STRUCT_OFFSET (MonoArray, max_length));
6059                         else
6060                                 MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
6061                         MONO_START_BB (cfg, end_bb);
6062
6063                         EMIT_NEW_UNALU (cfg, ins, OP_MOVE, dreg, dreg);
6064                         ins->type = STACK_I4;
6065                         
6066                         return ins;
6067                 }
6068 #endif
6069
6070                 if (cmethod->name [0] != 'g')
6071                         return NULL;
6072
6073                 if (strcmp (cmethod->name, "get_Rank") == 0 && fsig->param_count + fsig->hasthis == 1) {
6074                         int dreg = alloc_ireg (cfg);
6075                         int vtable_reg = alloc_preg (cfg);
6076                         MONO_EMIT_NEW_LOAD_MEMBASE_OP_FAULT (cfg, OP_LOAD_MEMBASE, vtable_reg, 
6077                                                                                                  args [0]->dreg, MONO_STRUCT_OFFSET (MonoObject, vtable));
6078                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADU1_MEMBASE, dreg,
6079                                                                    vtable_reg, MONO_STRUCT_OFFSET (MonoVTable, rank));
6080                         type_from_op (cfg, ins, NULL, NULL);
6081
6082                         return ins;
6083                 } else if (strcmp (cmethod->name, "get_Length") == 0 && fsig->param_count + fsig->hasthis == 1) {
6084                         int dreg = alloc_ireg (cfg);
6085
6086                         EMIT_NEW_LOAD_MEMBASE_FAULT (cfg, ins, OP_LOADI4_MEMBASE, dreg, 
6087                                                                                  args [0]->dreg, MONO_STRUCT_OFFSET (MonoArray, max_length));
6088                         type_from_op (cfg, ins, NULL, NULL);
6089
6090                         return ins;
6091                 } else
6092                         return NULL;
6093         } else if (cmethod->klass == runtime_helpers_class) {
6094                 if (strcmp (cmethod->name, "get_OffsetToStringData") == 0 && fsig->param_count == 0) {
6095                         EMIT_NEW_ICONST (cfg, ins, MONO_STRUCT_OFFSET (MonoString, chars));
6096                         return ins;
6097                 } else
6098                         return NULL;
6099         } else if (cmethod->klass == mono_defaults.monitor_class) {
6100                 gboolean is_enter = FALSE;
6101
6102                 if (!strcmp (cmethod->name, "Enter") && mono_method_signature (cmethod)->param_count == 1)
6103                         is_enter = TRUE;
6104
6105                 if (is_enter) {
6106                         /*
6107                          * To make async stack traces work, icalls which can block should have a wrapper.
6108                          * For Monitor.Enter, emit two calls: a fastpath which doesn't have a wrapper, and a slowpath, which does.
6109                          */
6110                         MonoBasicBlock *end_bb;
6111
6112                         NEW_BBLOCK (cfg, end_bb);
6113
6114                         ins = mono_emit_jit_icall (cfg, (gpointer)mono_monitor_enter_fast, args);
6115                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ICOMPARE_IMM, -1, ins->dreg, 0);
6116                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBNE_UN, end_bb);
6117                         ins = mono_emit_jit_icall (cfg, (gpointer)mono_monitor_enter, args);
6118                         MONO_START_BB (cfg, end_bb);
6119                         return ins;
6120                 }
6121         } else if (cmethod->klass == mono_defaults.thread_class) {
6122                 if (strcmp (cmethod->name, "SpinWait_nop") == 0 && fsig->param_count == 0) {
6123                         MONO_INST_NEW (cfg, ins, OP_RELAXED_NOP);
6124                         MONO_ADD_INS (cfg->cbb, ins);
6125                         return ins;
6126                 } else if (strcmp (cmethod->name, "MemoryBarrier") == 0 && fsig->param_count == 0) {
6127                         return emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
6128                 } else if (!strcmp (cmethod->name, "VolatileRead") && fsig->param_count == 1) {
6129                         guint32 opcode = 0;
6130                         gboolean is_ref = mini_type_is_reference (fsig->params [0]);
6131
6132                         if (fsig->params [0]->type == MONO_TYPE_I1)
6133                                 opcode = OP_LOADI1_MEMBASE;
6134                         else if (fsig->params [0]->type == MONO_TYPE_U1)
6135                                 opcode = OP_LOADU1_MEMBASE;
6136                         else if (fsig->params [0]->type == MONO_TYPE_I2)
6137                                 opcode = OP_LOADI2_MEMBASE;
6138                         else if (fsig->params [0]->type == MONO_TYPE_U2)
6139                                 opcode = OP_LOADU2_MEMBASE;
6140                         else if (fsig->params [0]->type == MONO_TYPE_I4)
6141                                 opcode = OP_LOADI4_MEMBASE;
6142                         else if (fsig->params [0]->type == MONO_TYPE_U4)
6143                                 opcode = OP_LOADU4_MEMBASE;
6144                         else if (fsig->params [0]->type == MONO_TYPE_I8 || fsig->params [0]->type == MONO_TYPE_U8)
6145                                 opcode = OP_LOADI8_MEMBASE;
6146                         else if (fsig->params [0]->type == MONO_TYPE_R4)
6147                                 opcode = OP_LOADR4_MEMBASE;
6148                         else if (fsig->params [0]->type == MONO_TYPE_R8)
6149                                 opcode = OP_LOADR8_MEMBASE;
6150                         else if (is_ref || fsig->params [0]->type == MONO_TYPE_I || fsig->params [0]->type == MONO_TYPE_U)
6151                                 opcode = OP_LOAD_MEMBASE;
6152
6153                         if (opcode) {
6154                                 MONO_INST_NEW (cfg, ins, opcode);
6155                                 ins->inst_basereg = args [0]->dreg;
6156                                 ins->inst_offset = 0;
6157                                 MONO_ADD_INS (cfg->cbb, ins);
6158
6159                                 switch (fsig->params [0]->type) {
6160                                 case MONO_TYPE_I1:
6161                                 case MONO_TYPE_U1:
6162                                 case MONO_TYPE_I2:
6163                                 case MONO_TYPE_U2:
6164                                 case MONO_TYPE_I4:
6165                                 case MONO_TYPE_U4:
6166                                         ins->dreg = mono_alloc_ireg (cfg);
6167                                         ins->type = STACK_I4;
6168                                         break;
6169                                 case MONO_TYPE_I8:
6170                                 case MONO_TYPE_U8:
6171                                         ins->dreg = mono_alloc_lreg (cfg);
6172                                         ins->type = STACK_I8;
6173                                         break;
6174                                 case MONO_TYPE_I:
6175                                 case MONO_TYPE_U:
6176                                         ins->dreg = mono_alloc_ireg (cfg);
6177 #if SIZEOF_REGISTER == 8
6178                                         ins->type = STACK_I8;
6179 #else
6180                                         ins->type = STACK_I4;
6181 #endif
6182                                         break;
6183                                 case MONO_TYPE_R4:
6184                                 case MONO_TYPE_R8:
6185                                         ins->dreg = mono_alloc_freg (cfg);
6186                                         ins->type = STACK_R8;
6187                                         break;
6188                                 default:
6189                                         g_assert (mini_type_is_reference (fsig->params [0]));
6190                                         ins->dreg = mono_alloc_ireg_ref (cfg);
6191                                         ins->type = STACK_OBJ;
6192                                         break;
6193                                 }
6194
6195                                 if (opcode == OP_LOADI8_MEMBASE)
6196                                         ins = mono_decompose_opcode (cfg, ins);
6197
6198                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
6199
6200                                 return ins;
6201                         }
6202                 } else if (!strcmp (cmethod->name, "VolatileWrite") && fsig->param_count == 2) {
6203                         guint32 opcode = 0;
6204                         gboolean is_ref = mini_type_is_reference (fsig->params [0]);
6205
6206                         if (fsig->params [0]->type == MONO_TYPE_I1 || fsig->params [0]->type == MONO_TYPE_U1)
6207                                 opcode = OP_STOREI1_MEMBASE_REG;
6208                         else if (fsig->params [0]->type == MONO_TYPE_I2 || fsig->params [0]->type == MONO_TYPE_U2)
6209                                 opcode = OP_STOREI2_MEMBASE_REG;
6210                         else if (fsig->params [0]->type == MONO_TYPE_I4 || fsig->params [0]->type == MONO_TYPE_U4)
6211                                 opcode = OP_STOREI4_MEMBASE_REG;
6212                         else if (fsig->params [0]->type == MONO_TYPE_I8 || fsig->params [0]->type == MONO_TYPE_U8)
6213                                 opcode = OP_STOREI8_MEMBASE_REG;
6214                         else if (fsig->params [0]->type == MONO_TYPE_R4)
6215                                 opcode = OP_STORER4_MEMBASE_REG;
6216                         else if (fsig->params [0]->type == MONO_TYPE_R8)
6217                                 opcode = OP_STORER8_MEMBASE_REG;
6218                         else if (is_ref || fsig->params [0]->type == MONO_TYPE_I || fsig->params [0]->type == MONO_TYPE_U)
6219                                 opcode = OP_STORE_MEMBASE_REG;
6220
6221                         if (opcode) {
6222                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
6223
6224                                 MONO_INST_NEW (cfg, ins, opcode);
6225                                 ins->sreg1 = args [1]->dreg;
6226                                 ins->inst_destbasereg = args [0]->dreg;
6227                                 ins->inst_offset = 0;
6228                                 MONO_ADD_INS (cfg->cbb, ins);
6229
6230                                 if (opcode == OP_STOREI8_MEMBASE_REG)
6231                                         ins = mono_decompose_opcode (cfg, ins);
6232
6233                                 return ins;
6234                         }
6235                 }
6236         } else if (cmethod->klass->image == mono_defaults.corlib &&
6237                            (strcmp (cmethod->klass->name_space, "System.Threading") == 0) &&
6238                            (strcmp (cmethod->klass->name, "Interlocked") == 0)) {
6239                 ins = NULL;
6240
6241 #if SIZEOF_REGISTER == 8
6242                 if (!cfg->llvm_only && strcmp (cmethod->name, "Read") == 0 && fsig->param_count == 1 && (fsig->params [0]->type == MONO_TYPE_I8)) {
6243                         if (!cfg->llvm_only && mono_arch_opcode_supported (OP_ATOMIC_LOAD_I8)) {
6244                                 MONO_INST_NEW (cfg, ins, OP_ATOMIC_LOAD_I8);
6245                                 ins->dreg = mono_alloc_preg (cfg);
6246                                 ins->sreg1 = args [0]->dreg;
6247                                 ins->type = STACK_I8;
6248                                 ins->backend.memory_barrier_kind = MONO_MEMORY_BARRIER_SEQ;
6249                                 MONO_ADD_INS (cfg->cbb, ins);
6250                         } else {
6251                                 MonoInst *load_ins;
6252
6253                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
6254
6255                                 /* 64 bit reads are already atomic */
6256                                 MONO_INST_NEW (cfg, load_ins, OP_LOADI8_MEMBASE);
6257                                 load_ins->dreg = mono_alloc_preg (cfg);
6258                                 load_ins->inst_basereg = args [0]->dreg;
6259                                 load_ins->inst_offset = 0;
6260                                 load_ins->type = STACK_I8;
6261                                 MONO_ADD_INS (cfg->cbb, load_ins);
6262
6263                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
6264
6265                                 ins = load_ins;
6266                         }
6267                 }
6268 #endif
6269
6270                 if (strcmp (cmethod->name, "Increment") == 0 && fsig->param_count == 1) {
6271                         MonoInst *ins_iconst;
6272                         guint32 opcode = 0;
6273
6274                         if (fsig->params [0]->type == MONO_TYPE_I4) {
6275                                 opcode = OP_ATOMIC_ADD_I4;
6276                                 cfg->has_atomic_add_i4 = TRUE;
6277                         }
6278 #if SIZEOF_REGISTER == 8
6279                         else if (fsig->params [0]->type == MONO_TYPE_I8)
6280                                 opcode = OP_ATOMIC_ADD_I8;
6281 #endif
6282                         if (opcode) {
6283                                 if (!mono_arch_opcode_supported (opcode))
6284                                         return NULL;
6285                                 MONO_INST_NEW (cfg, ins_iconst, OP_ICONST);
6286                                 ins_iconst->inst_c0 = 1;
6287                                 ins_iconst->dreg = mono_alloc_ireg (cfg);
6288                                 MONO_ADD_INS (cfg->cbb, ins_iconst);
6289
6290                                 MONO_INST_NEW (cfg, ins, opcode);
6291                                 ins->dreg = mono_alloc_ireg (cfg);
6292                                 ins->inst_basereg = args [0]->dreg;
6293                                 ins->inst_offset = 0;
6294                                 ins->sreg2 = ins_iconst->dreg;
6295                                 ins->type = (opcode == OP_ATOMIC_ADD_I4) ? STACK_I4 : STACK_I8;
6296                                 MONO_ADD_INS (cfg->cbb, ins);
6297                         }
6298                 } else if (strcmp (cmethod->name, "Decrement") == 0 && fsig->param_count == 1) {
6299                         MonoInst *ins_iconst;
6300                         guint32 opcode = 0;
6301
6302                         if (fsig->params [0]->type == MONO_TYPE_I4) {
6303                                 opcode = OP_ATOMIC_ADD_I4;
6304                                 cfg->has_atomic_add_i4 = TRUE;
6305                         }
6306 #if SIZEOF_REGISTER == 8
6307                         else if (fsig->params [0]->type == MONO_TYPE_I8)
6308                                 opcode = OP_ATOMIC_ADD_I8;
6309 #endif
6310                         if (opcode) {
6311                                 if (!mono_arch_opcode_supported (opcode))
6312                                         return NULL;
6313                                 MONO_INST_NEW (cfg, ins_iconst, OP_ICONST);
6314                                 ins_iconst->inst_c0 = -1;
6315                                 ins_iconst->dreg = mono_alloc_ireg (cfg);
6316                                 MONO_ADD_INS (cfg->cbb, ins_iconst);
6317
6318                                 MONO_INST_NEW (cfg, ins, opcode);
6319                                 ins->dreg = mono_alloc_ireg (cfg);
6320                                 ins->inst_basereg = args [0]->dreg;
6321                                 ins->inst_offset = 0;
6322                                 ins->sreg2 = ins_iconst->dreg;
6323                                 ins->type = (opcode == OP_ATOMIC_ADD_I4) ? STACK_I4 : STACK_I8;
6324                                 MONO_ADD_INS (cfg->cbb, ins);
6325                         }
6326                 } else if (strcmp (cmethod->name, "Add") == 0 && fsig->param_count == 2) {
6327                         guint32 opcode = 0;
6328
6329                         if (fsig->params [0]->type == MONO_TYPE_I4) {
6330                                 opcode = OP_ATOMIC_ADD_I4;
6331                                 cfg->has_atomic_add_i4 = TRUE;
6332                         }
6333 #if SIZEOF_REGISTER == 8
6334                         else if (fsig->params [0]->type == MONO_TYPE_I8)
6335                                 opcode = OP_ATOMIC_ADD_I8;
6336 #endif
6337                         if (opcode) {
6338                                 if (!mono_arch_opcode_supported (opcode))
6339                                         return NULL;
6340                                 MONO_INST_NEW (cfg, ins, opcode);
6341                                 ins->dreg = mono_alloc_ireg (cfg);
6342                                 ins->inst_basereg = args [0]->dreg;
6343                                 ins->inst_offset = 0;
6344                                 ins->sreg2 = args [1]->dreg;
6345                                 ins->type = (opcode == OP_ATOMIC_ADD_I4) ? STACK_I4 : STACK_I8;
6346                                 MONO_ADD_INS (cfg->cbb, ins);
6347                         }
6348                 }
6349                 else if (strcmp (cmethod->name, "Exchange") == 0 && fsig->param_count == 2) {
6350                         MonoInst *f2i = NULL, *i2f;
6351                         guint32 opcode, f2i_opcode, i2f_opcode;
6352                         gboolean is_ref = mini_type_is_reference (fsig->params [0]);
6353                         gboolean is_float = fsig->params [0]->type == MONO_TYPE_R4 || fsig->params [0]->type == MONO_TYPE_R8;
6354
6355                         if (fsig->params [0]->type == MONO_TYPE_I4 ||
6356                             fsig->params [0]->type == MONO_TYPE_R4) {
6357                                 opcode = OP_ATOMIC_EXCHANGE_I4;
6358                                 f2i_opcode = OP_MOVE_F_TO_I4;
6359                                 i2f_opcode = OP_MOVE_I4_TO_F;
6360                                 cfg->has_atomic_exchange_i4 = TRUE;
6361                         }
6362 #if SIZEOF_REGISTER == 8
6363                         else if (is_ref ||
6364                                  fsig->params [0]->type == MONO_TYPE_I8 ||
6365                                  fsig->params [0]->type == MONO_TYPE_R8 ||
6366                                  fsig->params [0]->type == MONO_TYPE_I) {
6367                                 opcode = OP_ATOMIC_EXCHANGE_I8;
6368                                 f2i_opcode = OP_MOVE_F_TO_I8;
6369                                 i2f_opcode = OP_MOVE_I8_TO_F;
6370                         }
6371 #else
6372                         else if (is_ref || fsig->params [0]->type == MONO_TYPE_I) {
6373                                 opcode = OP_ATOMIC_EXCHANGE_I4;
6374                                 cfg->has_atomic_exchange_i4 = TRUE;
6375                         }
6376 #endif
6377                         else
6378                                 return NULL;
6379
6380                         if (!mono_arch_opcode_supported (opcode))
6381                                 return NULL;
6382
6383                         if (is_float) {
6384                                 /* TODO: Decompose these opcodes instead of bailing here. */
6385                                 if (COMPILE_SOFT_FLOAT (cfg))
6386                                         return NULL;
6387
6388                                 MONO_INST_NEW (cfg, f2i, f2i_opcode);
6389                                 f2i->dreg = mono_alloc_ireg (cfg);
6390                                 f2i->sreg1 = args [1]->dreg;
6391                                 if (f2i_opcode == OP_MOVE_F_TO_I4)
6392                                         f2i->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
6393                                 MONO_ADD_INS (cfg->cbb, f2i);
6394                         }
6395
6396                         MONO_INST_NEW (cfg, ins, opcode);
6397                         ins->dreg = is_ref ? mono_alloc_ireg_ref (cfg) : mono_alloc_ireg (cfg);
6398                         ins->inst_basereg = args [0]->dreg;
6399                         ins->inst_offset = 0;
6400                         ins->sreg2 = is_float ? f2i->dreg : args [1]->dreg;
6401                         MONO_ADD_INS (cfg->cbb, ins);
6402
6403                         switch (fsig->params [0]->type) {
6404                         case MONO_TYPE_I4:
6405                                 ins->type = STACK_I4;
6406                                 break;
6407                         case MONO_TYPE_I8:
6408                                 ins->type = STACK_I8;
6409                                 break;
6410                         case MONO_TYPE_I:
6411 #if SIZEOF_REGISTER == 8
6412                                 ins->type = STACK_I8;
6413 #else
6414                                 ins->type = STACK_I4;
6415 #endif
6416                                 break;
6417                         case MONO_TYPE_R4:
6418                         case MONO_TYPE_R8:
6419                                 ins->type = STACK_R8;
6420                                 break;
6421                         default:
6422                                 g_assert (mini_type_is_reference (fsig->params [0]));
6423                                 ins->type = STACK_OBJ;
6424                                 break;
6425                         }
6426
6427                         if (is_float) {
6428                                 MONO_INST_NEW (cfg, i2f, i2f_opcode);
6429                                 i2f->dreg = mono_alloc_freg (cfg);
6430                                 i2f->sreg1 = ins->dreg;
6431                                 i2f->type = STACK_R8;
6432                                 if (i2f_opcode == OP_MOVE_I4_TO_F)
6433                                         i2f->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
6434                                 MONO_ADD_INS (cfg->cbb, i2f);
6435
6436                                 ins = i2f;
6437                         }
6438
6439                         if (cfg->gen_write_barriers && is_ref)
6440                                 emit_write_barrier (cfg, args [0], args [1]);
6441                 }
6442                 else if ((strcmp (cmethod->name, "CompareExchange") == 0) && fsig->param_count == 3) {
6443                         MonoInst *f2i_new = NULL, *f2i_cmp = NULL, *i2f;
6444                         guint32 opcode, f2i_opcode, i2f_opcode;
6445                         gboolean is_ref = mini_type_is_reference (fsig->params [1]);
6446                         gboolean is_float = fsig->params [1]->type == MONO_TYPE_R4 || fsig->params [1]->type == MONO_TYPE_R8;
6447
6448                         if (fsig->params [1]->type == MONO_TYPE_I4 ||
6449                             fsig->params [1]->type == MONO_TYPE_R4) {
6450                                 opcode = OP_ATOMIC_CAS_I4;
6451                                 f2i_opcode = OP_MOVE_F_TO_I4;
6452                                 i2f_opcode = OP_MOVE_I4_TO_F;
6453                                 cfg->has_atomic_cas_i4 = TRUE;
6454                         }
6455 #if SIZEOF_REGISTER == 8
6456                         else if (is_ref ||
6457                                  fsig->params [1]->type == MONO_TYPE_I8 ||
6458                                  fsig->params [1]->type == MONO_TYPE_R8 ||
6459                                  fsig->params [1]->type == MONO_TYPE_I) {
6460                                 opcode = OP_ATOMIC_CAS_I8;
6461                                 f2i_opcode = OP_MOVE_F_TO_I8;
6462                                 i2f_opcode = OP_MOVE_I8_TO_F;
6463                         }
6464 #else
6465                         else if (is_ref || fsig->params [1]->type == MONO_TYPE_I) {
6466                                 opcode = OP_ATOMIC_CAS_I4;
6467                                 cfg->has_atomic_cas_i4 = TRUE;
6468                         }
6469 #endif
6470                         else
6471                                 return NULL;
6472
6473                         if (!mono_arch_opcode_supported (opcode))
6474                                 return NULL;
6475
6476                         if (is_float) {
6477                                 /* TODO: Decompose these opcodes instead of bailing here. */
6478                                 if (COMPILE_SOFT_FLOAT (cfg))
6479                                         return NULL;
6480
6481                                 MONO_INST_NEW (cfg, f2i_new, f2i_opcode);
6482                                 f2i_new->dreg = mono_alloc_ireg (cfg);
6483                                 f2i_new->sreg1 = args [1]->dreg;
6484                                 if (f2i_opcode == OP_MOVE_F_TO_I4)
6485                                         f2i_new->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
6486                                 MONO_ADD_INS (cfg->cbb, f2i_new);
6487
6488                                 MONO_INST_NEW (cfg, f2i_cmp, f2i_opcode);
6489                                 f2i_cmp->dreg = mono_alloc_ireg (cfg);
6490                                 f2i_cmp->sreg1 = args [2]->dreg;
6491                                 if (f2i_opcode == OP_MOVE_F_TO_I4)
6492                                         f2i_cmp->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
6493                                 MONO_ADD_INS (cfg->cbb, f2i_cmp);
6494                         }
6495
6496                         MONO_INST_NEW (cfg, ins, opcode);
6497                         ins->dreg = is_ref ? alloc_ireg_ref (cfg) : alloc_ireg (cfg);
6498                         ins->sreg1 = args [0]->dreg;
6499                         ins->sreg2 = is_float ? f2i_new->dreg : args [1]->dreg;
6500                         ins->sreg3 = is_float ? f2i_cmp->dreg : args [2]->dreg;
6501                         MONO_ADD_INS (cfg->cbb, ins);
6502
6503                         switch (fsig->params [1]->type) {
6504                         case MONO_TYPE_I4:
6505                                 ins->type = STACK_I4;
6506                                 break;
6507                         case MONO_TYPE_I8:
6508                                 ins->type = STACK_I8;
6509                                 break;
6510                         case MONO_TYPE_I:
6511 #if SIZEOF_REGISTER == 8
6512                                 ins->type = STACK_I8;
6513 #else
6514                                 ins->type = STACK_I4;
6515 #endif
6516                                 break;
6517                         case MONO_TYPE_R4:
6518                                 ins->type = cfg->r4_stack_type;
6519                                 break;
6520                         case MONO_TYPE_R8:
6521                                 ins->type = STACK_R8;
6522                                 break;
6523                         default:
6524                                 g_assert (mini_type_is_reference (fsig->params [1]));
6525                                 ins->type = STACK_OBJ;
6526                                 break;
6527                         }
6528
6529                         if (is_float) {
6530                                 MONO_INST_NEW (cfg, i2f, i2f_opcode);
6531                                 i2f->dreg = mono_alloc_freg (cfg);
6532                                 i2f->sreg1 = ins->dreg;
6533                                 i2f->type = STACK_R8;
6534                                 if (i2f_opcode == OP_MOVE_I4_TO_F)
6535                                         i2f->backend.spill_var = mini_get_int_to_float_spill_area (cfg);
6536                                 MONO_ADD_INS (cfg->cbb, i2f);
6537
6538                                 ins = i2f;
6539                         }
6540
6541                         if (cfg->gen_write_barriers && is_ref)
6542                                 emit_write_barrier (cfg, args [0], args [1]);
6543                 }
6544                 else if ((strcmp (cmethod->name, "CompareExchange") == 0) && fsig->param_count == 4 &&
6545                          fsig->params [1]->type == MONO_TYPE_I4) {
6546                         MonoInst *cmp, *ceq;
6547
6548                         if (!mono_arch_opcode_supported (OP_ATOMIC_CAS_I4))
6549                                 return NULL;
6550
6551                         /* int32 r = CAS (location, value, comparand); */
6552                         MONO_INST_NEW (cfg, ins, OP_ATOMIC_CAS_I4);
6553                         ins->dreg = alloc_ireg (cfg);
6554                         ins->sreg1 = args [0]->dreg;
6555                         ins->sreg2 = args [1]->dreg;
6556                         ins->sreg3 = args [2]->dreg;
6557                         ins->type = STACK_I4;
6558                         MONO_ADD_INS (cfg->cbb, ins);
6559
6560                         /* bool result = r == comparand; */
6561                         MONO_INST_NEW (cfg, cmp, OP_ICOMPARE);
6562                         cmp->sreg1 = ins->dreg;
6563                         cmp->sreg2 = args [2]->dreg;
6564                         cmp->type = STACK_I4;
6565                         MONO_ADD_INS (cfg->cbb, cmp);
6566
6567                         MONO_INST_NEW (cfg, ceq, OP_ICEQ);
6568                         ceq->dreg = alloc_ireg (cfg);
6569                         ceq->type = STACK_I4;
6570                         MONO_ADD_INS (cfg->cbb, ceq);
6571
6572                         /* *success = result; */
6573                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI1_MEMBASE_REG, args [3]->dreg, 0, ceq->dreg);
6574
6575                         cfg->has_atomic_cas_i4 = TRUE;
6576                 }
6577                 else if (strcmp (cmethod->name, "MemoryBarrier") == 0 && fsig->param_count == 0)
6578                         ins = emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
6579
6580                 if (ins)
6581                         return ins;
6582         } else if (cmethod->klass->image == mono_defaults.corlib &&
6583                            (strcmp (cmethod->klass->name_space, "System.Threading") == 0) &&
6584                            (strcmp (cmethod->klass->name, "Volatile") == 0)) {
6585                 ins = NULL;
6586
6587                 if (!cfg->llvm_only && !strcmp (cmethod->name, "Read") && fsig->param_count == 1) {
6588                         guint32 opcode = 0;
6589                         MonoType *t = fsig->params [0];
6590                         gboolean is_ref;
6591                         gboolean is_float = t->type == MONO_TYPE_R4 || t->type == MONO_TYPE_R8;
6592
6593                         g_assert (t->byref);
6594                         /* t is a byref type, so the reference check is more complicated */
6595                         is_ref = mini_type_is_reference (&mono_class_from_mono_type (t)->byval_arg);
6596                         if (t->type == MONO_TYPE_I1)
6597                                 opcode = OP_ATOMIC_LOAD_I1;
6598                         else if (t->type == MONO_TYPE_U1 || t->type == MONO_TYPE_BOOLEAN)
6599                                 opcode = OP_ATOMIC_LOAD_U1;
6600                         else if (t->type == MONO_TYPE_I2)
6601                                 opcode = OP_ATOMIC_LOAD_I2;
6602                         else if (t->type == MONO_TYPE_U2)
6603                                 opcode = OP_ATOMIC_LOAD_U2;
6604                         else if (t->type == MONO_TYPE_I4)
6605                                 opcode = OP_ATOMIC_LOAD_I4;
6606                         else if (t->type == MONO_TYPE_U4)
6607                                 opcode = OP_ATOMIC_LOAD_U4;
6608                         else if (t->type == MONO_TYPE_R4)
6609                                 opcode = OP_ATOMIC_LOAD_R4;
6610                         else if (t->type == MONO_TYPE_R8)
6611                                 opcode = OP_ATOMIC_LOAD_R8;
6612 #if SIZEOF_REGISTER == 8
6613                         else if (t->type == MONO_TYPE_I8 || t->type == MONO_TYPE_I)
6614                                 opcode = OP_ATOMIC_LOAD_I8;
6615                         else if (is_ref || t->type == MONO_TYPE_U8 || t->type == MONO_TYPE_U)
6616                                 opcode = OP_ATOMIC_LOAD_U8;
6617 #else
6618                         else if (t->type == MONO_TYPE_I)
6619                                 opcode = OP_ATOMIC_LOAD_I4;
6620                         else if (is_ref || t->type == MONO_TYPE_U)
6621                                 opcode = OP_ATOMIC_LOAD_U4;
6622 #endif
6623
6624                         if (opcode) {
6625                                 if (!mono_arch_opcode_supported (opcode))
6626                                         return NULL;
6627
6628                                 MONO_INST_NEW (cfg, ins, opcode);
6629                                 ins->dreg = is_ref ? mono_alloc_ireg_ref (cfg) : (is_float ? mono_alloc_freg (cfg) : mono_alloc_ireg (cfg));
6630                                 ins->sreg1 = args [0]->dreg;
6631                                 ins->backend.memory_barrier_kind = MONO_MEMORY_BARRIER_ACQ;
6632                                 MONO_ADD_INS (cfg->cbb, ins);
6633
6634                                 switch (t->type) {
6635                                 case MONO_TYPE_BOOLEAN:
6636                                 case MONO_TYPE_I1:
6637                                 case MONO_TYPE_U1:
6638                                 case MONO_TYPE_I2:
6639                                 case MONO_TYPE_U2:
6640                                 case MONO_TYPE_I4:
6641                                 case MONO_TYPE_U4:
6642                                         ins->type = STACK_I4;
6643                                         break;
6644                                 case MONO_TYPE_I8:
6645                                 case MONO_TYPE_U8:
6646                                         ins->type = STACK_I8;
6647                                         break;
6648                                 case MONO_TYPE_I:
6649                                 case MONO_TYPE_U:
6650 #if SIZEOF_REGISTER == 8
6651                                         ins->type = STACK_I8;
6652 #else
6653                                         ins->type = STACK_I4;
6654 #endif
6655                                         break;
6656                                 case MONO_TYPE_R4:
6657                                         ins->type = cfg->r4_stack_type;
6658                                         break;
6659                                 case MONO_TYPE_R8:
6660                                         ins->type = STACK_R8;
6661                                         break;
6662                                 default:
6663                                         g_assert (is_ref);
6664                                         ins->type = STACK_OBJ;
6665                                         break;
6666                                 }
6667                         }
6668                 }
6669
6670                 if (!cfg->llvm_only && !strcmp (cmethod->name, "Write") && fsig->param_count == 2) {
6671                         guint32 opcode = 0;
6672                         MonoType *t = fsig->params [0];
6673                         gboolean is_ref;
6674
6675                         g_assert (t->byref);
6676                         is_ref = mini_type_is_reference (&mono_class_from_mono_type (t)->byval_arg);
6677                         if (t->type == MONO_TYPE_I1)
6678                                 opcode = OP_ATOMIC_STORE_I1;
6679                         else if (t->type == MONO_TYPE_U1 || t->type == MONO_TYPE_BOOLEAN)
6680                                 opcode = OP_ATOMIC_STORE_U1;
6681                         else if (t->type == MONO_TYPE_I2)
6682                                 opcode = OP_ATOMIC_STORE_I2;
6683                         else if (t->type == MONO_TYPE_U2)
6684                                 opcode = OP_ATOMIC_STORE_U2;
6685                         else if (t->type == MONO_TYPE_I4)
6686                                 opcode = OP_ATOMIC_STORE_I4;
6687                         else if (t->type == MONO_TYPE_U4)
6688                                 opcode = OP_ATOMIC_STORE_U4;
6689                         else if (t->type == MONO_TYPE_R4)
6690                                 opcode = OP_ATOMIC_STORE_R4;
6691                         else if (t->type == MONO_TYPE_R8)
6692                                 opcode = OP_ATOMIC_STORE_R8;
6693 #if SIZEOF_REGISTER == 8
6694                         else if (t->type == MONO_TYPE_I8 || t->type == MONO_TYPE_I)
6695                                 opcode = OP_ATOMIC_STORE_I8;
6696                         else if (is_ref || t->type == MONO_TYPE_U8 || t->type == MONO_TYPE_U)
6697                                 opcode = OP_ATOMIC_STORE_U8;
6698 #else
6699                         else if (t->type == MONO_TYPE_I)
6700                                 opcode = OP_ATOMIC_STORE_I4;
6701                         else if (is_ref || t->type == MONO_TYPE_U)
6702                                 opcode = OP_ATOMIC_STORE_U4;
6703 #endif
6704
6705                         if (opcode) {
6706                                 if (!mono_arch_opcode_supported (opcode))
6707                                         return NULL;
6708
6709                                 MONO_INST_NEW (cfg, ins, opcode);
6710                                 ins->dreg = args [0]->dreg;
6711                                 ins->sreg1 = args [1]->dreg;
6712                                 ins->backend.memory_barrier_kind = MONO_MEMORY_BARRIER_REL;
6713                                 MONO_ADD_INS (cfg->cbb, ins);
6714
6715                                 if (cfg->gen_write_barriers && is_ref)
6716                                         emit_write_barrier (cfg, args [0], args [1]);
6717                         }
6718                 }
6719
6720                 if (ins)
6721                         return ins;
6722         } else if (cmethod->klass->image == mono_defaults.corlib &&
6723                            (strcmp (cmethod->klass->name_space, "System.Diagnostics") == 0) &&
6724                            (strcmp (cmethod->klass->name, "Debugger") == 0)) {
6725                 if (!strcmp (cmethod->name, "Break") && fsig->param_count == 0) {
6726                         if (should_insert_brekpoint (cfg->method)) {
6727                                 ins = mono_emit_jit_icall (cfg, mono_debugger_agent_user_break, NULL);
6728                         } else {
6729                                 MONO_INST_NEW (cfg, ins, OP_NOP);
6730                                 MONO_ADD_INS (cfg->cbb, ins);
6731                         }
6732                         return ins;
6733                 }
6734         } else if (cmethod->klass->image == mono_defaults.corlib &&
6735                    (strcmp (cmethod->klass->name_space, "System") == 0) &&
6736                    (strcmp (cmethod->klass->name, "Environment") == 0)) {
6737                 if (!strcmp (cmethod->name, "get_IsRunningOnWindows") && fsig->param_count == 0) {
6738 #ifdef TARGET_WIN32
6739                         EMIT_NEW_ICONST (cfg, ins, 1);
6740 #else
6741                         EMIT_NEW_ICONST (cfg, ins, 0);
6742 #endif
6743                 }
6744         } else if (cmethod->klass->image == mono_defaults.corlib &&
6745                            (strcmp (cmethod->klass->name_space, "System.Reflection") == 0) &&
6746                            (strcmp (cmethod->klass->name, "Assembly") == 0)) {
6747                 if (cfg->llvm_only && !strcmp (cmethod->name, "GetExecutingAssembly")) {
6748                         /* No stack walks are currently available, so implement this as an intrinsic */
6749                         MonoInst *assembly_ins;
6750
6751                         EMIT_NEW_AOTCONST (cfg, assembly_ins, MONO_PATCH_INFO_IMAGE, cfg->method->klass->image);
6752                         ins = mono_emit_jit_icall (cfg, mono_get_assembly_object, &assembly_ins);
6753                         return ins;
6754                 }
6755         } else if (cmethod->klass->image == mono_defaults.corlib &&
6756                            (strcmp (cmethod->klass->name_space, "System.Reflection") == 0) &&
6757                            (strcmp (cmethod->klass->name, "MethodBase") == 0)) {
6758                 if (cfg->llvm_only && !strcmp (cmethod->name, "GetCurrentMethod")) {
6759                         /* No stack walks are currently available, so implement this as an intrinsic */
6760                         MonoInst *method_ins;
6761                         MonoMethod *declaring = cfg->method;
6762
6763                         /* This returns the declaring generic method */
6764                         if (declaring->is_inflated)
6765                                 declaring = ((MonoMethodInflated*)cfg->method)->declaring;
6766                         EMIT_NEW_AOTCONST (cfg, method_ins, MONO_PATCH_INFO_METHODCONST, declaring);
6767                         ins = mono_emit_jit_icall (cfg, mono_get_method_object, &method_ins);
6768                         cfg->no_inline = TRUE;
6769                         if (cfg->method != cfg->current_method)
6770                                 inline_failure (cfg, "MethodBase:GetCurrentMethod ()");
6771                         return ins;
6772                 }
6773         } else if (cmethod->klass == mono_defaults.math_class) {
6774                 /* 
6775                  * There is general branchless code for Min/Max, but it does not work for 
6776                  * all inputs:
6777                  * http://everything2.com/?node_id=1051618
6778                  */
6779         } else if (((!strcmp (cmethod->klass->image->assembly->aname.name, "MonoMac") ||
6780                     !strcmp (cmethod->klass->image->assembly->aname.name, "monotouch")) &&
6781                                 !strcmp (cmethod->klass->name_space, "XamCore.ObjCRuntime") &&
6782                                 !strcmp (cmethod->klass->name, "Selector")) ||
6783                            (!strcmp (cmethod->klass->image->assembly->aname.name, "Xamarin.iOS") &&
6784                                 !strcmp (cmethod->klass->name_space, "ObjCRuntime") &&
6785                                 !strcmp (cmethod->klass->name, "Selector"))
6786                            ) {
6787                 if (cfg->backend->have_objc_get_selector &&
6788                         !strcmp (cmethod->name, "GetHandle") && fsig->param_count == 1 &&
6789                     (args [0]->opcode == OP_GOT_ENTRY || args [0]->opcode == OP_AOTCONST) &&
6790                     cfg->compile_aot && !cfg->llvm_only) {
6791                         MonoInst *pi;
6792                         MonoJumpInfoToken *ji;
6793                         char *s;
6794
6795                         // FIXME: llvmonly
6796
6797                         cfg->exception_message = g_strdup ("GetHandle");
6798                         cfg->disable_llvm = TRUE;
6799
6800                         if (args [0]->opcode == OP_GOT_ENTRY) {
6801                                 pi = (MonoInst *)args [0]->inst_p1;
6802                                 g_assert (pi->opcode == OP_PATCH_INFO);
6803                                 g_assert (GPOINTER_TO_INT (pi->inst_p1) == MONO_PATCH_INFO_LDSTR);
6804                                 ji = (MonoJumpInfoToken *)pi->inst_p0;
6805                         } else {
6806                                 g_assert (GPOINTER_TO_INT (args [0]->inst_p1) == MONO_PATCH_INFO_LDSTR);
6807                                 ji = (MonoJumpInfoToken *)args [0]->inst_p0;
6808                         }
6809
6810                         NULLIFY_INS (args [0]);
6811
6812                         s = mono_ldstr_utf8 (ji->image, mono_metadata_token_index (ji->token), &cfg->error);
6813                         return_val_if_nok (&cfg->error, NULL);
6814
6815                         MONO_INST_NEW (cfg, ins, OP_OBJC_GET_SELECTOR);
6816                         ins->dreg = mono_alloc_ireg (cfg);
6817                         // FIXME: Leaks
6818                         ins->inst_p0 = s;
6819                         MONO_ADD_INS (cfg->cbb, ins);
6820                         return ins;
6821                 }
6822         }
6823
6824 #ifdef MONO_ARCH_SIMD_INTRINSICS
6825         if (cfg->opt & MONO_OPT_SIMD) {
6826                 ins = mono_emit_simd_intrinsics (cfg, cmethod, fsig, args);
6827                 if (ins)
6828                         return ins;
6829         }
6830 #endif
6831
6832         ins = mono_emit_native_types_intrinsics (cfg, cmethod, fsig, args);
6833         if (ins)
6834                 return ins;
6835
6836         if (COMPILE_LLVM (cfg)) {
6837                 ins = llvm_emit_inst_for_method (cfg, cmethod, fsig, args);
6838                 if (ins)
6839                         return ins;
6840         }
6841
6842         return mono_arch_emit_inst_for_method (cfg, cmethod, fsig, args);
6843 }
6844
6845 /*
6846  * This entry point could be used later for arbitrary method
6847  * redirection.
6848  */
6849 inline static MonoInst*
6850 mini_redirect_call (MonoCompile *cfg, MonoMethod *method,  
6851                                         MonoMethodSignature *signature, MonoInst **args, MonoInst *this_ins)
6852 {
6853         if (method->klass == mono_defaults.string_class) {
6854                 /* managed string allocation support */
6855                 if (strcmp (method->name, "InternalAllocateStr") == 0 && !(mono_profiler_events & MONO_PROFILE_ALLOCATIONS) && !(cfg->opt & MONO_OPT_SHARED)) {
6856                         MonoInst *iargs [2];
6857                         MonoVTable *vtable = mono_class_vtable (cfg->domain, method->klass);
6858                         MonoMethod *managed_alloc = NULL;
6859
6860                         g_assert (vtable); /*Should not fail since it System.String*/
6861 #ifndef MONO_CROSS_COMPILE
6862                         managed_alloc = mono_gc_get_managed_allocator (method->klass, FALSE, FALSE);
6863 #endif
6864                         if (!managed_alloc)
6865                                 return NULL;
6866                         EMIT_NEW_VTABLECONST (cfg, iargs [0], vtable);
6867                         iargs [1] = args [0];
6868                         return mono_emit_method_call (cfg, managed_alloc, iargs, this_ins);
6869                 }
6870         }
6871         return NULL;
6872 }
6873
6874 static void
6875 mono_save_args (MonoCompile *cfg, MonoMethodSignature *sig, MonoInst **sp)
6876 {
6877         MonoInst *store, *temp;
6878         int i;
6879
6880         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
6881                 MonoType *argtype = (sig->hasthis && (i == 0)) ? type_from_stack_type (*sp) : sig->params [i - sig->hasthis];
6882
6883                 /*
6884                  * FIXME: We should use *args++ = sp [0], but that would mean the arg
6885                  * would be different than the MonoInst's used to represent arguments, and
6886                  * the ldelema implementation can't deal with that.
6887                  * Solution: When ldelema is used on an inline argument, create a var for 
6888                  * it, emit ldelema on that var, and emit the saving code below in
6889                  * inline_method () if needed.
6890                  */
6891                 temp = mono_compile_create_var (cfg, argtype, OP_LOCAL);
6892                 cfg->args [i] = temp;
6893                 /* This uses cfg->args [i] which is set by the preceeding line */
6894                 EMIT_NEW_ARGSTORE (cfg, store, i, *sp);
6895                 store->cil_code = sp [0]->cil_code;
6896                 sp++;
6897         }
6898 }
6899
6900 #define MONO_INLINE_CALLED_LIMITED_METHODS 1
6901 #define MONO_INLINE_CALLER_LIMITED_METHODS 1
6902
6903 #if (MONO_INLINE_CALLED_LIMITED_METHODS)
6904 static gboolean
6905 check_inline_called_method_name_limit (MonoMethod *called_method)
6906 {
6907         int strncmp_result;
6908         static const char *limit = NULL;
6909         
6910         if (limit == NULL) {
6911                 const char *limit_string = g_getenv ("MONO_INLINE_CALLED_METHOD_NAME_LIMIT");
6912
6913                 if (limit_string != NULL)
6914                         limit = limit_string;
6915                 else
6916                         limit = "";
6917         }
6918
6919         if (limit [0] != '\0') {
6920                 char *called_method_name = mono_method_full_name (called_method, TRUE);
6921
6922                 strncmp_result = strncmp (called_method_name, limit, strlen (limit));
6923                 g_free (called_method_name);
6924         
6925                 //return (strncmp_result <= 0);
6926                 return (strncmp_result == 0);
6927         } else {
6928                 return TRUE;
6929         }
6930 }
6931 #endif
6932
6933 #if (MONO_INLINE_CALLER_LIMITED_METHODS)
6934 static gboolean
6935 check_inline_caller_method_name_limit (MonoMethod *caller_method)
6936 {
6937         int strncmp_result;
6938         static const char *limit = NULL;
6939         
6940         if (limit == NULL) {
6941                 const char *limit_string = g_getenv ("MONO_INLINE_CALLER_METHOD_NAME_LIMIT");
6942                 if (limit_string != NULL) {
6943                         limit = limit_string;
6944                 } else {
6945                         limit = "";
6946                 }
6947         }
6948
6949         if (limit [0] != '\0') {
6950                 char *caller_method_name = mono_method_full_name (caller_method, TRUE);
6951
6952                 strncmp_result = strncmp (caller_method_name, limit, strlen (limit));
6953                 g_free (caller_method_name);
6954         
6955                 //return (strncmp_result <= 0);
6956                 return (strncmp_result == 0);
6957         } else {
6958                 return TRUE;
6959         }
6960 }
6961 #endif
6962
6963 static void
6964 emit_init_rvar (MonoCompile *cfg, int dreg, MonoType *rtype)
6965 {
6966         static double r8_0 = 0.0;
6967         static float r4_0 = 0.0;
6968         MonoInst *ins;
6969         int t;
6970
6971         rtype = mini_get_underlying_type (rtype);
6972         t = rtype->type;
6973
6974         if (rtype->byref) {
6975                 MONO_EMIT_NEW_PCONST (cfg, dreg, NULL);
6976         } else if (t >= MONO_TYPE_BOOLEAN && t <= MONO_TYPE_U4) {
6977                 MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
6978         } else if (t == MONO_TYPE_I8 || t == MONO_TYPE_U8) {
6979                 MONO_EMIT_NEW_I8CONST (cfg, dreg, 0);
6980         } else if (cfg->r4fp && t == MONO_TYPE_R4) {
6981                 MONO_INST_NEW (cfg, ins, OP_R4CONST);
6982                 ins->type = STACK_R4;
6983                 ins->inst_p0 = (void*)&r4_0;
6984                 ins->dreg = dreg;
6985                 MONO_ADD_INS (cfg->cbb, ins);
6986         } else if (t == MONO_TYPE_R4 || t == MONO_TYPE_R8) {
6987                 MONO_INST_NEW (cfg, ins, OP_R8CONST);
6988                 ins->type = STACK_R8;
6989                 ins->inst_p0 = (void*)&r8_0;
6990                 ins->dreg = dreg;
6991                 MONO_ADD_INS (cfg->cbb, ins);
6992         } else if ((t == MONO_TYPE_VALUETYPE) || (t == MONO_TYPE_TYPEDBYREF) ||
6993                    ((t == MONO_TYPE_GENERICINST) && mono_type_generic_inst_is_valuetype (rtype))) {
6994                 MONO_EMIT_NEW_VZERO (cfg, dreg, mono_class_from_mono_type (rtype));
6995         } else if (((t == MONO_TYPE_VAR) || (t == MONO_TYPE_MVAR)) && mini_type_var_is_vt (rtype)) {
6996                 MONO_EMIT_NEW_VZERO (cfg, dreg, mono_class_from_mono_type (rtype));
6997         } else {
6998                 MONO_EMIT_NEW_PCONST (cfg, dreg, NULL);
6999         }
7000 }
7001
7002 static void
7003 emit_dummy_init_rvar (MonoCompile *cfg, int dreg, MonoType *rtype)
7004 {
7005         int t;
7006
7007         rtype = mini_get_underlying_type (rtype);
7008         t = rtype->type;
7009
7010         if (rtype->byref) {
7011                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_PCONST);
7012         } else if (t >= MONO_TYPE_BOOLEAN && t <= MONO_TYPE_U4) {
7013                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_ICONST);
7014         } else if (t == MONO_TYPE_I8 || t == MONO_TYPE_U8) {
7015                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_I8CONST);
7016         } else if (cfg->r4fp && t == MONO_TYPE_R4) {
7017                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_R4CONST);
7018         } else if (t == MONO_TYPE_R4 || t == MONO_TYPE_R8) {
7019                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_R8CONST);
7020         } else if ((t == MONO_TYPE_VALUETYPE) || (t == MONO_TYPE_TYPEDBYREF) ||
7021                    ((t == MONO_TYPE_GENERICINST) && mono_type_generic_inst_is_valuetype (rtype))) {
7022                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_VZERO);
7023         } else if (((t == MONO_TYPE_VAR) || (t == MONO_TYPE_MVAR)) && mini_type_var_is_vt (rtype)) {
7024                 MONO_EMIT_NEW_DUMMY_INIT (cfg, dreg, OP_DUMMY_VZERO);
7025         } else {
7026                 emit_init_rvar (cfg, dreg, rtype);
7027         }
7028 }
7029
7030 /* If INIT is FALSE, emit dummy initialization statements to keep the IR valid */
7031 static void
7032 emit_init_local (MonoCompile *cfg, int local, MonoType *type, gboolean init)
7033 {
7034         MonoInst *var = cfg->locals [local];
7035         if (COMPILE_SOFT_FLOAT (cfg)) {
7036                 MonoInst *store;
7037                 int reg = alloc_dreg (cfg, (MonoStackType)var->type);
7038                 emit_init_rvar (cfg, reg, type);
7039                 EMIT_NEW_LOCSTORE (cfg, store, local, cfg->cbb->last_ins);
7040         } else {
7041                 if (init)
7042                         emit_init_rvar (cfg, var->dreg, type);
7043                 else
7044                         emit_dummy_init_rvar (cfg, var->dreg, type);
7045         }
7046 }
7047
7048 /*
7049  * inline_method:
7050  *
7051  *   Return the cost of inlining CMETHOD.
7052  */
7053 static int
7054 inline_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **sp,
7055                            guchar *ip, guint real_offset, gboolean inline_always)
7056 {
7057         MonoError error;
7058         MonoInst *ins, *rvar = NULL;
7059         MonoMethodHeader *cheader;
7060         MonoBasicBlock *ebblock, *sbblock;
7061         int i, costs;
7062         MonoMethod *prev_inlined_method;
7063         MonoInst **prev_locals, **prev_args;
7064         MonoType **prev_arg_types;
7065         guint prev_real_offset;
7066         GHashTable *prev_cbb_hash;
7067         MonoBasicBlock **prev_cil_offset_to_bb;
7068         MonoBasicBlock *prev_cbb;
7069         unsigned char* prev_cil_start;
7070         guint32 prev_cil_offset_to_bb_len;
7071         MonoMethod *prev_current_method;
7072         MonoGenericContext *prev_generic_context;
7073         gboolean ret_var_set, prev_ret_var_set, prev_disable_inline, virtual_ = FALSE;
7074
7075         g_assert (cfg->exception_type == MONO_EXCEPTION_NONE);
7076
7077 #if (MONO_INLINE_CALLED_LIMITED_METHODS)
7078         if ((! inline_always) && ! check_inline_called_method_name_limit (cmethod))
7079                 return 0;
7080 #endif
7081 #if (MONO_INLINE_CALLER_LIMITED_METHODS)
7082         if ((! inline_always) && ! check_inline_caller_method_name_limit (cfg->method))
7083                 return 0;
7084 #endif
7085
7086         if (!fsig)
7087                 fsig = mono_method_signature (cmethod);
7088
7089         if (cfg->verbose_level > 2)
7090                 printf ("INLINE START %p %s -> %s\n", cmethod,  mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
7091
7092         if (!cmethod->inline_info) {
7093                 cfg->stat_inlineable_methods++;
7094                 cmethod->inline_info = 1;
7095         }
7096
7097         /* allocate local variables */
7098         cheader = mono_method_get_header_checked (cmethod, &error);
7099         if (!cheader) {
7100                 if (inline_always) {
7101                         mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
7102                         mono_error_move (&cfg->error, &error);
7103                 } else {
7104                         mono_error_cleanup (&error);
7105                 }
7106                 return 0;
7107         }
7108
7109         /*Must verify before creating locals as it can cause the JIT to assert.*/
7110         if (mono_compile_is_broken (cfg, cmethod, FALSE)) {
7111                 mono_metadata_free_mh (cheader);
7112                 return 0;
7113         }
7114
7115         /* allocate space to store the return value */
7116         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
7117                 rvar = mono_compile_create_var (cfg, fsig->ret, OP_LOCAL);
7118         }
7119
7120         prev_locals = cfg->locals;
7121         cfg->locals = (MonoInst **)mono_mempool_alloc0 (cfg->mempool, cheader->num_locals * sizeof (MonoInst*));
7122         for (i = 0; i < cheader->num_locals; ++i)
7123                 cfg->locals [i] = mono_compile_create_var (cfg, cheader->locals [i], OP_LOCAL);
7124
7125         /* allocate start and end blocks */
7126         /* This is needed so if the inline is aborted, we can clean up */
7127         NEW_BBLOCK (cfg, sbblock);
7128         sbblock->real_offset = real_offset;
7129
7130         NEW_BBLOCK (cfg, ebblock);
7131         ebblock->block_num = cfg->num_bblocks++;
7132         ebblock->real_offset = real_offset;
7133
7134         prev_args = cfg->args;
7135         prev_arg_types = cfg->arg_types;
7136         prev_inlined_method = cfg->inlined_method;
7137         cfg->inlined_method = cmethod;
7138         cfg->ret_var_set = FALSE;
7139         cfg->inline_depth ++;
7140         prev_real_offset = cfg->real_offset;
7141         prev_cbb_hash = cfg->cbb_hash;
7142         prev_cil_offset_to_bb = cfg->cil_offset_to_bb;
7143         prev_cil_offset_to_bb_len = cfg->cil_offset_to_bb_len;
7144         prev_cil_start = cfg->cil_start;
7145         prev_cbb = cfg->cbb;
7146         prev_current_method = cfg->current_method;
7147         prev_generic_context = cfg->generic_context;
7148         prev_ret_var_set = cfg->ret_var_set;
7149         prev_disable_inline = cfg->disable_inline;
7150
7151         if (ip && *ip == CEE_CALLVIRT && !(cmethod->flags & METHOD_ATTRIBUTE_STATIC))
7152                 virtual_ = TRUE;
7153
7154         costs = mono_method_to_ir (cfg, cmethod, sbblock, ebblock, rvar, sp, real_offset, virtual_);
7155
7156         ret_var_set = cfg->ret_var_set;
7157
7158         cfg->inlined_method = prev_inlined_method;
7159         cfg->real_offset = prev_real_offset;
7160         cfg->cbb_hash = prev_cbb_hash;
7161         cfg->cil_offset_to_bb = prev_cil_offset_to_bb;
7162         cfg->cil_offset_to_bb_len = prev_cil_offset_to_bb_len;
7163         cfg->cil_start = prev_cil_start;
7164         cfg->locals = prev_locals;
7165         cfg->args = prev_args;
7166         cfg->arg_types = prev_arg_types;
7167         cfg->current_method = prev_current_method;
7168         cfg->generic_context = prev_generic_context;
7169         cfg->ret_var_set = prev_ret_var_set;
7170         cfg->disable_inline = prev_disable_inline;
7171         cfg->inline_depth --;
7172
7173         if ((costs >= 0 && costs < 60) || inline_always || (costs >= 0 && (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_AGGRESSIVE_INLINING))) {
7174                 if (cfg->verbose_level > 2)
7175                         printf ("INLINE END %s -> %s\n", mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
7176                 
7177                 cfg->stat_inlined_methods++;
7178
7179                 /* always add some code to avoid block split failures */
7180                 MONO_INST_NEW (cfg, ins, OP_NOP);
7181                 MONO_ADD_INS (prev_cbb, ins);
7182
7183                 prev_cbb->next_bb = sbblock;
7184                 link_bblock (cfg, prev_cbb, sbblock);
7185
7186                 /* 
7187                  * Get rid of the begin and end bblocks if possible to aid local
7188                  * optimizations.
7189                  */
7190                 mono_merge_basic_blocks (cfg, prev_cbb, sbblock);
7191
7192                 if ((prev_cbb->out_count == 1) && (prev_cbb->out_bb [0]->in_count == 1) && (prev_cbb->out_bb [0] != ebblock))
7193                         mono_merge_basic_blocks (cfg, prev_cbb, prev_cbb->out_bb [0]);
7194
7195                 if ((ebblock->in_count == 1) && ebblock->in_bb [0]->out_count == 1) {
7196                         MonoBasicBlock *prev = ebblock->in_bb [0];
7197
7198                         if (prev->next_bb == ebblock) {
7199                                 mono_merge_basic_blocks (cfg, prev, ebblock);
7200                                 cfg->cbb = prev;
7201                                 if ((prev_cbb->out_count == 1) && (prev_cbb->out_bb [0]->in_count == 1) && (prev_cbb->out_bb [0] == prev)) {
7202                                         mono_merge_basic_blocks (cfg, prev_cbb, prev);
7203                                         cfg->cbb = prev_cbb;
7204                                 }
7205                         } else {
7206                                 /* There could be a bblock after 'prev', and making 'prev' the current bb could cause problems */
7207                                 cfg->cbb = ebblock;
7208                         }
7209                 } else {
7210                         /* 
7211                          * Its possible that the rvar is set in some prev bblock, but not in others.
7212                          * (#1835).
7213                          */
7214                         if (rvar) {
7215                                 MonoBasicBlock *bb;
7216
7217                                 for (i = 0; i < ebblock->in_count; ++i) {
7218                                         bb = ebblock->in_bb [i];
7219
7220                                         if (bb->last_ins && bb->last_ins->opcode == OP_NOT_REACHED) {
7221                                                 cfg->cbb = bb;
7222
7223                                                 emit_init_rvar (cfg, rvar->dreg, fsig->ret);
7224                                         }
7225                                 }
7226                         }
7227
7228                         cfg->cbb = ebblock;
7229                 }
7230
7231                 if (rvar) {
7232                         /*
7233                          * If the inlined method contains only a throw, then the ret var is not 
7234                          * set, so set it to a dummy value.
7235                          */
7236                         if (!ret_var_set)
7237                                 emit_init_rvar (cfg, rvar->dreg, fsig->ret);
7238
7239                         EMIT_NEW_TEMPLOAD (cfg, ins, rvar->inst_c0);
7240                         *sp++ = ins;
7241                 }
7242                 cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, cheader);
7243                 return costs + 1;
7244         } else {
7245                 if (cfg->verbose_level > 2)
7246                         printf ("INLINE ABORTED %s (cost %d)\n", mono_method_full_name (cmethod, TRUE), costs);
7247                 cfg->exception_type = MONO_EXCEPTION_NONE;
7248
7249                 /* This gets rid of the newly added bblocks */
7250                 cfg->cbb = prev_cbb;
7251         }
7252         cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, cheader);
7253         return 0;
7254 }
7255
7256 /*
7257  * Some of these comments may well be out-of-date.
7258  * Design decisions: we do a single pass over the IL code (and we do bblock 
7259  * splitting/merging in the few cases when it's required: a back jump to an IL
7260  * address that was not already seen as bblock starting point).
7261  * Code is validated as we go (full verification is still better left to metadata/verify.c).
7262  * Complex operations are decomposed in simpler ones right away. We need to let the 
7263  * arch-specific code peek and poke inside this process somehow (except when the 
7264  * optimizations can take advantage of the full semantic info of coarse opcodes).
7265  * All the opcodes of the form opcode.s are 'normalized' to opcode.
7266  * MonoInst->opcode initially is the IL opcode or some simplification of that 
7267  * (OP_LOAD, OP_STORE). The arch-specific code may rearrange it to an arch-specific 
7268  * opcode with value bigger than OP_LAST.
7269  * At this point the IR can be handed over to an interpreter, a dumb code generator
7270  * or to the optimizing code generator that will translate it to SSA form.
7271  *
7272  * Profiling directed optimizations.
7273  * We may compile by default with few or no optimizations and instrument the code
7274  * or the user may indicate what methods to optimize the most either in a config file
7275  * or through repeated runs where the compiler applies offline the optimizations to 
7276  * each method and then decides if it was worth it.
7277  */
7278
7279 #define CHECK_TYPE(ins) if (!(ins)->type) UNVERIFIED
7280 #define CHECK_STACK(num) if ((sp - stack_start) < (num)) UNVERIFIED
7281 #define CHECK_STACK_OVF(num) if (((sp - stack_start) + (num)) > header->max_stack) UNVERIFIED
7282 #define CHECK_ARG(num) if ((unsigned)(num) >= (unsigned)num_args) UNVERIFIED
7283 #define CHECK_LOCAL(num) if ((unsigned)(num) >= (unsigned)header->num_locals) UNVERIFIED
7284 #define CHECK_OPSIZE(size) if (ip + size > end) UNVERIFIED
7285 #define CHECK_UNVERIFIABLE(cfg) if (cfg->unverifiable) UNVERIFIED
7286 #define CHECK_TYPELOAD(klass) if (!(klass) || mono_class_has_failure (klass)) TYPE_LOAD_ERROR ((klass))
7287
7288 /* offset from br.s -> br like opcodes */
7289 #define BIG_BRANCH_OFFSET 13
7290
7291 static gboolean
7292 ip_in_bb (MonoCompile *cfg, MonoBasicBlock *bb, const guint8* ip)
7293 {
7294         MonoBasicBlock *b = cfg->cil_offset_to_bb [ip - cfg->cil_start];
7295
7296         return b == NULL || b == bb;
7297 }
7298
7299 static int
7300 get_basic_blocks (MonoCompile *cfg, MonoMethodHeader* header, guint real_offset, unsigned char *start, unsigned char *end, unsigned char **pos)
7301 {
7302         unsigned char *ip = start;
7303         unsigned char *target;
7304         int i;
7305         guint cli_addr;
7306         MonoBasicBlock *bblock;
7307         const MonoOpcode *opcode;
7308
7309         while (ip < end) {
7310                 cli_addr = ip - start;
7311                 i = mono_opcode_value ((const guint8 **)&ip, end);
7312                 if (i < 0)
7313                         UNVERIFIED;
7314                 opcode = &mono_opcodes [i];
7315                 switch (opcode->argument) {
7316                 case MonoInlineNone:
7317                         ip++; 
7318                         break;
7319                 case MonoInlineString:
7320                 case MonoInlineType:
7321                 case MonoInlineField:
7322                 case MonoInlineMethod:
7323                 case MonoInlineTok:
7324                 case MonoInlineSig:
7325                 case MonoShortInlineR:
7326                 case MonoInlineI:
7327                         ip += 5;
7328                         break;
7329                 case MonoInlineVar:
7330                         ip += 3;
7331                         break;
7332                 case MonoShortInlineVar:
7333                 case MonoShortInlineI:
7334                         ip += 2;
7335                         break;
7336                 case MonoShortInlineBrTarget:
7337                         target = start + cli_addr + 2 + (signed char)ip [1];
7338                         GET_BBLOCK (cfg, bblock, target);
7339                         ip += 2;
7340                         if (ip < end)
7341                                 GET_BBLOCK (cfg, bblock, ip);
7342                         break;
7343                 case MonoInlineBrTarget:
7344                         target = start + cli_addr + 5 + (gint32)read32 (ip + 1);
7345                         GET_BBLOCK (cfg, bblock, target);
7346                         ip += 5;
7347                         if (ip < end)
7348                                 GET_BBLOCK (cfg, bblock, ip);
7349                         break;
7350                 case MonoInlineSwitch: {
7351                         guint32 n = read32 (ip + 1);
7352                         guint32 j;
7353                         ip += 5;
7354                         cli_addr += 5 + 4 * n;
7355                         target = start + cli_addr;
7356                         GET_BBLOCK (cfg, bblock, target);
7357                         
7358                         for (j = 0; j < n; ++j) {
7359                                 target = start + cli_addr + (gint32)read32 (ip);
7360                                 GET_BBLOCK (cfg, bblock, target);
7361                                 ip += 4;
7362                         }
7363                         break;
7364                 }
7365                 case MonoInlineR:
7366                 case MonoInlineI8:
7367                         ip += 9;
7368                         break;
7369                 default:
7370                         g_assert_not_reached ();
7371                 }
7372
7373                 if (i == CEE_THROW) {
7374                         unsigned char *bb_start = ip - 1;
7375                         
7376                         /* Find the start of the bblock containing the throw */
7377                         bblock = NULL;
7378                         while ((bb_start >= start) && !bblock) {
7379                                 bblock = cfg->cil_offset_to_bb [(bb_start) - start];
7380                                 bb_start --;
7381                         }
7382                         if (bblock)
7383                                 bblock->out_of_line = 1;
7384                 }
7385         }
7386         return 0;
7387 unverified:
7388 exception_exit:
7389         *pos = ip;
7390         return 1;
7391 }
7392
7393 static inline MonoMethod *
7394 mini_get_method_allow_open (MonoMethod *m, guint32 token, MonoClass *klass, MonoGenericContext *context, MonoError *error)
7395 {
7396         MonoMethod *method;
7397
7398         mono_error_init (error);
7399
7400         if (m->wrapper_type != MONO_WRAPPER_NONE) {
7401                 method = (MonoMethod *)mono_method_get_wrapper_data (m, token);
7402                 if (context) {
7403                         method = mono_class_inflate_generic_method_checked (method, context, error);
7404                 }
7405         } else {
7406                 method = mono_get_method_checked (m->klass->image, token, klass, context, error);
7407         }
7408
7409         return method;
7410 }
7411
7412 static inline MonoMethod *
7413 mini_get_method (MonoCompile *cfg, MonoMethod *m, guint32 token, MonoClass *klass, MonoGenericContext *context)
7414 {
7415         MonoError error;
7416         MonoMethod *method = mini_get_method_allow_open (m, token, klass, context, cfg ? &cfg->error : &error);
7417
7418         if (method && cfg && !cfg->gshared && mono_class_is_open_constructed_type (&method->klass->byval_arg)) {
7419                 mono_error_set_bad_image (&cfg->error, cfg->method->klass->image, "Method with open type while not compiling gshared");
7420                 method = NULL;
7421         }
7422
7423         if (!method && !cfg)
7424                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
7425
7426         return method;
7427 }
7428
7429 static inline MonoClass*
7430 mini_get_class (MonoMethod *method, guint32 token, MonoGenericContext *context)
7431 {
7432         MonoError error;
7433         MonoClass *klass;
7434
7435         if (method->wrapper_type != MONO_WRAPPER_NONE) {
7436                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
7437                 if (context) {
7438                         klass = mono_class_inflate_generic_class_checked (klass, context, &error);
7439                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
7440                 }
7441         } else {
7442                 klass = mono_class_get_and_inflate_typespec_checked (method->klass->image, token, context, &error);
7443                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
7444         }
7445         if (klass)
7446                 mono_class_init (klass);
7447         return klass;
7448 }
7449
7450 static inline MonoMethodSignature*
7451 mini_get_signature (MonoMethod *method, guint32 token, MonoGenericContext *context, MonoError *error)
7452 {
7453         MonoMethodSignature *fsig;
7454
7455         mono_error_init (error);
7456         if (method->wrapper_type != MONO_WRAPPER_NONE) {
7457                 fsig = (MonoMethodSignature *)mono_method_get_wrapper_data (method, token);
7458         } else {
7459                 fsig = mono_metadata_parse_signature_checked (method->klass->image, token, error);
7460                 return_val_if_nok (error, NULL);
7461         }
7462         if (context) {
7463                 fsig = mono_inflate_generic_signature(fsig, context, error);
7464         }
7465         return fsig;
7466 }
7467
7468 static MonoMethod*
7469 throw_exception (void)
7470 {
7471         static MonoMethod *method = NULL;
7472
7473         if (!method) {
7474                 MonoSecurityManager *secman = mono_security_manager_get_methods ();
7475                 method = mono_class_get_method_from_name (secman->securitymanager, "ThrowException", 1);
7476         }
7477         g_assert (method);
7478         return method;
7479 }
7480
7481 static void
7482 emit_throw_exception (MonoCompile *cfg, MonoException *ex)
7483 {
7484         MonoMethod *thrower = throw_exception ();
7485         MonoInst *args [1];
7486
7487         EMIT_NEW_PCONST (cfg, args [0], ex);
7488         mono_emit_method_call (cfg, thrower, args, NULL);
7489 }
7490
7491 /*
7492  * Return the original method is a wrapper is specified. We can only access 
7493  * the custom attributes from the original method.
7494  */
7495 static MonoMethod*
7496 get_original_method (MonoMethod *method)
7497 {
7498         if (method->wrapper_type == MONO_WRAPPER_NONE)
7499                 return method;
7500
7501         /* native code (which is like Critical) can call any managed method XXX FIXME XXX to validate all usages */
7502         if (method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED)
7503                 return NULL;
7504
7505         /* in other cases we need to find the original method */
7506         return mono_marshal_method_from_wrapper (method);
7507 }
7508
7509 static void
7510 ensure_method_is_allowed_to_access_field (MonoCompile *cfg, MonoMethod *caller, MonoClassField *field)
7511 {
7512         /* we can't get the coreclr security level on wrappers since they don't have the attributes */
7513         MonoException *ex = mono_security_core_clr_is_field_access_allowed (get_original_method (caller), field);
7514         if (ex)
7515                 emit_throw_exception (cfg, ex);
7516 }
7517
7518 static void
7519 ensure_method_is_allowed_to_call_method (MonoCompile *cfg, MonoMethod *caller, MonoMethod *callee)
7520 {
7521         /* we can't get the coreclr security level on wrappers since they don't have the attributes */
7522         MonoException *ex = mono_security_core_clr_is_call_allowed (get_original_method (caller), callee);
7523         if (ex)
7524                 emit_throw_exception (cfg, ex);
7525 }
7526
7527 /*
7528  * Check that the IL instructions at ip are the array initialization
7529  * sequence and return the pointer to the data and the size.
7530  */
7531 static const char*
7532 initialize_array_data (MonoMethod *method, gboolean aot, unsigned char *ip, MonoClass *klass, guint32 len, int *out_size, guint32 *out_field_token)
7533 {
7534         /*
7535          * newarr[System.Int32]
7536          * dup
7537          * ldtoken field valuetype ...
7538          * call void class [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(class [mscorlib]System.Array, valuetype [mscorlib]System.RuntimeFieldHandle)
7539          */
7540         if (ip [0] == CEE_DUP && ip [1] == CEE_LDTOKEN && ip [5] == 0x4 && ip [6] == CEE_CALL) {
7541                 MonoError error;
7542                 guint32 token = read32 (ip + 7);
7543                 guint32 field_token = read32 (ip + 2);
7544                 guint32 field_index = field_token & 0xffffff;
7545                 guint32 rva;
7546                 const char *data_ptr;
7547                 int size = 0;
7548                 MonoMethod *cmethod;
7549                 MonoClass *dummy_class;
7550                 MonoClassField *field = mono_field_from_token_checked (method->klass->image, field_token, &dummy_class, NULL, &error);
7551                 int dummy_align;
7552
7553                 if (!field) {
7554                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
7555                         return NULL;
7556                 }
7557
7558                 *out_field_token = field_token;
7559
7560                 cmethod = mini_get_method (NULL, method, token, NULL, NULL);
7561                 if (!cmethod)
7562                         return NULL;
7563                 if (strcmp (cmethod->name, "InitializeArray") || strcmp (cmethod->klass->name, "RuntimeHelpers") || cmethod->klass->image != mono_defaults.corlib)
7564                         return NULL;
7565                 switch (mono_type_get_underlying_type (&klass->byval_arg)->type) {
7566                 case MONO_TYPE_BOOLEAN:
7567                 case MONO_TYPE_I1:
7568                 case MONO_TYPE_U1:
7569                         size = 1; break;
7570                 /* we need to swap on big endian, so punt. Should we handle R4 and R8 as well? */
7571 #if TARGET_BYTE_ORDER == G_LITTLE_ENDIAN
7572                 case MONO_TYPE_CHAR:
7573                 case MONO_TYPE_I2:
7574                 case MONO_TYPE_U2:
7575                         size = 2; break;
7576                 case MONO_TYPE_I4:
7577                 case MONO_TYPE_U4:
7578                 case MONO_TYPE_R4:
7579                         size = 4; break;
7580                 case MONO_TYPE_R8:
7581                 case MONO_TYPE_I8:
7582                 case MONO_TYPE_U8:
7583                         size = 8; break;
7584 #endif
7585                 default:
7586                         return NULL;
7587                 }
7588                 size *= len;
7589                 if (size > mono_type_size (field->type, &dummy_align))
7590                     return NULL;
7591                 *out_size = size;
7592                 /*g_print ("optimized in %s: size: %d, numelems: %d\n", method->name, size, newarr->inst_newa_len->inst_c0);*/
7593                 if (!image_is_dynamic (method->klass->image)) {
7594                         field_index = read32 (ip + 2) & 0xffffff;
7595                         mono_metadata_field_info (method->klass->image, field_index - 1, NULL, &rva, NULL);
7596                         data_ptr = mono_image_rva_map (method->klass->image, rva);
7597                         /*g_print ("field: 0x%08x, rva: %d, rva_ptr: %p\n", read32 (ip + 2), rva, data_ptr);*/
7598                         /* for aot code we do the lookup on load */
7599                         if (aot && data_ptr)
7600                                 return (const char *)GUINT_TO_POINTER (rva);
7601                 } else {
7602                         /*FIXME is it possible to AOT a SRE assembly not meant to be saved? */ 
7603                         g_assert (!aot);
7604                         data_ptr = mono_field_get_data (field);
7605                 }
7606                 return data_ptr;
7607         }
7608         return NULL;
7609 }
7610
7611 static void
7612 set_exception_type_from_invalid_il (MonoCompile *cfg, MonoMethod *method, unsigned char *ip)
7613 {
7614         MonoError error;
7615         char *method_fname = mono_method_full_name (method, TRUE);
7616         char *method_code;
7617         MonoMethodHeader *header = mono_method_get_header_checked (method, &error);
7618
7619         if (!header) {
7620                 method_code = g_strdup_printf ("could not parse method body due to %s", mono_error_get_message (&error));
7621                 mono_error_cleanup (&error);
7622         } else if (header->code_size == 0)
7623                 method_code = g_strdup ("method body is empty.");
7624         else
7625                 method_code = mono_disasm_code_one (NULL, method, ip, NULL);
7626         mono_cfg_set_exception_invalid_program (cfg, g_strdup_printf ("Invalid IL code in %s: %s\n", method_fname, method_code));
7627         g_free (method_fname);
7628         g_free (method_code);
7629         cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, header);
7630 }
7631
7632 static void
7633 emit_stloc_ir (MonoCompile *cfg, MonoInst **sp, MonoMethodHeader *header, int n)
7634 {
7635         MonoInst *ins;
7636         guint32 opcode = mono_type_to_regmove (cfg, header->locals [n]);
7637         if ((opcode == OP_MOVE) && cfg->cbb->last_ins == sp [0]  &&
7638                         ((sp [0]->opcode == OP_ICONST) || (sp [0]->opcode == OP_I8CONST))) {
7639                 /* Optimize reg-reg moves away */
7640                 /* 
7641                  * Can't optimize other opcodes, since sp[0] might point to
7642                  * the last ins of a decomposed opcode.
7643                  */
7644                 sp [0]->dreg = (cfg)->locals [n]->dreg;
7645         } else {
7646                 EMIT_NEW_LOCSTORE (cfg, ins, n, *sp);
7647         }
7648 }
7649
7650 /*
7651  * ldloca inhibits many optimizations so try to get rid of it in common
7652  * cases.
7653  */
7654 static inline unsigned char *
7655 emit_optimized_ldloca_ir (MonoCompile *cfg, unsigned char *ip, unsigned char *end, int size)
7656 {
7657         int local, token;
7658         MonoClass *klass;
7659         MonoType *type;
7660
7661         if (size == 1) {
7662                 local = ip [1];
7663                 ip += 2;
7664         } else {
7665                 local = read16 (ip + 2);
7666                 ip += 4;
7667         }
7668         
7669         if (ip + 6 < end && (ip [0] == CEE_PREFIX1) && (ip [1] == CEE_INITOBJ) && ip_in_bb (cfg, cfg->cbb, ip + 1)) {
7670                 /* From the INITOBJ case */
7671                 token = read32 (ip + 2);
7672                 klass = mini_get_class (cfg->current_method, token, cfg->generic_context);
7673                 CHECK_TYPELOAD (klass);
7674                 type = mini_get_underlying_type (&klass->byval_arg);
7675                 emit_init_local (cfg, local, type, TRUE);
7676                 return ip + 6;
7677         }
7678  exception_exit:
7679         return NULL;
7680 }
7681
7682 static MonoInst*
7683 emit_llvmonly_virtual_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, int context_used, MonoInst **sp)
7684 {
7685         MonoInst *icall_args [16];
7686         MonoInst *call_target, *ins, *vtable_ins;
7687         int arg_reg, this_reg, vtable_reg;
7688         gboolean is_iface = cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE;
7689         gboolean is_gsharedvt = cfg->gsharedvt && mini_is_gsharedvt_variable_signature (fsig);
7690         gboolean variant_iface = FALSE;
7691         guint32 slot;
7692         int offset;
7693
7694         /*
7695          * In llvm-only mode, vtables contain function descriptors instead of
7696          * method addresses/trampolines.
7697          */
7698         MONO_EMIT_NULL_CHECK (cfg, sp [0]->dreg);
7699
7700         if (is_iface)
7701                 slot = mono_method_get_imt_slot (cmethod);
7702         else
7703                 slot = mono_method_get_vtable_index (cmethod);
7704
7705         this_reg = sp [0]->dreg;
7706
7707         if (is_iface && mono_class_has_variant_generic_params (cmethod->klass))
7708                 variant_iface = TRUE;
7709
7710         if (!fsig->generic_param_count && !is_iface && !is_gsharedvt) {
7711                 /*
7712                  * The simplest case, a normal virtual call.
7713                  */
7714                 int slot_reg = alloc_preg (cfg);
7715                 int addr_reg = alloc_preg (cfg);
7716                 int arg_reg = alloc_preg (cfg);
7717                 MonoBasicBlock *non_null_bb;
7718
7719                 vtable_reg = alloc_preg (cfg);
7720                 EMIT_NEW_LOAD_MEMBASE (cfg, vtable_ins, OP_LOAD_MEMBASE, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
7721                 offset = MONO_STRUCT_OFFSET (MonoVTable, vtable) + (slot * SIZEOF_VOID_P);
7722
7723                 /* Load the vtable slot, which contains a function descriptor. */
7724                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, slot_reg, vtable_reg, offset);
7725
7726                 NEW_BBLOCK (cfg, non_null_bb);
7727
7728                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, slot_reg, 0);
7729                 cfg->cbb->last_ins->flags |= MONO_INST_LIKELY;
7730                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, non_null_bb);
7731
7732                 /* Slow path */
7733                 // FIXME: Make the wrapper use the preserveall cconv
7734                 // FIXME: Use one icall per slot for small slot numbers ?
7735                 icall_args [0] = vtable_ins;
7736                 EMIT_NEW_ICONST (cfg, icall_args [1], slot);
7737                 /* Make the icall return the vtable slot value to save some code space */
7738                 ins = mono_emit_jit_icall (cfg, mono_init_vtable_slot, icall_args);
7739                 ins->dreg = slot_reg;
7740                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, non_null_bb);
7741
7742                 /* Fastpath */
7743                 MONO_START_BB (cfg, non_null_bb);
7744                 /* Load the address + arg from the vtable slot */
7745                 EMIT_NEW_LOAD_MEMBASE (cfg, call_target, OP_LOAD_MEMBASE, addr_reg, slot_reg, 0);
7746                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, arg_reg, slot_reg, SIZEOF_VOID_P);
7747
7748                 return emit_extra_arg_calli (cfg, fsig, sp, arg_reg, call_target);
7749         }
7750
7751         if (!fsig->generic_param_count && is_iface && !variant_iface && !is_gsharedvt) {
7752                 /*
7753                  * A simple interface call
7754                  *
7755                  * We make a call through an imt slot to obtain the function descriptor we need to call.
7756                  * The imt slot contains a function descriptor for a runtime function + arg.
7757                  */
7758                 int slot_reg = alloc_preg (cfg);
7759                 int addr_reg = alloc_preg (cfg);
7760                 int arg_reg = alloc_preg (cfg);
7761                 MonoInst *thunk_addr_ins, *thunk_arg_ins, *ftndesc_ins;
7762
7763                 vtable_reg = alloc_preg (cfg);
7764                 EMIT_NEW_LOAD_MEMBASE (cfg, vtable_ins, OP_LOAD_MEMBASE, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
7765                 offset = ((gint32)slot - MONO_IMT_SIZE) * SIZEOF_VOID_P;
7766
7767                 /*
7768                  * The slot is already initialized when the vtable is created so there is no need
7769                  * to check it here.
7770                  */
7771
7772                 /* Load the imt slot, which contains a function descriptor. */
7773                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, slot_reg, vtable_reg, offset);
7774
7775                 /* Load the address + arg of the imt thunk from the imt slot */
7776                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_addr_ins, OP_LOAD_MEMBASE, addr_reg, slot_reg, 0);
7777                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_arg_ins, OP_LOAD_MEMBASE, arg_reg, slot_reg, SIZEOF_VOID_P);
7778                 /*
7779                  * IMT thunks in llvm-only mode are C functions which take an info argument
7780                  * plus the imt method and return the ftndesc to call.
7781                  */
7782                 icall_args [0] = thunk_arg_ins;
7783                 icall_args [1] = emit_get_rgctx_method (cfg, context_used,
7784                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD);
7785                 ftndesc_ins = mono_emit_calli (cfg, helper_sig_llvmonly_imt_thunk, icall_args, thunk_addr_ins, NULL, NULL);
7786
7787                 return emit_llvmonly_calli (cfg, fsig, sp, ftndesc_ins);
7788         }
7789
7790         if ((fsig->generic_param_count || variant_iface) && !is_gsharedvt) {
7791                 /*
7792                  * This is similar to the interface case, the vtable slot points to an imt thunk which is
7793                  * dynamically extended as more instantiations are discovered.
7794                  * This handles generic virtual methods both on classes and interfaces.
7795                  */
7796                 int slot_reg = alloc_preg (cfg);
7797                 int addr_reg = alloc_preg (cfg);
7798                 int arg_reg = alloc_preg (cfg);
7799                 int ftndesc_reg = alloc_preg (cfg);
7800                 MonoInst *thunk_addr_ins, *thunk_arg_ins, *ftndesc_ins;
7801                 MonoBasicBlock *slowpath_bb, *end_bb;
7802
7803                 NEW_BBLOCK (cfg, slowpath_bb);
7804                 NEW_BBLOCK (cfg, end_bb);
7805
7806                 vtable_reg = alloc_preg (cfg);
7807                 EMIT_NEW_LOAD_MEMBASE (cfg, vtable_ins, OP_LOAD_MEMBASE, vtable_reg, this_reg, MONO_STRUCT_OFFSET (MonoObject, vtable));
7808                 if (is_iface)
7809                         offset = ((gint32)slot - MONO_IMT_SIZE) * SIZEOF_VOID_P;
7810                 else
7811                         offset = MONO_STRUCT_OFFSET (MonoVTable, vtable) + (slot * SIZEOF_VOID_P);
7812
7813                 /* Load the slot, which contains a function descriptor. */
7814                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, slot_reg, vtable_reg, offset);
7815
7816                 /* These slots are not initialized, so fall back to the slow path until they are initialized */
7817                 /* That happens when mono_method_add_generic_virtual_invocation () creates an IMT thunk */
7818                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, slot_reg, 0);
7819                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, slowpath_bb);
7820
7821                 /* Fastpath */
7822                 /* Same as with iface calls */
7823                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_addr_ins, OP_LOAD_MEMBASE, addr_reg, slot_reg, 0);
7824                 EMIT_NEW_LOAD_MEMBASE (cfg, thunk_arg_ins, OP_LOAD_MEMBASE, arg_reg, slot_reg, SIZEOF_VOID_P);
7825                 icall_args [0] = thunk_arg_ins;
7826                 icall_args [1] = emit_get_rgctx_method (cfg, context_used,
7827                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD);
7828                 ftndesc_ins = mono_emit_calli (cfg, helper_sig_llvmonly_imt_thunk, icall_args, thunk_addr_ins, NULL, NULL);
7829                 ftndesc_ins->dreg = ftndesc_reg;
7830                 /*
7831                  * Unlike normal iface calls, these imt thunks can return NULL, i.e. when they are passed an instantiation
7832                  * they don't know about yet. Fall back to the slowpath in that case.
7833                  */
7834                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, ftndesc_reg, 0);
7835                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, slowpath_bb);
7836
7837                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
7838
7839                 /* Slowpath */
7840                 MONO_START_BB (cfg, slowpath_bb);
7841                 icall_args [0] = vtable_ins;
7842                 EMIT_NEW_ICONST (cfg, icall_args [1], slot);
7843                 icall_args [2] = emit_get_rgctx_method (cfg, context_used,
7844                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD);
7845                 if (is_iface)
7846                         ftndesc_ins = mono_emit_jit_icall (cfg, mono_resolve_generic_virtual_iface_call, icall_args);
7847                 else
7848                         ftndesc_ins = mono_emit_jit_icall (cfg, mono_resolve_generic_virtual_call, icall_args);
7849                 ftndesc_ins->dreg = ftndesc_reg;
7850                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
7851
7852                 /* Common case */
7853                 MONO_START_BB (cfg, end_bb);
7854                 return emit_llvmonly_calli (cfg, fsig, sp, ftndesc_ins);
7855         }
7856
7857         /*
7858          * Non-optimized cases
7859          */
7860         icall_args [0] = sp [0];
7861         EMIT_NEW_ICONST (cfg, icall_args [1], slot);
7862
7863         icall_args [2] = emit_get_rgctx_method (cfg, context_used,
7864                                                                                         cmethod, MONO_RGCTX_INFO_METHOD);
7865
7866         arg_reg = alloc_preg (cfg);
7867         MONO_EMIT_NEW_PCONST (cfg, arg_reg, NULL);
7868         EMIT_NEW_VARLOADA_VREG (cfg, icall_args [3], arg_reg, &mono_defaults.int_class->byval_arg);
7869
7870         g_assert (is_gsharedvt);
7871         if (is_iface)
7872                 call_target = mono_emit_jit_icall (cfg, mono_resolve_iface_call_gsharedvt, icall_args);
7873         else
7874                 call_target = mono_emit_jit_icall (cfg, mono_resolve_vcall_gsharedvt, icall_args);
7875
7876         /*
7877          * Pass the extra argument even if the callee doesn't receive it, most
7878          * calling conventions allow this.
7879          */
7880         return emit_extra_arg_calli (cfg, fsig, sp, arg_reg, call_target);
7881 }
7882
7883 static gboolean
7884 is_exception_class (MonoClass *klass)
7885 {
7886         while (klass) {
7887                 if (klass == mono_defaults.exception_class)
7888                         return TRUE;
7889                 klass = klass->parent;
7890         }
7891         return FALSE;
7892 }
7893
7894 /*
7895  * is_jit_optimizer_disabled:
7896  *
7897  *   Determine whenever M's assembly has a DebuggableAttribute with the
7898  * IsJITOptimizerDisabled flag set.
7899  */
7900 static gboolean
7901 is_jit_optimizer_disabled (MonoMethod *m)
7902 {
7903         MonoError error;
7904         MonoAssembly *ass = m->klass->image->assembly;
7905         MonoCustomAttrInfo* attrs;
7906         MonoClass *klass;
7907         int i;
7908         gboolean val = FALSE;
7909
7910         g_assert (ass);
7911         if (ass->jit_optimizer_disabled_inited)
7912                 return ass->jit_optimizer_disabled;
7913
7914         klass = mono_class_try_get_debuggable_attribute_class ();
7915
7916         if (!klass) {
7917                 /* Linked away */
7918                 ass->jit_optimizer_disabled = FALSE;
7919                 mono_memory_barrier ();
7920                 ass->jit_optimizer_disabled_inited = TRUE;
7921                 return FALSE;
7922         }
7923
7924         attrs = mono_custom_attrs_from_assembly_checked (ass, &error);
7925         mono_error_cleanup (&error); /* FIXME don't swallow the error */
7926         if (attrs) {
7927                 for (i = 0; i < attrs->num_attrs; ++i) {
7928                         MonoCustomAttrEntry *attr = &attrs->attrs [i];
7929                         const gchar *p;
7930                         MonoMethodSignature *sig;
7931
7932                         if (!attr->ctor || attr->ctor->klass != klass)
7933                                 continue;
7934                         /* Decode the attribute. See reflection.c */
7935                         p = (const char*)attr->data;
7936                         g_assert (read16 (p) == 0x0001);
7937                         p += 2;
7938
7939                         // FIXME: Support named parameters
7940                         sig = mono_method_signature (attr->ctor);
7941                         if (sig->param_count != 2 || sig->params [0]->type != MONO_TYPE_BOOLEAN || sig->params [1]->type != MONO_TYPE_BOOLEAN)
7942                                 continue;
7943                         /* Two boolean arguments */
7944                         p ++;
7945                         val = *p;
7946                 }
7947                 mono_custom_attrs_free (attrs);
7948         }
7949
7950         ass->jit_optimizer_disabled = val;
7951         mono_memory_barrier ();
7952         ass->jit_optimizer_disabled_inited = TRUE;
7953
7954         return val;
7955 }
7956
7957 static gboolean
7958 is_supported_tail_call (MonoCompile *cfg, MonoMethod *method, MonoMethod *cmethod, MonoMethodSignature *fsig, int call_opcode)
7959 {
7960         gboolean supported_tail_call;
7961         int i;
7962
7963         supported_tail_call = mono_arch_tail_call_supported (cfg, mono_method_signature (method), mono_method_signature (cmethod));
7964
7965         for (i = 0; i < fsig->param_count; ++i) {
7966                 if (fsig->params [i]->byref || fsig->params [i]->type == MONO_TYPE_PTR || fsig->params [i]->type == MONO_TYPE_FNPTR)
7967                         /* These can point to the current method's stack */
7968                         supported_tail_call = FALSE;
7969         }
7970         if (fsig->hasthis && cmethod->klass->valuetype)
7971                 /* this might point to the current method's stack */
7972                 supported_tail_call = FALSE;
7973         if (cmethod->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)
7974                 supported_tail_call = FALSE;
7975         if (cfg->method->save_lmf)
7976                 supported_tail_call = FALSE;
7977         if (cmethod->wrapper_type && cmethod->wrapper_type != MONO_WRAPPER_DYNAMIC_METHOD)
7978                 supported_tail_call = FALSE;
7979         if (call_opcode != CEE_CALL)
7980                 supported_tail_call = FALSE;
7981
7982         /* Debugging support */
7983 #if 0
7984         if (supported_tail_call) {
7985                 if (!mono_debug_count ())
7986                         supported_tail_call = FALSE;
7987         }
7988 #endif
7989
7990         return supported_tail_call;
7991 }
7992
7993 /*
7994  * handle_ctor_call:
7995  *
7996  *   Handle calls made to ctors from NEWOBJ opcodes.
7997  */
7998 static void
7999 handle_ctor_call (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, int context_used,
8000                                   MonoInst **sp, guint8 *ip, int *inline_costs)
8001 {
8002         MonoInst *vtable_arg = NULL, *callvirt_this_arg = NULL, *ins;
8003
8004         if (cmethod->klass->valuetype && mono_class_generic_sharing_enabled (cmethod->klass) &&
8005                                         mono_method_is_generic_sharable (cmethod, TRUE)) {
8006                 if (cmethod->is_inflated && mono_method_get_context (cmethod)->method_inst) {
8007                         mono_class_vtable (cfg->domain, cmethod->klass);
8008                         CHECK_TYPELOAD (cmethod->klass);
8009
8010                         vtable_arg = emit_get_rgctx_method (cfg, context_used,
8011                                                                                                 cmethod, MONO_RGCTX_INFO_METHOD_RGCTX);
8012                 } else {
8013                         if (context_used) {
8014                                 vtable_arg = emit_get_rgctx_klass (cfg, context_used,
8015                                                                                                    cmethod->klass, MONO_RGCTX_INFO_VTABLE);
8016                         } else {
8017                                 MonoVTable *vtable = mono_class_vtable (cfg->domain, cmethod->klass);
8018
8019                                 CHECK_TYPELOAD (cmethod->klass);
8020                                 EMIT_NEW_VTABLECONST (cfg, vtable_arg, vtable);
8021                         }
8022                 }
8023         }
8024
8025         /* Avoid virtual calls to ctors if possible */
8026         if (mono_class_is_marshalbyref (cmethod->klass))
8027                 callvirt_this_arg = sp [0];
8028
8029         if (cmethod && (cfg->opt & MONO_OPT_INTRINS) && (ins = mini_emit_inst_for_ctor (cfg, cmethod, fsig, sp))) {
8030                 g_assert (MONO_TYPE_IS_VOID (fsig->ret));
8031                 CHECK_CFG_EXCEPTION;
8032         } else if ((cfg->opt & MONO_OPT_INLINE) && cmethod && !context_used && !vtable_arg &&
8033                            mono_method_check_inlining (cfg, cmethod) &&
8034                            !mono_class_is_subclass_of (cmethod->klass, mono_defaults.exception_class, FALSE)) {
8035                 int costs;
8036
8037                 if ((costs = inline_method (cfg, cmethod, fsig, sp, ip, cfg->real_offset, FALSE))) {
8038                         cfg->real_offset += 5;
8039
8040                         *inline_costs += costs - 5;
8041                 } else {
8042                         INLINE_FAILURE ("inline failure");
8043                         // FIXME-VT: Clean this up
8044                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig))
8045                                 GSHAREDVT_FAILURE(*ip);
8046                         mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp, callvirt_this_arg, NULL, NULL);
8047                 }
8048         } else if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) {
8049                 MonoInst *addr;
8050
8051                 addr = emit_get_rgctx_gsharedvt_call (cfg, context_used, fsig, cmethod, MONO_RGCTX_INFO_METHOD_GSHAREDVT_OUT_TRAMPOLINE);
8052
8053                 if (cfg->llvm_only) {
8054                         // FIXME: Avoid initializing vtable_arg
8055                         emit_llvmonly_calli (cfg, fsig, sp, addr);
8056                 } else {
8057                         mono_emit_calli (cfg, fsig, sp, addr, NULL, vtable_arg);
8058                 }
8059         } else if (context_used &&
8060                            ((!mono_method_is_generic_sharable_full (cmethod, TRUE, FALSE, FALSE) ||
8061                                  !mono_class_generic_sharing_enabled (cmethod->klass)) || cfg->gsharedvt)) {
8062                 MonoInst *cmethod_addr;
8063
8064                 /* Generic calls made out of gsharedvt methods cannot be patched, so use an indirect call */
8065
8066                 if (cfg->llvm_only) {
8067                         MonoInst *addr = emit_get_rgctx_method (cfg, context_used, cmethod,
8068                                                                                                         MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
8069                         emit_llvmonly_calli (cfg, fsig, sp, addr);
8070                 } else {
8071                         cmethod_addr = emit_get_rgctx_method (cfg, context_used,
8072                                                                                                   cmethod, MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
8073
8074                         mono_emit_calli (cfg, fsig, sp, cmethod_addr, NULL, vtable_arg);
8075                 }
8076         } else {
8077                 INLINE_FAILURE ("ctor call");
8078                 ins = mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp,
8079                                                                                   callvirt_this_arg, NULL, vtable_arg);
8080         }
8081  exception_exit:
8082         return;
8083 }
8084
8085 static void
8086 emit_setret (MonoCompile *cfg, MonoInst *val)
8087 {
8088         MonoType *ret_type = mini_get_underlying_type (mono_method_signature (cfg->method)->ret);
8089         MonoInst *ins;
8090
8091         if (mini_type_to_stind (cfg, ret_type) == CEE_STOBJ) {
8092                 MonoInst *ret_addr;
8093
8094                 if (!cfg->vret_addr) {
8095                         EMIT_NEW_VARSTORE (cfg, ins, cfg->ret, ret_type, val);
8096                 } else {
8097                         EMIT_NEW_RETLOADA (cfg, ret_addr);
8098
8099                         EMIT_NEW_STORE_MEMBASE (cfg, ins, OP_STOREV_MEMBASE, ret_addr->dreg, 0, val->dreg);
8100                         ins->klass = mono_class_from_mono_type (ret_type);
8101                 }
8102         } else {
8103 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
8104                 if (COMPILE_SOFT_FLOAT (cfg) && !ret_type->byref && ret_type->type == MONO_TYPE_R4) {
8105                         MonoInst *iargs [1];
8106                         MonoInst *conv;
8107
8108                         iargs [0] = val;
8109                         conv = mono_emit_jit_icall (cfg, mono_fload_r4_arg, iargs);
8110                         mono_arch_emit_setret (cfg, cfg->method, conv);
8111                 } else {
8112                         mono_arch_emit_setret (cfg, cfg->method, val);
8113                 }
8114 #else
8115                 mono_arch_emit_setret (cfg, cfg->method, val);
8116 #endif
8117         }
8118 }
8119
8120 /*
8121  * mono_method_to_ir:
8122  *
8123  *   Translate the .net IL into linear IR.
8124  */
8125 int
8126 mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_bblock, MonoBasicBlock *end_bblock, 
8127                    MonoInst *return_var, MonoInst **inline_args, 
8128                    guint inline_offset, gboolean is_virtual_call)
8129 {
8130         MonoError error;
8131         MonoInst *ins, **sp, **stack_start;
8132         MonoBasicBlock *tblock = NULL, *init_localsbb = NULL;
8133         MonoSimpleBasicBlock *bb = NULL, *original_bb = NULL;
8134         MonoMethod *cmethod, *method_definition;
8135         MonoInst **arg_array;
8136         MonoMethodHeader *header;
8137         MonoImage *image;
8138         guint32 token, ins_flag;
8139         MonoClass *klass;
8140         MonoClass *constrained_class = NULL;
8141         unsigned char *ip, *end, *target, *err_pos;
8142         MonoMethodSignature *sig;
8143         MonoGenericContext *generic_context = NULL;
8144         MonoGenericContainer *generic_container = NULL;
8145         MonoType **param_types;
8146         int i, n, start_new_bblock, dreg;
8147         int num_calls = 0, inline_costs = 0;
8148         int breakpoint_id = 0;
8149         guint num_args;
8150         GSList *class_inits = NULL;
8151         gboolean dont_verify, dont_verify_stloc, readonly = FALSE;
8152         int context_used;
8153         gboolean init_locals, seq_points, skip_dead_blocks;
8154         gboolean sym_seq_points = FALSE;
8155         MonoDebugMethodInfo *minfo;
8156         MonoBitSet *seq_point_locs = NULL;
8157         MonoBitSet *seq_point_set_locs = NULL;
8158
8159         cfg->disable_inline = is_jit_optimizer_disabled (method);
8160
8161         /* serialization and xdomain stuff may need access to private fields and methods */
8162         dont_verify = method->klass->image->assembly->corlib_internal? TRUE: FALSE;
8163         dont_verify |= method->wrapper_type == MONO_WRAPPER_XDOMAIN_INVOKE;
8164         dont_verify |= method->wrapper_type == MONO_WRAPPER_XDOMAIN_DISPATCH;
8165         dont_verify |= method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE; /* bug #77896 */
8166         dont_verify |= method->wrapper_type == MONO_WRAPPER_COMINTEROP;
8167         dont_verify |= method->wrapper_type == MONO_WRAPPER_COMINTEROP_INVOKE;
8168
8169         /* still some type unsafety issues in marshal wrappers... (unknown is PtrToStructure) */
8170         dont_verify_stloc = method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE;
8171         dont_verify_stloc |= method->wrapper_type == MONO_WRAPPER_UNKNOWN;
8172         dont_verify_stloc |= method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED;
8173         dont_verify_stloc |= method->wrapper_type == MONO_WRAPPER_STELEMREF;
8174
8175         image = method->klass->image;
8176         header = mono_method_get_header_checked (method, &cfg->error);
8177         if (!header) {
8178                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
8179                 goto exception_exit;
8180         }
8181         generic_container = mono_method_get_generic_container (method);
8182         sig = mono_method_signature (method);
8183         num_args = sig->hasthis + sig->param_count;
8184         ip = (unsigned char*)header->code;
8185         cfg->cil_start = ip;
8186         end = ip + header->code_size;
8187         cfg->stat_cil_code_size += header->code_size;
8188
8189         seq_points = cfg->gen_seq_points && cfg->method == method;
8190
8191         if (method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED) {
8192                 /* We could hit a seq point before attaching to the JIT (#8338) */
8193                 seq_points = FALSE;
8194         }
8195
8196         if (cfg->gen_sdb_seq_points && cfg->method == method) {
8197                 minfo = mono_debug_lookup_method (method);
8198                 if (minfo) {
8199                         MonoSymSeqPoint *sps;
8200                         int i, n_il_offsets;
8201
8202                         mono_debug_get_seq_points (minfo, NULL, NULL, NULL, &sps, &n_il_offsets);
8203                         seq_point_locs = mono_bitset_mem_new (mono_mempool_alloc0 (cfg->mempool, mono_bitset_alloc_size (header->code_size, 0)), header->code_size, 0);
8204                         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);
8205                         sym_seq_points = TRUE;
8206                         for (i = 0; i < n_il_offsets; ++i) {
8207                                 if (sps [i].il_offset < header->code_size)
8208                                         mono_bitset_set_fast (seq_point_locs, sps [i].il_offset);
8209                         }
8210                         g_free (sps);
8211                 } else if (!method->wrapper_type && !method->dynamic && mono_debug_image_has_debug_info (method->klass->image)) {
8212                         /* Methods without line number info like auto-generated property accessors */
8213                         seq_point_locs = mono_bitset_mem_new (mono_mempool_alloc0 (cfg->mempool, mono_bitset_alloc_size (header->code_size, 0)), header->code_size, 0);
8214                         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);
8215                         sym_seq_points = TRUE;
8216                 }
8217         }
8218
8219         /* 
8220          * Methods without init_locals set could cause asserts in various passes
8221          * (#497220). To work around this, we emit dummy initialization opcodes
8222          * (OP_DUMMY_ICONST etc.) which generate no code. These are only supported
8223          * on some platforms.
8224          */
8225         if ((cfg->opt & MONO_OPT_UNSAFE) && cfg->backend->have_dummy_init)
8226                 init_locals = header->init_locals;
8227         else
8228                 init_locals = TRUE;
8229
8230         method_definition = method;
8231         while (method_definition->is_inflated) {
8232                 MonoMethodInflated *imethod = (MonoMethodInflated *) method_definition;
8233                 method_definition = imethod->declaring;
8234         }
8235
8236         /* SkipVerification is not allowed if core-clr is enabled */
8237         if (!dont_verify && mini_assembly_can_skip_verification (cfg->domain, method)) {
8238                 dont_verify = TRUE;
8239                 dont_verify_stloc = TRUE;
8240         }
8241
8242         if (sig->is_inflated)
8243                 generic_context = mono_method_get_context (method);
8244         else if (generic_container)
8245                 generic_context = &generic_container->context;
8246         cfg->generic_context = generic_context;
8247
8248         if (!cfg->gshared)
8249                 g_assert (!sig->has_type_parameters);
8250
8251         if (sig->generic_param_count && method->wrapper_type == MONO_WRAPPER_NONE) {
8252                 g_assert (method->is_inflated);
8253                 g_assert (mono_method_get_context (method)->method_inst);
8254         }
8255         if (method->is_inflated && mono_method_get_context (method)->method_inst)
8256                 g_assert (sig->generic_param_count);
8257
8258         if (cfg->method == method) {
8259                 cfg->real_offset = 0;
8260         } else {
8261                 cfg->real_offset = inline_offset;
8262         }
8263
8264         cfg->cil_offset_to_bb = (MonoBasicBlock **)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoBasicBlock*) * header->code_size);
8265         cfg->cil_offset_to_bb_len = header->code_size;
8266
8267         cfg->current_method = method;
8268
8269         if (cfg->verbose_level > 2)
8270                 printf ("method to IR %s\n", mono_method_full_name (method, TRUE));
8271
8272         param_types = (MonoType **)mono_mempool_alloc (cfg->mempool, sizeof (MonoType*) * num_args);
8273         if (sig->hasthis)
8274                 param_types [0] = method->klass->valuetype?&method->klass->this_arg:&method->klass->byval_arg;
8275         for (n = 0; n < sig->param_count; ++n)
8276                 param_types [n + sig->hasthis] = sig->params [n];
8277         cfg->arg_types = param_types;
8278
8279         cfg->dont_inline = g_list_prepend (cfg->dont_inline, method);
8280         if (cfg->method == method) {
8281
8282                 if (cfg->prof_options & MONO_PROFILE_INS_COVERAGE)
8283                         cfg->coverage_info = mono_profiler_coverage_alloc (cfg->method, header->code_size);
8284
8285                 /* ENTRY BLOCK */
8286                 NEW_BBLOCK (cfg, start_bblock);
8287                 cfg->bb_entry = start_bblock;
8288                 start_bblock->cil_code = NULL;
8289                 start_bblock->cil_length = 0;
8290
8291                 /* EXIT BLOCK */
8292                 NEW_BBLOCK (cfg, end_bblock);
8293                 cfg->bb_exit = end_bblock;
8294                 end_bblock->cil_code = NULL;
8295                 end_bblock->cil_length = 0;
8296                 end_bblock->flags |= BB_INDIRECT_JUMP_TARGET;
8297                 g_assert (cfg->num_bblocks == 2);
8298
8299                 arg_array = cfg->args;
8300
8301                 if (header->num_clauses) {
8302                         cfg->spvars = g_hash_table_new (NULL, NULL);
8303                         cfg->exvars = g_hash_table_new (NULL, NULL);
8304                 }
8305                 /* handle exception clauses */
8306                 for (i = 0; i < header->num_clauses; ++i) {
8307                         MonoBasicBlock *try_bb;
8308                         MonoExceptionClause *clause = &header->clauses [i];
8309                         GET_BBLOCK (cfg, try_bb, ip + clause->try_offset);
8310
8311                         try_bb->real_offset = clause->try_offset;
8312                         try_bb->try_start = TRUE;
8313                         try_bb->region = ((i + 1) << 8) | clause->flags;
8314                         GET_BBLOCK (cfg, tblock, ip + clause->handler_offset);
8315                         tblock->real_offset = clause->handler_offset;
8316                         tblock->flags |= BB_EXCEPTION_HANDLER;
8317
8318                         /*
8319                          * Linking the try block with the EH block hinders inlining as we won't be able to 
8320                          * merge the bblocks from inlining and produce an artificial hole for no good reason.
8321                          */
8322                         if (COMPILE_LLVM (cfg))
8323                                 link_bblock (cfg, try_bb, tblock);
8324
8325                         if (*(ip + clause->handler_offset) == CEE_POP)
8326                                 tblock->flags |= BB_EXCEPTION_DEAD_OBJ;
8327
8328                         if (clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY ||
8329                             clause->flags == MONO_EXCEPTION_CLAUSE_FILTER ||
8330                             clause->flags == MONO_EXCEPTION_CLAUSE_FAULT) {
8331                                 MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
8332                                 MONO_ADD_INS (tblock, ins);
8333
8334                                 if (seq_points && clause->flags != MONO_EXCEPTION_CLAUSE_FINALLY && clause->flags != MONO_EXCEPTION_CLAUSE_FILTER) {
8335                                         /* finally clauses already have a seq point */
8336                                         /* seq points for filter clauses are emitted below */
8337                                         NEW_SEQ_POINT (cfg, ins, clause->handler_offset, TRUE);
8338                                         MONO_ADD_INS (tblock, ins);
8339                                 }
8340
8341                                 /* todo: is a fault block unsafe to optimize? */
8342                                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FAULT)
8343                                         tblock->flags |= BB_EXCEPTION_UNSAFE;
8344                         }
8345
8346                         /*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);
8347                           while (p < end) {
8348                           printf ("%s", mono_disasm_code_one (NULL, method, p, &p));
8349                           }*/
8350                         /* catch and filter blocks get the exception object on the stack */
8351                         if (clause->flags == MONO_EXCEPTION_CLAUSE_NONE ||
8352                             clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
8353
8354                                 /* mostly like handle_stack_args (), but just sets the input args */
8355                                 /* printf ("handling clause at IL_%04x\n", clause->handler_offset); */
8356                                 tblock->in_scount = 1;
8357                                 tblock->in_stack = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
8358                                 tblock->in_stack [0] = mono_create_exvar_for_offset (cfg, clause->handler_offset);
8359
8360                                 cfg->cbb = tblock;
8361
8362 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
8363                                 /* The EH code passes in the exception in a register to both JITted and LLVM compiled code */
8364                                 if (!cfg->compile_llvm) {
8365                                         MONO_INST_NEW (cfg, ins, OP_GET_EX_OBJ);
8366                                         ins->dreg = tblock->in_stack [0]->dreg;
8367                                         MONO_ADD_INS (tblock, ins);
8368                                 }
8369 #else
8370                                 MonoInst *dummy_use;
8371
8372                                 /* 
8373                                  * Add a dummy use for the exvar so its liveness info will be
8374                                  * correct.
8375                                  */
8376                                 EMIT_NEW_DUMMY_USE (cfg, dummy_use, tblock->in_stack [0]);
8377 #endif
8378
8379                                 if (seq_points && clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
8380                                         NEW_SEQ_POINT (cfg, ins, clause->handler_offset, TRUE);
8381                                         MONO_ADD_INS (tblock, ins);
8382                                 }
8383                                 
8384                                 if (clause->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
8385                                         GET_BBLOCK (cfg, tblock, ip + clause->data.filter_offset);
8386                                         tblock->flags |= BB_EXCEPTION_HANDLER;
8387                                         tblock->real_offset = clause->data.filter_offset;
8388                                         tblock->in_scount = 1;
8389                                         tblock->in_stack = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*));
8390                                         /* The filter block shares the exvar with the handler block */
8391                                         tblock->in_stack [0] = mono_create_exvar_for_offset (cfg, clause->handler_offset);
8392                                         MONO_INST_NEW (cfg, ins, OP_START_HANDLER);
8393                                         MONO_ADD_INS (tblock, ins);
8394                                 }
8395                         }
8396
8397                         if (clause->flags != MONO_EXCEPTION_CLAUSE_FILTER &&
8398                                         clause->data.catch_class &&
8399                                         cfg->gshared &&
8400                                         mono_class_check_context_used (clause->data.catch_class)) {
8401                                 /*
8402                                  * In shared generic code with catch
8403                                  * clauses containing type variables
8404                                  * the exception handling code has to
8405                                  * be able to get to the rgctx.
8406                                  * Therefore we have to make sure that
8407                                  * the vtable/mrgctx argument (for
8408                                  * static or generic methods) or the
8409                                  * "this" argument (for non-static
8410                                  * methods) are live.
8411                                  */
8412                                 if ((method->flags & METHOD_ATTRIBUTE_STATIC) ||
8413                                                 mini_method_get_context (method)->method_inst ||
8414                                                 method->klass->valuetype) {
8415                                         mono_get_vtable_var (cfg);
8416                                 } else {
8417                                         MonoInst *dummy_use;
8418
8419                                         EMIT_NEW_DUMMY_USE (cfg, dummy_use, arg_array [0]);
8420                                 }
8421                         }
8422                 }
8423         } else {
8424                 arg_array = (MonoInst **) alloca (sizeof (MonoInst *) * num_args);
8425                 cfg->cbb = start_bblock;
8426                 cfg->args = arg_array;
8427                 mono_save_args (cfg, sig, inline_args);
8428         }
8429
8430         /* FIRST CODE BLOCK */
8431         NEW_BBLOCK (cfg, tblock);
8432         tblock->cil_code = ip;
8433         cfg->cbb = tblock;
8434         cfg->ip = ip;
8435
8436         ADD_BBLOCK (cfg, tblock);
8437
8438         if (cfg->method == method) {
8439                 breakpoint_id = mono_debugger_method_has_breakpoint (method);
8440                 if (breakpoint_id) {
8441                         MONO_INST_NEW (cfg, ins, OP_BREAK);
8442                         MONO_ADD_INS (cfg->cbb, ins);
8443                 }
8444         }
8445
8446         /* we use a separate basic block for the initialization code */
8447         NEW_BBLOCK (cfg, init_localsbb);
8448         cfg->bb_init = init_localsbb;
8449         init_localsbb->real_offset = cfg->real_offset;
8450         start_bblock->next_bb = init_localsbb;
8451         init_localsbb->next_bb = cfg->cbb;
8452         link_bblock (cfg, start_bblock, init_localsbb);
8453         link_bblock (cfg, init_localsbb, cfg->cbb);
8454                 
8455         cfg->cbb = init_localsbb;
8456
8457         if (cfg->gsharedvt && cfg->method == method) {
8458                 MonoGSharedVtMethodInfo *info;
8459                 MonoInst *var, *locals_var;
8460                 int dreg;
8461
8462                 info = (MonoGSharedVtMethodInfo *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoGSharedVtMethodInfo));
8463                 info->method = cfg->method;
8464                 info->count_entries = 16;
8465                 info->entries = (MonoRuntimeGenericContextInfoTemplate *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->count_entries);
8466                 cfg->gsharedvt_info = info;
8467
8468                 var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
8469                 /* prevent it from being register allocated */
8470                 //var->flags |= MONO_INST_VOLATILE;
8471                 cfg->gsharedvt_info_var = var;
8472
8473                 ins = emit_get_rgctx_gsharedvt_method (cfg, mini_method_check_context_used (cfg, method), method, info);
8474                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, var->dreg, ins->dreg);
8475
8476                 /* Allocate locals */
8477                 locals_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
8478                 /* prevent it from being register allocated */
8479                 //locals_var->flags |= MONO_INST_VOLATILE;
8480                 cfg->gsharedvt_locals_var = locals_var;
8481
8482                 dreg = alloc_ireg (cfg);
8483                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADI4_MEMBASE, dreg, var->dreg, MONO_STRUCT_OFFSET (MonoGSharedVtMethodRuntimeInfo, locals_size));
8484
8485                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC);
8486                 ins->dreg = locals_var->dreg;
8487                 ins->sreg1 = dreg;
8488                 MONO_ADD_INS (cfg->cbb, ins);
8489                 cfg->gsharedvt_locals_var_ins = ins;
8490                 
8491                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
8492                 /*
8493                 if (init_locals)
8494                         ins->flags |= MONO_INST_INIT;
8495                 */
8496         }
8497
8498         if (mono_security_core_clr_enabled ()) {
8499                 /* check if this is native code, e.g. an icall or a p/invoke */
8500                 if (method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE) {
8501                         MonoMethod *wrapped = mono_marshal_method_from_wrapper (method);
8502                         if (wrapped) {
8503                                 gboolean pinvk = (wrapped->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL);
8504                                 gboolean icall = (wrapped->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL);
8505
8506                                 /* if this ia a native call then it can only be JITted from platform code */
8507                                 if ((icall || pinvk) && method->klass && method->klass->image) {
8508                                         if (!mono_security_core_clr_is_platform_image (method->klass->image)) {
8509                                                 MonoException *ex = icall ? mono_get_exception_security () : 
8510                                                         mono_get_exception_method_access ();
8511                                                 emit_throw_exception (cfg, ex);
8512                                         }
8513                                 }
8514                         }
8515                 }
8516         }
8517
8518         CHECK_CFG_EXCEPTION;
8519
8520         if (header->code_size == 0)
8521                 UNVERIFIED;
8522
8523         if (get_basic_blocks (cfg, header, cfg->real_offset, ip, end, &err_pos)) {
8524                 ip = err_pos;
8525                 UNVERIFIED;
8526         }
8527
8528         if (cfg->method == method)
8529                 mono_debug_init_method (cfg, cfg->cbb, breakpoint_id);
8530
8531         for (n = 0; n < header->num_locals; ++n) {
8532                 if (header->locals [n]->type == MONO_TYPE_VOID && !header->locals [n]->byref)
8533                         UNVERIFIED;
8534         }
8535         class_inits = NULL;
8536
8537         /* We force the vtable variable here for all shared methods
8538            for the possibility that they might show up in a stack
8539            trace where their exact instantiation is needed. */
8540         if (cfg->gshared && method == cfg->method) {
8541                 if ((method->flags & METHOD_ATTRIBUTE_STATIC) ||
8542                                 mini_method_get_context (method)->method_inst ||
8543                                 method->klass->valuetype) {
8544                         mono_get_vtable_var (cfg);
8545                 } else {
8546                         /* FIXME: Is there a better way to do this?
8547                            We need the variable live for the duration
8548                            of the whole method. */
8549                         cfg->args [0]->flags |= MONO_INST_VOLATILE;
8550                 }
8551         }
8552
8553         /* add a check for this != NULL to inlined methods */
8554         if (is_virtual_call) {
8555                 MonoInst *arg_ins;
8556
8557                 NEW_ARGLOAD (cfg, arg_ins, 0);
8558                 MONO_ADD_INS (cfg->cbb, arg_ins);
8559                 MONO_EMIT_NEW_CHECK_THIS (cfg, arg_ins->dreg);
8560         }
8561
8562         skip_dead_blocks = !dont_verify;
8563         if (skip_dead_blocks) {
8564                 original_bb = bb = mono_basic_block_split (method, &cfg->error, header);
8565                 CHECK_CFG_ERROR;
8566                 g_assert (bb);
8567         }
8568
8569         /* we use a spare stack slot in SWITCH and NEWOBJ and others */
8570         stack_start = sp = (MonoInst **)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoInst*) * (header->max_stack + 1));
8571
8572         ins_flag = 0;
8573         start_new_bblock = 0;
8574         while (ip < end) {
8575                 if (cfg->method == method)
8576                         cfg->real_offset = ip - header->code;
8577                 else
8578                         cfg->real_offset = inline_offset;
8579                 cfg->ip = ip;
8580
8581                 context_used = 0;
8582
8583                 if (start_new_bblock) {
8584                         cfg->cbb->cil_length = ip - cfg->cbb->cil_code;
8585                         if (start_new_bblock == 2) {
8586                                 g_assert (ip == tblock->cil_code);
8587                         } else {
8588                                 GET_BBLOCK (cfg, tblock, ip);
8589                         }
8590                         cfg->cbb->next_bb = tblock;
8591                         cfg->cbb = tblock;
8592                         start_new_bblock = 0;
8593                         for (i = 0; i < cfg->cbb->in_scount; ++i) {
8594                                 if (cfg->verbose_level > 3)
8595                                         printf ("loading %d from temp %d\n", i, (int)cfg->cbb->in_stack [i]->inst_c0);
8596                                 EMIT_NEW_TEMPLOAD (cfg, ins, cfg->cbb->in_stack [i]->inst_c0);
8597                                 *sp++ = ins;
8598                         }
8599                         if (class_inits)
8600                                 g_slist_free (class_inits);
8601                         class_inits = NULL;
8602                 } else {
8603                         if ((tblock = cfg->cil_offset_to_bb [ip - cfg->cil_start]) && (tblock != cfg->cbb)) {
8604                                 link_bblock (cfg, cfg->cbb, tblock);
8605                                 if (sp != stack_start) {
8606                                         handle_stack_args (cfg, stack_start, sp - stack_start);
8607                                         sp = stack_start;
8608                                         CHECK_UNVERIFIABLE (cfg);
8609                                 }
8610                                 cfg->cbb->next_bb = tblock;
8611                                 cfg->cbb = tblock;
8612                                 for (i = 0; i < cfg->cbb->in_scount; ++i) {
8613                                         if (cfg->verbose_level > 3)
8614                                                 printf ("loading %d from temp %d\n", i, (int)cfg->cbb->in_stack [i]->inst_c0);
8615                                         EMIT_NEW_TEMPLOAD (cfg, ins, cfg->cbb->in_stack [i]->inst_c0);
8616                                         *sp++ = ins;
8617                                 }
8618                                 g_slist_free (class_inits);
8619                                 class_inits = NULL;
8620                         }
8621                 }
8622
8623                 if (skip_dead_blocks) {
8624                         int ip_offset = ip - header->code;
8625
8626                         if (ip_offset == bb->end)
8627                                 bb = bb->next;
8628
8629                         if (bb->dead) {
8630                                 int op_size = mono_opcode_size (ip, end);
8631                                 g_assert (op_size > 0); /*The BB formation pass must catch all bad ops*/
8632
8633                                 if (cfg->verbose_level > 3) printf ("SKIPPING DEAD OP at %x\n", ip_offset);
8634
8635                                 if (ip_offset + op_size == bb->end) {
8636                                         MONO_INST_NEW (cfg, ins, OP_NOP);
8637                                         MONO_ADD_INS (cfg->cbb, ins);
8638                                         start_new_bblock = 1;
8639                                 }
8640
8641                                 ip += op_size;
8642                                 continue;
8643                         }
8644                 }
8645                 /*
8646                  * Sequence points are points where the debugger can place a breakpoint.
8647                  * Currently, we generate these automatically at points where the IL
8648                  * stack is empty.
8649                  */
8650                 if (seq_points && ((!sym_seq_points && (sp == stack_start)) || (sym_seq_points && mono_bitset_test_fast (seq_point_locs, ip - header->code)))) {
8651                         /*
8652                          * Make methods interruptable at the beginning, and at the targets of
8653                          * backward branches.
8654                          * Also, do this at the start of every bblock in methods with clauses too,
8655                          * to be able to handle instructions with inprecise control flow like
8656                          * throw/endfinally.
8657                          * Backward branches are handled at the end of method-to-ir ().
8658                          */
8659                         gboolean intr_loc = ip == header->code || (!cfg->cbb->last_ins && cfg->header->num_clauses);
8660                         gboolean sym_seq_point = sym_seq_points && mono_bitset_test_fast (seq_point_locs, ip - header->code);
8661
8662                         /* Avoid sequence points on empty IL like .volatile */
8663                         // FIXME: Enable this
8664                         //if (!(cfg->cbb->last_ins && cfg->cbb->last_ins->opcode == OP_SEQ_POINT)) {
8665                         NEW_SEQ_POINT (cfg, ins, ip - header->code, intr_loc);
8666                         if ((sp != stack_start) && !sym_seq_point)
8667                                 ins->flags |= MONO_INST_NONEMPTY_STACK;
8668                         MONO_ADD_INS (cfg->cbb, ins);
8669
8670                         if (sym_seq_points)
8671                                 mono_bitset_set_fast (seq_point_set_locs, ip - header->code);
8672                 }
8673
8674                 cfg->cbb->real_offset = cfg->real_offset;
8675
8676                 if ((cfg->method == method) && cfg->coverage_info) {
8677                         guint32 cil_offset = ip - header->code;
8678                         cfg->coverage_info->data [cil_offset].cil_code = ip;
8679
8680                         /* TODO: Use an increment here */
8681 #if defined(TARGET_X86)
8682                         MONO_INST_NEW (cfg, ins, OP_STORE_MEM_IMM);
8683                         ins->inst_p0 = &(cfg->coverage_info->data [cil_offset].count);
8684                         ins->inst_imm = 1;
8685                         MONO_ADD_INS (cfg->cbb, ins);
8686 #else
8687                         EMIT_NEW_PCONST (cfg, ins, &(cfg->coverage_info->data [cil_offset].count));
8688                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STORE_MEMBASE_IMM, ins->dreg, 0, 1);
8689 #endif
8690                 }
8691
8692                 if (cfg->verbose_level > 3)
8693                         printf ("converting (in B%d: stack: %d) %s", cfg->cbb->block_num, (int)(sp - stack_start), mono_disasm_code_one (NULL, method, ip, NULL));
8694
8695                 switch (*ip) {
8696                 case CEE_NOP:
8697                         if (seq_points && !sym_seq_points && sp != stack_start) {
8698                                 /*
8699                                  * The C# compiler uses these nops to notify the JIT that it should
8700                                  * insert seq points.
8701                                  */
8702                                 NEW_SEQ_POINT (cfg, ins, ip - header->code, FALSE);
8703                                 MONO_ADD_INS (cfg->cbb, ins);
8704                         }
8705                         if (cfg->keep_cil_nops)
8706                                 MONO_INST_NEW (cfg, ins, OP_HARD_NOP);
8707                         else
8708                                 MONO_INST_NEW (cfg, ins, OP_NOP);
8709                         ip++;
8710                         MONO_ADD_INS (cfg->cbb, ins);
8711                         break;
8712                 case CEE_BREAK:
8713                         if (should_insert_brekpoint (cfg->method)) {
8714                                 ins = mono_emit_jit_icall (cfg, mono_debugger_agent_user_break, NULL);
8715                         } else {
8716                                 MONO_INST_NEW (cfg, ins, OP_NOP);
8717                         }
8718                         ip++;
8719                         MONO_ADD_INS (cfg->cbb, ins);
8720                         break;
8721                 case CEE_LDARG_0:
8722                 case CEE_LDARG_1:
8723                 case CEE_LDARG_2:
8724                 case CEE_LDARG_3:
8725                         CHECK_STACK_OVF (1);
8726                         n = (*ip)-CEE_LDARG_0;
8727                         CHECK_ARG (n);
8728                         EMIT_NEW_ARGLOAD (cfg, ins, n);
8729                         ip++;
8730                         *sp++ = ins;
8731                         break;
8732                 case CEE_LDLOC_0:
8733                 case CEE_LDLOC_1:
8734                 case CEE_LDLOC_2:
8735                 case CEE_LDLOC_3:
8736                         CHECK_STACK_OVF (1);
8737                         n = (*ip)-CEE_LDLOC_0;
8738                         CHECK_LOCAL (n);
8739                         EMIT_NEW_LOCLOAD (cfg, ins, n);
8740                         ip++;
8741                         *sp++ = ins;
8742                         break;
8743                 case CEE_STLOC_0:
8744                 case CEE_STLOC_1:
8745                 case CEE_STLOC_2:
8746                 case CEE_STLOC_3: {
8747                         CHECK_STACK (1);
8748                         n = (*ip)-CEE_STLOC_0;
8749                         CHECK_LOCAL (n);
8750                         --sp;
8751                         if (!dont_verify_stloc && target_type_is_incompatible (cfg, header->locals [n], *sp))
8752                                 UNVERIFIED;
8753                         emit_stloc_ir (cfg, sp, header, n);
8754                         ++ip;
8755                         inline_costs += 1;
8756                         break;
8757                         }
8758                 case CEE_LDARG_S:
8759                         CHECK_OPSIZE (2);
8760                         CHECK_STACK_OVF (1);
8761                         n = ip [1];
8762                         CHECK_ARG (n);
8763                         EMIT_NEW_ARGLOAD (cfg, ins, n);
8764                         *sp++ = ins;
8765                         ip += 2;
8766                         break;
8767                 case CEE_LDARGA_S:
8768                         CHECK_OPSIZE (2);
8769                         CHECK_STACK_OVF (1);
8770                         n = ip [1];
8771                         CHECK_ARG (n);
8772                         NEW_ARGLOADA (cfg, ins, n);
8773                         MONO_ADD_INS (cfg->cbb, ins);
8774                         *sp++ = ins;
8775                         ip += 2;
8776                         break;
8777                 case CEE_STARG_S:
8778                         CHECK_OPSIZE (2);
8779                         CHECK_STACK (1);
8780                         --sp;
8781                         n = ip [1];
8782                         CHECK_ARG (n);
8783                         if (!dont_verify_stloc && target_type_is_incompatible (cfg, param_types [ip [1]], *sp))
8784                                 UNVERIFIED;
8785                         EMIT_NEW_ARGSTORE (cfg, ins, n, *sp);
8786                         ip += 2;
8787                         break;
8788                 case CEE_LDLOC_S:
8789                         CHECK_OPSIZE (2);
8790                         CHECK_STACK_OVF (1);
8791                         n = ip [1];
8792                         CHECK_LOCAL (n);
8793                         EMIT_NEW_LOCLOAD (cfg, ins, n);
8794                         *sp++ = ins;
8795                         ip += 2;
8796                         break;
8797                 case CEE_LDLOCA_S: {
8798                         unsigned char *tmp_ip;
8799                         CHECK_OPSIZE (2);
8800                         CHECK_STACK_OVF (1);
8801                         CHECK_LOCAL (ip [1]);
8802
8803                         if ((tmp_ip = emit_optimized_ldloca_ir (cfg, ip, end, 1))) {
8804                                 ip = tmp_ip;
8805                                 inline_costs += 1;
8806                                 break;
8807                         }
8808
8809                         EMIT_NEW_LOCLOADA (cfg, ins, ip [1]);
8810                         *sp++ = ins;
8811                         ip += 2;
8812                         break;
8813                 }
8814                 case CEE_STLOC_S:
8815                         CHECK_OPSIZE (2);
8816                         CHECK_STACK (1);
8817                         --sp;
8818                         CHECK_LOCAL (ip [1]);
8819                         if (!dont_verify_stloc && target_type_is_incompatible (cfg, header->locals [ip [1]], *sp))
8820                                 UNVERIFIED;
8821                         emit_stloc_ir (cfg, sp, header, ip [1]);
8822                         ip += 2;
8823                         inline_costs += 1;
8824                         break;
8825                 case CEE_LDNULL:
8826                         CHECK_STACK_OVF (1);
8827                         EMIT_NEW_PCONST (cfg, ins, NULL);
8828                         ins->type = STACK_OBJ;
8829                         ++ip;
8830                         *sp++ = ins;
8831                         break;
8832                 case CEE_LDC_I4_M1:
8833                         CHECK_STACK_OVF (1);
8834                         EMIT_NEW_ICONST (cfg, ins, -1);
8835                         ++ip;
8836                         *sp++ = ins;
8837                         break;
8838                 case CEE_LDC_I4_0:
8839                 case CEE_LDC_I4_1:
8840                 case CEE_LDC_I4_2:
8841                 case CEE_LDC_I4_3:
8842                 case CEE_LDC_I4_4:
8843                 case CEE_LDC_I4_5:
8844                 case CEE_LDC_I4_6:
8845                 case CEE_LDC_I4_7:
8846                 case CEE_LDC_I4_8:
8847                         CHECK_STACK_OVF (1);
8848                         EMIT_NEW_ICONST (cfg, ins, (*ip) - CEE_LDC_I4_0);
8849                         ++ip;
8850                         *sp++ = ins;
8851                         break;
8852                 case CEE_LDC_I4_S:
8853                         CHECK_OPSIZE (2);
8854                         CHECK_STACK_OVF (1);
8855                         ++ip;
8856                         EMIT_NEW_ICONST (cfg, ins, *((signed char*)ip));
8857                         ++ip;
8858                         *sp++ = ins;
8859                         break;
8860                 case CEE_LDC_I4:
8861                         CHECK_OPSIZE (5);
8862                         CHECK_STACK_OVF (1);
8863                         EMIT_NEW_ICONST (cfg, ins, (gint32)read32 (ip + 1));
8864                         ip += 5;
8865                         *sp++ = ins;
8866                         break;
8867                 case CEE_LDC_I8:
8868                         CHECK_OPSIZE (9);
8869                         CHECK_STACK_OVF (1);
8870                         MONO_INST_NEW (cfg, ins, OP_I8CONST);
8871                         ins->type = STACK_I8;
8872                         ins->dreg = alloc_dreg (cfg, STACK_I8);
8873                         ++ip;
8874                         ins->inst_l = (gint64)read64 (ip);
8875                         MONO_ADD_INS (cfg->cbb, ins);
8876                         ip += 8;
8877                         *sp++ = ins;
8878                         break;
8879                 case CEE_LDC_R4: {
8880                         float *f;
8881                         gboolean use_aotconst = FALSE;
8882
8883 #ifdef TARGET_POWERPC
8884                         /* FIXME: Clean this up */
8885                         if (cfg->compile_aot)
8886                                 use_aotconst = TRUE;
8887 #endif
8888
8889                         /* FIXME: we should really allocate this only late in the compilation process */
8890                         f = (float *)mono_domain_alloc (cfg->domain, sizeof (float));
8891                         CHECK_OPSIZE (5);
8892                         CHECK_STACK_OVF (1);
8893
8894                         if (use_aotconst) {
8895                                 MonoInst *cons;
8896                                 int dreg;
8897
8898                                 EMIT_NEW_AOTCONST (cfg, cons, MONO_PATCH_INFO_R4, f);
8899
8900                                 dreg = alloc_freg (cfg);
8901                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADR4_MEMBASE, dreg, cons->dreg, 0);
8902                                 ins->type = cfg->r4_stack_type;
8903                         } else {
8904                                 MONO_INST_NEW (cfg, ins, OP_R4CONST);
8905                                 ins->type = cfg->r4_stack_type;
8906                                 ins->dreg = alloc_dreg (cfg, STACK_R8);
8907                                 ins->inst_p0 = f;
8908                                 MONO_ADD_INS (cfg->cbb, ins);
8909                         }
8910                         ++ip;
8911                         readr4 (ip, f);
8912                         ip += 4;
8913                         *sp++ = ins;                    
8914                         break;
8915                 }
8916                 case CEE_LDC_R8: {
8917                         double *d;
8918                         gboolean use_aotconst = FALSE;
8919
8920 #ifdef TARGET_POWERPC
8921                         /* FIXME: Clean this up */
8922                         if (cfg->compile_aot)
8923                                 use_aotconst = TRUE;
8924 #endif
8925
8926                         /* FIXME: we should really allocate this only late in the compilation process */
8927                         d = (double *)mono_domain_alloc (cfg->domain, sizeof (double));
8928                         CHECK_OPSIZE (9);
8929                         CHECK_STACK_OVF (1);
8930
8931                         if (use_aotconst) {
8932                                 MonoInst *cons;
8933                                 int dreg;
8934
8935                                 EMIT_NEW_AOTCONST (cfg, cons, MONO_PATCH_INFO_R8, d);
8936
8937                                 dreg = alloc_freg (cfg);
8938                                 EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOADR8_MEMBASE, dreg, cons->dreg, 0);
8939                                 ins->type = STACK_R8;
8940                         } else {
8941                                 MONO_INST_NEW (cfg, ins, OP_R8CONST);
8942                                 ins->type = STACK_R8;
8943                                 ins->dreg = alloc_dreg (cfg, STACK_R8);
8944                                 ins->inst_p0 = d;
8945                                 MONO_ADD_INS (cfg->cbb, ins);
8946                         }
8947                         ++ip;
8948                         readr8 (ip, d);
8949                         ip += 8;
8950                         *sp++ = ins;
8951                         break;
8952                 }
8953                 case CEE_DUP: {
8954                         MonoInst *temp, *store;
8955                         CHECK_STACK (1);
8956                         CHECK_STACK_OVF (1);
8957                         sp--;
8958                         ins = *sp;
8959
8960                         temp = mono_compile_create_var (cfg, type_from_stack_type (ins), OP_LOCAL);
8961                         EMIT_NEW_TEMPSTORE (cfg, store, temp->inst_c0, ins);
8962
8963                         EMIT_NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
8964                         *sp++ = ins;
8965
8966                         EMIT_NEW_TEMPLOAD (cfg, ins, temp->inst_c0);
8967                         *sp++ = ins;
8968
8969                         ++ip;
8970                         inline_costs += 2;
8971                         break;
8972                 }
8973                 case CEE_POP:
8974                         CHECK_STACK (1);
8975                         ip++;
8976                         --sp;
8977
8978 #ifdef TARGET_X86
8979                         if (sp [0]->type == STACK_R8)
8980                                 /* we need to pop the value from the x86 FP stack */
8981                                 MONO_EMIT_NEW_UNALU (cfg, OP_X86_FPOP, -1, sp [0]->dreg);
8982 #endif
8983                         break;
8984                 case CEE_JMP: {
8985                         MonoCallInst *call;
8986                         MonoMethodSignature *fsig;
8987                         int i, n;
8988
8989                         INLINE_FAILURE ("jmp");
8990                         GSHAREDVT_FAILURE (*ip);
8991
8992                         CHECK_OPSIZE (5);
8993                         if (stack_start != sp)
8994                                 UNVERIFIED;
8995                         token = read32 (ip + 1);
8996                         /* FIXME: check the signature matches */
8997                         cmethod = mini_get_method (cfg, method, token, NULL, generic_context);
8998                         CHECK_CFG_ERROR;
8999  
9000                         if (cfg->gshared && mono_method_check_context_used (cmethod))
9001                                 GENERIC_SHARING_FAILURE (CEE_JMP);
9002
9003                         emit_instrumentation_call (cfg, mono_profiler_method_leave);
9004
9005                         fsig = mono_method_signature (cmethod);
9006                         n = fsig->param_count + fsig->hasthis;
9007                         if (cfg->llvm_only) {
9008                                 MonoInst **args;
9009
9010                                 args = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * n);
9011                                 for (i = 0; i < n; ++i)
9012                                         EMIT_NEW_ARGLOAD (cfg, args [i], i);
9013                                 ins = mono_emit_method_call_full (cfg, cmethod, fsig, TRUE, args, NULL, NULL, NULL);
9014                                 /*
9015                                  * The code in mono-basic-block.c treats the rest of the code as dead, but we
9016                                  * have to emit a normal return since llvm expects it.
9017                                  */
9018                                 if (cfg->ret)
9019                                         emit_setret (cfg, ins);
9020                                 MONO_INST_NEW (cfg, ins, OP_BR);
9021                                 ins->inst_target_bb = end_bblock;
9022                                 MONO_ADD_INS (cfg->cbb, ins);
9023                                 link_bblock (cfg, cfg->cbb, end_bblock);
9024                                 ip += 5;
9025                                 break;
9026                         } else if (cfg->backend->have_op_tail_call) {
9027                                 /* Handle tail calls similarly to calls */
9028                                 DISABLE_AOT (cfg);
9029
9030                                 MONO_INST_NEW_CALL (cfg, call, OP_TAILCALL);
9031                                 call->method = cmethod;
9032                                 call->tail_call = TRUE;
9033                                 call->signature = mono_method_signature (cmethod);
9034                                 call->args = (MonoInst **)mono_mempool_alloc (cfg->mempool, sizeof (MonoInst*) * n);
9035                                 call->inst.inst_p0 = cmethod;
9036                                 for (i = 0; i < n; ++i)
9037                                         EMIT_NEW_ARGLOAD (cfg, call->args [i], i);
9038
9039                                 mono_arch_emit_call (cfg, call);
9040                                 cfg->param_area = MAX(cfg->param_area, call->stack_usage);
9041                                 MONO_ADD_INS (cfg->cbb, (MonoInst*)call);
9042                         } else {
9043                                 for (i = 0; i < num_args; ++i)
9044                                         /* Prevent arguments from being optimized away */
9045                                         arg_array [i]->flags |= MONO_INST_VOLATILE;
9046
9047                                 MONO_INST_NEW_CALL (cfg, call, OP_JMP);
9048                                 ins = (MonoInst*)call;
9049                                 ins->inst_p0 = cmethod;
9050                                 MONO_ADD_INS (cfg->cbb, ins);
9051                         }
9052
9053                         ip += 5;
9054                         start_new_bblock = 1;
9055                         break;
9056                 }
9057                 case CEE_CALLI: {
9058                         MonoInst *addr;
9059                         MonoMethodSignature *fsig;
9060
9061                         CHECK_OPSIZE (5);
9062                         token = read32 (ip + 1);
9063
9064                         ins = NULL;
9065
9066                         //GSHAREDVT_FAILURE (*ip);
9067                         cmethod = NULL;
9068                         CHECK_STACK (1);
9069                         --sp;
9070                         addr = *sp;
9071                         fsig = mini_get_signature (method, token, generic_context, &cfg->error);
9072                         CHECK_CFG_ERROR;
9073
9074                         if (method->dynamic && fsig->pinvoke) {
9075                                 MonoInst *args [3];
9076
9077                                 /*
9078                                  * This is a call through a function pointer using a pinvoke
9079                                  * signature. Have to create a wrapper and call that instead.
9080                                  * FIXME: This is very slow, need to create a wrapper at JIT time
9081                                  * instead based on the signature.
9082                                  */
9083                                 EMIT_NEW_IMAGECONST (cfg, args [0], method->klass->image);
9084                                 EMIT_NEW_PCONST (cfg, args [1], fsig);
9085                                 args [2] = addr;
9086                                 addr = mono_emit_jit_icall (cfg, mono_get_native_calli_wrapper, args);
9087                         }
9088
9089                         n = fsig->param_count + fsig->hasthis;
9090
9091                         CHECK_STACK (n);
9092
9093                         //g_assert (!virtual_ || fsig->hasthis);
9094
9095                         sp -= n;
9096
9097                         inline_costs += 10 * num_calls++;
9098
9099                         /*
9100                          * Making generic calls out of gsharedvt methods.
9101                          * This needs to be used for all generic calls, not just ones with a gsharedvt signature, to avoid
9102                          * patching gshared method addresses into a gsharedvt method.
9103                          */
9104                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) {
9105                                 /*
9106                                  * We pass the address to the gsharedvt trampoline in the rgctx reg
9107                                  */
9108                                 MonoInst *callee = addr;
9109
9110                                 if (method->wrapper_type != MONO_WRAPPER_DELEGATE_INVOKE)
9111                                         /* Not tested */
9112                                         GSHAREDVT_FAILURE (*ip);
9113
9114                                 if (cfg->llvm_only)
9115                                         // FIXME:
9116                                         GSHAREDVT_FAILURE (*ip);
9117
9118                                 addr = emit_get_rgctx_sig (cfg, context_used,
9119                                                                                           fsig, MONO_RGCTX_INFO_SIG_GSHAREDVT_OUT_TRAMPOLINE_CALLI);
9120                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, callee);
9121                                 goto calli_end;
9122                         }
9123
9124                         /* Prevent inlining of methods with indirect calls */
9125                         INLINE_FAILURE ("indirect call");
9126
9127                         if (addr->opcode == OP_PCONST || addr->opcode == OP_AOTCONST || addr->opcode == OP_GOT_ENTRY) {
9128                                 MonoJumpInfoType info_type;
9129                                 gpointer info_data;
9130
9131                                 /*
9132                                  * Instead of emitting an indirect call, emit a direct call
9133                                  * with the contents of the aotconst as the patch info.
9134                                  */
9135                                 if (addr->opcode == OP_PCONST || addr->opcode == OP_AOTCONST) {
9136                                         info_type = (MonoJumpInfoType)addr->inst_c1;
9137                                         info_data = addr->inst_p0;
9138                                 } else {
9139                                         info_type = (MonoJumpInfoType)addr->inst_right->inst_c1;
9140                                         info_data = addr->inst_right->inst_left;
9141                                 }
9142
9143                                 if (info_type == MONO_PATCH_INFO_ICALL_ADDR) {
9144                                         ins = (MonoInst*)mono_emit_abs_call (cfg, MONO_PATCH_INFO_ICALL_ADDR_CALL, info_data, fsig, sp);
9145                                         NULLIFY_INS (addr);
9146                                         goto calli_end;
9147                                 } else if (info_type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
9148                                         ins = (MonoInst*)mono_emit_abs_call (cfg, info_type, info_data, fsig, sp);
9149                                         NULLIFY_INS (addr);
9150                                         goto calli_end;
9151                                 }
9152                         }
9153                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
9154
9155                         calli_end:
9156
9157                         /* End of call, INS should contain the result of the call, if any */
9158
9159                         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9160                                 g_assert (ins);
9161                                 *sp++ = mono_emit_widen_call_res (cfg, ins, fsig);
9162                         }
9163
9164                         CHECK_CFG_EXCEPTION;
9165
9166                         ip += 5;
9167                         ins_flag = 0;
9168                         constrained_class = NULL;
9169                         break;
9170                 }
9171                 case CEE_CALL:
9172                 case CEE_CALLVIRT: {
9173                         MonoInst *addr = NULL;
9174                         MonoMethodSignature *fsig = NULL;
9175                         int array_rank = 0;
9176                         int virtual_ = *ip == CEE_CALLVIRT;
9177                         gboolean pass_imt_from_rgctx = FALSE;
9178                         MonoInst *imt_arg = NULL;
9179                         MonoInst *keep_this_alive = NULL;
9180                         gboolean pass_vtable = FALSE;
9181                         gboolean pass_mrgctx = FALSE;
9182                         MonoInst *vtable_arg = NULL;
9183                         gboolean check_this = FALSE;
9184                         gboolean supported_tail_call = FALSE;
9185                         gboolean tail_call = FALSE;
9186                         gboolean need_seq_point = FALSE;
9187                         guint32 call_opcode = *ip;
9188                         gboolean emit_widen = TRUE;
9189                         gboolean push_res = TRUE;
9190                         gboolean skip_ret = FALSE;
9191                         gboolean delegate_invoke = FALSE;
9192                         gboolean direct_icall = FALSE;
9193                         gboolean constrained_partial_call = FALSE;
9194                         MonoMethod *cil_method;
9195
9196                         CHECK_OPSIZE (5);
9197                         token = read32 (ip + 1);
9198
9199                         ins = NULL;
9200
9201                         cmethod = mini_get_method (cfg, method, token, NULL, generic_context);
9202                         CHECK_CFG_ERROR;
9203
9204                         cil_method = cmethod;
9205                                 
9206                         if (constrained_class) {
9207                                 if ((constrained_class->byval_arg.type == MONO_TYPE_VAR || constrained_class->byval_arg.type == MONO_TYPE_MVAR) && cfg->gshared) {
9208                                         if (!mini_is_gsharedvt_klass (constrained_class)) {
9209                                                 g_assert (!cmethod->klass->valuetype);
9210                                                 if (!mini_type_is_reference (&constrained_class->byval_arg))
9211                                                         constrained_partial_call = TRUE;
9212                                         }
9213                                 }
9214
9215                                 if (method->wrapper_type != MONO_WRAPPER_NONE) {
9216                                         if (cfg->verbose_level > 2)
9217                                                 printf ("DM Constrained call to %s\n", mono_type_get_full_name (constrained_class));
9218                                         if (!((constrained_class->byval_arg.type == MONO_TYPE_VAR ||
9219                                                    constrained_class->byval_arg.type == MONO_TYPE_MVAR) &&
9220                                                   cfg->gshared)) {
9221                                                 cmethod = mono_get_method_constrained_with_method (image, cil_method, constrained_class, generic_context, &cfg->error);
9222                                                 CHECK_CFG_ERROR;
9223                                         }
9224                                 } else {
9225                                         if (cfg->verbose_level > 2)
9226                                                 printf ("Constrained call to %s\n", mono_type_get_full_name (constrained_class));
9227
9228                                         if ((constrained_class->byval_arg.type == MONO_TYPE_VAR || constrained_class->byval_arg.type == MONO_TYPE_MVAR) && cfg->gshared) {
9229                                                 /* 
9230                                                  * This is needed since get_method_constrained can't find 
9231                                                  * the method in klass representing a type var.
9232                                                  * The type var is guaranteed to be a reference type in this
9233                                                  * case.
9234                                                  */
9235                                                 if (!mini_is_gsharedvt_klass (constrained_class))
9236                                                         g_assert (!cmethod->klass->valuetype);
9237                                         } else {
9238                                                 cmethod = mono_get_method_constrained_checked (image, token, constrained_class, generic_context, &cil_method, &cfg->error);
9239                                                 CHECK_CFG_ERROR;
9240                                         }
9241                                 }
9242                         }
9243                                         
9244                         if (!dont_verify && !cfg->skip_visibility) {
9245                                 MonoMethod *target_method = cil_method;
9246                                 if (method->is_inflated) {
9247                                         target_method = mini_get_method_allow_open (method, token, NULL, &(mono_method_get_generic_container (method_definition)->context), &cfg->error);
9248                                         CHECK_CFG_ERROR;
9249                                 }
9250                                 if (!mono_method_can_access_method (method_definition, target_method) &&
9251                                         !mono_method_can_access_method (method, cil_method))
9252                                         emit_method_access_failure (cfg, method, cil_method);
9253                         }
9254
9255                         if (mono_security_core_clr_enabled ())
9256                                 ensure_method_is_allowed_to_call_method (cfg, method, cil_method);
9257
9258                         if (!virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_ABSTRACT))
9259                                 /* MS.NET seems to silently convert this to a callvirt */
9260                                 virtual_ = 1;
9261
9262                         {
9263                                 /*
9264                                  * MS.NET accepts non virtual calls to virtual final methods of transparent proxy classes and
9265                                  * converts to a callvirt.
9266                                  *
9267                                  * tests/bug-515884.il is an example of this behavior
9268                                  */
9269                                 const int test_flags = METHOD_ATTRIBUTE_VIRTUAL | METHOD_ATTRIBUTE_FINAL | METHOD_ATTRIBUTE_STATIC;
9270                                 const int expected_flags = METHOD_ATTRIBUTE_VIRTUAL | METHOD_ATTRIBUTE_FINAL;
9271                                 if (!virtual_ && mono_class_is_marshalbyref (cmethod->klass) && (cmethod->flags & test_flags) == expected_flags && cfg->method->wrapper_type == MONO_WRAPPER_NONE)
9272                                         virtual_ = 1;
9273                         }
9274
9275                         if (!cmethod->klass->inited)
9276                                 if (!mono_class_init (cmethod->klass))
9277                                         TYPE_LOAD_ERROR (cmethod->klass);
9278
9279                         fsig = mono_method_signature (cmethod);
9280                         if (!fsig)
9281                                 LOAD_ERROR;
9282                         if (cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL &&
9283                                 mini_class_is_system_array (cmethod->klass)) {
9284                                 array_rank = cmethod->klass->rank;
9285                         } else if ((cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) && icall_is_direct_callable (cfg, cmethod)) {
9286                                 direct_icall = TRUE;
9287                         } else if (fsig->pinvoke) {
9288                                 MonoMethod *wrapper = mono_marshal_get_native_wrapper (cmethod, TRUE, cfg->compile_aot);
9289                                 fsig = mono_method_signature (wrapper);
9290                         } else if (constrained_class) {
9291                         } else {
9292                                 fsig = mono_method_get_signature_checked (cmethod, image, token, generic_context, &cfg->error);
9293                                 CHECK_CFG_ERROR;
9294                         }
9295
9296                         if (cfg->llvm_only && !cfg->method->wrapper_type && (!cmethod || cmethod->is_inflated))
9297                                 cfg->signatures = g_slist_prepend_mempool (cfg->mempool, cfg->signatures, fsig);
9298
9299                         /* See code below */
9300                         if (cmethod->klass == mono_defaults.monitor_class && !strcmp (cmethod->name, "Enter") && mono_method_signature (cmethod)->param_count == 1) {
9301                                 MonoBasicBlock *tbb;
9302
9303                                 GET_BBLOCK (cfg, tbb, ip + 5);
9304                                 if (tbb->try_start && MONO_REGION_FLAGS(tbb->region) == MONO_EXCEPTION_CLAUSE_FINALLY) {
9305                                         /*
9306                                          * We want to extend the try block to cover the call, but we can't do it if the
9307                                          * call is made directly since its followed by an exception check.
9308                                          */
9309                                         direct_icall = FALSE;
9310                                 }
9311                         }
9312
9313                         mono_save_token_info (cfg, image, token, cil_method);
9314
9315                         if (!(seq_point_locs && mono_bitset_test_fast (seq_point_locs, ip + 5 - header->code)))
9316                                 need_seq_point = TRUE;
9317
9318                         /* Don't support calls made using type arguments for now */
9319                         /*
9320                           if (cfg->gsharedvt) {
9321                           if (mini_is_gsharedvt_signature (fsig))
9322                           GSHAREDVT_FAILURE (*ip);
9323                           }
9324                         */
9325
9326                         if (cmethod->string_ctor && method->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE)
9327                                 g_assert_not_reached ();
9328
9329                         n = fsig->param_count + fsig->hasthis;
9330
9331                         if (!cfg->gshared && cmethod->klass->generic_container)
9332                                 UNVERIFIED;
9333
9334                         if (!cfg->gshared)
9335                                 g_assert (!mono_method_check_context_used (cmethod));
9336
9337                         CHECK_STACK (n);
9338
9339                         //g_assert (!virtual_ || fsig->hasthis);
9340
9341                         sp -= n;
9342
9343                         /*
9344                          * We have the `constrained.' prefix opcode.
9345                          */
9346                         if (constrained_class) {
9347                                 if (mini_is_gsharedvt_klass (constrained_class)) {
9348                                         if ((cmethod->klass != mono_defaults.object_class) && constrained_class->valuetype && cmethod->klass->valuetype) {
9349                                                 /* The 'Own method' case below */
9350                                         } else if (cmethod->klass->image != mono_defaults.corlib && !(cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE) && !cmethod->klass->valuetype) {
9351                                                 /* 'The type parameter is instantiated as a reference type' case below. */
9352                                         } else {
9353                                                 ins = handle_constrained_gsharedvt_call (cfg, cmethod, fsig, sp, constrained_class, &emit_widen);
9354                                                 CHECK_CFG_EXCEPTION;
9355                                                 g_assert (ins);
9356                                                 goto call_end;
9357                                         }
9358                                 }
9359
9360                                 if (constrained_partial_call) {
9361                                         gboolean need_box = TRUE;
9362
9363                                         /*
9364                                          * The receiver is a valuetype, but the exact type is not known at compile time. This means the
9365                                          * called method is not known at compile time either. The called method could end up being
9366                                          * one of the methods on the parent classes (object/valuetype/enum), in which case we need
9367                                          * to box the receiver.
9368                                          * A simple solution would be to box always and make a normal virtual call, but that would
9369                                          * be bad performance wise.
9370                                          */
9371                                         if (cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE && cmethod->klass->generic_class) {
9372                                                 /*
9373                                                  * The parent classes implement no generic interfaces, so the called method will be a vtype method, so no boxing neccessary.
9374                                                  */
9375                                                 need_box = FALSE;
9376                                         }
9377
9378                                         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)) {
9379                                                 /* The called method is not virtual, i.e. Object:GetType (), the receiver is a vtype, has to box */
9380                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
9381                                                 ins->klass = constrained_class;
9382                                                 sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
9383                                                 CHECK_CFG_EXCEPTION;
9384                                         } else if (need_box) {
9385                                                 MonoInst *box_type;
9386                                                 MonoBasicBlock *is_ref_bb, *end_bb;
9387                                                 MonoInst *nonbox_call;
9388
9389                                                 /*
9390                                                  * Determine at runtime whenever the called method is defined on object/valuetype/enum, and emit a boxing call
9391                                                  * if needed.
9392                                                  * FIXME: It is possible to inline the called method in a lot of cases, i.e. for T_INT,
9393                                                  * the no-box case goes to a method in Int32, while the box case goes to a method in Enum.
9394                                                  */
9395                                                 addr = emit_get_rgctx_virt_method (cfg, mono_class_check_context_used (constrained_class), constrained_class, cmethod, MONO_RGCTX_INFO_VIRT_METHOD_CODE);
9396
9397                                                 NEW_BBLOCK (cfg, is_ref_bb);
9398                                                 NEW_BBLOCK (cfg, end_bb);
9399
9400                                                 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);
9401                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, box_type->dreg, MONO_GSHAREDVT_BOX_TYPE_REF);
9402                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBEQ, is_ref_bb);
9403
9404                                                 /* Non-ref case */
9405                                                 nonbox_call = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
9406
9407                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
9408
9409                                                 /* Ref case */
9410                                                 MONO_START_BB (cfg, is_ref_bb);
9411                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
9412                                                 ins->klass = constrained_class;
9413                                                 sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
9414                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
9415
9416                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
9417
9418                                                 MONO_START_BB (cfg, end_bb);
9419                                                 cfg->cbb = end_bb;
9420
9421                                                 nonbox_call->dreg = ins->dreg;
9422                                                 goto call_end;
9423                                         } else {
9424                                                 g_assert (cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE);
9425                                                 addr = emit_get_rgctx_virt_method (cfg, mono_class_check_context_used (constrained_class), constrained_class, cmethod, MONO_RGCTX_INFO_VIRT_METHOD_CODE);
9426                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
9427                                                 goto call_end;
9428                                         }
9429                                 } else if (constrained_class->valuetype && (cmethod->klass == mono_defaults.object_class || cmethod->klass == mono_defaults.enum_class->parent || cmethod->klass == mono_defaults.enum_class)) {
9430                                         /*
9431                                          * The type parameter is instantiated as a valuetype,
9432                                          * but that type doesn't override the method we're
9433                                          * calling, so we need to box `this'.
9434                                          */
9435                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
9436                                         ins->klass = constrained_class;
9437                                         sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
9438                                         CHECK_CFG_EXCEPTION;
9439                                 } else if (!constrained_class->valuetype) {
9440                                         int dreg = alloc_ireg_ref (cfg);
9441
9442                                         /*
9443                                          * The type parameter is instantiated as a reference
9444                                          * type.  We have a managed pointer on the stack, so
9445                                          * we need to dereference it here.
9446                                          */
9447                                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, sp [0]->dreg, 0);
9448                                         ins->type = STACK_OBJ;
9449                                         sp [0] = ins;
9450                                 } else {
9451                                         if (cmethod->klass->valuetype) {
9452                                                 /* Own method */
9453                                         } else {
9454                                                 /* Interface method */
9455                                                 int ioffset, slot;
9456
9457                                                 mono_class_setup_vtable (constrained_class);
9458                                                 CHECK_TYPELOAD (constrained_class);
9459                                                 ioffset = mono_class_interface_offset (constrained_class, cmethod->klass);
9460                                                 if (ioffset == -1)
9461                                                         TYPE_LOAD_ERROR (constrained_class);
9462                                                 slot = mono_method_get_vtable_slot (cmethod);
9463                                                 if (slot == -1)
9464                                                         TYPE_LOAD_ERROR (cmethod->klass);
9465                                                 cmethod = constrained_class->vtable [ioffset + slot];
9466
9467                                                 if (cmethod->klass == mono_defaults.enum_class) {
9468                                                         /* Enum implements some interfaces, so treat this as the first case */
9469                                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &constrained_class->byval_arg, sp [0]->dreg, 0);
9470                                                         ins->klass = constrained_class;
9471                                                         sp [0] = handle_box (cfg, ins, constrained_class, mono_class_check_context_used (constrained_class));
9472                                                         CHECK_CFG_EXCEPTION;
9473                                                 }
9474                                         }
9475                                         virtual_ = 0;
9476                                 }
9477                                 constrained_class = NULL;
9478                         }
9479
9480                         if (check_call_signature (cfg, fsig, sp))
9481                                 UNVERIFIED;
9482
9483                         if ((cmethod->klass->parent == mono_defaults.multicastdelegate_class) && !strcmp (cmethod->name, "Invoke"))
9484                                 delegate_invoke = TRUE;
9485
9486                         if ((cfg->opt & MONO_OPT_INTRINS) && (ins = mini_emit_inst_for_sharable_method (cfg, cmethod, fsig, sp))) {
9487                                 if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9488                                         type_to_eval_stack_type ((cfg), fsig->ret, ins);
9489                                         emit_widen = FALSE;
9490                                 }
9491
9492                                 goto call_end;
9493                         }
9494
9495                         /* 
9496                          * If the callee is a shared method, then its static cctor
9497                          * might not get called after the call was patched.
9498                          */
9499                         if (cfg->gshared && cmethod->klass != method->klass && cmethod->klass->generic_class && mono_method_is_generic_sharable (cmethod, TRUE) && mono_class_needs_cctor_run (cmethod->klass, method)) {
9500                                 emit_class_init (cfg, cmethod->klass);
9501                                 CHECK_TYPELOAD (cmethod->klass);
9502                         }
9503
9504                         check_method_sharing (cfg, cmethod, &pass_vtable, &pass_mrgctx);
9505
9506                         if (cfg->gshared) {
9507                                 MonoGenericContext *cmethod_context = mono_method_get_context (cmethod);
9508
9509                                 context_used = mini_method_check_context_used (cfg, cmethod);
9510
9511                                 if (context_used && (cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE)) {
9512                                         /* Generic method interface
9513                                            calls are resolved via a
9514                                            helper function and don't
9515                                            need an imt. */
9516                                         if (!cmethod_context || !cmethod_context->method_inst)
9517                                                 pass_imt_from_rgctx = TRUE;
9518                                 }
9519
9520                                 /*
9521                                  * If a shared method calls another
9522                                  * shared method then the caller must
9523                                  * have a generic sharing context
9524                                  * because the magic trampoline
9525                                  * requires it.  FIXME: We shouldn't
9526                                  * have to force the vtable/mrgctx
9527                                  * variable here.  Instead there
9528                                  * should be a flag in the cfg to
9529                                  * request a generic sharing context.
9530                                  */
9531                                 if (context_used &&
9532                                                 ((method->flags & METHOD_ATTRIBUTE_STATIC) || method->klass->valuetype))
9533                                         mono_get_vtable_var (cfg);
9534                         }
9535
9536                         if (pass_vtable) {
9537                                 if (context_used) {
9538                                         vtable_arg = emit_get_rgctx_klass (cfg, context_used, cmethod->klass, MONO_RGCTX_INFO_VTABLE);
9539                                 } else {
9540                                         MonoVTable *vtable = mono_class_vtable (cfg->domain, cmethod->klass);
9541
9542                                         CHECK_TYPELOAD (cmethod->klass);
9543                                         EMIT_NEW_VTABLECONST (cfg, vtable_arg, vtable);
9544                                 }
9545                         }
9546
9547                         if (pass_mrgctx) {
9548                                 g_assert (!vtable_arg);
9549
9550                                 if (!cfg->compile_aot) {
9551                                         /* 
9552                                          * emit_get_rgctx_method () calls mono_class_vtable () so check 
9553                                          * for type load errors before.
9554                                          */
9555                                         mono_class_setup_vtable (cmethod->klass);
9556                                         CHECK_TYPELOAD (cmethod->klass);
9557                                 }
9558
9559                                 vtable_arg = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_METHOD_RGCTX);
9560
9561                                 /* !marshalbyref is needed to properly handle generic methods + remoting */
9562                                 if ((!(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) ||
9563                                          MONO_METHOD_IS_FINAL (cmethod)) &&
9564                                         !mono_class_is_marshalbyref (cmethod->klass)) {
9565                                         if (virtual_)
9566                                                 check_this = TRUE;
9567                                         virtual_ = 0;
9568                                 }
9569                         }
9570
9571                         if (pass_imt_from_rgctx) {
9572                                 g_assert (!pass_vtable);
9573
9574                                 imt_arg = emit_get_rgctx_method (cfg, context_used,
9575                                         cmethod, MONO_RGCTX_INFO_METHOD);
9576                         }
9577
9578                         if (check_this)
9579                                 MONO_EMIT_NEW_CHECK_THIS (cfg, sp [0]->dreg);
9580
9581                         /* Calling virtual generic methods */
9582                         if (virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) &&
9583                             !(MONO_METHOD_IS_FINAL (cmethod) && 
9584                               cmethod->wrapper_type != MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK) &&
9585                             fsig->generic_param_count && 
9586                                 !(cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) &&
9587                                 !cfg->llvm_only) {
9588                                 MonoInst *this_temp, *this_arg_temp, *store;
9589                                 MonoInst *iargs [4];
9590
9591                                 g_assert (fsig->is_inflated);
9592
9593                                 /* Prevent inlining of methods that contain indirect calls */
9594                                 INLINE_FAILURE ("virtual generic call");
9595
9596                                 if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig))
9597                                         GSHAREDVT_FAILURE (*ip);
9598
9599                                 if (cfg->backend->have_generalized_imt_thunk && cfg->backend->gshared_supported && cmethod->wrapper_type == MONO_WRAPPER_NONE) {
9600                                         g_assert (!imt_arg);
9601                                         if (!context_used)
9602                                                 g_assert (cmethod->is_inflated);
9603                                         imt_arg = emit_get_rgctx_method (cfg, context_used,
9604                                                                                                          cmethod, MONO_RGCTX_INFO_METHOD);
9605                                         ins = mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp, sp [0], imt_arg, NULL);
9606                                 } else {
9607                                         this_temp = mono_compile_create_var (cfg, type_from_stack_type (sp [0]), OP_LOCAL);
9608                                         NEW_TEMPSTORE (cfg, store, this_temp->inst_c0, sp [0]);
9609                                         MONO_ADD_INS (cfg->cbb, store);
9610
9611                                         /* FIXME: This should be a managed pointer */
9612                                         this_arg_temp = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
9613
9614                                         EMIT_NEW_TEMPLOAD (cfg, iargs [0], this_temp->inst_c0);
9615                                         iargs [1] = emit_get_rgctx_method (cfg, context_used,
9616                                                                                                            cmethod, MONO_RGCTX_INFO_METHOD);
9617                                         EMIT_NEW_TEMPLOADA (cfg, iargs [2], this_arg_temp->inst_c0);
9618                                         addr = mono_emit_jit_icall (cfg,
9619                                                                                                 mono_helper_compile_generic_method, iargs);
9620
9621                                         EMIT_NEW_TEMPLOAD (cfg, sp [0], this_arg_temp->inst_c0);
9622
9623                                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
9624                                 }
9625
9626                                 goto call_end;
9627                         }
9628
9629                         /*
9630                          * Implement a workaround for the inherent races involved in locking:
9631                          * Monitor.Enter ()
9632                          * try {
9633                          * } finally {
9634                          *    Monitor.Exit ()
9635                          * }
9636                          * If a thread abort happens between the call to Monitor.Enter () and the start of the
9637                          * try block, the Exit () won't be executed, see:
9638                          * http://www.bluebytesoftware.com/blog/2007/01/30/MonitorEnterThreadAbortsAndOrphanedLocks.aspx
9639                          * To work around this, we extend such try blocks to include the last x bytes
9640                          * of the Monitor.Enter () call.
9641                          */
9642                         if (cmethod->klass == mono_defaults.monitor_class && !strcmp (cmethod->name, "Enter") && mono_method_signature (cmethod)->param_count == 1) {
9643                                 MonoBasicBlock *tbb;
9644
9645                                 GET_BBLOCK (cfg, tbb, ip + 5);
9646                                 /* 
9647                                  * Only extend try blocks with a finally, to avoid catching exceptions thrown
9648                                  * from Monitor.Enter like ArgumentNullException.
9649                                  */
9650                                 if (tbb->try_start && MONO_REGION_FLAGS(tbb->region) == MONO_EXCEPTION_CLAUSE_FINALLY) {
9651                                         /* Mark this bblock as needing to be extended */
9652                                         tbb->extend_try_block = TRUE;
9653                                 }
9654                         }
9655
9656                         /* Conversion to a JIT intrinsic */
9657                         if ((cfg->opt & MONO_OPT_INTRINS) && (ins = mini_emit_inst_for_method (cfg, cmethod, fsig, sp))) {
9658                                 if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9659                                         type_to_eval_stack_type ((cfg), fsig->ret, ins);
9660                                         emit_widen = FALSE;
9661                                 }
9662                                 goto call_end;
9663                         }
9664                         CHECK_CFG_ERROR;
9665                         
9666                         /* Inlining */
9667                         if ((cfg->opt & MONO_OPT_INLINE) &&
9668                                 (!virtual_ || !(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL) || MONO_METHOD_IS_FINAL (cmethod)) &&
9669                             mono_method_check_inlining (cfg, cmethod)) {
9670                                 int costs;
9671                                 gboolean always = FALSE;
9672
9673                                 if ((cmethod->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
9674                                         (cmethod->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL)) {
9675                                         /* Prevent inlining of methods that call wrappers */
9676                                         INLINE_FAILURE ("wrapper call");
9677                                         cmethod = mono_marshal_get_native_wrapper (cmethod, TRUE, FALSE);
9678                                         always = TRUE;
9679                                 }
9680
9681                                 costs = inline_method (cfg, cmethod, fsig, sp, ip, cfg->real_offset, always);
9682                                 if (costs) {
9683                                         cfg->real_offset += 5;
9684
9685                                         if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9686                                                 /* *sp is already set by inline_method */
9687                                                 sp++;
9688                                                 push_res = FALSE;
9689                                         }
9690
9691                                         inline_costs += costs;
9692
9693                                         goto call_end;
9694                                 }
9695                         }
9696
9697                         /* Tail recursion elimination */
9698                         if ((cfg->opt & MONO_OPT_TAILC) && call_opcode == CEE_CALL && cmethod == method && ip [5] == CEE_RET && !vtable_arg) {
9699                                 gboolean has_vtargs = FALSE;
9700                                 int i;
9701
9702                                 /* Prevent inlining of methods with tail calls (the call stack would be altered) */
9703                                 INLINE_FAILURE ("tail call");
9704
9705                                 /* keep it simple */
9706                                 for (i =  fsig->param_count - 1; i >= 0; i--) {
9707                                         if (MONO_TYPE_ISSTRUCT (mono_method_signature (cmethod)->params [i])) 
9708                                                 has_vtargs = TRUE;
9709                                 }
9710
9711                                 if (!has_vtargs) {
9712                                         for (i = 0; i < n; ++i)
9713                                                 EMIT_NEW_ARGSTORE (cfg, ins, i, sp [i]);
9714                                         MONO_INST_NEW (cfg, ins, OP_BR);
9715                                         MONO_ADD_INS (cfg->cbb, ins);
9716                                         tblock = start_bblock->out_bb [0];
9717                                         link_bblock (cfg, cfg->cbb, tblock);
9718                                         ins->inst_target_bb = tblock;
9719                                         start_new_bblock = 1;
9720
9721                                         /* skip the CEE_RET, too */
9722                                         if (ip_in_bb (cfg, cfg->cbb, ip + 5))
9723                                                 skip_ret = TRUE;
9724                                         push_res = FALSE;
9725                                         goto call_end;
9726                                 }
9727                         }
9728
9729                         inline_costs += 10 * num_calls++;
9730
9731                         /*
9732                          * Making generic calls out of gsharedvt methods.
9733                          * This needs to be used for all generic calls, not just ones with a gsharedvt signature, to avoid
9734                          * patching gshared method addresses into a gsharedvt method.
9735                          */
9736                         if (cfg->gsharedvt && (mini_is_gsharedvt_signature (fsig) || cmethod->is_inflated || cmethod->klass->generic_class) &&
9737                                 !(cmethod->klass->rank && cmethod->klass->byval_arg.type != MONO_TYPE_SZARRAY) &&
9738                                 (!(cfg->llvm_only && virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL)))) {
9739                                 MonoRgctxInfoType info_type;
9740
9741                                 if (virtual_) {
9742                                         //if (cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE)
9743                                                 //GSHAREDVT_FAILURE (*ip);
9744                                         // disable for possible remoting calls
9745                                         if (fsig->hasthis && (mono_class_is_marshalbyref (method->klass) || method->klass == mono_defaults.object_class))
9746                                                 GSHAREDVT_FAILURE (*ip);
9747                                         if (fsig->generic_param_count) {
9748                                                 /* virtual generic call */
9749                                                 g_assert (!imt_arg);
9750                                                 /* Same as the virtual generic case above */
9751                                                 imt_arg = emit_get_rgctx_method (cfg, context_used,
9752                                                                                                                  cmethod, MONO_RGCTX_INFO_METHOD);
9753                                                 /* This is not needed, as the trampoline code will pass one, and it might be passed in the same reg as the imt arg */
9754                                                 vtable_arg = NULL;
9755                                         } else if ((cmethod->klass->flags & TYPE_ATTRIBUTE_INTERFACE) && !imt_arg) {
9756                                                 /* This can happen when we call a fully instantiated iface method */
9757                                                 imt_arg = emit_get_rgctx_method (cfg, context_used,
9758                                                                                                                  cmethod, MONO_RGCTX_INFO_METHOD);
9759                                                 vtable_arg = NULL;
9760                                         }
9761                                 }
9762
9763                                 if ((cmethod->klass->parent == mono_defaults.multicastdelegate_class) && (!strcmp (cmethod->name, "Invoke")))
9764                                         keep_this_alive = sp [0];
9765
9766                                 if (virtual_ && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL))
9767                                         info_type = MONO_RGCTX_INFO_METHOD_GSHAREDVT_OUT_TRAMPOLINE_VIRT;
9768                                 else
9769                                         info_type = MONO_RGCTX_INFO_METHOD_GSHAREDVT_OUT_TRAMPOLINE;
9770                                 addr = emit_get_rgctx_gsharedvt_call (cfg, context_used, fsig, cmethod, info_type);
9771
9772                                 if (cfg->llvm_only) {
9773                                         // FIXME: Avoid initializing vtable_arg
9774                                         ins = emit_llvmonly_calli (cfg, fsig, sp, addr);
9775                                 } else {
9776                                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, imt_arg, vtable_arg);
9777                                 }
9778                                 goto call_end;
9779                         }
9780
9781                         /* Generic sharing */
9782
9783                         /*
9784                          * Use this if the callee is gsharedvt sharable too, since
9785                          * at runtime we might find an instantiation so the call cannot
9786                          * be patched (the 'no_patch' code path in mini-trampolines.c).
9787                          */
9788                         if (context_used && !imt_arg && !array_rank && !delegate_invoke &&
9789                                 (!mono_method_is_generic_sharable_full (cmethod, TRUE, FALSE, FALSE) ||
9790                                  !mono_class_generic_sharing_enabled (cmethod->klass)) &&
9791                                 (!virtual_ || MONO_METHOD_IS_FINAL (cmethod) ||
9792                                  !(cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL))) {
9793                                 INLINE_FAILURE ("gshared");
9794
9795                                 g_assert (cfg->gshared && cmethod);
9796                                 g_assert (!addr);
9797
9798                                 /*
9799                                  * We are compiling a call to a
9800                                  * generic method from shared code,
9801                                  * which means that we have to look up
9802                                  * the method in the rgctx and do an
9803                                  * indirect call.
9804                                  */
9805                                 if (fsig->hasthis)
9806                                         MONO_EMIT_NEW_CHECK_THIS (cfg, sp [0]->dreg);
9807
9808                                 if (cfg->llvm_only) {
9809                                         if (cfg->gsharedvt && mini_is_gsharedvt_variable_signature (fsig))
9810                                                 addr = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_GSHAREDVT_OUT_WRAPPER);
9811                                         else
9812                                                 addr = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
9813                                         // FIXME: Avoid initializing imt_arg/vtable_arg
9814                                         ins = emit_llvmonly_calli (cfg, fsig, sp, addr);
9815                                 } else {
9816                                         addr = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_GENERIC_METHOD_CODE);
9817                                         ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, imt_arg, vtable_arg);
9818                                 }
9819                                 goto call_end;
9820                         }
9821
9822                         /* Direct calls to icalls */
9823                         if (direct_icall) {
9824                                 MonoMethod *wrapper;
9825                                 int costs;
9826
9827                                 /* Inline the wrapper */
9828                                 wrapper = mono_marshal_get_native_wrapper (cmethod, TRUE, cfg->compile_aot);
9829
9830                                 costs = inline_method (cfg, wrapper, fsig, sp, ip, cfg->real_offset, TRUE);
9831                                 g_assert (costs > 0);
9832                                 cfg->real_offset += 5;
9833
9834                                 if (!MONO_TYPE_IS_VOID (fsig->ret)) {
9835                                         /* *sp is already set by inline_method */
9836                                         sp++;
9837                                         push_res = FALSE;
9838                                 }
9839
9840                                 inline_costs += costs;
9841
9842                                 goto call_end;
9843                         }
9844                                         
9845                         /* Array methods */
9846                         if (array_rank) {
9847                                 MonoInst *addr;
9848
9849                                 if (strcmp (cmethod->name, "Set") == 0) { /* array Set */ 
9850                                         MonoInst *val = sp [fsig->param_count];
9851
9852                                         if (val->type == STACK_OBJ) {
9853                                                 MonoInst *iargs [2];
9854
9855                                                 iargs [0] = sp [0];
9856                                                 iargs [1] = val;
9857                                                 
9858                                                 mono_emit_jit_icall (cfg, mono_helper_stelem_ref_check, iargs);
9859                                         }
9860                                         
9861                                         addr = mini_emit_ldelema_ins (cfg, cmethod, sp, ip, TRUE);
9862                                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, fsig->params [fsig->param_count - 1], addr->dreg, 0, val->dreg);
9863                                         if (cfg->gen_write_barriers && val->type == STACK_OBJ && !(val->opcode == OP_PCONST && val->inst_c0 == 0))
9864                                                 emit_write_barrier (cfg, addr, val);
9865                                         if (cfg->gen_write_barriers && mini_is_gsharedvt_klass (cmethod->klass))
9866                                                 GSHAREDVT_FAILURE (*ip);
9867                                 } else if (strcmp (cmethod->name, "Get") == 0) { /* array Get */
9868                                         addr = mini_emit_ldelema_ins (cfg, cmethod, sp, ip, FALSE);
9869
9870                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, fsig->ret, addr->dreg, 0);
9871                                 } else if (strcmp (cmethod->name, "Address") == 0) { /* array Address */
9872                                         if (!cmethod->klass->element_class->valuetype && !readonly)
9873                                                 mini_emit_check_array_type (cfg, sp [0], cmethod->klass);
9874                                         CHECK_TYPELOAD (cmethod->klass);
9875                                         
9876                                         readonly = FALSE;
9877                                         addr = mini_emit_ldelema_ins (cfg, cmethod, sp, ip, FALSE);
9878                                         ins = addr;
9879                                 } else {
9880                                         g_assert_not_reached ();
9881                                 }
9882
9883                                 emit_widen = FALSE;
9884                                 goto call_end;
9885                         }
9886
9887                         ins = mini_redirect_call (cfg, cmethod, fsig, sp, virtual_ ? sp [0] : NULL);
9888                         if (ins)
9889                                 goto call_end;
9890
9891                         /* Tail prefix / tail call optimization */
9892
9893                         /* FIXME: Enabling TAILC breaks some inlining/stack trace/etc tests */
9894                         /* FIXME: runtime generic context pointer for jumps? */
9895                         /* FIXME: handle this for generic sharing eventually */
9896                         if ((ins_flag & MONO_INST_TAILCALL) &&
9897                                 !vtable_arg && !cfg->gshared && is_supported_tail_call (cfg, method, cmethod, fsig, call_opcode))
9898                                 supported_tail_call = TRUE;
9899
9900                         if (supported_tail_call) {
9901                                 MonoCallInst *call;
9902
9903                                 /* Prevent inlining of methods with tail calls (the call stack would be altered) */
9904                                 INLINE_FAILURE ("tail call");
9905
9906                                 //printf ("HIT: %s -> %s\n", mono_method_full_name (cfg->method, TRUE), mono_method_full_name (cmethod, TRUE));
9907
9908                                 if (cfg->backend->have_op_tail_call) {
9909                                         /* Handle tail calls similarly to normal calls */
9910                                         tail_call = TRUE;
9911                                 } else {
9912                                         emit_instrumentation_call (cfg, mono_profiler_method_leave);
9913
9914                                         MONO_INST_NEW_CALL (cfg, call, OP_JMP);
9915                                         call->tail_call = TRUE;
9916                                         call->method = cmethod;
9917                                         call->signature = mono_method_signature (cmethod);
9918
9919                                         /*
9920                                          * We implement tail calls by storing the actual arguments into the 
9921                                          * argument variables, then emitting a CEE_JMP.
9922                                          */
9923                                         for (i = 0; i < n; ++i) {
9924                                                 /* Prevent argument from being register allocated */
9925                                                 arg_array [i]->flags |= MONO_INST_VOLATILE;
9926                                                 EMIT_NEW_ARGSTORE (cfg, ins, i, sp [i]);
9927                                         }
9928                                         ins = (MonoInst*)call;
9929                                         ins->inst_p0 = cmethod;
9930                                         ins->inst_p1 = arg_array [0];
9931                                         MONO_ADD_INS (cfg->cbb, ins);
9932                                         link_bblock (cfg, cfg->cbb, end_bblock);
9933                                         start_new_bblock = 1;
9934
9935                                         // FIXME: Eliminate unreachable epilogs
9936
9937                                         /*
9938                                          * OP_TAILCALL has no return value, so skip the CEE_RET if it is
9939                                          * only reachable from this call.
9940                                          */
9941                                         GET_BBLOCK (cfg, tblock, ip + 5);
9942                                         if (tblock == cfg->cbb || tblock->in_count == 0)
9943                                                 skip_ret = TRUE;
9944                                         push_res = FALSE;
9945
9946                                         goto call_end;
9947                                 }
9948                         }
9949
9950                         /* 
9951                          * Synchronized wrappers.
9952                          * Its hard to determine where to replace a method with its synchronized
9953                          * wrapper without causing an infinite recursion. The current solution is
9954                          * to add the synchronized wrapper in the trampolines, and to
9955                          * change the called method to a dummy wrapper, and resolve that wrapper
9956                          * to the real method in mono_jit_compile_method ().
9957                          */
9958                         if (cfg->method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED) {
9959                                 MonoMethod *orig = mono_marshal_method_from_wrapper (cfg->method);
9960                                 if (cmethod == orig || (cmethod->is_inflated && mono_method_get_declaring_generic_method (cmethod) == orig))
9961                                         cmethod = mono_marshal_get_synchronized_inner_wrapper (cmethod);
9962                         }
9963
9964                         /*
9965                          * Virtual calls in llvm-only mode.
9966                          */
9967                         if (cfg->llvm_only && virtual_ && cmethod && (cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
9968                                 ins = emit_llvmonly_virtual_call (cfg, cmethod, fsig, context_used, sp);
9969                                 goto call_end;
9970                         }
9971
9972                         /* Common call */
9973                         INLINE_FAILURE ("call");
9974                         ins = mono_emit_method_call_full (cfg, cmethod, fsig, tail_call, sp, virtual_ ? sp [0] : NULL,
9975                                                                                           imt_arg, vtable_arg);
9976
9977                         if (tail_call && !cfg->llvm_only) {
9978                                 link_bblock (cfg, cfg->cbb, end_bblock);
9979                                 start_new_bblock = 1;
9980
9981                                 // FIXME: Eliminate unreachable epilogs
9982
9983                                 /*
9984                                  * OP_TAILCALL has no return value, so skip the CEE_RET if it is
9985                                  * only reachable from this call.
9986                                  */
9987                                 GET_BBLOCK (cfg, tblock, ip + 5);
9988                                 if (tblock == cfg->cbb || tblock->in_count == 0)
9989                                         skip_ret = TRUE;
9990                                 push_res = FALSE;
9991                         }
9992
9993                         call_end:
9994
9995                         /* End of call, INS should contain the result of the call, if any */
9996
9997                         if (push_res && !MONO_TYPE_IS_VOID (fsig->ret)) {
9998                                 g_assert (ins);
9999                                 if (emit_widen)
10000                                         *sp++ = mono_emit_widen_call_res (cfg, ins, fsig);
10001                                 else
10002                                         *sp++ = ins;
10003                         }
10004
10005                         if (keep_this_alive) {
10006                                 MonoInst *dummy_use;
10007
10008                                 /* See mono_emit_method_call_full () */
10009                                 EMIT_NEW_DUMMY_USE (cfg, dummy_use, keep_this_alive);
10010                         }
10011
10012                         CHECK_CFG_EXCEPTION;
10013
10014                         ip += 5;
10015                         if (skip_ret) {
10016                                 g_assert (*ip == CEE_RET);
10017                                 ip += 1;
10018                         }
10019                         ins_flag = 0;
10020                         constrained_class = NULL;
10021                         if (need_seq_point)
10022                                 emit_seq_point (cfg, method, ip, FALSE, TRUE);
10023                         break;
10024                 }
10025                 case CEE_RET:
10026                         if (cfg->method != method) {
10027                                 /* return from inlined method */
10028                                 /* 
10029                                  * If in_count == 0, that means the ret is unreachable due to
10030                                  * being preceeded by a throw. In that case, inline_method () will
10031                                  * handle setting the return value 
10032                                  * (test case: test_0_inline_throw ()).
10033                                  */
10034                                 if (return_var && cfg->cbb->in_count) {
10035                                         MonoType *ret_type = mono_method_signature (method)->ret;
10036
10037                                         MonoInst *store;
10038                                         CHECK_STACK (1);
10039                                         --sp;
10040
10041                                         if ((method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD || method->wrapper_type == MONO_WRAPPER_NONE) && target_type_is_incompatible (cfg, ret_type, *sp))
10042                                                 UNVERIFIED;
10043
10044                                         //g_assert (returnvar != -1);
10045                                         EMIT_NEW_TEMPSTORE (cfg, store, return_var->inst_c0, *sp);
10046                                         cfg->ret_var_set = TRUE;
10047                                 } 
10048                         } else {
10049                                 emit_instrumentation_call (cfg, mono_profiler_method_leave);
10050
10051                                 if (cfg->lmf_var && cfg->cbb->in_count && !cfg->llvm_only)
10052                                         emit_pop_lmf (cfg);
10053
10054                                 if (cfg->ret) {
10055                                         MonoType *ret_type = mini_get_underlying_type (mono_method_signature (method)->ret);
10056
10057                                         if (seq_points && !sym_seq_points) {
10058                                                 /* 
10059                                                  * Place a seq point here too even through the IL stack is not
10060                                                  * empty, so a step over on
10061                                                  * call <FOO>
10062                                                  * ret
10063                                                  * will work correctly.
10064                                                  */
10065                                                 NEW_SEQ_POINT (cfg, ins, ip - header->code, TRUE);
10066                                                 MONO_ADD_INS (cfg->cbb, ins);
10067                                         }
10068
10069                                         g_assert (!return_var);
10070                                         CHECK_STACK (1);
10071                                         --sp;
10072
10073                                         if ((method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD || method->wrapper_type == MONO_WRAPPER_NONE) && target_type_is_incompatible (cfg, ret_type, *sp))
10074                                                 UNVERIFIED;
10075
10076                                         emit_setret (cfg, *sp);
10077                                 }
10078                         }
10079                         if (sp != stack_start)
10080                                 UNVERIFIED;
10081                         MONO_INST_NEW (cfg, ins, OP_BR);
10082                         ip++;
10083                         ins->inst_target_bb = end_bblock;
10084                         MONO_ADD_INS (cfg->cbb, ins);
10085                         link_bblock (cfg, cfg->cbb, end_bblock);
10086                         start_new_bblock = 1;
10087                         break;
10088                 case CEE_BR_S:
10089                         CHECK_OPSIZE (2);
10090                         MONO_INST_NEW (cfg, ins, OP_BR);
10091                         ip++;
10092                         target = ip + 1 + (signed char)(*ip);
10093                         ++ip;
10094                         GET_BBLOCK (cfg, tblock, target);
10095                         link_bblock (cfg, cfg->cbb, tblock);
10096                         ins->inst_target_bb = tblock;
10097                         if (sp != stack_start) {
10098                                 handle_stack_args (cfg, stack_start, sp - stack_start);
10099                                 sp = stack_start;
10100                                 CHECK_UNVERIFIABLE (cfg);
10101                         }
10102                         MONO_ADD_INS (cfg->cbb, ins);
10103                         start_new_bblock = 1;
10104                         inline_costs += BRANCH_COST;
10105                         break;
10106                 case CEE_BEQ_S:
10107                 case CEE_BGE_S:
10108                 case CEE_BGT_S:
10109                 case CEE_BLE_S:
10110                 case CEE_BLT_S:
10111                 case CEE_BNE_UN_S:
10112                 case CEE_BGE_UN_S:
10113                 case CEE_BGT_UN_S:
10114                 case CEE_BLE_UN_S:
10115                 case CEE_BLT_UN_S:
10116                         CHECK_OPSIZE (2);
10117                         CHECK_STACK (2);
10118                         MONO_INST_NEW (cfg, ins, *ip + BIG_BRANCH_OFFSET);
10119                         ip++;
10120                         target = ip + 1 + *(signed char*)ip;
10121                         ip++;
10122
10123                         ADD_BINCOND (NULL);
10124
10125                         sp = stack_start;
10126                         inline_costs += BRANCH_COST;
10127                         break;
10128                 case CEE_BR:
10129                         CHECK_OPSIZE (5);
10130                         MONO_INST_NEW (cfg, ins, OP_BR);
10131                         ip++;
10132
10133                         target = ip + 4 + (gint32)read32(ip);
10134                         ip += 4;
10135                         GET_BBLOCK (cfg, tblock, target);
10136                         link_bblock (cfg, cfg->cbb, tblock);
10137                         ins->inst_target_bb = tblock;
10138                         if (sp != stack_start) {
10139                                 handle_stack_args (cfg, stack_start, sp - stack_start);
10140                                 sp = stack_start;
10141                                 CHECK_UNVERIFIABLE (cfg);
10142                         }
10143
10144                         MONO_ADD_INS (cfg->cbb, ins);
10145
10146                         start_new_bblock = 1;
10147                         inline_costs += BRANCH_COST;
10148                         break;
10149                 case CEE_BRFALSE_S:
10150                 case CEE_BRTRUE_S:
10151                 case CEE_BRFALSE:
10152                 case CEE_BRTRUE: {
10153                         MonoInst *cmp;
10154                         gboolean is_short = ((*ip) == CEE_BRFALSE_S) || ((*ip) == CEE_BRTRUE_S);
10155                         gboolean is_true = ((*ip) == CEE_BRTRUE_S) || ((*ip) == CEE_BRTRUE);
10156                         guint32 opsize = is_short ? 1 : 4;
10157
10158                         CHECK_OPSIZE (opsize);
10159                         CHECK_STACK (1);
10160                         if (sp [-1]->type == STACK_VTYPE || sp [-1]->type == STACK_R8)
10161                                 UNVERIFIED;
10162                         ip ++;
10163                         target = ip + opsize + (is_short ? *(signed char*)ip : (gint32)read32(ip));
10164                         ip += opsize;
10165
10166                         sp--;
10167
10168                         GET_BBLOCK (cfg, tblock, target);
10169                         link_bblock (cfg, cfg->cbb, tblock);
10170                         GET_BBLOCK (cfg, tblock, ip);
10171                         link_bblock (cfg, cfg->cbb, tblock);
10172
10173                         if (sp != stack_start) {
10174                                 handle_stack_args (cfg, stack_start, sp - stack_start);
10175                                 CHECK_UNVERIFIABLE (cfg);
10176                         }
10177
10178                         MONO_INST_NEW(cfg, cmp, OP_ICOMPARE_IMM);
10179                         cmp->sreg1 = sp [0]->dreg;
10180                         type_from_op (cfg, cmp, sp [0], NULL);
10181                         CHECK_TYPE (cmp);
10182
10183 #if SIZEOF_REGISTER == 4
10184                         if (cmp->opcode == OP_LCOMPARE_IMM) {
10185                                 /* Convert it to OP_LCOMPARE */
10186                                 MONO_INST_NEW (cfg, ins, OP_I8CONST);
10187                                 ins->type = STACK_I8;
10188                                 ins->dreg = alloc_dreg (cfg, STACK_I8);
10189                                 ins->inst_l = 0;
10190                                 MONO_ADD_INS (cfg->cbb, ins);
10191                                 cmp->opcode = OP_LCOMPARE;
10192                                 cmp->sreg2 = ins->dreg;
10193                         }
10194 #endif
10195                         MONO_ADD_INS (cfg->cbb, cmp);
10196
10197                         MONO_INST_NEW (cfg, ins, is_true ? CEE_BNE_UN : CEE_BEQ);
10198                         type_from_op (cfg, ins, sp [0], NULL);
10199                         MONO_ADD_INS (cfg->cbb, ins);
10200                         ins->inst_many_bb = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof(gpointer)*2);
10201                         GET_BBLOCK (cfg, tblock, target);
10202                         ins->inst_true_bb = tblock;
10203                         GET_BBLOCK (cfg, tblock, ip);
10204                         ins->inst_false_bb = tblock;
10205                         start_new_bblock = 2;
10206
10207                         sp = stack_start;
10208                         inline_costs += BRANCH_COST;
10209                         break;
10210                 }
10211                 case CEE_BEQ:
10212                 case CEE_BGE:
10213                 case CEE_BGT:
10214                 case CEE_BLE:
10215                 case CEE_BLT:
10216                 case CEE_BNE_UN:
10217                 case CEE_BGE_UN:
10218                 case CEE_BGT_UN:
10219                 case CEE_BLE_UN:
10220                 case CEE_BLT_UN:
10221                         CHECK_OPSIZE (5);
10222                         CHECK_STACK (2);
10223                         MONO_INST_NEW (cfg, ins, *ip);
10224                         ip++;
10225                         target = ip + 4 + (gint32)read32(ip);
10226                         ip += 4;
10227
10228                         ADD_BINCOND (NULL);
10229
10230                         sp = stack_start;
10231                         inline_costs += BRANCH_COST;
10232                         break;
10233                 case CEE_SWITCH: {
10234                         MonoInst *src1;
10235                         MonoBasicBlock **targets;
10236                         MonoBasicBlock *default_bblock;
10237                         MonoJumpInfoBBTable *table;
10238                         int offset_reg = alloc_preg (cfg);
10239                         int target_reg = alloc_preg (cfg);
10240                         int table_reg = alloc_preg (cfg);
10241                         int sum_reg = alloc_preg (cfg);
10242                         gboolean use_op_switch;
10243
10244                         CHECK_OPSIZE (5);
10245                         CHECK_STACK (1);
10246                         n = read32 (ip + 1);
10247                         --sp;
10248                         src1 = sp [0];
10249                         if ((src1->type != STACK_I4) && (src1->type != STACK_PTR)) 
10250                                 UNVERIFIED;
10251
10252                         ip += 5;
10253                         CHECK_OPSIZE (n * sizeof (guint32));
10254                         target = ip + n * sizeof (guint32);
10255
10256                         GET_BBLOCK (cfg, default_bblock, target);
10257                         default_bblock->flags |= BB_INDIRECT_JUMP_TARGET;
10258
10259                         targets = (MonoBasicBlock **)mono_mempool_alloc (cfg->mempool, sizeof (MonoBasicBlock*) * n);
10260                         for (i = 0; i < n; ++i) {
10261                                 GET_BBLOCK (cfg, tblock, target + (gint32)read32(ip));
10262                                 targets [i] = tblock;
10263                                 targets [i]->flags |= BB_INDIRECT_JUMP_TARGET;
10264                                 ip += 4;
10265                         }
10266
10267                         if (sp != stack_start) {
10268                                 /* 
10269                                  * Link the current bb with the targets as well, so handle_stack_args
10270                                  * will set their in_stack correctly.
10271                                  */
10272                                 link_bblock (cfg, cfg->cbb, default_bblock);
10273                                 for (i = 0; i < n; ++i)
10274                                         link_bblock (cfg, cfg->cbb, targets [i]);
10275
10276                                 handle_stack_args (cfg, stack_start, sp - stack_start);
10277                                 sp = stack_start;
10278                                 CHECK_UNVERIFIABLE (cfg);
10279
10280                                 /* Undo the links */
10281                                 mono_unlink_bblock (cfg, cfg->cbb, default_bblock);
10282                                 for (i = 0; i < n; ++i)
10283                                         mono_unlink_bblock (cfg, cfg->cbb, targets [i]);
10284                         }
10285
10286                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ICOMPARE_IMM, -1, src1->dreg, n);
10287                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_IBGE_UN, default_bblock);
10288
10289                         for (i = 0; i < n; ++i)
10290                                 link_bblock (cfg, cfg->cbb, targets [i]);
10291
10292                         table = (MonoJumpInfoBBTable *)mono_mempool_alloc (cfg->mempool, sizeof (MonoJumpInfoBBTable));
10293                         table->table = targets;
10294                         table->table_size = n;
10295
10296                         use_op_switch = FALSE;
10297 #ifdef TARGET_ARM
10298                         /* ARM implements SWITCH statements differently */
10299                         /* FIXME: Make it use the generic implementation */
10300                         if (!cfg->compile_aot)
10301                                 use_op_switch = TRUE;
10302 #endif
10303
10304                         if (COMPILE_LLVM (cfg))
10305                                 use_op_switch = TRUE;
10306
10307                         cfg->cbb->has_jump_table = 1;
10308
10309                         if (use_op_switch) {
10310                                 MONO_INST_NEW (cfg, ins, OP_SWITCH);
10311                                 ins->sreg1 = src1->dreg;
10312                                 ins->inst_p0 = table;
10313                                 ins->inst_many_bb = targets;
10314                                 ins->klass = (MonoClass *)GUINT_TO_POINTER (n);
10315                                 MONO_ADD_INS (cfg->cbb, ins);
10316                         } else {
10317                                 if (sizeof (gpointer) == 8)
10318                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, offset_reg, src1->dreg, 3);
10319                                 else
10320                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, offset_reg, src1->dreg, 2);
10321
10322 #if SIZEOF_REGISTER == 8
10323                                 /* The upper word might not be zero, and we add it to a 64 bit address later */
10324                                 MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, offset_reg, offset_reg);
10325 #endif
10326
10327                                 if (cfg->compile_aot) {
10328                                         MONO_EMIT_NEW_AOTCONST (cfg, table_reg, table, MONO_PATCH_INFO_SWITCH);
10329                                 } else {
10330                                         MONO_INST_NEW (cfg, ins, OP_JUMP_TABLE);
10331                                         ins->inst_c1 = MONO_PATCH_INFO_SWITCH;
10332                                         ins->inst_p0 = table;
10333                                         ins->dreg = table_reg;
10334                                         MONO_ADD_INS (cfg->cbb, ins);
10335                                 }
10336
10337                                 /* FIXME: Use load_memindex */
10338                                 MONO_EMIT_NEW_BIALU (cfg, OP_PADD, sum_reg, table_reg, offset_reg);
10339                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, target_reg, sum_reg, 0);
10340                                 MONO_EMIT_NEW_UNALU (cfg, OP_BR_REG, -1, target_reg);
10341                         }
10342                         start_new_bblock = 1;
10343                         inline_costs += (BRANCH_COST * 2);
10344                         break;
10345                 }
10346                 case CEE_LDIND_I1:
10347                 case CEE_LDIND_U1:
10348                 case CEE_LDIND_I2:
10349                 case CEE_LDIND_U2:
10350                 case CEE_LDIND_I4:
10351                 case CEE_LDIND_U4:
10352                 case CEE_LDIND_I8:
10353                 case CEE_LDIND_I:
10354                 case CEE_LDIND_R4:
10355                 case CEE_LDIND_R8:
10356                 case CEE_LDIND_REF:
10357                         CHECK_STACK (1);
10358                         --sp;
10359
10360                         switch (*ip) {
10361                         case CEE_LDIND_R4:
10362                         case CEE_LDIND_R8:
10363                                 dreg = alloc_freg (cfg);
10364                                 break;
10365                         case CEE_LDIND_I8:
10366                                 dreg = alloc_lreg (cfg);
10367                                 break;
10368                         case CEE_LDIND_REF:
10369                                 dreg = alloc_ireg_ref (cfg);
10370                                 break;
10371                         default:
10372                                 dreg = alloc_preg (cfg);
10373                         }
10374
10375                         NEW_LOAD_MEMBASE (cfg, ins, ldind_to_load_membase (*ip), dreg, sp [0]->dreg, 0);
10376                         ins->type = ldind_type [*ip - CEE_LDIND_I1];
10377                         if (*ip == CEE_LDIND_R4)
10378                                 ins->type = cfg->r4_stack_type;
10379                         ins->flags |= ins_flag;
10380                         MONO_ADD_INS (cfg->cbb, ins);
10381                         *sp++ = ins;
10382                         if (ins_flag & MONO_INST_VOLATILE) {
10383                                 /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
10384                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
10385                         }
10386                         ins_flag = 0;
10387                         ++ip;
10388                         break;
10389                 case CEE_STIND_REF:
10390                 case CEE_STIND_I1:
10391                 case CEE_STIND_I2:
10392                 case CEE_STIND_I4:
10393                 case CEE_STIND_I8:
10394                 case CEE_STIND_R4:
10395                 case CEE_STIND_R8:
10396                 case CEE_STIND_I:
10397                         CHECK_STACK (2);
10398                         sp -= 2;
10399
10400                         if (ins_flag & MONO_INST_VOLATILE) {
10401                                 /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
10402                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
10403                         }
10404
10405                         NEW_STORE_MEMBASE (cfg, ins, stind_to_store_membase (*ip), sp [0]->dreg, 0, sp [1]->dreg);
10406                         ins->flags |= ins_flag;
10407                         ins_flag = 0;
10408
10409                         MONO_ADD_INS (cfg->cbb, ins);
10410
10411                         if (cfg->gen_write_barriers && *ip == CEE_STIND_REF && method->wrapper_type != MONO_WRAPPER_WRITE_BARRIER && !((sp [1]->opcode == OP_PCONST) && (sp [1]->inst_p0 == 0)))
10412                                 emit_write_barrier (cfg, sp [0], sp [1]);
10413
10414                         inline_costs += 1;
10415                         ++ip;
10416                         break;
10417
10418                 case CEE_MUL:
10419                         CHECK_STACK (2);
10420
10421                         MONO_INST_NEW (cfg, ins, (*ip));
10422                         sp -= 2;
10423                         ins->sreg1 = sp [0]->dreg;
10424                         ins->sreg2 = sp [1]->dreg;
10425                         type_from_op (cfg, ins, sp [0], sp [1]);
10426                         CHECK_TYPE (ins);
10427                         ins->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type);
10428
10429                         /* Use the immediate opcodes if possible */
10430                         if ((sp [1]->opcode == OP_ICONST) && mono_arch_is_inst_imm (sp [1]->inst_c0)) {
10431                                 int imm_opcode = mono_op_to_op_imm_noemul (ins->opcode);
10432                                 if (imm_opcode != -1) {
10433                                         ins->opcode = imm_opcode;
10434                                         ins->inst_p1 = (gpointer)(gssize)(sp [1]->inst_c0);
10435                                         ins->sreg2 = -1;
10436
10437                                         NULLIFY_INS (sp [1]);
10438                                 }
10439                         }
10440
10441                         MONO_ADD_INS ((cfg)->cbb, (ins));
10442
10443                         *sp++ = mono_decompose_opcode (cfg, ins);
10444                         ip++;
10445                         break;
10446                 case CEE_ADD:
10447                 case CEE_SUB:
10448                 case CEE_DIV:
10449                 case CEE_DIV_UN:
10450                 case CEE_REM:
10451                 case CEE_REM_UN:
10452                 case CEE_AND:
10453                 case CEE_OR:
10454                 case CEE_XOR:
10455                 case CEE_SHL:
10456                 case CEE_SHR:
10457                 case CEE_SHR_UN:
10458                         CHECK_STACK (2);
10459
10460                         MONO_INST_NEW (cfg, ins, (*ip));
10461                         sp -= 2;
10462                         ins->sreg1 = sp [0]->dreg;
10463                         ins->sreg2 = sp [1]->dreg;
10464                         type_from_op (cfg, ins, sp [0], sp [1]);
10465                         CHECK_TYPE (ins);
10466                         add_widen_op (cfg, ins, &sp [0], &sp [1]);
10467                         ins->dreg = alloc_dreg ((cfg), (MonoStackType)(ins)->type);
10468
10469                         /* FIXME: Pass opcode to is_inst_imm */
10470
10471                         /* Use the immediate opcodes if possible */
10472                         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)) {
10473                                 int imm_opcode = mono_op_to_op_imm_noemul (ins->opcode);
10474                                 if (imm_opcode != -1) {
10475                                         ins->opcode = imm_opcode;
10476                                         if (sp [1]->opcode == OP_I8CONST) {
10477 #if SIZEOF_REGISTER == 8
10478                                                 ins->inst_imm = sp [1]->inst_l;
10479 #else
10480                                                 ins->inst_ls_word = sp [1]->inst_ls_word;
10481                                                 ins->inst_ms_word = sp [1]->inst_ms_word;
10482 #endif
10483                                         }
10484                                         else
10485                                                 ins->inst_imm = (gssize)(sp [1]->inst_c0);
10486                                         ins->sreg2 = -1;
10487
10488                                         /* Might be followed by an instruction added by add_widen_op */
10489                                         if (sp [1]->next == NULL)
10490                                                 NULLIFY_INS (sp [1]);
10491                                 }
10492                         }
10493                         MONO_ADD_INS ((cfg)->cbb, (ins));
10494
10495                         *sp++ = mono_decompose_opcode (cfg, ins);
10496                         ip++;
10497                         break;
10498                 case CEE_NEG:
10499                 case CEE_NOT:
10500                 case CEE_CONV_I1:
10501                 case CEE_CONV_I2:
10502                 case CEE_CONV_I4:
10503                 case CEE_CONV_R4:
10504                 case CEE_CONV_R8:
10505                 case CEE_CONV_U4:
10506                 case CEE_CONV_I8:
10507                 case CEE_CONV_U8:
10508                 case CEE_CONV_OVF_I8:
10509                 case CEE_CONV_OVF_U8:
10510                 case CEE_CONV_R_UN:
10511                         CHECK_STACK (1);
10512
10513                         /* Special case this earlier so we have long constants in the IR */
10514                         if ((((*ip) == CEE_CONV_I8) || ((*ip) == CEE_CONV_U8)) && (sp [-1]->opcode == OP_ICONST)) {
10515                                 int data = sp [-1]->inst_c0;
10516                                 sp [-1]->opcode = OP_I8CONST;
10517                                 sp [-1]->type = STACK_I8;
10518 #if SIZEOF_REGISTER == 8
10519                                 if ((*ip) == CEE_CONV_U8)
10520                                         sp [-1]->inst_c0 = (guint32)data;
10521                                 else
10522                                         sp [-1]->inst_c0 = data;
10523 #else
10524                                 sp [-1]->inst_ls_word = data;
10525                                 if ((*ip) == CEE_CONV_U8)
10526                                         sp [-1]->inst_ms_word = 0;
10527                                 else
10528                                         sp [-1]->inst_ms_word = (data < 0) ? -1 : 0;
10529 #endif
10530                                 sp [-1]->dreg = alloc_dreg (cfg, STACK_I8);
10531                         }
10532                         else {
10533                                 ADD_UNOP (*ip);
10534                         }
10535                         ip++;
10536                         break;
10537                 case CEE_CONV_OVF_I4:
10538                 case CEE_CONV_OVF_I1:
10539                 case CEE_CONV_OVF_I2:
10540                 case CEE_CONV_OVF_I:
10541                 case CEE_CONV_OVF_U:
10542                         CHECK_STACK (1);
10543
10544                         if (sp [-1]->type == STACK_R8 || sp [-1]->type == STACK_R4) {
10545                                 ADD_UNOP (CEE_CONV_OVF_I8);
10546                                 ADD_UNOP (*ip);
10547                         } else {
10548                                 ADD_UNOP (*ip);
10549                         }
10550                         ip++;
10551                         break;
10552                 case CEE_CONV_OVF_U1:
10553                 case CEE_CONV_OVF_U2:
10554                 case CEE_CONV_OVF_U4:
10555                         CHECK_STACK (1);
10556
10557                         if (sp [-1]->type == STACK_R8 || sp [-1]->type == STACK_R4) {
10558                                 ADD_UNOP (CEE_CONV_OVF_U8);
10559                                 ADD_UNOP (*ip);
10560                         } else {
10561                                 ADD_UNOP (*ip);
10562                         }
10563                         ip++;
10564                         break;
10565                 case CEE_CONV_OVF_I1_UN:
10566                 case CEE_CONV_OVF_I2_UN:
10567                 case CEE_CONV_OVF_I4_UN:
10568                 case CEE_CONV_OVF_I8_UN:
10569                 case CEE_CONV_OVF_U1_UN:
10570                 case CEE_CONV_OVF_U2_UN:
10571                 case CEE_CONV_OVF_U4_UN:
10572                 case CEE_CONV_OVF_U8_UN:
10573                 case CEE_CONV_OVF_I_UN:
10574                 case CEE_CONV_OVF_U_UN:
10575                 case CEE_CONV_U2:
10576                 case CEE_CONV_U1:
10577                 case CEE_CONV_I:
10578                 case CEE_CONV_U:
10579                         CHECK_STACK (1);
10580                         ADD_UNOP (*ip);
10581                         CHECK_CFG_EXCEPTION;
10582                         ip++;
10583                         break;
10584                 case CEE_ADD_OVF:
10585                 case CEE_ADD_OVF_UN:
10586                 case CEE_MUL_OVF:
10587                 case CEE_MUL_OVF_UN:
10588                 case CEE_SUB_OVF:
10589                 case CEE_SUB_OVF_UN:
10590                         CHECK_STACK (2);
10591                         ADD_BINOP (*ip);
10592                         ip++;
10593                         break;
10594                 case CEE_CPOBJ:
10595                         GSHAREDVT_FAILURE (*ip);
10596                         CHECK_OPSIZE (5);
10597                         CHECK_STACK (2);
10598                         token = read32 (ip + 1);
10599                         klass = mini_get_class (method, token, generic_context);
10600                         CHECK_TYPELOAD (klass);
10601                         sp -= 2;
10602                         if (generic_class_is_reference_type (cfg, klass)) {
10603                                 MonoInst *store, *load;
10604                                 int dreg = alloc_ireg_ref (cfg);
10605
10606                                 NEW_LOAD_MEMBASE (cfg, load, OP_LOAD_MEMBASE, dreg, sp [1]->dreg, 0);
10607                                 load->flags |= ins_flag;
10608                                 MONO_ADD_INS (cfg->cbb, load);
10609
10610                                 NEW_STORE_MEMBASE (cfg, store, OP_STORE_MEMBASE_REG, sp [0]->dreg, 0, dreg);
10611                                 store->flags |= ins_flag;
10612                                 MONO_ADD_INS (cfg->cbb, store);
10613
10614                                 if (cfg->gen_write_barriers && cfg->method->wrapper_type != MONO_WRAPPER_WRITE_BARRIER)
10615                                         emit_write_barrier (cfg, sp [0], sp [1]);
10616                         } else {
10617                                 mini_emit_stobj (cfg, sp [0], sp [1], klass, FALSE);
10618                         }
10619                         ins_flag = 0;
10620                         ip += 5;
10621                         break;
10622                 case CEE_LDOBJ: {
10623                         int loc_index = -1;
10624                         int stloc_len = 0;
10625
10626                         CHECK_OPSIZE (5);
10627                         CHECK_STACK (1);
10628                         --sp;
10629                         token = read32 (ip + 1);
10630                         klass = mini_get_class (method, token, generic_context);
10631                         CHECK_TYPELOAD (klass);
10632
10633                         /* Optimize the common ldobj+stloc combination */
10634                         switch (ip [5]) {
10635                         case CEE_STLOC_S:
10636                                 loc_index = ip [6];
10637                                 stloc_len = 2;
10638                                 break;
10639                         case CEE_STLOC_0:
10640                         case CEE_STLOC_1:
10641                         case CEE_STLOC_2:
10642                         case CEE_STLOC_3:
10643                                 loc_index = ip [5] - CEE_STLOC_0;
10644                                 stloc_len = 1;
10645                                 break;
10646                         default:
10647                                 break;
10648                         }
10649
10650                         if ((loc_index != -1) && ip_in_bb (cfg, cfg->cbb, ip + 5)) {
10651                                 CHECK_LOCAL (loc_index);
10652
10653                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, sp [0]->dreg, 0);
10654                                 ins->dreg = cfg->locals [loc_index]->dreg;
10655                                 ins->flags |= ins_flag;
10656                                 ip += 5;
10657                                 ip += stloc_len;
10658                                 if (ins_flag & MONO_INST_VOLATILE) {
10659                                         /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
10660                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
10661                                 }
10662                                 ins_flag = 0;
10663                                 break;
10664                         }
10665
10666                         /* Optimize the ldobj+stobj combination */
10667                         /* The reference case ends up being a load+store anyway */
10668                         /* Skip this if the operation is volatile. */
10669                         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)) {
10670                                 CHECK_STACK (1);
10671
10672                                 sp --;
10673
10674                                 mini_emit_stobj (cfg, sp [0], sp [1], klass, FALSE);
10675
10676                                 ip += 5 + 5;
10677                                 ins_flag = 0;
10678                                 break;
10679                         }
10680
10681                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, sp [0]->dreg, 0);
10682                         ins->flags |= ins_flag;
10683                         *sp++ = ins;
10684
10685                         if (ins_flag & MONO_INST_VOLATILE) {
10686                                 /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
10687                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
10688                         }
10689
10690                         ip += 5;
10691                         ins_flag = 0;
10692                         inline_costs += 1;
10693                         break;
10694                 }
10695                 case CEE_LDSTR:
10696                         CHECK_STACK_OVF (1);
10697                         CHECK_OPSIZE (5);
10698                         n = read32 (ip + 1);
10699
10700                         if (method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD) {
10701                                 EMIT_NEW_PCONST (cfg, ins, mono_method_get_wrapper_data (method, n));
10702                                 ins->type = STACK_OBJ;
10703                                 *sp = ins;
10704                         }
10705                         else if (method->wrapper_type != MONO_WRAPPER_NONE) {
10706                                 MonoInst *iargs [1];
10707                                 char *str = (char *)mono_method_get_wrapper_data (method, n);
10708
10709                                 if (cfg->compile_aot)
10710                                         EMIT_NEW_LDSTRLITCONST (cfg, iargs [0], str);
10711                                 else
10712                                         EMIT_NEW_PCONST (cfg, iargs [0], str);
10713                                 *sp = mono_emit_jit_icall (cfg, mono_string_new_wrapper, iargs);
10714                         } else {
10715                                 if (cfg->opt & MONO_OPT_SHARED) {
10716                                         MonoInst *iargs [3];
10717
10718                                         if (cfg->compile_aot) {
10719                                                 cfg->ldstr_list = g_list_prepend (cfg->ldstr_list, GINT_TO_POINTER (n));
10720                                         }
10721                                         EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
10722                                         EMIT_NEW_IMAGECONST (cfg, iargs [1], image);
10723                                         EMIT_NEW_ICONST (cfg, iargs [2], mono_metadata_token_index (n));
10724                                         *sp = mono_emit_jit_icall (cfg, ves_icall_mono_ldstr, iargs);
10725                                         mono_ldstr_checked (cfg->domain, image, mono_metadata_token_index (n), &cfg->error);
10726                                         CHECK_CFG_ERROR;
10727                                 } else {
10728                                         if (cfg->cbb->out_of_line) {
10729                                                 MonoInst *iargs [2];
10730
10731                                                 if (image == mono_defaults.corlib) {
10732                                                         /* 
10733                                                          * Avoid relocations in AOT and save some space by using a 
10734                                                          * version of helper_ldstr specialized to mscorlib.
10735                                                          */
10736                                                         EMIT_NEW_ICONST (cfg, iargs [0], mono_metadata_token_index (n));
10737                                                         *sp = mono_emit_jit_icall (cfg, mono_helper_ldstr_mscorlib, iargs);
10738                                                 } else {
10739                                                         /* Avoid creating the string object */
10740                                                         EMIT_NEW_IMAGECONST (cfg, iargs [0], image);
10741                                                         EMIT_NEW_ICONST (cfg, iargs [1], mono_metadata_token_index (n));
10742                                                         *sp = mono_emit_jit_icall (cfg, mono_helper_ldstr, iargs);
10743                                                 }
10744                                         } 
10745                                         else
10746                                         if (cfg->compile_aot) {
10747                                                 NEW_LDSTRCONST (cfg, ins, image, n);
10748                                                 *sp = ins;
10749                                                 MONO_ADD_INS (cfg->cbb, ins);
10750                                         } 
10751                                         else {
10752                                                 NEW_PCONST (cfg, ins, NULL);
10753                                                 ins->type = STACK_OBJ;
10754                                                 ins->inst_p0 = mono_ldstr_checked (cfg->domain, image, mono_metadata_token_index (n), &cfg->error);
10755                                                 CHECK_CFG_ERROR;
10756                                                 
10757                                                 if (!ins->inst_p0)
10758                                                         OUT_OF_MEMORY_FAILURE;
10759
10760                                                 *sp = ins;
10761                                                 MONO_ADD_INS (cfg->cbb, ins);
10762                                         }
10763                                 }
10764                         }
10765
10766                         sp++;
10767                         ip += 5;
10768                         break;
10769                 case CEE_NEWOBJ: {
10770                         MonoInst *iargs [2];
10771                         MonoMethodSignature *fsig;
10772                         MonoInst this_ins;
10773                         MonoInst *alloc;
10774                         MonoInst *vtable_arg = NULL;
10775
10776                         CHECK_OPSIZE (5);
10777                         token = read32 (ip + 1);
10778                         cmethod = mini_get_method (cfg, method, token, NULL, generic_context);
10779                         CHECK_CFG_ERROR;
10780
10781                         fsig = mono_method_get_signature_checked (cmethod, image, token, generic_context, &cfg->error);
10782                         CHECK_CFG_ERROR;
10783
10784                         mono_save_token_info (cfg, image, token, cmethod);
10785
10786                         if (!mono_class_init (cmethod->klass))
10787                                 TYPE_LOAD_ERROR (cmethod->klass);
10788
10789                         context_used = mini_method_check_context_used (cfg, cmethod);
10790
10791                         if (mono_security_core_clr_enabled ())
10792                                 ensure_method_is_allowed_to_call_method (cfg, method, cmethod);
10793
10794                         if (cfg->gshared && cmethod && cmethod->klass != method->klass && cmethod->klass->generic_class && mono_method_is_generic_sharable (cmethod, TRUE) && mono_class_needs_cctor_run (cmethod->klass, method)) {
10795                                 emit_class_init (cfg, cmethod->klass);
10796                                 CHECK_TYPELOAD (cmethod->klass);
10797                         }
10798
10799                         /*
10800                         if (cfg->gsharedvt) {
10801                                 if (mini_is_gsharedvt_variable_signature (sig))
10802                                         GSHAREDVT_FAILURE (*ip);
10803                         }
10804                         */
10805
10806                         n = fsig->param_count;
10807                         CHECK_STACK (n);
10808
10809                         /* 
10810                          * Generate smaller code for the common newobj <exception> instruction in
10811                          * argument checking code.
10812                          */
10813                         if (cfg->cbb->out_of_line && cmethod->klass->image == mono_defaults.corlib &&
10814                                 is_exception_class (cmethod->klass) && n <= 2 &&
10815                                 ((n < 1) || (!fsig->params [0]->byref && fsig->params [0]->type == MONO_TYPE_STRING)) && 
10816                                 ((n < 2) || (!fsig->params [1]->byref && fsig->params [1]->type == MONO_TYPE_STRING))) {
10817                                 MonoInst *iargs [3];
10818
10819                                 sp -= n;
10820
10821                                 EMIT_NEW_ICONST (cfg, iargs [0], cmethod->klass->type_token);
10822                                 switch (n) {
10823                                 case 0:
10824                                         *sp ++ = mono_emit_jit_icall (cfg, mono_create_corlib_exception_0, iargs);
10825                                         break;
10826                                 case 1:
10827                                         iargs [1] = sp [0];
10828                                         *sp ++ = mono_emit_jit_icall (cfg, mono_create_corlib_exception_1, iargs);
10829                                         break;
10830                                 case 2:
10831                                         iargs [1] = sp [0];
10832                                         iargs [2] = sp [1];
10833                                         *sp ++ = mono_emit_jit_icall (cfg, mono_create_corlib_exception_2, iargs);
10834                                         break;
10835                                 default:
10836                                         g_assert_not_reached ();
10837                                 }
10838
10839                                 ip += 5;
10840                                 inline_costs += 5;
10841                                 break;
10842                         }
10843
10844                         /* move the args to allow room for 'this' in the first position */
10845                         while (n--) {
10846                                 --sp;
10847                                 sp [1] = sp [0];
10848                         }
10849
10850                         /* check_call_signature () requires sp[0] to be set */
10851                         this_ins.type = STACK_OBJ;
10852                         sp [0] = &this_ins;
10853                         if (check_call_signature (cfg, fsig, sp))
10854                                 UNVERIFIED;
10855
10856                         iargs [0] = NULL;
10857
10858                         if (mini_class_is_system_array (cmethod->klass)) {
10859                                 *sp = emit_get_rgctx_method (cfg, context_used,
10860                                                                                          cmethod, MONO_RGCTX_INFO_METHOD);
10861
10862                                 /* Avoid varargs in the common case */
10863                                 if (fsig->param_count == 1)
10864                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_1, sp);
10865                                 else if (fsig->param_count == 2)
10866                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_2, sp);
10867                                 else if (fsig->param_count == 3)
10868                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_3, sp);
10869                                 else if (fsig->param_count == 4)
10870                                         alloc = mono_emit_jit_icall (cfg, mono_array_new_4, sp);
10871                                 else
10872                                         alloc = handle_array_new (cfg, fsig->param_count, sp, ip);
10873                         } else if (cmethod->string_ctor) {
10874                                 g_assert (!context_used);
10875                                 g_assert (!vtable_arg);
10876                                 /* we simply pass a null pointer */
10877                                 EMIT_NEW_PCONST (cfg, *sp, NULL); 
10878                                 /* now call the string ctor */
10879                                 alloc = mono_emit_method_call_full (cfg, cmethod, fsig, FALSE, sp, NULL, NULL, NULL);
10880                         } else {
10881                                 if (cmethod->klass->valuetype) {
10882                                         iargs [0] = mono_compile_create_var (cfg, &cmethod->klass->byval_arg, OP_LOCAL);
10883                                         emit_init_rvar (cfg, iargs [0]->dreg, &cmethod->klass->byval_arg);
10884                                         EMIT_NEW_TEMPLOADA (cfg, *sp, iargs [0]->inst_c0);
10885
10886                                         alloc = NULL;
10887
10888                                         /* 
10889                                          * The code generated by mini_emit_virtual_call () expects
10890                                          * iargs [0] to be a boxed instance, but luckily the vcall
10891                                          * will be transformed into a normal call there.
10892                                          */
10893                                 } else if (context_used) {
10894                                         alloc = handle_alloc (cfg, cmethod->klass, FALSE, context_used);
10895                                         *sp = alloc;
10896                                 } else {
10897                                         MonoVTable *vtable = NULL;
10898
10899                                         if (!cfg->compile_aot)
10900                                                 vtable = mono_class_vtable (cfg->domain, cmethod->klass);
10901                                         CHECK_TYPELOAD (cmethod->klass);
10902
10903                                         /*
10904                                          * TypeInitializationExceptions thrown from the mono_runtime_class_init
10905                                          * call in mono_jit_runtime_invoke () can abort the finalizer thread.
10906                                          * As a workaround, we call class cctors before allocating objects.
10907                                          */
10908                                         if (mini_field_access_needs_cctor_run (cfg, method, cmethod->klass, vtable) && !(g_slist_find (class_inits, cmethod->klass))) {
10909                                                 emit_class_init (cfg, cmethod->klass);
10910                                                 if (cfg->verbose_level > 2)
10911                                                         printf ("class %s.%s needs init call for ctor\n", cmethod->klass->name_space, cmethod->klass->name);
10912                                                 class_inits = g_slist_prepend (class_inits, cmethod->klass);
10913                                         }
10914
10915                                         alloc = handle_alloc (cfg, cmethod->klass, FALSE, 0);
10916                                         *sp = alloc;
10917                                 }
10918                                 CHECK_CFG_EXCEPTION; /*for handle_alloc*/
10919
10920                                 if (alloc)
10921                                         MONO_EMIT_NEW_UNALU (cfg, OP_NOT_NULL, -1, alloc->dreg);
10922
10923                                 /* Now call the actual ctor */
10924                                 handle_ctor_call (cfg, cmethod, fsig, context_used, sp, ip, &inline_costs);
10925                                 CHECK_CFG_EXCEPTION;
10926                         }
10927
10928                         if (alloc == NULL) {
10929                                 /* Valuetype */
10930                                 EMIT_NEW_TEMPLOAD (cfg, ins, iargs [0]->inst_c0);
10931                                 type_to_eval_stack_type (cfg, &ins->klass->byval_arg, ins);
10932                                 *sp++= ins;
10933                         } else {
10934                                 *sp++ = alloc;
10935                         }
10936                         
10937                         ip += 5;
10938                         inline_costs += 5;
10939                         if (!(seq_point_locs && mono_bitset_test_fast (seq_point_locs, ip - header->code)))
10940                                 emit_seq_point (cfg, method, ip, FALSE, TRUE);
10941                         break;
10942                 }
10943                 case CEE_CASTCLASS:
10944                 case CEE_ISINST: {
10945                         CHECK_STACK (1);
10946                         --sp;
10947                         CHECK_OPSIZE (5);
10948                         token = read32 (ip + 1);
10949                         klass = mini_get_class (method, token, generic_context);
10950                         CHECK_TYPELOAD (klass);
10951                         if (sp [0]->type != STACK_OBJ)
10952                                 UNVERIFIED;
10953
10954                         int tmpreg = alloc_preg (cfg);
10955                         EMIT_NEW_UNALU (cfg, ins, OP_MOVE, tmpreg, (*sp)->dreg);
10956                         ins->type = STACK_OBJ;
10957
10958                         MONO_INST_NEW (cfg, ins, *ip == CEE_ISINST ? OP_ISINST : OP_CASTCLASS);
10959                         ins->dreg = alloc_preg (cfg);
10960                         ins->sreg1 = tmpreg;
10961                         ins->klass = klass;
10962                         ins->type = STACK_OBJ;
10963                         MONO_ADD_INS (cfg->cbb, ins);
10964
10965                         CHECK_CFG_EXCEPTION;
10966                         *sp++ = ins;
10967                         ip += 5;
10968                         break;
10969                 }
10970                 case CEE_UNBOX_ANY: {
10971                         MonoInst *res, *addr;
10972
10973                         CHECK_STACK (1);
10974                         --sp;
10975                         CHECK_OPSIZE (5);
10976                         token = read32 (ip + 1);
10977                         klass = mini_get_class (method, token, generic_context);
10978                         CHECK_TYPELOAD (klass);
10979
10980                         mono_save_token_info (cfg, image, token, klass);
10981
10982                         context_used = mini_class_check_context_used (cfg, klass);
10983
10984                         if (mini_is_gsharedvt_klass (klass)) {
10985                                 res = handle_unbox_gsharedvt (cfg, klass, *sp);
10986                                 inline_costs += 2;
10987                         } else if (generic_class_is_reference_type (cfg, klass)) {
10988                                 int tmpreg = alloc_preg (cfg);
10989                                 EMIT_NEW_UNALU (cfg, res, OP_MOVE, tmpreg, (*sp)->dreg);
10990
10991                                 MONO_INST_NEW (cfg, res, OP_CASTCLASS);
10992                                 res->dreg = alloc_preg (cfg);
10993                                 res->sreg1 = tmpreg;
10994                                 res->klass = klass;
10995                                 res->type = STACK_OBJ;
10996                                 MONO_ADD_INS (cfg->cbb, res);
10997                         } else if (mono_class_is_nullable (klass)) {
10998                                 res = handle_unbox_nullable (cfg, *sp, klass, context_used);
10999                         } else {
11000                                 addr = handle_unbox (cfg, klass, sp, context_used);
11001                                 /* LDOBJ */
11002                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0);
11003                                 res = ins;
11004                                 inline_costs += 2;
11005                         }
11006
11007                         *sp ++ = res;
11008                         ip += 5;
11009                         break;
11010                 }
11011                 case CEE_BOX: {
11012                         MonoInst *val;
11013                         MonoClass *enum_class;
11014                         MonoMethod *has_flag;
11015
11016                         CHECK_STACK (1);
11017                         --sp;
11018                         val = *sp;
11019                         CHECK_OPSIZE (5);
11020                         token = read32 (ip + 1);
11021                         klass = mini_get_class (method, token, generic_context);
11022                         CHECK_TYPELOAD (klass);
11023
11024                         mono_save_token_info (cfg, image, token, klass);
11025
11026                         context_used = mini_class_check_context_used (cfg, klass);
11027
11028                         if (generic_class_is_reference_type (cfg, klass)) {
11029                                 *sp++ = val;
11030                                 ip += 5;
11031                                 break;
11032                         }
11033
11034                         if (klass == mono_defaults.void_class)
11035                                 UNVERIFIED;
11036                         if (target_type_is_incompatible (cfg, &klass->byval_arg, *sp))
11037                                 UNVERIFIED;
11038                         /* frequent check in generic code: box (struct), brtrue */
11039
11040                         /*
11041                          * Look for:
11042                          *
11043                          *   <push int/long ptr>
11044                          *   <push int/long>
11045                          *   box MyFlags
11046                          *   constrained. MyFlags
11047                          *   callvirt instace bool class [mscorlib] System.Enum::HasFlag (class [mscorlib] System.Enum)
11048                          *
11049                          * If we find this sequence and the operand types on box and constrained
11050                          * are equal, we can emit a specialized instruction sequence instead of
11051                          * the very slow HasFlag () call.
11052                          */
11053                         if ((cfg->opt & MONO_OPT_INTRINS) &&
11054                             /* Cheap checks first. */
11055                             ip + 5 + 6 + 5 < end &&
11056                             ip [5] == CEE_PREFIX1 &&
11057                             ip [6] == CEE_CONSTRAINED_ &&
11058                             ip [11] == CEE_CALLVIRT &&
11059                             ip_in_bb (cfg, cfg->cbb, ip + 5 + 6 + 5) &&
11060                             mono_class_is_enum (klass) &&
11061                             (enum_class = mini_get_class (method, read32 (ip + 7), generic_context)) &&
11062                             (has_flag = mini_get_method (cfg, method, read32 (ip + 12), NULL, generic_context)) &&
11063                             has_flag->klass == mono_defaults.enum_class &&
11064                             !strcmp (has_flag->name, "HasFlag") &&
11065                             has_flag->signature->hasthis &&
11066                             has_flag->signature->param_count == 1) {
11067                                 CHECK_TYPELOAD (enum_class);
11068
11069                                 if (enum_class == klass) {
11070                                         MonoInst *enum_this, *enum_flag;
11071
11072                                         ip += 5 + 6 + 5;
11073                                         --sp;
11074
11075                                         enum_this = sp [0];
11076                                         enum_flag = sp [1];
11077
11078                                         *sp++ = handle_enum_has_flag (cfg, klass, enum_this, enum_flag);
11079                                         break;
11080                                 }
11081                         }
11082
11083                         // FIXME: LLVM can't handle the inconsistent bb linking
11084                         if (!mono_class_is_nullable (klass) &&
11085                                 !mini_is_gsharedvt_klass (klass) &&
11086                                 ip + 5 < end && ip_in_bb (cfg, cfg->cbb, ip + 5) &&
11087                                 (ip [5] == CEE_BRTRUE || 
11088                                  ip [5] == CEE_BRTRUE_S ||
11089                                  ip [5] == CEE_BRFALSE ||
11090                                  ip [5] == CEE_BRFALSE_S)) {
11091                                 gboolean is_true = ip [5] == CEE_BRTRUE || ip [5] == CEE_BRTRUE_S;
11092                                 int dreg;
11093                                 MonoBasicBlock *true_bb, *false_bb;
11094
11095                                 ip += 5;
11096
11097                                 if (cfg->verbose_level > 3) {
11098                                         printf ("converting (in B%d: stack: %d) %s", cfg->cbb->block_num, (int)(sp - stack_start), mono_disasm_code_one (NULL, method, ip, NULL));
11099                                         printf ("<box+brtrue opt>\n");
11100                                 }
11101
11102                                 switch (*ip) {
11103                                 case CEE_BRTRUE_S:
11104                                 case CEE_BRFALSE_S:
11105                                         CHECK_OPSIZE (2);
11106                                         ip++;
11107                                         target = ip + 1 + (signed char)(*ip);
11108                                         ip++;
11109                                         break;
11110                                 case CEE_BRTRUE:
11111                                 case CEE_BRFALSE:
11112                                         CHECK_OPSIZE (5);
11113                                         ip++;
11114                                         target = ip + 4 + (gint)(read32 (ip));
11115                                         ip += 4;
11116                                         break;
11117                                 default:
11118                                         g_assert_not_reached ();
11119                                 }
11120
11121                                 /* 
11122                                  * We need to link both bblocks, since it is needed for handling stack
11123                                  * arguments correctly (See test_0_box_brtrue_opt_regress_81102).
11124                                  * Branching to only one of them would lead to inconsistencies, so
11125                                  * generate an ICONST+BRTRUE, the branch opts will get rid of them.
11126                                  */
11127                                 GET_BBLOCK (cfg, true_bb, target);
11128                                 GET_BBLOCK (cfg, false_bb, ip);
11129
11130                                 mono_link_bblock (cfg, cfg->cbb, true_bb);
11131                                 mono_link_bblock (cfg, cfg->cbb, false_bb);
11132
11133                                 if (sp != stack_start) {
11134                                         handle_stack_args (cfg, stack_start, sp - stack_start);
11135                                         sp = stack_start;
11136                                         CHECK_UNVERIFIABLE (cfg);
11137                                 }
11138
11139                                 if (COMPILE_LLVM (cfg)) {
11140                                         dreg = alloc_ireg (cfg);
11141                                         MONO_EMIT_NEW_ICONST (cfg, dreg, 0);
11142                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, dreg, is_true ? 0 : 1);
11143
11144                                         MONO_EMIT_NEW_BRANCH_BLOCK2 (cfg, OP_IBEQ, true_bb, false_bb);
11145                                 } else {
11146                                         /* The JIT can't eliminate the iconst+compare */
11147                                         MONO_INST_NEW (cfg, ins, OP_BR);
11148                                         ins->inst_target_bb = is_true ? true_bb : false_bb;
11149                                         MONO_ADD_INS (cfg->cbb, ins);
11150                                 }
11151
11152                                 start_new_bblock = 1;
11153                                 break;
11154                         }
11155
11156                         *sp++ = handle_box (cfg, val, klass, context_used);
11157
11158                         CHECK_CFG_EXCEPTION;
11159                         ip += 5;
11160                         inline_costs += 1;
11161                         break;
11162                 }
11163                 case CEE_UNBOX: {
11164                         CHECK_STACK (1);
11165                         --sp;
11166                         CHECK_OPSIZE (5);
11167                         token = read32 (ip + 1);
11168                         klass = mini_get_class (method, token, generic_context);
11169                         CHECK_TYPELOAD (klass);
11170
11171                         mono_save_token_info (cfg, image, token, klass);
11172
11173                         context_used = mini_class_check_context_used (cfg, klass);
11174
11175                         if (mono_class_is_nullable (klass)) {
11176                                 MonoInst *val;
11177
11178                                 val = handle_unbox_nullable (cfg, *sp, klass, context_used);
11179                                 EMIT_NEW_VARLOADA (cfg, ins, get_vreg_to_inst (cfg, val->dreg), &val->klass->byval_arg);
11180
11181                                 *sp++= ins;
11182                         } else {
11183                                 ins = handle_unbox (cfg, klass, sp, context_used);
11184                                 *sp++ = ins;
11185                         }
11186                         ip += 5;
11187                         inline_costs += 2;
11188                         break;
11189                 }
11190                 case CEE_LDFLD:
11191                 case CEE_LDFLDA:
11192                 case CEE_STFLD:
11193                 case CEE_LDSFLD:
11194                 case CEE_LDSFLDA:
11195                 case CEE_STSFLD: {
11196                         MonoClassField *field;
11197 #ifndef DISABLE_REMOTING
11198                         int costs;
11199 #endif
11200                         guint foffset;
11201                         gboolean is_instance;
11202                         int op;
11203                         gpointer addr = NULL;
11204                         gboolean is_special_static;
11205                         MonoType *ftype;
11206                         MonoInst *store_val = NULL;
11207                         MonoInst *thread_ins;
11208
11209                         op = *ip;
11210                         is_instance = (op == CEE_LDFLD || op == CEE_LDFLDA || op == CEE_STFLD);
11211                         if (is_instance) {
11212                                 if (op == CEE_STFLD) {
11213                                         CHECK_STACK (2);
11214                                         sp -= 2;
11215                                         store_val = sp [1];
11216                                 } else {
11217                                         CHECK_STACK (1);
11218                                         --sp;
11219                                 }
11220                                 if (sp [0]->type == STACK_I4 || sp [0]->type == STACK_I8 || sp [0]->type == STACK_R8)
11221                                         UNVERIFIED;
11222                                 if (*ip != CEE_LDFLD && sp [0]->type == STACK_VTYPE)
11223                                         UNVERIFIED;
11224                         } else {
11225                                 if (op == CEE_STSFLD) {
11226                                         CHECK_STACK (1);
11227                                         sp--;
11228                                         store_val = sp [0];
11229                                 }
11230                         }
11231
11232                         CHECK_OPSIZE (5);
11233                         token = read32 (ip + 1);
11234                         if (method->wrapper_type != MONO_WRAPPER_NONE) {
11235                                 field = (MonoClassField *)mono_method_get_wrapper_data (method, token);
11236                                 klass = field->parent;
11237                         }
11238                         else {
11239                                 field = mono_field_from_token_checked (image, token, &klass, generic_context, &cfg->error);
11240                                 CHECK_CFG_ERROR;
11241                         }
11242                         if (!dont_verify && !cfg->skip_visibility && !mono_method_can_access_field (method, field))
11243                                 FIELD_ACCESS_FAILURE (method, field);
11244                         mono_class_init (klass);
11245
11246                         /* if the class is Critical then transparent code cannot access it's fields */
11247                         if (!is_instance && mono_security_core_clr_enabled ())
11248                                 ensure_method_is_allowed_to_access_field (cfg, method, field);
11249
11250                         /* XXX this is technically required but, so far (SL2), no [SecurityCritical] types (not many exists) have
11251                            any visible *instance* field  (in fact there's a single case for a static field in Marshal) XXX
11252                         if (mono_security_core_clr_enabled ())
11253                                 ensure_method_is_allowed_to_access_field (cfg, method, field);
11254                         */
11255
11256                         ftype = mono_field_get_type (field);
11257
11258                         /*
11259                          * LDFLD etc. is usable on static fields as well, so convert those cases to
11260                          * the static case.
11261                          */
11262                         if (is_instance && ftype->attrs & FIELD_ATTRIBUTE_STATIC) {
11263                                 switch (op) {
11264                                 case CEE_LDFLD:
11265                                         op = CEE_LDSFLD;
11266                                         break;
11267                                 case CEE_STFLD:
11268                                         op = CEE_STSFLD;
11269                                         break;
11270                                 case CEE_LDFLDA:
11271                                         op = CEE_LDSFLDA;
11272                                         break;
11273                                 default:
11274                                         g_assert_not_reached ();
11275                                 }
11276                                 is_instance = FALSE;
11277                         }
11278
11279                         context_used = mini_class_check_context_used (cfg, klass);
11280
11281                         /* INSTANCE CASE */
11282
11283                         foffset = klass->valuetype? field->offset - sizeof (MonoObject): field->offset;
11284                         if (op == CEE_STFLD) {
11285                                 if (target_type_is_incompatible (cfg, field->type, sp [1]))
11286                                         UNVERIFIED;
11287 #ifndef DISABLE_REMOTING
11288                                 if ((mono_class_is_marshalbyref (klass) && !MONO_CHECK_THIS (sp [0])) || mono_class_is_contextbound (klass) || klass == mono_defaults.marshalbyrefobject_class) {
11289                                         MonoMethod *stfld_wrapper = mono_marshal_get_stfld_wrapper (field->type); 
11290                                         MonoInst *iargs [5];
11291
11292                                         GSHAREDVT_FAILURE (op);
11293
11294                                         iargs [0] = sp [0];
11295                                         EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
11296                                         EMIT_NEW_FIELDCONST (cfg, iargs [2], field);
11297                                         EMIT_NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : 
11298                                                     field->offset);
11299                                         iargs [4] = sp [1];
11300
11301                                         if (cfg->opt & MONO_OPT_INLINE || cfg->compile_aot) {
11302                                                 costs = inline_method (cfg, stfld_wrapper, mono_method_signature (stfld_wrapper), 
11303                                                                                            iargs, ip, cfg->real_offset, TRUE);
11304                                                 CHECK_CFG_EXCEPTION;
11305                                                 g_assert (costs > 0);
11306                                                       
11307                                                 cfg->real_offset += 5;
11308
11309                                                 inline_costs += costs;
11310                                         } else {
11311                                                 mono_emit_method_call (cfg, stfld_wrapper, iargs, NULL);
11312                                         }
11313                                 } else
11314 #endif
11315                                 {
11316                                         MonoInst *store, *wbarrier_ptr_ins = NULL;
11317
11318                                         MONO_EMIT_NULL_CHECK (cfg, sp [0]->dreg);
11319
11320                                         if (mini_is_gsharedvt_klass (klass)) {
11321                                                 MonoInst *offset_ins;
11322
11323                                                 context_used = mini_class_check_context_used (cfg, klass);
11324
11325                                                 offset_ins = emit_get_gsharedvt_info (cfg, field, MONO_RGCTX_INFO_FIELD_OFFSET);
11326                                                 /* The value is offset by 1 */
11327                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
11328                                                 dreg = alloc_ireg_mp (cfg);
11329                                                 EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, sp [0]->dreg, offset_ins->dreg);
11330                                                 wbarrier_ptr_ins = ins;
11331                                                 /* The decomposition will call mini_emit_stobj () which will emit a wbarrier if needed */
11332                                                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, field->type, dreg, 0, sp [1]->dreg);
11333                                         } else {
11334                                                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, field->type, sp [0]->dreg, foffset, sp [1]->dreg);
11335                                         }
11336                                         if (sp [0]->opcode != OP_LDADDR)
11337                                                 store->flags |= MONO_INST_FAULT;
11338
11339                                         if (cfg->gen_write_barriers && mini_type_to_stind (cfg, field->type) == CEE_STIND_REF && !(sp [1]->opcode == OP_PCONST && sp [1]->inst_c0 == 0)) {
11340                                                 if (mini_is_gsharedvt_klass (klass)) {
11341                                                         g_assert (wbarrier_ptr_ins);
11342                                                         emit_write_barrier (cfg, wbarrier_ptr_ins, sp [1]);
11343                                                 } else {
11344                                                         /* insert call to write barrier */
11345                                                         MonoInst *ptr;
11346                                                         int dreg;
11347
11348                                                         dreg = alloc_ireg_mp (cfg);
11349                                                         EMIT_NEW_BIALU_IMM (cfg, ptr, OP_PADD_IMM, dreg, sp [0]->dreg, foffset);
11350                                                         emit_write_barrier (cfg, ptr, sp [1]);
11351                                                 }
11352                                         }
11353
11354                                         store->flags |= ins_flag;
11355                                 }
11356                                 ins_flag = 0;
11357                                 ip += 5;
11358                                 break;
11359                         }
11360
11361 #ifndef DISABLE_REMOTING
11362                         if (is_instance && ((mono_class_is_marshalbyref (klass) && !MONO_CHECK_THIS (sp [0])) || mono_class_is_contextbound (klass) || klass == mono_defaults.marshalbyrefobject_class)) {
11363                                 MonoMethod *wrapper = (op == CEE_LDFLDA) ? mono_marshal_get_ldflda_wrapper (field->type) : mono_marshal_get_ldfld_wrapper (field->type); 
11364                                 MonoInst *iargs [4];
11365
11366                                 GSHAREDVT_FAILURE (op);
11367
11368                                 iargs [0] = sp [0];
11369                                 EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
11370                                 EMIT_NEW_FIELDCONST (cfg, iargs [2], field);
11371                                 EMIT_NEW_ICONST (cfg, iargs [3], klass->valuetype ? field->offset - sizeof (MonoObject) : field->offset);
11372                                 if (cfg->opt & MONO_OPT_INLINE || cfg->compile_aot) {
11373                                         costs = inline_method (cfg, wrapper, mono_method_signature (wrapper), 
11374                                                                                    iargs, ip, cfg->real_offset, TRUE);
11375                                         CHECK_CFG_EXCEPTION;
11376                                         g_assert (costs > 0);
11377                                                       
11378                                         cfg->real_offset += 5;
11379
11380                                         *sp++ = iargs [0];
11381
11382                                         inline_costs += costs;
11383                                 } else {
11384                                         ins = mono_emit_method_call (cfg, wrapper, iargs, NULL);
11385                                         *sp++ = ins;
11386                                 }
11387                         } else 
11388 #endif
11389                         if (is_instance) {
11390                                 if (sp [0]->type == STACK_VTYPE) {
11391                                         MonoInst *var;
11392
11393                                         /* Have to compute the address of the variable */
11394
11395                                         var = get_vreg_to_inst (cfg, sp [0]->dreg);
11396                                         if (!var)
11397                                                 var = mono_compile_create_var_for_vreg (cfg, &klass->byval_arg, OP_LOCAL, sp [0]->dreg);
11398                                         else
11399                                                 g_assert (var->klass == klass);
11400                                         
11401                                         EMIT_NEW_VARLOADA (cfg, ins, var, &var->klass->byval_arg);
11402                                         sp [0] = ins;
11403                                 }
11404
11405                                 if (op == CEE_LDFLDA) {
11406                                         if (sp [0]->type == STACK_OBJ) {
11407                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, sp [0]->dreg, 0);
11408                                                 MONO_EMIT_NEW_COND_EXC (cfg, EQ, "NullReferenceException");
11409                                         }
11410
11411                                         dreg = alloc_ireg_mp (cfg);
11412
11413                                         if (mini_is_gsharedvt_klass (klass)) {
11414                                                 MonoInst *offset_ins;
11415
11416                                                 offset_ins = emit_get_gsharedvt_info (cfg, field, MONO_RGCTX_INFO_FIELD_OFFSET);
11417                                                 /* The value is offset by 1 */
11418                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
11419                                                 EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, sp [0]->dreg, offset_ins->dreg);
11420                                         } else {
11421                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, dreg, sp [0]->dreg, foffset);
11422                                         }
11423                                         ins->klass = mono_class_from_mono_type (field->type);
11424                                         ins->type = STACK_MP;
11425                                         *sp++ = ins;
11426                                 } else {
11427                                         MonoInst *load;
11428
11429                                         MONO_EMIT_NULL_CHECK (cfg, sp [0]->dreg);
11430
11431                                         if (mini_is_gsharedvt_klass (klass)) {
11432                                                 MonoInst *offset_ins;
11433
11434                                                 offset_ins = emit_get_gsharedvt_info (cfg, field, MONO_RGCTX_INFO_FIELD_OFFSET);
11435                                                 /* The value is offset by 1 */
11436                                                 EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
11437                                                 dreg = alloc_ireg_mp (cfg);
11438                                                 EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, sp [0]->dreg, offset_ins->dreg);
11439                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, field->type, dreg, 0);
11440                                         } else {
11441                                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, field->type, sp [0]->dreg, foffset);
11442                                         }
11443                                         load->flags |= ins_flag;
11444                                         if (sp [0]->opcode != OP_LDADDR)
11445                                                 load->flags |= MONO_INST_FAULT;
11446                                         *sp++ = load;
11447                                 }
11448                         }
11449
11450                         if (is_instance) {
11451                                 ins_flag = 0;
11452                                 ip += 5;
11453                                 break;
11454                         }
11455
11456                         /* STATIC CASE */
11457                         context_used = mini_class_check_context_used (cfg, klass);
11458
11459                         if (ftype->attrs & FIELD_ATTRIBUTE_LITERAL) {
11460                                 mono_error_set_field_load (&cfg->error, field->parent, field->name, "Using static instructions with literal field");
11461                                 CHECK_CFG_ERROR;
11462                         }
11463
11464                         /* The special_static_fields field is init'd in mono_class_vtable, so it needs
11465                          * to be called here.
11466                          */
11467                         if (!context_used && !(cfg->opt & MONO_OPT_SHARED)) {
11468                                 mono_class_vtable (cfg->domain, klass);
11469                                 CHECK_TYPELOAD (klass);
11470                         }
11471                         mono_domain_lock (cfg->domain);
11472                         if (cfg->domain->special_static_fields)
11473                                 addr = g_hash_table_lookup (cfg->domain->special_static_fields, field);
11474                         mono_domain_unlock (cfg->domain);
11475
11476                         is_special_static = mono_class_field_is_special_static (field);
11477
11478                         if (is_special_static && ((gsize)addr & 0x80000000) == 0)
11479                                 thread_ins = mono_get_thread_intrinsic (cfg);
11480                         else
11481                                 thread_ins = NULL;
11482
11483                         /* Generate IR to compute the field address */
11484                         if (is_special_static && ((gsize)addr & 0x80000000) == 0 && thread_ins && !(cfg->opt & MONO_OPT_SHARED) && !context_used) {
11485                                 /*
11486                                  * Fast access to TLS data
11487                                  * Inline version of get_thread_static_data () in
11488                                  * threads.c.
11489                                  */
11490                                 guint32 offset;
11491                                 int idx, static_data_reg, array_reg, dreg;
11492
11493                                 GSHAREDVT_FAILURE (op);
11494
11495                                 MONO_ADD_INS (cfg->cbb, thread_ins);
11496                                 static_data_reg = alloc_ireg (cfg);
11497                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, static_data_reg, thread_ins->dreg, MONO_STRUCT_OFFSET (MonoInternalThread, static_data));
11498
11499                                 if (cfg->compile_aot) {
11500                                         int offset_reg, offset2_reg, idx_reg;
11501
11502                                         /* For TLS variables, this will return the TLS offset */
11503                                         EMIT_NEW_SFLDACONST (cfg, ins, field);
11504                                         offset_reg = ins->dreg;
11505                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, offset_reg, offset_reg, 0x7fffffff);
11506                                         idx_reg = alloc_ireg (cfg);
11507                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, idx_reg, offset_reg, 0x3f);
11508                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ISHL_IMM, idx_reg, idx_reg, sizeof (gpointer) == 8 ? 3 : 2);
11509                                         MONO_EMIT_NEW_BIALU (cfg, OP_PADD, static_data_reg, static_data_reg, idx_reg);
11510                                         array_reg = alloc_ireg (cfg);
11511                                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, static_data_reg, 0);
11512                                         offset2_reg = alloc_ireg (cfg);
11513                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ISHR_UN_IMM, offset2_reg, offset_reg, 6);
11514                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IAND_IMM, offset2_reg, offset2_reg, 0x1ffffff);
11515                                         dreg = alloc_ireg (cfg);
11516                                         EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, array_reg, offset2_reg);
11517                                 } else {
11518                                         offset = (gsize)addr & 0x7fffffff;
11519                                         idx = offset & 0x3f;
11520
11521                                         array_reg = alloc_ireg (cfg);
11522                                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, array_reg, static_data_reg, idx * sizeof (gpointer));
11523                                         dreg = alloc_ireg (cfg);
11524                                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_ADD_IMM, dreg, array_reg, ((offset >> 6) & 0x1ffffff));
11525                                 }
11526                         } else if ((cfg->opt & MONO_OPT_SHARED) ||
11527                                         (cfg->compile_aot && is_special_static) ||
11528                                         (context_used && is_special_static)) {
11529                                 MonoInst *iargs [2];
11530
11531                                 g_assert (field->parent);
11532                                 EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
11533                                 if (context_used) {
11534                                         iargs [1] = emit_get_rgctx_field (cfg, context_used,
11535                                                 field, MONO_RGCTX_INFO_CLASS_FIELD);
11536                                 } else {
11537                                         EMIT_NEW_FIELDCONST (cfg, iargs [1], field);
11538                                 }
11539                                 ins = mono_emit_jit_icall (cfg, mono_class_static_field_address, iargs);
11540                         } else if (context_used) {
11541                                 MonoInst *static_data;
11542
11543                                 /*
11544                                 g_print ("sharing static field access in %s.%s.%s - depth %d offset %d\n",
11545                                         method->klass->name_space, method->klass->name, method->name,
11546                                         depth, field->offset);
11547                                 */
11548
11549                                 if (mono_class_needs_cctor_run (klass, method))
11550                                         emit_class_init (cfg, klass);
11551
11552                                 /*
11553                                  * The pointer we're computing here is
11554                                  *
11555                                  *   super_info.static_data + field->offset
11556                                  */
11557                                 static_data = emit_get_rgctx_klass (cfg, context_used,
11558                                         klass, MONO_RGCTX_INFO_STATIC_DATA);
11559
11560                                 if (mini_is_gsharedvt_klass (klass)) {
11561                                         MonoInst *offset_ins;
11562
11563                                         offset_ins = emit_get_rgctx_field (cfg, context_used, field, MONO_RGCTX_INFO_FIELD_OFFSET);
11564                                         /* The value is offset by 1 */
11565                                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_PSUB_IMM, offset_ins->dreg, offset_ins->dreg, 1);
11566                                         dreg = alloc_ireg_mp (cfg);
11567                                         EMIT_NEW_BIALU (cfg, ins, OP_PADD, dreg, static_data->dreg, offset_ins->dreg);
11568                                 } else if (field->offset == 0) {
11569                                         ins = static_data;
11570                                 } else {
11571                                         int addr_reg = mono_alloc_preg (cfg);
11572                                         EMIT_NEW_BIALU_IMM (cfg, ins, OP_PADD_IMM, addr_reg, static_data->dreg, field->offset);
11573                                 }
11574                                 } else if ((cfg->opt & MONO_OPT_SHARED) || (cfg->compile_aot && addr)) {
11575                                 MonoInst *iargs [2];
11576
11577                                 g_assert (field->parent);
11578                                 EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
11579                                 EMIT_NEW_FIELDCONST (cfg, iargs [1], field);
11580                                 ins = mono_emit_jit_icall (cfg, mono_class_static_field_address, iargs);
11581                         } else {
11582                                 MonoVTable *vtable = NULL;
11583
11584                                 if (!cfg->compile_aot)
11585                                         vtable = mono_class_vtable (cfg->domain, klass);
11586                                 CHECK_TYPELOAD (klass);
11587
11588                                 if (!addr) {
11589                                         if (mini_field_access_needs_cctor_run (cfg, method, klass, vtable)) {
11590                                                 if (!(g_slist_find (class_inits, klass))) {
11591                                                         emit_class_init (cfg, klass);
11592                                                         if (cfg->verbose_level > 2)
11593                                                                 printf ("class %s.%s needs init call for %s\n", klass->name_space, klass->name, mono_field_get_name (field));
11594                                                         class_inits = g_slist_prepend (class_inits, klass);
11595                                                 }
11596                                         } else {
11597                                                 if (cfg->run_cctors) {
11598                                                         /* This makes so that inline cannot trigger */
11599                                                         /* .cctors: too many apps depend on them */
11600                                                         /* running with a specific order... */
11601                                                         g_assert (vtable);
11602                                                         if (! vtable->initialized)
11603                                                                 INLINE_FAILURE ("class init");
11604                                                         if (!mono_runtime_class_init_full (vtable, &cfg->error)) {
11605                                                                 mono_cfg_set_exception (cfg, MONO_EXCEPTION_MONO_ERROR);
11606                                                                 goto exception_exit;
11607                                                         }
11608                                                 }
11609                                         }
11610                                         if (cfg->compile_aot)
11611                                                 EMIT_NEW_SFLDACONST (cfg, ins, field);
11612                                         else {
11613                                                 g_assert (vtable);
11614                                                 addr = (char*)mono_vtable_get_static_field_data (vtable) + field->offset;
11615                                                 g_assert (addr);
11616                                                 EMIT_NEW_PCONST (cfg, ins, addr);
11617                                         }
11618                                 } else {
11619                                         MonoInst *iargs [1];
11620                                         EMIT_NEW_ICONST (cfg, iargs [0], GPOINTER_TO_UINT (addr));
11621                                         ins = mono_emit_jit_icall (cfg, mono_get_special_static_data, iargs);
11622                                 }
11623                         }
11624
11625                         /* Generate IR to do the actual load/store operation */
11626
11627                         if ((op == CEE_STFLD || op == CEE_STSFLD) && (ins_flag & MONO_INST_VOLATILE)) {
11628                                 /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
11629                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
11630                         }
11631
11632                         if (op == CEE_LDSFLDA) {
11633                                 ins->klass = mono_class_from_mono_type (ftype);
11634                                 ins->type = STACK_PTR;
11635                                 *sp++ = ins;
11636                         } else if (op == CEE_STSFLD) {
11637                                 MonoInst *store;
11638
11639                                 EMIT_NEW_STORE_MEMBASE_TYPE (cfg, store, ftype, ins->dreg, 0, store_val->dreg);
11640                                 store->flags |= ins_flag;
11641                         } else {
11642                                 gboolean is_const = FALSE;
11643                                 MonoVTable *vtable = NULL;
11644                                 gpointer addr = NULL;
11645
11646                                 if (!context_used) {
11647                                         vtable = mono_class_vtable (cfg->domain, klass);
11648                                         CHECK_TYPELOAD (klass);
11649                                 }
11650                                 if ((ftype->attrs & FIELD_ATTRIBUTE_INIT_ONLY) && (((addr = mono_aot_readonly_field_override (field)) != NULL) ||
11651                                                 (!context_used && !((cfg->opt & MONO_OPT_SHARED) || cfg->compile_aot) && vtable->initialized))) {
11652                                         int ro_type = ftype->type;
11653                                         if (!addr)
11654                                                 addr = (char*)mono_vtable_get_static_field_data (vtable) + field->offset;
11655                                         if (ro_type == MONO_TYPE_VALUETYPE && ftype->data.klass->enumtype) {
11656                                                 ro_type = mono_class_enum_basetype (ftype->data.klass)->type;
11657                                         }
11658
11659                                         GSHAREDVT_FAILURE (op);
11660
11661                                         /* printf ("RO-FIELD %s.%s:%s\n", klass->name_space, klass->name, mono_field_get_name (field));*/
11662                                         is_const = TRUE;
11663                                         switch (ro_type) {
11664                                         case MONO_TYPE_BOOLEAN:
11665                                         case MONO_TYPE_U1:
11666                                                 EMIT_NEW_ICONST (cfg, *sp, *((guint8 *)addr));
11667                                                 sp++;
11668                                                 break;
11669                                         case MONO_TYPE_I1:
11670                                                 EMIT_NEW_ICONST (cfg, *sp, *((gint8 *)addr));
11671                                                 sp++;
11672                                                 break;                                          
11673                                         case MONO_TYPE_CHAR:
11674                                         case MONO_TYPE_U2:
11675                                                 EMIT_NEW_ICONST (cfg, *sp, *((guint16 *)addr));
11676                                                 sp++;
11677                                                 break;
11678                                         case MONO_TYPE_I2:
11679                                                 EMIT_NEW_ICONST (cfg, *sp, *((gint16 *)addr));
11680                                                 sp++;
11681                                                 break;
11682                                                 break;
11683                                         case MONO_TYPE_I4:
11684                                                 EMIT_NEW_ICONST (cfg, *sp, *((gint32 *)addr));
11685                                                 sp++;
11686                                                 break;                                          
11687                                         case MONO_TYPE_U4:
11688                                                 EMIT_NEW_ICONST (cfg, *sp, *((guint32 *)addr));
11689                                                 sp++;
11690                                                 break;
11691                                         case MONO_TYPE_I:
11692                                         case MONO_TYPE_U:
11693                                         case MONO_TYPE_PTR:
11694                                         case MONO_TYPE_FNPTR:
11695                                                 EMIT_NEW_PCONST (cfg, *sp, *((gpointer *)addr));
11696                                                 type_to_eval_stack_type ((cfg), field->type, *sp);
11697                                                 sp++;
11698                                                 break;
11699                                         case MONO_TYPE_STRING:
11700                                         case MONO_TYPE_OBJECT:
11701                                         case MONO_TYPE_CLASS:
11702                                         case MONO_TYPE_SZARRAY:
11703                                         case MONO_TYPE_ARRAY:
11704                                                 if (!mono_gc_is_moving ()) {
11705                                                         EMIT_NEW_PCONST (cfg, *sp, *((gpointer *)addr));
11706                                                         type_to_eval_stack_type ((cfg), field->type, *sp);
11707                                                         sp++;
11708                                                 } else {
11709                                                         is_const = FALSE;
11710                                                 }
11711                                                 break;
11712                                         case MONO_TYPE_I8:
11713                                         case MONO_TYPE_U8:
11714                                                 EMIT_NEW_I8CONST (cfg, *sp, *((gint64 *)addr));
11715                                                 sp++;
11716                                                 break;
11717                                         case MONO_TYPE_R4:
11718                                         case MONO_TYPE_R8:
11719                                         case MONO_TYPE_VALUETYPE:
11720                                         default:
11721                                                 is_const = FALSE;
11722                                                 break;
11723                                         }
11724                                 }
11725
11726                                 if (!is_const) {
11727                                         MonoInst *load;
11728
11729                                         CHECK_STACK_OVF (1);
11730
11731                                         EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, load, field->type, ins->dreg, 0);
11732                                         load->flags |= ins_flag;
11733                                         ins_flag = 0;
11734                                         *sp++ = load;
11735                                 }
11736                         }
11737
11738                         if ((op == CEE_LDFLD || op == CEE_LDSFLD) && (ins_flag & MONO_INST_VOLATILE)) {
11739                                 /* Volatile loads have acquire semantics, see 12.6.7 in Ecma 335 */
11740                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_ACQ);
11741                         }
11742
11743                         ins_flag = 0;
11744                         ip += 5;
11745                         break;
11746                 }
11747                 case CEE_STOBJ:
11748                         CHECK_STACK (2);
11749                         sp -= 2;
11750                         CHECK_OPSIZE (5);
11751                         token = read32 (ip + 1);
11752                         klass = mini_get_class (method, token, generic_context);
11753                         CHECK_TYPELOAD (klass);
11754                         if (ins_flag & MONO_INST_VOLATILE) {
11755                                 /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
11756                                 emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
11757                         }
11758                         /* FIXME: should check item at sp [1] is compatible with the type of the store. */
11759                         EMIT_NEW_STORE_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, sp [0]->dreg, 0, sp [1]->dreg);
11760                         ins->flags |= ins_flag;
11761                         if (cfg->gen_write_barriers && cfg->method->wrapper_type != MONO_WRAPPER_WRITE_BARRIER &&
11762                                         generic_class_is_reference_type (cfg, klass)) {
11763                                 /* insert call to write barrier */
11764                                 emit_write_barrier (cfg, sp [0], sp [1]);
11765                         }
11766                         ins_flag = 0;
11767                         ip += 5;
11768                         inline_costs += 1;
11769                         break;
11770
11771                         /*
11772                          * Array opcodes
11773                          */
11774                 case CEE_NEWARR: {
11775                         MonoInst *len_ins;
11776                         const char *data_ptr;
11777                         int data_size = 0;
11778                         guint32 field_token;
11779
11780                         CHECK_STACK (1);
11781                         --sp;
11782
11783                         CHECK_OPSIZE (5);
11784                         token = read32 (ip + 1);
11785
11786                         klass = mini_get_class (method, token, generic_context);
11787                         CHECK_TYPELOAD (klass);
11788
11789                         context_used = mini_class_check_context_used (cfg, klass);
11790
11791                         if (sp [0]->type == STACK_I8 || (SIZEOF_VOID_P == 8 && sp [0]->type == STACK_PTR)) {
11792                                 MONO_INST_NEW (cfg, ins, OP_LCONV_TO_OVF_U4);
11793                                 ins->sreg1 = sp [0]->dreg;
11794                                 ins->type = STACK_I4;
11795                                 ins->dreg = alloc_ireg (cfg);
11796                                 MONO_ADD_INS (cfg->cbb, ins);
11797                                 *sp = mono_decompose_opcode (cfg, ins);
11798                         }
11799
11800                         if (context_used) {
11801                                 MonoInst *args [3];
11802                                 MonoClass *array_class = mono_array_class_get (klass, 1);
11803                                 MonoMethod *managed_alloc = mono_gc_get_managed_array_allocator (array_class);
11804
11805                                 /* FIXME: Use OP_NEWARR and decompose later to help abcrem */
11806
11807                                 /* vtable */
11808                                 args [0] = emit_get_rgctx_klass (cfg, context_used,
11809                                         array_class, MONO_RGCTX_INFO_VTABLE);
11810                                 /* array len */
11811                                 args [1] = sp [0];
11812
11813                                 if (managed_alloc)
11814                                         ins = mono_emit_method_call (cfg, managed_alloc, args, NULL);
11815                                 else
11816                                         ins = mono_emit_jit_icall (cfg, ves_icall_array_new_specific, args);
11817                         } else {
11818                                 if (cfg->opt & MONO_OPT_SHARED) {
11819                                         /* Decompose now to avoid problems with references to the domainvar */
11820                                         MonoInst *iargs [3];
11821
11822                                         EMIT_NEW_DOMAINCONST (cfg, iargs [0]);
11823                                         EMIT_NEW_CLASSCONST (cfg, iargs [1], klass);
11824                                         iargs [2] = sp [0];
11825
11826                                         ins = mono_emit_jit_icall (cfg, ves_icall_array_new, iargs);
11827                                 } else {
11828                                         /* Decompose later since it is needed by abcrem */
11829                                         MonoClass *array_type = mono_array_class_get (klass, 1);
11830                                         mono_class_vtable (cfg->domain, array_type);
11831                                         CHECK_TYPELOAD (array_type);
11832
11833                                         MONO_INST_NEW (cfg, ins, OP_NEWARR);
11834                                         ins->dreg = alloc_ireg_ref (cfg);
11835                                         ins->sreg1 = sp [0]->dreg;
11836                                         ins->inst_newa_class = klass;
11837                                         ins->type = STACK_OBJ;
11838                                         ins->klass = array_type;
11839                                         MONO_ADD_INS (cfg->cbb, ins);
11840                                         cfg->flags |= MONO_CFG_HAS_ARRAY_ACCESS;
11841                                         cfg->cbb->has_array_access = TRUE;
11842
11843                                         /* Needed so mono_emit_load_get_addr () gets called */
11844                                         mono_get_got_var (cfg);
11845                                 }
11846                         }
11847
11848                         len_ins = sp [0];
11849                         ip += 5;
11850                         *sp++ = ins;
11851                         inline_costs += 1;
11852
11853                         /* 
11854                          * we inline/optimize the initialization sequence if possible.
11855                          * we should also allocate the array as not cleared, since we spend as much time clearing to 0 as initializing
11856                          * for small sizes open code the memcpy
11857                          * ensure the rva field is big enough
11858                          */
11859                         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))) {
11860                                 MonoMethod *memcpy_method = get_memcpy_method ();
11861                                 MonoInst *iargs [3];
11862                                 int add_reg = alloc_ireg_mp (cfg);
11863
11864                                 EMIT_NEW_BIALU_IMM (cfg, iargs [0], OP_PADD_IMM, add_reg, ins->dreg, MONO_STRUCT_OFFSET (MonoArray, vector));
11865                                 if (cfg->compile_aot) {
11866                                         EMIT_NEW_AOTCONST_TOKEN (cfg, iargs [1], MONO_PATCH_INFO_RVA, method->klass->image, GPOINTER_TO_UINT(field_token), STACK_PTR, NULL);
11867                                 } else {
11868                                         EMIT_NEW_PCONST (cfg, iargs [1], (char*)data_ptr);
11869                                 }
11870                                 EMIT_NEW_ICONST (cfg, iargs [2], data_size);
11871                                 mono_emit_method_call (cfg, memcpy_method, iargs, NULL);
11872                                 ip += 11;
11873                         }
11874
11875                         break;
11876                 }
11877                 case CEE_LDLEN:
11878                         CHECK_STACK (1);
11879                         --sp;
11880                         if (sp [0]->type != STACK_OBJ)
11881                                 UNVERIFIED;
11882
11883                         MONO_INST_NEW (cfg, ins, OP_LDLEN);
11884                         ins->dreg = alloc_preg (cfg);
11885                         ins->sreg1 = sp [0]->dreg;
11886                         ins->type = STACK_I4;
11887                         /* This flag will be inherited by the decomposition */
11888                         ins->flags |= MONO_INST_FAULT;
11889                         MONO_ADD_INS (cfg->cbb, ins);
11890                         cfg->flags |= MONO_CFG_HAS_ARRAY_ACCESS;
11891                         cfg->cbb->has_array_access = TRUE;
11892                         ip ++;
11893                         *sp++ = ins;
11894                         break;
11895                 case CEE_LDELEMA:
11896                         CHECK_STACK (2);
11897                         sp -= 2;
11898                         CHECK_OPSIZE (5);
11899                         if (sp [0]->type != STACK_OBJ)
11900                                 UNVERIFIED;
11901
11902                         cfg->flags |= MONO_CFG_HAS_LDELEMA;
11903
11904                         klass = mini_get_class (method, read32 (ip + 1), generic_context);
11905                         CHECK_TYPELOAD (klass);
11906                         /* we need to make sure that this array is exactly the type it needs
11907                          * to be for correctness. the wrappers are lax with their usage
11908                          * so we need to ignore them here
11909                          */
11910                         if (!klass->valuetype && method->wrapper_type == MONO_WRAPPER_NONE && !readonly) {
11911                                 MonoClass *array_class = mono_array_class_get (klass, 1);
11912                                 mini_emit_check_array_type (cfg, sp [0], array_class);
11913                                 CHECK_TYPELOAD (array_class);
11914                         }
11915
11916                         readonly = FALSE;
11917                         ins = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
11918                         *sp++ = ins;
11919                         ip += 5;
11920                         break;
11921                 case CEE_LDELEM:
11922                 case CEE_LDELEM_I1:
11923                 case CEE_LDELEM_U1:
11924                 case CEE_LDELEM_I2:
11925                 case CEE_LDELEM_U2:
11926                 case CEE_LDELEM_I4:
11927                 case CEE_LDELEM_U4:
11928                 case CEE_LDELEM_I8:
11929                 case CEE_LDELEM_I:
11930                 case CEE_LDELEM_R4:
11931                 case CEE_LDELEM_R8:
11932                 case CEE_LDELEM_REF: {
11933                         MonoInst *addr;
11934
11935                         CHECK_STACK (2);
11936                         sp -= 2;
11937
11938                         if (*ip == CEE_LDELEM) {
11939                                 CHECK_OPSIZE (5);
11940                                 token = read32 (ip + 1);
11941                                 klass = mini_get_class (method, token, generic_context);
11942                                 CHECK_TYPELOAD (klass);
11943                                 mono_class_init (klass);
11944                         }
11945                         else
11946                                 klass = array_access_to_klass (*ip);
11947
11948                         if (sp [0]->type != STACK_OBJ)
11949                                 UNVERIFIED;
11950
11951                         cfg->flags |= MONO_CFG_HAS_LDELEMA;
11952
11953                         if (mini_is_gsharedvt_variable_klass (klass)) {
11954                                 // FIXME-VT: OP_ICONST optimization
11955                                 addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
11956                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0);
11957                                 ins->opcode = OP_LOADV_MEMBASE;
11958                         } else if (sp [1]->opcode == OP_ICONST) {
11959                                 int array_reg = sp [0]->dreg;
11960                                 int index_reg = sp [1]->dreg;
11961                                 int offset = (mono_class_array_element_size (klass) * sp [1]->inst_c0) + MONO_STRUCT_OFFSET (MonoArray, vector);
11962
11963                                 if (SIZEOF_REGISTER == 8 && COMPILE_LLVM (cfg))
11964                                         MONO_EMIT_NEW_UNALU (cfg, OP_ZEXT_I4, index_reg, index_reg);
11965
11966                                 MONO_EMIT_BOUNDS_CHECK (cfg, array_reg, MonoArray, max_length, index_reg);
11967                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, array_reg, offset);
11968                         } else {
11969                                 addr = mini_emit_ldelema_1_ins (cfg, klass, sp [0], sp [1], TRUE);
11970                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &klass->byval_arg, addr->dreg, 0);
11971                         }
11972                         *sp++ = ins;
11973                         if (*ip == CEE_LDELEM)
11974                                 ip += 5;
11975                         else
11976                                 ++ip;
11977                         break;
11978                 }
11979                 case CEE_STELEM_I:
11980                 case CEE_STELEM_I1:
11981                 case CEE_STELEM_I2:
11982                 case CEE_STELEM_I4:
11983                 case CEE_STELEM_I8:
11984                 case CEE_STELEM_R4:
11985                 case CEE_STELEM_R8:
11986                 case CEE_STELEM_REF:
11987                 case CEE_STELEM: {
11988                         CHECK_STACK (3);
11989                         sp -= 3;
11990
11991                         cfg->flags |= MONO_CFG_HAS_LDELEMA;
11992
11993                         if (*ip == CEE_STELEM) {
11994                                 CHECK_OPSIZE (5);
11995                                 token = read32 (ip + 1);
11996                                 klass = mini_get_class (method, token, generic_context);
11997                                 CHECK_TYPELOAD (klass);
11998                                 mono_class_init (klass);
11999                         }
12000                         else
12001                                 klass = array_access_to_klass (*ip);
12002
12003                         if (sp [0]->type != STACK_OBJ)
12004                                 UNVERIFIED;
12005
12006                         emit_array_store (cfg, klass, sp, TRUE);
12007
12008                         if (*ip == CEE_STELEM)
12009                                 ip += 5;
12010                         else
12011                                 ++ip;
12012                         inline_costs += 1;
12013                         break;
12014                 }
12015                 case CEE_CKFINITE: {
12016                         CHECK_STACK (1);
12017                         --sp;
12018
12019                         if (cfg->llvm_only) {
12020                                 MonoInst *iargs [1];
12021
12022                                 iargs [0] = sp [0];
12023                                 *sp++ = mono_emit_jit_icall (cfg, mono_ckfinite, iargs);
12024                         } else  {
12025                                 MONO_INST_NEW (cfg, ins, OP_CKFINITE);
12026                                 ins->sreg1 = sp [0]->dreg;
12027                                 ins->dreg = alloc_freg (cfg);
12028                                 ins->type = STACK_R8;
12029                                 MONO_ADD_INS (cfg->cbb, ins);
12030
12031                                 *sp++ = mono_decompose_opcode (cfg, ins);
12032                         }
12033
12034                         ++ip;
12035                         break;
12036                 }
12037                 case CEE_REFANYVAL: {
12038                         MonoInst *src_var, *src;
12039
12040                         int klass_reg = alloc_preg (cfg);
12041                         int dreg = alloc_preg (cfg);
12042
12043                         GSHAREDVT_FAILURE (*ip);
12044
12045                         CHECK_STACK (1);
12046                         MONO_INST_NEW (cfg, ins, *ip);
12047                         --sp;
12048                         CHECK_OPSIZE (5);
12049                         klass = mini_get_class (method, read32 (ip + 1), generic_context);
12050                         CHECK_TYPELOAD (klass);
12051
12052                         context_used = mini_class_check_context_used (cfg, klass);
12053
12054                         // FIXME:
12055                         src_var = get_vreg_to_inst (cfg, sp [0]->dreg);
12056                         if (!src_var)
12057                                 src_var = mono_compile_create_var_for_vreg (cfg, &mono_defaults.typed_reference_class->byval_arg, OP_LOCAL, sp [0]->dreg);
12058                         EMIT_NEW_VARLOADA (cfg, src, src_var, src_var->inst_vtype);
12059                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, klass_reg, src->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, klass));
12060
12061                         if (context_used) {
12062                                 MonoInst *klass_ins;
12063
12064                                 klass_ins = emit_get_rgctx_klass (cfg, context_used,
12065                                                 klass, MONO_RGCTX_INFO_KLASS);
12066
12067                                 // FIXME:
12068                                 MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, klass_reg, klass_ins->dreg);
12069                                 MONO_EMIT_NEW_COND_EXC (cfg, NE_UN, "InvalidCastException");
12070                         } else {
12071                                 mini_emit_class_check (cfg, klass_reg, klass);
12072                         }
12073                         EMIT_NEW_LOAD_MEMBASE (cfg, ins, OP_LOAD_MEMBASE, dreg, src->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, value));
12074                         ins->type = STACK_MP;
12075                         ins->klass = klass;
12076                         *sp++ = ins;
12077                         ip += 5;
12078                         break;
12079                 }
12080                 case CEE_MKREFANY: {
12081                         MonoInst *loc, *addr;
12082
12083                         GSHAREDVT_FAILURE (*ip);
12084
12085                         CHECK_STACK (1);
12086                         MONO_INST_NEW (cfg, ins, *ip);
12087                         --sp;
12088                         CHECK_OPSIZE (5);
12089                         klass = mini_get_class (method, read32 (ip + 1), generic_context);
12090                         CHECK_TYPELOAD (klass);
12091
12092                         context_used = mini_class_check_context_used (cfg, klass);
12093
12094                         loc = mono_compile_create_var (cfg, &mono_defaults.typed_reference_class->byval_arg, OP_LOCAL);
12095                         EMIT_NEW_TEMPLOADA (cfg, addr, loc->inst_c0);
12096
12097                         if (context_used) {
12098                                 MonoInst *const_ins;
12099                                 int type_reg = alloc_preg (cfg);
12100
12101                                 const_ins = emit_get_rgctx_klass (cfg, context_used, klass, MONO_RGCTX_INFO_KLASS);
12102                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, klass), const_ins->dreg);
12103                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ADD_IMM, type_reg, const_ins->dreg, MONO_STRUCT_OFFSET (MonoClass, byval_arg));
12104                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, type), type_reg);
12105                         } else if (cfg->compile_aot) {
12106                                 int const_reg = alloc_preg (cfg);
12107                                 int type_reg = alloc_preg (cfg);
12108
12109                                 MONO_EMIT_NEW_CLASSCONST (cfg, const_reg, klass);
12110                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, klass), const_reg);
12111                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ADD_IMM, type_reg, const_reg, MONO_STRUCT_OFFSET (MonoClass, byval_arg));
12112                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, type), type_reg);
12113                         } else {
12114                                 MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREP_MEMBASE_IMM, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, type), &klass->byval_arg);
12115                                 MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STOREP_MEMBASE_IMM, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, klass), klass);
12116                         }
12117                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREP_MEMBASE_REG, addr->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, value), sp [0]->dreg);
12118
12119                         EMIT_NEW_TEMPLOAD (cfg, ins, loc->inst_c0);
12120                         ins->type = STACK_VTYPE;
12121                         ins->klass = mono_defaults.typed_reference_class;
12122                         *sp++ = ins;
12123                         ip += 5;
12124                         break;
12125                 }
12126                 case CEE_LDTOKEN: {
12127                         gpointer handle;
12128                         MonoClass *handle_class;
12129
12130                         CHECK_STACK_OVF (1);
12131
12132                         CHECK_OPSIZE (5);
12133                         n = read32 (ip + 1);
12134
12135                         if (method->wrapper_type == MONO_WRAPPER_DYNAMIC_METHOD ||
12136                                         method->wrapper_type == MONO_WRAPPER_SYNCHRONIZED) {
12137                                 handle = mono_method_get_wrapper_data (method, n);
12138                                 handle_class = (MonoClass *)mono_method_get_wrapper_data (method, n + 1);
12139                                 if (handle_class == mono_defaults.typehandle_class)
12140                                         handle = &((MonoClass*)handle)->byval_arg;
12141                         }
12142                         else {
12143                                 handle = mono_ldtoken_checked (image, n, &handle_class, generic_context, &cfg->error);
12144                                 CHECK_CFG_ERROR;
12145                         }
12146                         if (!handle)
12147                                 LOAD_ERROR;
12148                         mono_class_init (handle_class);
12149                         if (cfg->gshared) {
12150                                 if (mono_metadata_token_table (n) == MONO_TABLE_TYPEDEF ||
12151                                                 mono_metadata_token_table (n) == MONO_TABLE_TYPEREF) {
12152                                         /* This case handles ldtoken
12153                                            of an open type, like for
12154                                            typeof(Gen<>). */
12155                                         context_used = 0;
12156                                 } else if (handle_class == mono_defaults.typehandle_class) {
12157                                         context_used = mini_class_check_context_used (cfg, mono_class_from_mono_type ((MonoType *)handle));
12158                                 } else if (handle_class == mono_defaults.fieldhandle_class)
12159                                         context_used = mini_class_check_context_used (cfg, ((MonoClassField*)handle)->parent);
12160                                 else if (handle_class == mono_defaults.methodhandle_class)
12161                                         context_used = mini_method_check_context_used (cfg, (MonoMethod *)handle);
12162                                 else
12163                                         g_assert_not_reached ();
12164                         }
12165
12166                         if ((cfg->opt & MONO_OPT_SHARED) &&
12167                                         method->wrapper_type != MONO_WRAPPER_DYNAMIC_METHOD &&
12168                                         method->wrapper_type != MONO_WRAPPER_SYNCHRONIZED) {
12169                                 MonoInst *addr, *vtvar, *iargs [3];
12170                                 int method_context_used;
12171
12172                                 method_context_used = mini_method_check_context_used (cfg, method);
12173
12174                                 vtvar = mono_compile_create_var (cfg, &handle_class->byval_arg, OP_LOCAL); 
12175
12176                                 EMIT_NEW_IMAGECONST (cfg, iargs [0], image);
12177                                 EMIT_NEW_ICONST (cfg, iargs [1], n);
12178                                 if (method_context_used) {
12179                                         iargs [2] = emit_get_rgctx_method (cfg, method_context_used,
12180                                                 method, MONO_RGCTX_INFO_METHOD);
12181                                         ins = mono_emit_jit_icall (cfg, mono_ldtoken_wrapper_generic_shared, iargs);
12182                                 } else {
12183                                         EMIT_NEW_PCONST (cfg, iargs [2], generic_context);
12184                                         ins = mono_emit_jit_icall (cfg, mono_ldtoken_wrapper, iargs);
12185                                 }
12186                                 EMIT_NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
12187
12188                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, addr->dreg, 0, ins->dreg);
12189
12190                                 EMIT_NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
12191                         } else {
12192                                 if ((ip + 5 < end) && ip_in_bb (cfg, cfg->cbb, ip + 5) && 
12193                                         ((ip [5] == CEE_CALL) || (ip [5] == CEE_CALLVIRT)) && 
12194                                         (cmethod = mini_get_method (cfg, method, read32 (ip + 6), NULL, generic_context)) &&
12195                                         (cmethod->klass == mono_defaults.systemtype_class) &&
12196                                         (strcmp (cmethod->name, "GetTypeFromHandle") == 0)) {
12197                                         MonoClass *tclass = mono_class_from_mono_type ((MonoType *)handle);
12198
12199                                         mono_class_init (tclass);
12200                                         if (context_used) {
12201                                                 ins = emit_get_rgctx_klass (cfg, context_used,
12202                                                         tclass, MONO_RGCTX_INFO_REFLECTION_TYPE);
12203                                         } else if (cfg->compile_aot) {
12204                                                 if (method->wrapper_type) {
12205                                                         mono_error_init (&error); //got to do it since there are multiple conditionals below
12206                                                         if (mono_class_get_checked (tclass->image, tclass->type_token, &error) == tclass && !generic_context) {
12207                                                                 /* Special case for static synchronized wrappers */
12208                                                                 EMIT_NEW_TYPE_FROM_HANDLE_CONST (cfg, ins, tclass->image, tclass->type_token, generic_context);
12209                                                         } else {
12210                                                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
12211                                                                 /* FIXME: n is not a normal token */
12212                                                                 DISABLE_AOT (cfg);
12213                                                                 EMIT_NEW_PCONST (cfg, ins, NULL);
12214                                                         }
12215                                                 } else {
12216                                                         EMIT_NEW_TYPE_FROM_HANDLE_CONST (cfg, ins, image, n, generic_context);
12217                                                 }
12218                                         } else {
12219                                                 MonoReflectionType *rt = mono_type_get_object_checked (cfg->domain, (MonoType *)handle, &cfg->error);
12220                                                 CHECK_CFG_ERROR;
12221                                                 EMIT_NEW_PCONST (cfg, ins, rt);
12222                                         }
12223                                         ins->type = STACK_OBJ;
12224                                         ins->klass = cmethod->klass;
12225                                         ip += 5;
12226                                 } else {
12227                                         MonoInst *addr, *vtvar;
12228
12229                                         vtvar = mono_compile_create_var (cfg, &handle_class->byval_arg, OP_LOCAL);
12230
12231                                         if (context_used) {
12232                                                 if (handle_class == mono_defaults.typehandle_class) {
12233                                                         ins = emit_get_rgctx_klass (cfg, context_used,
12234                                                                         mono_class_from_mono_type ((MonoType *)handle),
12235                                                                         MONO_RGCTX_INFO_TYPE);
12236                                                 } else if (handle_class == mono_defaults.methodhandle_class) {
12237                                                         ins = emit_get_rgctx_method (cfg, context_used,
12238                                                                         (MonoMethod *)handle, MONO_RGCTX_INFO_METHOD);
12239                                                 } else if (handle_class == mono_defaults.fieldhandle_class) {
12240                                                         ins = emit_get_rgctx_field (cfg, context_used,
12241                                                                         (MonoClassField *)handle, MONO_RGCTX_INFO_CLASS_FIELD);
12242                                                 } else {
12243                                                         g_assert_not_reached ();
12244                                                 }
12245                                         } else if (cfg->compile_aot) {
12246                                                 EMIT_NEW_LDTOKENCONST (cfg, ins, image, n, generic_context);
12247                                         } else {
12248                                                 EMIT_NEW_PCONST (cfg, ins, handle);
12249                                         }
12250                                         EMIT_NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
12251                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, addr->dreg, 0, ins->dreg);
12252                                         EMIT_NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
12253                                 }
12254                         }
12255
12256                         *sp++ = ins;
12257                         ip += 5;
12258                         break;
12259                 }
12260                 case CEE_THROW:
12261                         CHECK_STACK (1);
12262                         MONO_INST_NEW (cfg, ins, OP_THROW);
12263                         --sp;
12264                         ins->sreg1 = sp [0]->dreg;
12265                         ip++;
12266                         cfg->cbb->out_of_line = TRUE;
12267                         MONO_ADD_INS (cfg->cbb, ins);
12268                         MONO_INST_NEW (cfg, ins, OP_NOT_REACHED);
12269                         MONO_ADD_INS (cfg->cbb, ins);
12270                         sp = stack_start;
12271                         
12272                         link_bblock (cfg, cfg->cbb, end_bblock);
12273                         start_new_bblock = 1;
12274                         /* This can complicate code generation for llvm since the return value might not be defined */
12275                         if (COMPILE_LLVM (cfg))
12276                                 INLINE_FAILURE ("throw");
12277                         break;
12278                 case CEE_ENDFINALLY:
12279                         /* mono_save_seq_point_info () depends on this */
12280                         if (sp != stack_start)
12281                                 emit_seq_point (cfg, method, ip, FALSE, FALSE);
12282                         MONO_INST_NEW (cfg, ins, OP_ENDFINALLY);
12283                         MONO_ADD_INS (cfg->cbb, ins);
12284                         ip++;
12285                         start_new_bblock = 1;
12286
12287                         /*
12288                          * Control will leave the method so empty the stack, otherwise
12289                          * the next basic block will start with a nonempty stack.
12290                          */
12291                         while (sp != stack_start) {
12292                                 sp--;
12293                         }
12294                         break;
12295                 case CEE_LEAVE:
12296                 case CEE_LEAVE_S: {
12297                         GList *handlers;
12298
12299                         if (*ip == CEE_LEAVE) {
12300                                 CHECK_OPSIZE (5);
12301                                 target = ip + 5 + (gint32)read32(ip + 1);
12302                         } else {
12303                                 CHECK_OPSIZE (2);
12304                                 target = ip + 2 + (signed char)(ip [1]);
12305                         }
12306
12307                         /* empty the stack */
12308                         while (sp != stack_start) {
12309                                 sp--;
12310                         }
12311
12312                         /* 
12313                          * If this leave statement is in a catch block, check for a
12314                          * pending exception, and rethrow it if necessary.
12315                          * We avoid doing this in runtime invoke wrappers, since those are called
12316                          * by native code which excepts the wrapper to catch all exceptions.
12317                          */
12318                         for (i = 0; i < header->num_clauses; ++i) {
12319                                 MonoExceptionClause *clause = &header->clauses [i];
12320
12321                                 /* 
12322                                  * Use <= in the final comparison to handle clauses with multiple
12323                                  * leave statements, like in bug #78024.
12324                                  * The ordering of the exception clauses guarantees that we find the
12325                                  * innermost clause.
12326                                  */
12327                                 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) {
12328                                         MonoInst *exc_ins;
12329                                         MonoBasicBlock *dont_throw;
12330
12331                                         /*
12332                                           MonoInst *load;
12333
12334                                           NEW_TEMPLOAD (cfg, load, mono_find_exvar_for_offset (cfg, clause->handler_offset)->inst_c0);
12335                                         */
12336
12337                                         exc_ins = mono_emit_jit_icall (cfg, mono_thread_get_undeniable_exception, NULL);
12338
12339                                         NEW_BBLOCK (cfg, dont_throw);
12340
12341                                         /*
12342                                          * Currently, we always rethrow the abort exception, despite the 
12343                                          * fact that this is not correct. See thread6.cs for an example. 
12344                                          * But propagating the abort exception is more important than 
12345                                          * getting the sematics right.
12346                                          */
12347                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, exc_ins->dreg, 0);
12348                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, dont_throw);
12349                                         MONO_EMIT_NEW_UNALU (cfg, OP_THROW, -1, exc_ins->dreg);
12350
12351                                         MONO_START_BB (cfg, dont_throw);
12352                                 }
12353                         }
12354
12355 #ifdef ENABLE_LLVM
12356                         cfg->cbb->try_end = (intptr_t)(ip - header->code);
12357 #endif
12358
12359                         if ((handlers = mono_find_final_block (cfg, ip, target, MONO_EXCEPTION_CLAUSE_FINALLY))) {
12360                                 GList *tmp;
12361                                 MonoExceptionClause *clause;
12362
12363                                 for (tmp = handlers; tmp; tmp = tmp->next) {
12364                                         clause = (MonoExceptionClause *)tmp->data;
12365                                         tblock = cfg->cil_offset_to_bb [clause->handler_offset];
12366                                         g_assert (tblock);
12367                                         link_bblock (cfg, cfg->cbb, tblock);
12368                                         MONO_INST_NEW (cfg, ins, OP_CALL_HANDLER);
12369                                         ins->inst_target_bb = tblock;
12370                                         ins->inst_eh_block = clause;
12371                                         MONO_ADD_INS (cfg->cbb, ins);
12372                                         cfg->cbb->has_call_handler = 1;
12373                                         if (COMPILE_LLVM (cfg)) {
12374                                                 MonoBasicBlock *target_bb;
12375
12376                                                 /* 
12377                                                  * Link the finally bblock with the target, since it will
12378                                                  * conceptually branch there.
12379                                                  */
12380                                                 GET_BBLOCK (cfg, tblock, cfg->cil_start + clause->handler_offset + clause->handler_len - 1);
12381                                                 GET_BBLOCK (cfg, target_bb, target);
12382                                                 link_bblock (cfg, tblock, target_bb);
12383                                         }
12384                                 }
12385                                 g_list_free (handlers);
12386                         } 
12387
12388                         MONO_INST_NEW (cfg, ins, OP_BR);
12389                         MONO_ADD_INS (cfg->cbb, ins);
12390                         GET_BBLOCK (cfg, tblock, target);
12391                         link_bblock (cfg, cfg->cbb, tblock);
12392                         ins->inst_target_bb = tblock;
12393
12394                         start_new_bblock = 1;
12395
12396                         if (*ip == CEE_LEAVE)
12397                                 ip += 5;
12398                         else
12399                                 ip += 2;
12400
12401                         break;
12402                 }
12403
12404                         /*
12405                          * Mono specific opcodes
12406                          */
12407                 case MONO_CUSTOM_PREFIX: {
12408
12409                         g_assert (method->wrapper_type != MONO_WRAPPER_NONE);
12410
12411                         CHECK_OPSIZE (2);
12412                         switch (ip [1]) {
12413                         case CEE_MONO_ICALL: {
12414                                 gpointer func;
12415                                 MonoJitICallInfo *info;
12416
12417                                 token = read32 (ip + 2);
12418                                 func = mono_method_get_wrapper_data (method, token);
12419                                 info = mono_find_jit_icall_by_addr (func);
12420                                 if (!info)
12421                                         g_error ("Could not find icall address in wrapper %s", mono_method_full_name (method, 1));
12422                                 g_assert (info);
12423
12424                                 CHECK_STACK (info->sig->param_count);
12425                                 sp -= info->sig->param_count;
12426
12427                                 ins = mono_emit_jit_icall (cfg, info->func, sp);
12428                                 if (!MONO_TYPE_IS_VOID (info->sig->ret))
12429                                         *sp++ = ins;
12430
12431                                 ip += 6;
12432                                 inline_costs += 10 * num_calls++;
12433
12434                                 break;
12435                         }
12436                         case CEE_MONO_LDPTR_CARD_TABLE:
12437                         case CEE_MONO_LDPTR_NURSERY_START:
12438                         case CEE_MONO_LDPTR_NURSERY_BITS:
12439                         case CEE_MONO_LDPTR_INT_REQ_FLAG: {
12440                                 CHECK_STACK_OVF (1);
12441
12442                                 switch (ip [1]) {
12443                                         case CEE_MONO_LDPTR_CARD_TABLE:
12444                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_CARD_TABLE_ADDR, NULL);
12445                                                 break;
12446                                         case CEE_MONO_LDPTR_NURSERY_START:
12447                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_NURSERY_START, NULL);
12448                                                 break;
12449                                         case CEE_MONO_LDPTR_NURSERY_BITS:
12450                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_GC_NURSERY_BITS, NULL);
12451                                                 break;
12452                                         case CEE_MONO_LDPTR_INT_REQ_FLAG:
12453                                                 ins = emit_runtime_constant (cfg, MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG, NULL);
12454                                                 break;
12455                                 }
12456
12457                                 *sp++ = ins;
12458                                 ip += 2;
12459                                 inline_costs += 10 * num_calls++;
12460                                 break;
12461                         }
12462                         case CEE_MONO_LDPTR: {
12463                                 gpointer ptr;
12464
12465                                 CHECK_STACK_OVF (1);
12466                                 CHECK_OPSIZE (6);
12467                                 token = read32 (ip + 2);
12468
12469                                 ptr = mono_method_get_wrapper_data (method, token);
12470                                 EMIT_NEW_PCONST (cfg, ins, ptr);
12471                                 *sp++ = ins;
12472                                 ip += 6;
12473                                 inline_costs += 10 * num_calls++;
12474                                 /* Can't embed random pointers into AOT code */
12475                                 DISABLE_AOT (cfg);
12476                                 break;
12477                         }
12478                         case CEE_MONO_JIT_ICALL_ADDR: {
12479                                 MonoJitICallInfo *callinfo;
12480                                 gpointer ptr;
12481
12482                                 CHECK_STACK_OVF (1);
12483                                 CHECK_OPSIZE (6);
12484                                 token = read32 (ip + 2);
12485
12486                                 ptr = mono_method_get_wrapper_data (method, token);
12487                                 callinfo = mono_find_jit_icall_by_addr (ptr);
12488                                 g_assert (callinfo);
12489                                 EMIT_NEW_JIT_ICALL_ADDRCONST (cfg, ins, (char*)callinfo->name);
12490                                 *sp++ = ins;
12491                                 ip += 6;
12492                                 inline_costs += 10 * num_calls++;
12493                                 break;
12494                         }
12495                         case CEE_MONO_ICALL_ADDR: {
12496                                 MonoMethod *cmethod;
12497                                 gpointer ptr;
12498
12499                                 CHECK_STACK_OVF (1);
12500                                 CHECK_OPSIZE (6);
12501                                 token = read32 (ip + 2);
12502
12503                                 cmethod = (MonoMethod *)mono_method_get_wrapper_data (method, token);
12504
12505                                 if (cfg->compile_aot) {
12506                                         EMIT_NEW_AOTCONST (cfg, ins, MONO_PATCH_INFO_ICALL_ADDR, cmethod);
12507                                 } else {
12508                                         ptr = mono_lookup_internal_call (cmethod);
12509                                         g_assert (ptr);
12510                                         EMIT_NEW_PCONST (cfg, ins, ptr);
12511                                 }
12512                                 *sp++ = ins;
12513                                 ip += 6;
12514                                 break;
12515                         }
12516                         case CEE_MONO_VTADDR: {
12517                                 MonoInst *src_var, *src;
12518
12519                                 CHECK_STACK (1);
12520                                 --sp;
12521
12522                                 // FIXME:
12523                                 src_var = get_vreg_to_inst (cfg, sp [0]->dreg);
12524                                 EMIT_NEW_VARLOADA ((cfg), (src), src_var, src_var->inst_vtype);
12525                                 *sp++ = src;
12526                                 ip += 2;
12527                                 break;
12528                         }
12529                         case CEE_MONO_NEWOBJ: {
12530                                 MonoInst *iargs [2];
12531
12532                                 CHECK_STACK_OVF (1);
12533                                 CHECK_OPSIZE (6);
12534                                 token = read32 (ip + 2);
12535                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
12536                                 mono_class_init (klass);
12537                                 NEW_DOMAINCONST (cfg, iargs [0]);
12538                                 MONO_ADD_INS (cfg->cbb, iargs [0]);
12539                                 NEW_CLASSCONST (cfg, iargs [1], klass);
12540                                 MONO_ADD_INS (cfg->cbb, iargs [1]);
12541                                 *sp++ = mono_emit_jit_icall (cfg, ves_icall_object_new, iargs);
12542                                 ip += 6;
12543                                 inline_costs += 10 * num_calls++;
12544                                 break;
12545                         }
12546                         case CEE_MONO_OBJADDR:
12547                                 CHECK_STACK (1);
12548                                 --sp;
12549                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
12550                                 ins->dreg = alloc_ireg_mp (cfg);
12551                                 ins->sreg1 = sp [0]->dreg;
12552                                 ins->type = STACK_MP;
12553                                 MONO_ADD_INS (cfg->cbb, ins);
12554                                 *sp++ = ins;
12555                                 ip += 2;
12556                                 break;
12557                         case CEE_MONO_LDNATIVEOBJ:
12558                                 /*
12559                                  * Similar to LDOBJ, but instead load the unmanaged 
12560                                  * representation of the vtype to the stack.
12561                                  */
12562                                 CHECK_STACK (1);
12563                                 CHECK_OPSIZE (6);
12564                                 --sp;
12565                                 token = read32 (ip + 2);
12566                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
12567                                 g_assert (klass->valuetype);
12568                                 mono_class_init (klass);
12569
12570                                 {
12571                                         MonoInst *src, *dest, *temp;
12572
12573                                         src = sp [0];
12574                                         temp = mono_compile_create_var (cfg, &klass->byval_arg, OP_LOCAL);
12575                                         temp->backend.is_pinvoke = 1;
12576                                         EMIT_NEW_TEMPLOADA (cfg, dest, temp->inst_c0);
12577                                         mini_emit_stobj (cfg, dest, src, klass, TRUE);
12578
12579                                         EMIT_NEW_TEMPLOAD (cfg, dest, temp->inst_c0);
12580                                         dest->type = STACK_VTYPE;
12581                                         dest->klass = klass;
12582
12583                                         *sp ++ = dest;
12584                                         ip += 6;
12585                                 }
12586                                 break;
12587                         case CEE_MONO_RETOBJ: {
12588                                 /*
12589                                  * Same as RET, but return the native representation of a vtype
12590                                  * to the caller.
12591                                  */
12592                                 g_assert (cfg->ret);
12593                                 g_assert (mono_method_signature (method)->pinvoke); 
12594                                 CHECK_STACK (1);
12595                                 --sp;
12596                                 
12597                                 CHECK_OPSIZE (6);
12598                                 token = read32 (ip + 2);    
12599                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
12600
12601                                 if (!cfg->vret_addr) {
12602                                         g_assert (cfg->ret_var_is_local);
12603
12604                                         EMIT_NEW_VARLOADA (cfg, ins, cfg->ret, cfg->ret->inst_vtype);
12605                                 } else {
12606                                         EMIT_NEW_RETLOADA (cfg, ins);
12607                                 }
12608                                 mini_emit_stobj (cfg, ins, sp [0], klass, TRUE);
12609                                 
12610                                 if (sp != stack_start)
12611                                         UNVERIFIED;
12612                                 
12613                                 MONO_INST_NEW (cfg, ins, OP_BR);
12614                                 ins->inst_target_bb = end_bblock;
12615                                 MONO_ADD_INS (cfg->cbb, ins);
12616                                 link_bblock (cfg, cfg->cbb, end_bblock);
12617                                 start_new_bblock = 1;
12618                                 ip += 6;
12619                                 break;
12620                         }
12621                         case CEE_MONO_CISINST:
12622                         case CEE_MONO_CCASTCLASS: {
12623                                 int token;
12624                                 CHECK_STACK (1);
12625                                 --sp;
12626                                 CHECK_OPSIZE (6);
12627                                 token = read32 (ip + 2);
12628                                 klass = (MonoClass *)mono_method_get_wrapper_data (method, token);
12629                                 if (ip [1] == CEE_MONO_CISINST)
12630                                         ins = handle_cisinst (cfg, klass, sp [0]);
12631                                 else
12632                                         ins = handle_ccastclass (cfg, klass, sp [0]);
12633                                 *sp++ = ins;
12634                                 ip += 6;
12635                                 break;
12636                         }
12637                         case CEE_MONO_SAVE_LMF:
12638                         case CEE_MONO_RESTORE_LMF:
12639                                 ip += 2;
12640                                 break;
12641                         case CEE_MONO_CLASSCONST:
12642                                 CHECK_STACK_OVF (1);
12643                                 CHECK_OPSIZE (6);
12644                                 token = read32 (ip + 2);
12645                                 EMIT_NEW_CLASSCONST (cfg, ins, mono_method_get_wrapper_data (method, token));
12646                                 *sp++ = ins;
12647                                 ip += 6;
12648                                 inline_costs += 10 * num_calls++;
12649                                 break;
12650                         case CEE_MONO_NOT_TAKEN:
12651                                 cfg->cbb->out_of_line = TRUE;
12652                                 ip += 2;
12653                                 break;
12654                         case CEE_MONO_TLS: {
12655                                 MonoTlsKey key;
12656
12657                                 CHECK_STACK_OVF (1);
12658                                 CHECK_OPSIZE (6);
12659                                 key = (MonoTlsKey)read32 (ip + 2);
12660                                 g_assert (key < TLS_KEY_NUM);
12661
12662                                 ins = mono_create_tls_get (cfg, key);
12663                                 if (!ins) {
12664                                         if (cfg->compile_aot) {
12665                                                 DISABLE_AOT (cfg);
12666                                                 MONO_INST_NEW (cfg, ins, OP_TLS_GET);
12667                                                 ins->dreg = alloc_preg (cfg);
12668                                                 ins->type = STACK_PTR;
12669                                         } else {
12670                                                 g_assert_not_reached ();
12671                                         }
12672                                 }
12673                                 ins->type = STACK_PTR;
12674                                 MONO_ADD_INS (cfg->cbb, ins);
12675                                 *sp++ = ins;
12676                                 ip += 6;
12677                                 break;
12678                         }
12679                         case CEE_MONO_DYN_CALL: {
12680                                 MonoCallInst *call;
12681
12682                                 /* It would be easier to call a trampoline, but that would put an
12683                                  * extra frame on the stack, confusing exception handling. So
12684                                  * implement it inline using an opcode for now.
12685                                  */
12686
12687                                 if (!cfg->dyn_call_var) {
12688                                         cfg->dyn_call_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
12689                                         /* prevent it from being register allocated */
12690                                         cfg->dyn_call_var->flags |= MONO_INST_VOLATILE;
12691                                 }
12692
12693                                 /* Has to use a call inst since it local regalloc expects it */
12694                                 MONO_INST_NEW_CALL (cfg, call, OP_DYN_CALL);
12695                                 ins = (MonoInst*)call;
12696                                 sp -= 2;
12697                                 ins->sreg1 = sp [0]->dreg;
12698                                 ins->sreg2 = sp [1]->dreg;
12699                                 MONO_ADD_INS (cfg->cbb, ins);
12700
12701                                 cfg->param_area = MAX (cfg->param_area, cfg->backend->dyn_call_param_area);
12702
12703                                 ip += 2;
12704                                 inline_costs += 10 * num_calls++;
12705
12706                                 break;
12707                         }
12708                         case CEE_MONO_MEMORY_BARRIER: {
12709                                 CHECK_OPSIZE (6);
12710                                 emit_memory_barrier (cfg, (int)read32 (ip + 2));
12711                                 ip += 6;
12712                                 break;
12713                         }
12714                         case CEE_MONO_ATOMIC_STORE_I4: {
12715                                 g_assert (mono_arch_opcode_supported (OP_ATOMIC_STORE_I4));
12716
12717                                 CHECK_OPSIZE (6);
12718                                 CHECK_STACK (2);
12719                                 sp -= 2;
12720
12721                                 MONO_INST_NEW (cfg, ins, OP_ATOMIC_STORE_I4);
12722                                 ins->dreg = sp [0]->dreg;
12723                                 ins->sreg1 = sp [1]->dreg;
12724                                 ins->backend.memory_barrier_kind = (int) read32 (ip + 2);
12725                                 MONO_ADD_INS (cfg->cbb, ins);
12726
12727                                 ip += 6;
12728                                 break;
12729                         }
12730                         case CEE_MONO_JIT_ATTACH: {
12731                                 MonoInst *args [16], *domain_ins;
12732                                 MonoInst *ad_ins, *jit_tls_ins;
12733                                 MonoBasicBlock *next_bb = NULL, *call_bb = NULL;
12734
12735                                 g_assert (!mono_threads_is_coop_enabled ());
12736
12737                                 cfg->orig_domain_var = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
12738
12739                                 EMIT_NEW_PCONST (cfg, ins, NULL);
12740                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->orig_domain_var->dreg, ins->dreg);
12741
12742                                 ad_ins = mono_get_domain_intrinsic (cfg);
12743                                 jit_tls_ins = mono_get_jit_tls_intrinsic (cfg);
12744
12745                                 if (cfg->backend->have_tls_get && ad_ins && jit_tls_ins) {
12746                                         NEW_BBLOCK (cfg, next_bb);
12747                                         NEW_BBLOCK (cfg, call_bb);
12748
12749                                         if (cfg->compile_aot) {
12750                                                 /* AOT code is only used in the root domain */
12751                                                 EMIT_NEW_PCONST (cfg, domain_ins, NULL);
12752                                         } else {
12753                                                 EMIT_NEW_PCONST (cfg, domain_ins, cfg->domain);
12754                                         }
12755                                         MONO_ADD_INS (cfg->cbb, ad_ins);
12756                                         MONO_EMIT_NEW_BIALU (cfg, OP_COMPARE, -1, ad_ins->dreg, domain_ins->dreg);
12757                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, call_bb);
12758
12759                                         MONO_ADD_INS (cfg->cbb, jit_tls_ins);
12760                                         MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, jit_tls_ins->dreg, 0);
12761                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBEQ, call_bb);
12762
12763                                         MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, next_bb);
12764                                         MONO_START_BB (cfg, call_bb);
12765                                 }
12766
12767                                 /* AOT code is only used in the root domain */
12768                                 EMIT_NEW_PCONST (cfg, args [0], cfg->compile_aot ? NULL : cfg->domain);
12769                                 ins = mono_emit_jit_icall (cfg, mono_jit_thread_attach, args);
12770                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->orig_domain_var->dreg, ins->dreg);
12771
12772                                 if (next_bb)
12773                                         MONO_START_BB (cfg, next_bb);
12774
12775
12776                                 ip += 2;
12777                                 break;
12778                         }
12779                         case CEE_MONO_JIT_DETACH: {
12780                                 MonoInst *args [16];
12781
12782                                 /* Restore the original domain */
12783                                 dreg = alloc_ireg (cfg);
12784                                 EMIT_NEW_UNALU (cfg, args [0], OP_MOVE, dreg, cfg->orig_domain_var->dreg);
12785                                 mono_emit_jit_icall (cfg, mono_jit_set_domain, args);
12786                                 ip += 2;
12787                                 break;
12788                         }
12789                         case CEE_MONO_CALLI_EXTRA_ARG: {
12790                                 MonoInst *addr;
12791                                 MonoMethodSignature *fsig;
12792                                 MonoInst *arg;
12793
12794                                 /*
12795                                  * This is the same as CEE_CALLI, but passes an additional argument
12796                                  * to the called method in llvmonly mode.
12797                                  * This is only used by delegate invoke wrappers to call the
12798                                  * actual delegate method.
12799                                  */
12800                                 g_assert (method->wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE);
12801
12802                                 CHECK_OPSIZE (6);
12803                                 token = read32 (ip + 2);
12804
12805                                 ins = NULL;
12806
12807                                 cmethod = NULL;
12808                                 CHECK_STACK (1);
12809                                 --sp;
12810                                 addr = *sp;
12811                                 fsig = mini_get_signature (method, token, generic_context, &cfg->error);
12812                                 CHECK_CFG_ERROR;
12813
12814                                 if (cfg->llvm_only)
12815                                         cfg->signatures = g_slist_prepend_mempool (cfg->mempool, cfg->signatures, fsig);
12816
12817                                 n = fsig->param_count + fsig->hasthis + 1;
12818
12819                                 CHECK_STACK (n);
12820
12821                                 sp -= n;
12822                                 arg = sp [n - 1];
12823
12824                                 if (cfg->llvm_only) {
12825                                         /*
12826                                          * The lowest bit of 'arg' determines whenever the callee uses the gsharedvt
12827                                          * cconv. This is set by mono_init_delegate ().
12828                                          */
12829                                         if (cfg->gsharedvt && mini_is_gsharedvt_variable_signature (fsig)) {
12830                                                 MonoInst *callee = addr;
12831                                                 MonoInst *call, *localloc_ins;
12832                                                 MonoBasicBlock *is_gsharedvt_bb, *end_bb;
12833                                                 int low_bit_reg = alloc_preg (cfg);
12834
12835                                                 NEW_BBLOCK (cfg, is_gsharedvt_bb);
12836                                                 NEW_BBLOCK (cfg, end_bb);
12837
12838                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PAND_IMM, low_bit_reg, arg->dreg, 1);
12839                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, low_bit_reg, 0);
12840                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, is_gsharedvt_bb);
12841
12842                                                 /* Normal case: callee uses a normal cconv, have to add an out wrapper */
12843                                                 addr = emit_get_rgctx_sig (cfg, context_used,
12844                                                                                                    fsig, MONO_RGCTX_INFO_SIG_GSHAREDVT_OUT_TRAMPOLINE_CALLI);
12845                                                 /*
12846                                                  * ADDR points to a gsharedvt-out wrapper, have to pass <callee, arg> as an extra arg.
12847                                                  */
12848                                                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC_IMM);
12849                                                 ins->dreg = alloc_preg (cfg);
12850                                                 ins->inst_imm = 2 * SIZEOF_VOID_P;
12851                                                 MONO_ADD_INS (cfg->cbb, ins);
12852                                                 localloc_ins = ins;
12853                                                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
12854                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, 0, callee->dreg);
12855                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, SIZEOF_VOID_P, arg->dreg);
12856
12857                                                 call = emit_extra_arg_calli (cfg, fsig, sp, localloc_ins->dreg, addr);
12858                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
12859
12860                                                 /* Gsharedvt case: callee uses a gsharedvt cconv, no conversion is needed */
12861                                                 MONO_START_BB (cfg, is_gsharedvt_bb);
12862                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PXOR_IMM, arg->dreg, arg->dreg, 1);
12863                                                 ins = emit_extra_arg_calli (cfg, fsig, sp, arg->dreg, callee);
12864                                                 ins->dreg = call->dreg;
12865
12866                                                 MONO_START_BB (cfg, end_bb);
12867                                         } else {
12868                                                 /* Caller uses a normal calling conv */
12869
12870                                                 MonoInst *callee = addr;
12871                                                 MonoInst *call, *localloc_ins;
12872                                                 MonoBasicBlock *is_gsharedvt_bb, *end_bb;
12873                                                 int low_bit_reg = alloc_preg (cfg);
12874
12875                                                 NEW_BBLOCK (cfg, is_gsharedvt_bb);
12876                                                 NEW_BBLOCK (cfg, end_bb);
12877
12878                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PAND_IMM, low_bit_reg, arg->dreg, 1);
12879                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, low_bit_reg, 0);
12880                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_PBNE_UN, is_gsharedvt_bb);
12881
12882                                                 /* Normal case: callee uses a normal cconv, no conversion is needed */
12883                                                 call = emit_extra_arg_calli (cfg, fsig, sp, arg->dreg, callee);
12884                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
12885                                                 /* Gsharedvt case: callee uses a gsharedvt cconv, have to add an in wrapper */
12886                                                 MONO_START_BB (cfg, is_gsharedvt_bb);
12887                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_PXOR_IMM, arg->dreg, arg->dreg, 1);
12888                                                 NEW_AOTCONST (cfg, addr, MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER, fsig);
12889                                                 MONO_ADD_INS (cfg->cbb, addr);
12890                                                 /*
12891                                                  * ADDR points to a gsharedvt-in wrapper, have to pass <callee, arg> as an extra arg.
12892                                                  */
12893                                                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC_IMM);
12894                                                 ins->dreg = alloc_preg (cfg);
12895                                                 ins->inst_imm = 2 * SIZEOF_VOID_P;
12896                                                 MONO_ADD_INS (cfg->cbb, ins);
12897                                                 localloc_ins = ins;
12898                                                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
12899                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, 0, callee->dreg);
12900                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, localloc_ins->dreg, SIZEOF_VOID_P, arg->dreg);
12901
12902                                                 ins = emit_extra_arg_calli (cfg, fsig, sp, localloc_ins->dreg, addr);
12903                                                 ins->dreg = call->dreg;
12904                                                 MONO_EMIT_NEW_BRANCH_BLOCK (cfg, OP_BR, end_bb);
12905
12906                                                 MONO_START_BB (cfg, end_bb);
12907                                         }
12908                                 } else {
12909                                         /* Same as CEE_CALLI */
12910                                         if (cfg->gsharedvt && mini_is_gsharedvt_signature (fsig)) {
12911                                                 /*
12912                                                  * We pass the address to the gsharedvt trampoline in the rgctx reg
12913                                                  */
12914                                                 MonoInst *callee = addr;
12915
12916                                                 addr = emit_get_rgctx_sig (cfg, context_used,
12917                                                                                                    fsig, MONO_RGCTX_INFO_SIG_GSHAREDVT_OUT_TRAMPOLINE_CALLI);
12918                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, callee);
12919                                         } else {
12920                                                 ins = (MonoInst*)mono_emit_calli (cfg, fsig, sp, addr, NULL, NULL);
12921                                         }
12922                                 }
12923
12924                                 if (!MONO_TYPE_IS_VOID (fsig->ret))
12925                                         *sp++ = mono_emit_widen_call_res (cfg, ins, fsig);
12926
12927                                 CHECK_CFG_EXCEPTION;
12928
12929                                 ip += 6;
12930                                 ins_flag = 0;
12931                                 constrained_class = NULL;
12932                                 break;
12933                         }
12934                         case CEE_MONO_LDDOMAIN:
12935                                 CHECK_STACK_OVF (1);
12936                                 EMIT_NEW_PCONST (cfg, ins, cfg->compile_aot ? NULL : cfg->domain);
12937                                 ip += 2;
12938                                 *sp++ = ins;
12939                                 break;
12940                         default:
12941                                 g_error ("opcode 0x%02x 0x%02x not handled", MONO_CUSTOM_PREFIX, ip [1]);
12942                                 break;
12943                         }
12944                         break;
12945                 }
12946
12947                 case CEE_PREFIX1: {
12948                         CHECK_OPSIZE (2);
12949                         switch (ip [1]) {
12950                         case CEE_ARGLIST: {
12951                                 /* somewhat similar to LDTOKEN */
12952                                 MonoInst *addr, *vtvar;
12953                                 CHECK_STACK_OVF (1);
12954                                 vtvar = mono_compile_create_var (cfg, &mono_defaults.argumenthandle_class->byval_arg, OP_LOCAL); 
12955
12956                                 EMIT_NEW_TEMPLOADA (cfg, addr, vtvar->inst_c0);
12957                                 EMIT_NEW_UNALU (cfg, ins, OP_ARGLIST, -1, addr->dreg);
12958
12959                                 EMIT_NEW_TEMPLOAD (cfg, ins, vtvar->inst_c0);
12960                                 ins->type = STACK_VTYPE;
12961                                 ins->klass = mono_defaults.argumenthandle_class;
12962                                 *sp++ = ins;
12963                                 ip += 2;
12964                                 break;
12965                         }
12966                         case CEE_CEQ:
12967                         case CEE_CGT:
12968                         case CEE_CGT_UN:
12969                         case CEE_CLT:
12970                         case CEE_CLT_UN: {
12971                                 MonoInst *cmp, *arg1, *arg2;
12972
12973                                 CHECK_STACK (2);
12974                                 sp -= 2;
12975                                 arg1 = sp [0];
12976                                 arg2 = sp [1];
12977
12978                                 /*
12979                                  * The following transforms:
12980                                  *    CEE_CEQ    into OP_CEQ
12981                                  *    CEE_CGT    into OP_CGT
12982                                  *    CEE_CGT_UN into OP_CGT_UN
12983                                  *    CEE_CLT    into OP_CLT
12984                                  *    CEE_CLT_UN into OP_CLT_UN
12985                                  */
12986                                 MONO_INST_NEW (cfg, cmp, (OP_CEQ - CEE_CEQ) + ip [1]);
12987
12988                                 MONO_INST_NEW (cfg, ins, cmp->opcode);
12989                                 cmp->sreg1 = arg1->dreg;
12990                                 cmp->sreg2 = arg2->dreg;
12991                                 type_from_op (cfg, cmp, arg1, arg2);
12992                                 CHECK_TYPE (cmp);
12993                                 add_widen_op (cfg, cmp, &arg1, &arg2);
12994                                 if ((arg1->type == STACK_I8) || ((SIZEOF_VOID_P == 8) && ((arg1->type == STACK_PTR) || (arg1->type == STACK_OBJ) || (arg1->type == STACK_MP))))
12995                                         cmp->opcode = OP_LCOMPARE;
12996                                 else if (arg1->type == STACK_R4)
12997                                         cmp->opcode = OP_RCOMPARE;
12998                                 else if (arg1->type == STACK_R8)
12999                                         cmp->opcode = OP_FCOMPARE;
13000                                 else
13001                                         cmp->opcode = OP_ICOMPARE;
13002                                 MONO_ADD_INS (cfg->cbb, cmp);
13003                                 ins->type = STACK_I4;
13004                                 ins->dreg = alloc_dreg (cfg, (MonoStackType)ins->type);
13005                                 type_from_op (cfg, ins, arg1, arg2);
13006
13007                                 if (cmp->opcode == OP_FCOMPARE || cmp->opcode == OP_RCOMPARE) {
13008                                         /*
13009                                          * The backends expect the fceq opcodes to do the
13010                                          * comparison too.
13011                                          */
13012                                         ins->sreg1 = cmp->sreg1;
13013                                         ins->sreg2 = cmp->sreg2;
13014                                         NULLIFY_INS (cmp);
13015                                 }
13016                                 MONO_ADD_INS (cfg->cbb, ins);
13017                                 *sp++ = ins;
13018                                 ip += 2;
13019                                 break;
13020                         }
13021                         case CEE_LDFTN: {
13022                                 MonoInst *argconst;
13023                                 MonoMethod *cil_method;
13024
13025                                 CHECK_STACK_OVF (1);
13026                                 CHECK_OPSIZE (6);
13027                                 n = read32 (ip + 2);
13028                                 cmethod = mini_get_method (cfg, method, n, NULL, generic_context);
13029                                 CHECK_CFG_ERROR;
13030
13031                                 mono_class_init (cmethod->klass);
13032
13033                                 mono_save_token_info (cfg, image, n, cmethod);
13034
13035                                 context_used = mini_method_check_context_used (cfg, cmethod);
13036
13037                                 cil_method = cmethod;
13038                                 if (!dont_verify && !cfg->skip_visibility && !mono_method_can_access_method (method, cmethod))
13039                                         emit_method_access_failure (cfg, method, cil_method);
13040
13041                                 if (mono_security_core_clr_enabled ())
13042                                         ensure_method_is_allowed_to_call_method (cfg, method, cmethod);
13043
13044                                 /* 
13045                                  * Optimize the common case of ldftn+delegate creation
13046                                  */
13047                                 if ((sp > stack_start) && (ip + 6 + 5 < end) && ip_in_bb (cfg, cfg->cbb, ip + 6) && (ip [6] == CEE_NEWOBJ)) {
13048                                         MonoMethod *ctor_method = mini_get_method (cfg, method, read32 (ip + 7), NULL, generic_context);
13049                                         if (ctor_method && (ctor_method->klass->parent == mono_defaults.multicastdelegate_class)) {
13050                                                 MonoInst *target_ins, *handle_ins;
13051                                                 MonoMethod *invoke;
13052                                                 int invoke_context_used;
13053
13054                                                 invoke = mono_get_delegate_invoke (ctor_method->klass);
13055                                                 if (!invoke || !mono_method_signature (invoke))
13056                                                         LOAD_ERROR;
13057
13058                                                 invoke_context_used = mini_method_check_context_used (cfg, invoke);
13059
13060                                                 target_ins = sp [-1];
13061
13062                                                 if (mono_security_core_clr_enabled ())
13063                                                         ensure_method_is_allowed_to_call_method (cfg, method, ctor_method);
13064
13065                                                 if (!(cmethod->flags & METHOD_ATTRIBUTE_STATIC)) {
13066                                                         /*LAME IMPL: We must not add a null check for virtual invoke delegates.*/
13067                                                         if (mono_method_signature (invoke)->param_count == mono_method_signature (cmethod)->param_count) {
13068                                                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_COMPARE_IMM, -1, target_ins->dreg, 0);
13069                                                                 MONO_EMIT_NEW_COND_EXC (cfg, EQ, "ArgumentException");
13070                                                         }
13071                                                 }
13072
13073                                                 /* FIXME: SGEN support */
13074                                                 if (invoke_context_used == 0 || cfg->llvm_only) {
13075                                                         ip += 6;
13076                                                         if (cfg->verbose_level > 3)
13077                                                                 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));
13078                                                         if ((handle_ins = handle_delegate_ctor (cfg, ctor_method->klass, target_ins, cmethod, context_used, FALSE))) {
13079                                                                 sp --;
13080                                                                 *sp = handle_ins;
13081                                                                 CHECK_CFG_EXCEPTION;
13082                                                                 ip += 5;
13083                                                                 sp ++;
13084                                                                 break;
13085                                                         }
13086                                                         ip -= 6;
13087                                                 }
13088                                         }
13089                                 }
13090
13091                                 argconst = emit_get_rgctx_method (cfg, context_used, cmethod, MONO_RGCTX_INFO_METHOD);
13092                                 ins = mono_emit_jit_icall (cfg, mono_ldftn, &argconst);
13093                                 *sp++ = ins;
13094                                 
13095                                 ip += 6;
13096                                 inline_costs += 10 * num_calls++;
13097                                 break;
13098                         }
13099                         case CEE_LDVIRTFTN: {
13100                                 MonoInst *args [2];
13101
13102                                 CHECK_STACK (1);
13103                                 CHECK_OPSIZE (6);
13104                                 n = read32 (ip + 2);
13105                                 cmethod = mini_get_method (cfg, method, n, NULL, generic_context);
13106                                 CHECK_CFG_ERROR;
13107
13108                                 mono_class_init (cmethod->klass);
13109  
13110                                 context_used = mini_method_check_context_used (cfg, cmethod);
13111
13112                                 if (mono_security_core_clr_enabled ())
13113                                         ensure_method_is_allowed_to_call_method (cfg, method, cmethod);
13114
13115                                 /*
13116                                  * Optimize the common case of ldvirtftn+delegate creation
13117                                  */
13118                                 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)) {
13119                                         MonoMethod *ctor_method = mini_get_method (cfg, method, read32 (ip + 7), NULL, generic_context);
13120                                         if (ctor_method && (ctor_method->klass->parent == mono_defaults.multicastdelegate_class)) {
13121                                                 MonoInst *target_ins, *handle_ins;
13122                                                 MonoMethod *invoke;
13123                                                 int invoke_context_used;
13124                                                 gboolean is_virtual = cmethod->flags & METHOD_ATTRIBUTE_VIRTUAL;
13125
13126                                                 invoke = mono_get_delegate_invoke (ctor_method->klass);
13127                                                 if (!invoke || !mono_method_signature (invoke))
13128                                                         LOAD_ERROR;
13129
13130                                                 invoke_context_used = mini_method_check_context_used (cfg, invoke);
13131
13132                                                 target_ins = sp [-1];
13133
13134                                                 if (mono_security_core_clr_enabled ())
13135                                                         ensure_method_is_allowed_to_call_method (cfg, method, ctor_method);
13136
13137                                                 /* FIXME: SGEN support */
13138                                                 if (invoke_context_used == 0 || cfg->llvm_only) {
13139                                                         ip += 6;
13140                                                         if (cfg->verbose_level > 3)
13141                                                                 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));
13142                                                         if ((handle_ins = handle_delegate_ctor (cfg, ctor_method->klass, target_ins, cmethod, context_used, is_virtual))) {
13143                                                                 sp -= 2;
13144                                                                 *sp = handle_ins;
13145                                                                 CHECK_CFG_EXCEPTION;
13146                                                                 ip += 5;
13147                                                                 sp ++;
13148                                                                 break;
13149                                                         }
13150                                                         ip -= 6;
13151                                                 }
13152                                         }
13153                                 }
13154
13155                                 --sp;
13156                                 args [0] = *sp;
13157
13158                                 args [1] = emit_get_rgctx_method (cfg, context_used,
13159                                                                                                   cmethod, MONO_RGCTX_INFO_METHOD);
13160
13161                                 if (context_used)
13162                                         *sp++ = mono_emit_jit_icall (cfg, mono_ldvirtfn_gshared, args);
13163                                 else
13164                                         *sp++ = mono_emit_jit_icall (cfg, mono_ldvirtfn, args);
13165
13166                                 ip += 6;
13167                                 inline_costs += 10 * num_calls++;
13168                                 break;
13169                         }
13170                         case CEE_LDARG:
13171                                 CHECK_STACK_OVF (1);
13172                                 CHECK_OPSIZE (4);
13173                                 n = read16 (ip + 2);
13174                                 CHECK_ARG (n);
13175                                 EMIT_NEW_ARGLOAD (cfg, ins, n);
13176                                 *sp++ = ins;
13177                                 ip += 4;
13178                                 break;
13179                         case CEE_LDARGA:
13180                                 CHECK_STACK_OVF (1);
13181                                 CHECK_OPSIZE (4);
13182                                 n = read16 (ip + 2);
13183                                 CHECK_ARG (n);
13184                                 NEW_ARGLOADA (cfg, ins, n);
13185                                 MONO_ADD_INS (cfg->cbb, ins);
13186                                 *sp++ = ins;
13187                                 ip += 4;
13188                                 break;
13189                         case CEE_STARG:
13190                                 CHECK_STACK (1);
13191                                 --sp;
13192                                 CHECK_OPSIZE (4);
13193                                 n = read16 (ip + 2);
13194                                 CHECK_ARG (n);
13195                                 if (!dont_verify_stloc && target_type_is_incompatible (cfg, param_types [n], *sp))
13196                                         UNVERIFIED;
13197                                 EMIT_NEW_ARGSTORE (cfg, ins, n, *sp);
13198                                 ip += 4;
13199                                 break;
13200                         case CEE_LDLOC:
13201                                 CHECK_STACK_OVF (1);
13202                                 CHECK_OPSIZE (4);
13203                                 n = read16 (ip + 2);
13204                                 CHECK_LOCAL (n);
13205                                 EMIT_NEW_LOCLOAD (cfg, ins, n);
13206                                 *sp++ = ins;
13207                                 ip += 4;
13208                                 break;
13209                         case CEE_LDLOCA: {
13210                                 unsigned char *tmp_ip;
13211                                 CHECK_STACK_OVF (1);
13212                                 CHECK_OPSIZE (4);
13213                                 n = read16 (ip + 2);
13214                                 CHECK_LOCAL (n);
13215
13216                                 if ((tmp_ip = emit_optimized_ldloca_ir (cfg, ip, end, 2))) {
13217                                         ip = tmp_ip;
13218                                         inline_costs += 1;
13219                                         break;
13220                                 }                       
13221                                 
13222                                 EMIT_NEW_LOCLOADA (cfg, ins, n);
13223                                 *sp++ = ins;
13224                                 ip += 4;
13225                                 break;
13226                         }
13227                         case CEE_STLOC:
13228                                 CHECK_STACK (1);
13229                                 --sp;
13230                                 CHECK_OPSIZE (4);
13231                                 n = read16 (ip + 2);
13232                                 CHECK_LOCAL (n);
13233                                 if (!dont_verify_stloc && target_type_is_incompatible (cfg, header->locals [n], *sp))
13234                                         UNVERIFIED;
13235                                 emit_stloc_ir (cfg, sp, header, n);
13236                                 ip += 4;
13237                                 inline_costs += 1;
13238                                 break;
13239                         case CEE_LOCALLOC:
13240                                 CHECK_STACK (1);
13241                                 --sp;
13242                                 if (sp != stack_start) 
13243                                         UNVERIFIED;
13244                                 if (cfg->method != method) 
13245                                         /* 
13246                                          * Inlining this into a loop in a parent could lead to 
13247                                          * stack overflows which is different behavior than the
13248                                          * non-inlined case, thus disable inlining in this case.
13249                                          */
13250                                         INLINE_FAILURE("localloc");
13251
13252                                 MONO_INST_NEW (cfg, ins, OP_LOCALLOC);
13253                                 ins->dreg = alloc_preg (cfg);
13254                                 ins->sreg1 = sp [0]->dreg;
13255                                 ins->type = STACK_PTR;
13256                                 MONO_ADD_INS (cfg->cbb, ins);
13257
13258                                 cfg->flags |= MONO_CFG_HAS_ALLOCA;
13259                                 if (init_locals)
13260                                         ins->flags |= MONO_INST_INIT;
13261
13262                                 *sp++ = ins;
13263                                 ip += 2;
13264                                 break;
13265                         case CEE_ENDFILTER: {
13266                                 MonoExceptionClause *clause, *nearest;
13267                                 int cc;
13268
13269                                 CHECK_STACK (1);
13270                                 --sp;
13271                                 if ((sp != stack_start) || (sp [0]->type != STACK_I4)) 
13272                                         UNVERIFIED;
13273                                 MONO_INST_NEW (cfg, ins, OP_ENDFILTER);
13274                                 ins->sreg1 = (*sp)->dreg;
13275                                 MONO_ADD_INS (cfg->cbb, ins);
13276                                 start_new_bblock = 1;
13277                                 ip += 2;
13278
13279                                 nearest = NULL;
13280                                 for (cc = 0; cc < header->num_clauses; ++cc) {
13281                                         clause = &header->clauses [cc];
13282                                         if ((clause->flags & MONO_EXCEPTION_CLAUSE_FILTER) &&
13283                                                 ((ip - header->code) > clause->data.filter_offset && (ip - header->code) <= clause->handler_offset) &&
13284                                             (!nearest || (clause->data.filter_offset < nearest->data.filter_offset)))
13285                                                 nearest = clause;
13286                                 }
13287                                 g_assert (nearest);
13288                                 if ((ip - header->code) != nearest->handler_offset)
13289                                         UNVERIFIED;
13290
13291                                 break;
13292                         }
13293                         case CEE_UNALIGNED_:
13294                                 ins_flag |= MONO_INST_UNALIGNED;
13295                                 /* FIXME: record alignment? we can assume 1 for now */
13296                                 CHECK_OPSIZE (3);
13297                                 ip += 3;
13298                                 break;
13299                         case CEE_VOLATILE_:
13300                                 ins_flag |= MONO_INST_VOLATILE;
13301                                 ip += 2;
13302                                 break;
13303                         case CEE_TAIL_:
13304                                 ins_flag   |= MONO_INST_TAILCALL;
13305                                 cfg->flags |= MONO_CFG_HAS_TAIL;
13306                                 /* Can't inline tail calls at this time */
13307                                 inline_costs += 100000;
13308                                 ip += 2;
13309                                 break;
13310                         case CEE_INITOBJ:
13311                                 CHECK_STACK (1);
13312                                 --sp;
13313                                 CHECK_OPSIZE (6);
13314                                 token = read32 (ip + 2);
13315                                 klass = mini_get_class (method, token, generic_context);
13316                                 CHECK_TYPELOAD (klass);
13317                                 if (generic_class_is_reference_type (cfg, klass))
13318                                         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STORE_MEMBASE_IMM, sp [0]->dreg, 0, 0);
13319                                 else
13320                                         mini_emit_initobj (cfg, *sp, NULL, klass);
13321                                 ip += 6;
13322                                 inline_costs += 1;
13323                                 break;
13324                         case CEE_CONSTRAINED_:
13325                                 CHECK_OPSIZE (6);
13326                                 token = read32 (ip + 2);
13327                                 constrained_class = mini_get_class (method, token, generic_context);
13328                                 CHECK_TYPELOAD (constrained_class);
13329                                 ip += 6;
13330                                 break;
13331                         case CEE_CPBLK:
13332                         case CEE_INITBLK: {
13333                                 MonoInst *iargs [3];
13334                                 CHECK_STACK (3);
13335                                 sp -= 3;
13336
13337                                 /* Skip optimized paths for volatile operations. */
13338                                 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)) {
13339                                         mini_emit_memcpy (cfg, sp [0]->dreg, 0, sp [1]->dreg, 0, sp [2]->inst_c0, 0);
13340                                 } 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)) {
13341                                         /* emit_memset only works when val == 0 */
13342                                         mini_emit_memset (cfg, sp [0]->dreg, 0, sp [2]->inst_c0, sp [1]->inst_c0, 0);
13343                                 } else {
13344                                         MonoInst *call;
13345                                         iargs [0] = sp [0];
13346                                         iargs [1] = sp [1];
13347                                         iargs [2] = sp [2];
13348                                         if (ip [1] == CEE_CPBLK) {
13349                                                 /*
13350                                                  * FIXME: It's unclear whether we should be emitting both the acquire
13351                                                  * and release barriers for cpblk. It is technically both a load and
13352                                                  * store operation, so it seems like that's the sensible thing to do.
13353                                                  *
13354                                                  * FIXME: We emit full barriers on both sides of the operation for
13355                                                  * simplicity. We should have a separate atomic memcpy method instead.
13356                                                  */
13357                                                 MonoMethod *memcpy_method = get_memcpy_method ();
13358
13359                                                 if (ins_flag & MONO_INST_VOLATILE)
13360                                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
13361
13362                                                 call = mono_emit_method_call (cfg, memcpy_method, iargs, NULL);
13363                                                 call->flags |= ins_flag;
13364
13365                                                 if (ins_flag & MONO_INST_VOLATILE)
13366                                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_SEQ);
13367                                         } else {
13368                                                 MonoMethod *memset_method = get_memset_method ();
13369                                                 if (ins_flag & MONO_INST_VOLATILE) {
13370                                                         /* Volatile stores have release semantics, see 12.6.7 in Ecma 335 */
13371                                                         emit_memory_barrier (cfg, MONO_MEMORY_BARRIER_REL);
13372                                                 }
13373                                                 call = mono_emit_method_call (cfg, memset_method, iargs, NULL);
13374                                                 call->flags |= ins_flag;
13375                                         }
13376                                 }
13377                                 ip += 2;
13378                                 ins_flag = 0;
13379                                 inline_costs += 1;
13380                                 break;
13381                         }
13382                         case CEE_NO_:
13383                                 CHECK_OPSIZE (3);
13384                                 if (ip [2] & 0x1)
13385                                         ins_flag |= MONO_INST_NOTYPECHECK;
13386                                 if (ip [2] & 0x2)
13387                                         ins_flag |= MONO_INST_NORANGECHECK;
13388                                 /* we ignore the no-nullcheck for now since we
13389                                  * really do it explicitly only when doing callvirt->call
13390                                  */
13391                                 ip += 3;
13392                                 break;
13393                         case CEE_RETHROW: {
13394                                 MonoInst *load;
13395                                 int handler_offset = -1;
13396
13397                                 for (i = 0; i < header->num_clauses; ++i) {
13398                                         MonoExceptionClause *clause = &header->clauses [i];
13399                                         if (MONO_OFFSET_IN_HANDLER (clause, ip - header->code) && !(clause->flags & MONO_EXCEPTION_CLAUSE_FINALLY)) {
13400                                                 handler_offset = clause->handler_offset;
13401                                                 break;
13402                                         }
13403                                 }
13404
13405                                 cfg->cbb->flags |= BB_EXCEPTION_UNSAFE;
13406
13407                                 if (handler_offset == -1)
13408                                         UNVERIFIED;
13409
13410                                 EMIT_NEW_TEMPLOAD (cfg, load, mono_find_exvar_for_offset (cfg, handler_offset)->inst_c0);
13411                                 MONO_INST_NEW (cfg, ins, OP_RETHROW);
13412                                 ins->sreg1 = load->dreg;
13413                                 MONO_ADD_INS (cfg->cbb, ins);
13414
13415                                 MONO_INST_NEW (cfg, ins, OP_NOT_REACHED);
13416                                 MONO_ADD_INS (cfg->cbb, ins);
13417
13418                                 sp = stack_start;
13419                                 link_bblock (cfg, cfg->cbb, end_bblock);
13420                                 start_new_bblock = 1;
13421                                 ip += 2;
13422                                 break;
13423                         }
13424                         case CEE_SIZEOF: {
13425                                 guint32 val;
13426                                 int ialign;
13427
13428                                 CHECK_STACK_OVF (1);
13429                                 CHECK_OPSIZE (6);
13430                                 token = read32 (ip + 2);
13431                                 if (mono_metadata_token_table (token) == MONO_TABLE_TYPESPEC && !image_is_dynamic (method->klass->image) && !generic_context) {
13432                                         MonoType *type = mono_type_create_from_typespec_checked (image, token, &cfg->error);
13433                                         CHECK_CFG_ERROR;
13434
13435                                         val = mono_type_size (type, &ialign);
13436                                 } else {
13437                                         MonoClass *klass = mini_get_class (method, token, generic_context);
13438                                         CHECK_TYPELOAD (klass);
13439
13440                                         val = mono_type_size (&klass->byval_arg, &ialign);
13441
13442                                         if (mini_is_gsharedvt_klass (klass))
13443                                                 GSHAREDVT_FAILURE (*ip);
13444                                 }
13445                                 EMIT_NEW_ICONST (cfg, ins, val);
13446                                 *sp++= ins;
13447                                 ip += 6;
13448                                 break;
13449                         }
13450                         case CEE_REFANYTYPE: {
13451                                 MonoInst *src_var, *src;
13452
13453                                 GSHAREDVT_FAILURE (*ip);
13454
13455                                 CHECK_STACK (1);
13456                                 --sp;
13457
13458                                 // FIXME:
13459                                 src_var = get_vreg_to_inst (cfg, sp [0]->dreg);
13460                                 if (!src_var)
13461                                         src_var = mono_compile_create_var_for_vreg (cfg, &mono_defaults.typed_reference_class->byval_arg, OP_LOCAL, sp [0]->dreg);
13462                                 EMIT_NEW_VARLOADA (cfg, src, src_var, src_var->inst_vtype);
13463                                 EMIT_NEW_LOAD_MEMBASE_TYPE (cfg, ins, &mono_defaults.typehandle_class->byval_arg, src->dreg, MONO_STRUCT_OFFSET (MonoTypedRef, type));
13464                                 *sp++ = ins;
13465                                 ip += 2;
13466                                 break;
13467                         }
13468                         case CEE_READONLY_:
13469                                 readonly = TRUE;
13470                                 ip += 2;
13471                                 break;
13472
13473                         case CEE_UNUSED56:
13474                         case CEE_UNUSED57:
13475                         case CEE_UNUSED70:
13476                         case CEE_UNUSED:
13477                         case CEE_UNUSED99:
13478                                 UNVERIFIED;
13479                                 
13480                         default:
13481                                 g_warning ("opcode 0xfe 0x%02x not handled", ip [1]);
13482                                 UNVERIFIED;
13483                         }
13484                         break;
13485                 }
13486                 case CEE_UNUSED58:
13487                 case CEE_UNUSED1:
13488                         UNVERIFIED;
13489
13490                 default:
13491                         g_warning ("opcode 0x%02x not handled", *ip);
13492                         UNVERIFIED;
13493                 }
13494         }
13495         if (start_new_bblock != 1)
13496                 UNVERIFIED;
13497
13498         cfg->cbb->cil_length = ip - cfg->cbb->cil_code;
13499         if (cfg->cbb->next_bb) {
13500                 /* This could already be set because of inlining, #693905 */
13501                 MonoBasicBlock *bb = cfg->cbb;
13502
13503                 while (bb->next_bb)
13504                         bb = bb->next_bb;
13505                 bb->next_bb = end_bblock;
13506         } else {
13507                 cfg->cbb->next_bb = end_bblock;
13508         }
13509
13510         if (cfg->method == method && cfg->domainvar) {
13511                 MonoInst *store;
13512                 MonoInst *get_domain;
13513
13514                 cfg->cbb = init_localsbb;
13515
13516                 if ((get_domain = mono_get_domain_intrinsic (cfg))) {
13517                         MONO_ADD_INS (cfg->cbb, get_domain);
13518                 } else {
13519                         get_domain = mono_emit_jit_icall (cfg, mono_domain_get, NULL);
13520                 }
13521                 NEW_TEMPSTORE (cfg, store, cfg->domainvar->inst_c0, get_domain);
13522                 MONO_ADD_INS (cfg->cbb, store);
13523         }
13524
13525 #if defined(TARGET_POWERPC) || defined(TARGET_X86)
13526         if (cfg->compile_aot)
13527                 /* FIXME: The plt slots require a GOT var even if the method doesn't use it */
13528                 mono_get_got_var (cfg);
13529 #endif
13530
13531         if (cfg->method == method && cfg->got_var)
13532                 mono_emit_load_got_addr (cfg);
13533
13534         if (init_localsbb) {
13535                 cfg->cbb = init_localsbb;
13536                 cfg->ip = NULL;
13537                 for (i = 0; i < header->num_locals; ++i) {
13538                         emit_init_local (cfg, i, header->locals [i], init_locals);
13539                 }
13540         }
13541
13542         if (cfg->init_ref_vars && cfg->method == method) {
13543                 /* Emit initialization for ref vars */
13544                 // FIXME: Avoid duplication initialization for IL locals.
13545                 for (i = 0; i < cfg->num_varinfo; ++i) {
13546                         MonoInst *ins = cfg->varinfo [i];
13547
13548                         if (ins->opcode == OP_LOCAL && ins->type == STACK_OBJ)
13549                                 MONO_EMIT_NEW_PCONST (cfg, ins->dreg, NULL);
13550                 }
13551         }
13552
13553         if (cfg->lmf_var && cfg->method == method && !cfg->llvm_only) {
13554                 cfg->cbb = init_localsbb;
13555                 emit_push_lmf (cfg);
13556         }
13557
13558         cfg->cbb = init_localsbb;
13559         emit_instrumentation_call (cfg, mono_profiler_method_enter);
13560
13561         if (seq_points) {
13562                 MonoBasicBlock *bb;
13563
13564                 /*
13565                  * Make seq points at backward branch targets interruptable.
13566                  */
13567                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb)
13568                         if (bb->code && bb->in_count > 1 && bb->code->opcode == OP_SEQ_POINT)
13569                                 bb->code->flags |= MONO_INST_SINGLE_STEP_LOC;
13570         }
13571
13572         /* Add a sequence point for method entry/exit events */
13573         if (seq_points && cfg->gen_sdb_seq_points) {
13574                 NEW_SEQ_POINT (cfg, ins, METHOD_ENTRY_IL_OFFSET, FALSE);
13575                 MONO_ADD_INS (init_localsbb, ins);
13576                 NEW_SEQ_POINT (cfg, ins, METHOD_EXIT_IL_OFFSET, FALSE);
13577                 MONO_ADD_INS (cfg->bb_exit, ins);
13578         }
13579
13580         /*
13581          * Add seq points for IL offsets which have line number info, but wasn't generated a seq point during JITting because
13582          * the code they refer to was dead (#11880).
13583          */
13584         if (sym_seq_points) {
13585                 for (i = 0; i < header->code_size; ++i) {
13586                         if (mono_bitset_test_fast (seq_point_locs, i) && !mono_bitset_test_fast (seq_point_set_locs, i)) {
13587                                 MonoInst *ins;
13588
13589                                 NEW_SEQ_POINT (cfg, ins, i, FALSE);
13590                                 mono_add_seq_point (cfg, NULL, ins, SEQ_POINT_NATIVE_OFFSET_DEAD_CODE);
13591                         }
13592                 }
13593         }
13594
13595         cfg->ip = NULL;
13596
13597         if (cfg->method == method) {
13598                 MonoBasicBlock *bb;
13599                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
13600                         bb->region = mono_find_block_region (cfg, bb->real_offset);
13601                         if (cfg->spvars)
13602                                 mono_create_spvar_for_region (cfg, bb->region);
13603                         if (cfg->verbose_level > 2)
13604                                 printf ("REGION BB%d IL_%04x ID_%08X\n", bb->block_num, bb->real_offset, bb->region);
13605                 }
13606         } else {
13607                 MonoBasicBlock *bb;
13608                 /* get_most_deep_clause () in mini-llvm.c depends on this for inlined bblocks */
13609                 for (bb = start_bblock; bb != end_bblock; bb  = bb->next_bb) {
13610                         bb->real_offset = inline_offset;
13611                 }
13612         }
13613
13614         if (inline_costs < 0) {
13615                 char *mname;
13616
13617                 /* Method is too large */
13618                 mname = mono_method_full_name (method, TRUE);
13619                 mono_cfg_set_exception_invalid_program (cfg, g_strdup_printf ("Method %s is too complex.", mname));
13620                 g_free (mname);
13621         }
13622
13623         if ((cfg->verbose_level > 2) && (cfg->method == method)) 
13624                 mono_print_code (cfg, "AFTER METHOD-TO-IR");
13625
13626         goto cleanup;
13627
13628 mono_error_exit:
13629         g_assert (!mono_error_ok (&cfg->error));
13630         goto cleanup;
13631  
13632  exception_exit:
13633         g_assert (cfg->exception_type != MONO_EXCEPTION_NONE);
13634         goto cleanup;
13635
13636  unverified:
13637         set_exception_type_from_invalid_il (cfg, method, ip);
13638         goto cleanup;
13639
13640  cleanup:
13641         g_slist_free (class_inits);
13642         mono_basic_block_free (original_bb);
13643         cfg->dont_inline = g_list_remove (cfg->dont_inline, method);
13644         cfg->headers_to_free = g_slist_prepend_mempool (cfg->mempool, cfg->headers_to_free, header);
13645         if (cfg->exception_type)
13646                 return -1;
13647         else
13648                 return inline_costs;
13649 }
13650
13651 static int
13652 store_membase_reg_to_store_membase_imm (int opcode)
13653 {
13654         switch (opcode) {
13655         case OP_STORE_MEMBASE_REG:
13656                 return OP_STORE_MEMBASE_IMM;
13657         case OP_STOREI1_MEMBASE_REG:
13658                 return OP_STOREI1_MEMBASE_IMM;
13659         case OP_STOREI2_MEMBASE_REG:
13660                 return OP_STOREI2_MEMBASE_IMM;
13661         case OP_STOREI4_MEMBASE_REG:
13662                 return OP_STOREI4_MEMBASE_IMM;
13663         case OP_STOREI8_MEMBASE_REG:
13664                 return OP_STOREI8_MEMBASE_IMM;
13665         default:
13666                 g_assert_not_reached ();
13667         }
13668
13669         return -1;
13670 }               
13671
13672 int
13673 mono_op_to_op_imm (int opcode)
13674 {
13675         switch (opcode) {
13676         case OP_IADD:
13677                 return OP_IADD_IMM;
13678         case OP_ISUB:
13679                 return OP_ISUB_IMM;
13680         case OP_IDIV:
13681                 return OP_IDIV_IMM;
13682         case OP_IDIV_UN:
13683                 return OP_IDIV_UN_IMM;
13684         case OP_IREM:
13685                 return OP_IREM_IMM;
13686         case OP_IREM_UN:
13687                 return OP_IREM_UN_IMM;
13688         case OP_IMUL:
13689                 return OP_IMUL_IMM;
13690         case OP_IAND:
13691                 return OP_IAND_IMM;
13692         case OP_IOR:
13693                 return OP_IOR_IMM;
13694         case OP_IXOR:
13695                 return OP_IXOR_IMM;
13696         case OP_ISHL:
13697                 return OP_ISHL_IMM;
13698         case OP_ISHR:
13699                 return OP_ISHR_IMM;
13700         case OP_ISHR_UN:
13701                 return OP_ISHR_UN_IMM;
13702
13703         case OP_LADD:
13704                 return OP_LADD_IMM;
13705         case OP_LSUB:
13706                 return OP_LSUB_IMM;
13707         case OP_LAND:
13708                 return OP_LAND_IMM;
13709         case OP_LOR:
13710                 return OP_LOR_IMM;
13711         case OP_LXOR:
13712                 return OP_LXOR_IMM;
13713         case OP_LSHL:
13714                 return OP_LSHL_IMM;
13715         case OP_LSHR:
13716                 return OP_LSHR_IMM;
13717         case OP_LSHR_UN:
13718                 return OP_LSHR_UN_IMM;
13719 #if SIZEOF_REGISTER == 8
13720         case OP_LREM:
13721                 return OP_LREM_IMM;
13722 #endif
13723
13724         case OP_COMPARE:
13725                 return OP_COMPARE_IMM;
13726         case OP_ICOMPARE:
13727                 return OP_ICOMPARE_IMM;
13728         case OP_LCOMPARE:
13729                 return OP_LCOMPARE_IMM;
13730
13731         case OP_STORE_MEMBASE_REG:
13732                 return OP_STORE_MEMBASE_IMM;
13733         case OP_STOREI1_MEMBASE_REG:
13734                 return OP_STOREI1_MEMBASE_IMM;
13735         case OP_STOREI2_MEMBASE_REG:
13736                 return OP_STOREI2_MEMBASE_IMM;
13737         case OP_STOREI4_MEMBASE_REG:
13738                 return OP_STOREI4_MEMBASE_IMM;
13739
13740 #if defined(TARGET_X86) || defined (TARGET_AMD64)
13741         case OP_X86_PUSH:
13742                 return OP_X86_PUSH_IMM;
13743         case OP_X86_COMPARE_MEMBASE_REG:
13744                 return OP_X86_COMPARE_MEMBASE_IMM;
13745 #endif
13746 #if defined(TARGET_AMD64)
13747         case OP_AMD64_ICOMPARE_MEMBASE_REG:
13748                 return OP_AMD64_ICOMPARE_MEMBASE_IMM;
13749 #endif
13750         case OP_VOIDCALL_REG:
13751                 return OP_VOIDCALL;
13752         case OP_CALL_REG:
13753                 return OP_CALL;
13754         case OP_LCALL_REG:
13755                 return OP_LCALL;
13756         case OP_FCALL_REG:
13757                 return OP_FCALL;
13758         case OP_LOCALLOC:
13759                 return OP_LOCALLOC_IMM;
13760         }
13761
13762         return -1;
13763 }
13764
13765 static int
13766 ldind_to_load_membase (int opcode)
13767 {
13768         switch (opcode) {
13769         case CEE_LDIND_I1:
13770                 return OP_LOADI1_MEMBASE;
13771         case CEE_LDIND_U1:
13772                 return OP_LOADU1_MEMBASE;
13773         case CEE_LDIND_I2:
13774                 return OP_LOADI2_MEMBASE;
13775         case CEE_LDIND_U2:
13776                 return OP_LOADU2_MEMBASE;
13777         case CEE_LDIND_I4:
13778                 return OP_LOADI4_MEMBASE;
13779         case CEE_LDIND_U4:
13780                 return OP_LOADU4_MEMBASE;
13781         case CEE_LDIND_I:
13782                 return OP_LOAD_MEMBASE;
13783         case CEE_LDIND_REF:
13784                 return OP_LOAD_MEMBASE;
13785         case CEE_LDIND_I8:
13786                 return OP_LOADI8_MEMBASE;
13787         case CEE_LDIND_R4:
13788                 return OP_LOADR4_MEMBASE;
13789         case CEE_LDIND_R8:
13790                 return OP_LOADR8_MEMBASE;
13791         default:
13792                 g_assert_not_reached ();
13793         }
13794
13795         return -1;
13796 }
13797
13798 static int
13799 stind_to_store_membase (int opcode)
13800 {
13801         switch (opcode) {
13802         case CEE_STIND_I1:
13803                 return OP_STOREI1_MEMBASE_REG;
13804         case CEE_STIND_I2:
13805                 return OP_STOREI2_MEMBASE_REG;
13806         case CEE_STIND_I4:
13807                 return OP_STOREI4_MEMBASE_REG;
13808         case CEE_STIND_I:
13809         case CEE_STIND_REF:
13810                 return OP_STORE_MEMBASE_REG;
13811         case CEE_STIND_I8:
13812                 return OP_STOREI8_MEMBASE_REG;
13813         case CEE_STIND_R4:
13814                 return OP_STORER4_MEMBASE_REG;
13815         case CEE_STIND_R8:
13816                 return OP_STORER8_MEMBASE_REG;
13817         default:
13818                 g_assert_not_reached ();
13819         }
13820
13821         return -1;
13822 }
13823
13824 int
13825 mono_load_membase_to_load_mem (int opcode)
13826 {
13827         // FIXME: Add a MONO_ARCH_HAVE_LOAD_MEM macro
13828 #if defined(TARGET_X86) || defined(TARGET_AMD64)
13829         switch (opcode) {
13830         case OP_LOAD_MEMBASE:
13831                 return OP_LOAD_MEM;
13832         case OP_LOADU1_MEMBASE:
13833                 return OP_LOADU1_MEM;
13834         case OP_LOADU2_MEMBASE:
13835                 return OP_LOADU2_MEM;
13836         case OP_LOADI4_MEMBASE:
13837                 return OP_LOADI4_MEM;
13838         case OP_LOADU4_MEMBASE:
13839                 return OP_LOADU4_MEM;
13840 #if SIZEOF_REGISTER == 8
13841         case OP_LOADI8_MEMBASE:
13842                 return OP_LOADI8_MEM;
13843 #endif
13844         }
13845 #endif
13846
13847         return -1;
13848 }
13849
13850 static inline int
13851 op_to_op_dest_membase (int store_opcode, int opcode)
13852 {
13853 #if defined(TARGET_X86)
13854         if (!((store_opcode == OP_STORE_MEMBASE_REG) || (store_opcode == OP_STOREI4_MEMBASE_REG)))
13855                 return -1;
13856
13857         switch (opcode) {
13858         case OP_IADD:
13859                 return OP_X86_ADD_MEMBASE_REG;
13860         case OP_ISUB:
13861                 return OP_X86_SUB_MEMBASE_REG;
13862         case OP_IAND:
13863                 return OP_X86_AND_MEMBASE_REG;
13864         case OP_IOR:
13865                 return OP_X86_OR_MEMBASE_REG;
13866         case OP_IXOR:
13867                 return OP_X86_XOR_MEMBASE_REG;
13868         case OP_ADD_IMM:
13869         case OP_IADD_IMM:
13870                 return OP_X86_ADD_MEMBASE_IMM;
13871         case OP_SUB_IMM:
13872         case OP_ISUB_IMM:
13873                 return OP_X86_SUB_MEMBASE_IMM;
13874         case OP_AND_IMM:
13875         case OP_IAND_IMM:
13876                 return OP_X86_AND_MEMBASE_IMM;
13877         case OP_OR_IMM:
13878         case OP_IOR_IMM:
13879                 return OP_X86_OR_MEMBASE_IMM;
13880         case OP_XOR_IMM:
13881         case OP_IXOR_IMM:
13882                 return OP_X86_XOR_MEMBASE_IMM;
13883         case OP_MOVE:
13884                 return OP_NOP;
13885         }
13886 #endif
13887
13888 #if defined(TARGET_AMD64)
13889         if (!((store_opcode == OP_STORE_MEMBASE_REG) || (store_opcode == OP_STOREI4_MEMBASE_REG) || (store_opcode == OP_STOREI8_MEMBASE_REG)))
13890                 return -1;
13891
13892         switch (opcode) {
13893         case OP_IADD:
13894                 return OP_X86_ADD_MEMBASE_REG;
13895         case OP_ISUB:
13896                 return OP_X86_SUB_MEMBASE_REG;
13897         case OP_IAND:
13898                 return OP_X86_AND_MEMBASE_REG;
13899         case OP_IOR:
13900                 return OP_X86_OR_MEMBASE_REG;
13901         case OP_IXOR:
13902                 return OP_X86_XOR_MEMBASE_REG;
13903         case OP_IADD_IMM:
13904                 return OP_X86_ADD_MEMBASE_IMM;
13905         case OP_ISUB_IMM:
13906                 return OP_X86_SUB_MEMBASE_IMM;
13907         case OP_IAND_IMM:
13908                 return OP_X86_AND_MEMBASE_IMM;
13909         case OP_IOR_IMM:
13910                 return OP_X86_OR_MEMBASE_IMM;
13911         case OP_IXOR_IMM:
13912                 return OP_X86_XOR_MEMBASE_IMM;
13913         case OP_LADD:
13914                 return OP_AMD64_ADD_MEMBASE_REG;
13915         case OP_LSUB:
13916                 return OP_AMD64_SUB_MEMBASE_REG;
13917         case OP_LAND:
13918                 return OP_AMD64_AND_MEMBASE_REG;
13919         case OP_LOR:
13920                 return OP_AMD64_OR_MEMBASE_REG;
13921         case OP_LXOR:
13922                 return OP_AMD64_XOR_MEMBASE_REG;
13923         case OP_ADD_IMM:
13924         case OP_LADD_IMM:
13925                 return OP_AMD64_ADD_MEMBASE_IMM;
13926         case OP_SUB_IMM:
13927         case OP_LSUB_IMM:
13928                 return OP_AMD64_SUB_MEMBASE_IMM;
13929         case OP_AND_IMM:
13930         case OP_LAND_IMM:
13931                 return OP_AMD64_AND_MEMBASE_IMM;
13932         case OP_OR_IMM:
13933         case OP_LOR_IMM:
13934                 return OP_AMD64_OR_MEMBASE_IMM;
13935         case OP_XOR_IMM:
13936         case OP_LXOR_IMM:
13937                 return OP_AMD64_XOR_MEMBASE_IMM;
13938         case OP_MOVE:
13939                 return OP_NOP;
13940         }
13941 #endif
13942
13943         return -1;
13944 }
13945
13946 static inline int
13947 op_to_op_store_membase (int store_opcode, int opcode)
13948 {
13949 #if defined(TARGET_X86) || defined(TARGET_AMD64)
13950         switch (opcode) {
13951         case OP_ICEQ:
13952                 if (store_opcode == OP_STOREI1_MEMBASE_REG)
13953                         return OP_X86_SETEQ_MEMBASE;
13954         case OP_CNE:
13955                 if (store_opcode == OP_STOREI1_MEMBASE_REG)
13956                         return OP_X86_SETNE_MEMBASE;
13957         }
13958 #endif
13959
13960         return -1;
13961 }
13962
13963 static inline int
13964 op_to_op_src1_membase (MonoCompile *cfg, int load_opcode, int opcode)
13965 {
13966 #ifdef TARGET_X86
13967         /* FIXME: This has sign extension issues */
13968         /*
13969         if ((opcode == OP_ICOMPARE_IMM) && (load_opcode == OP_LOADU1_MEMBASE))
13970                 return OP_X86_COMPARE_MEMBASE8_IMM;
13971         */
13972
13973         if (!((load_opcode == OP_LOAD_MEMBASE) || (load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE)))
13974                 return -1;
13975
13976         switch (opcode) {
13977         case OP_X86_PUSH:
13978                 return OP_X86_PUSH_MEMBASE;
13979         case OP_COMPARE_IMM:
13980         case OP_ICOMPARE_IMM:
13981                 return OP_X86_COMPARE_MEMBASE_IMM;
13982         case OP_COMPARE:
13983         case OP_ICOMPARE:
13984                 return OP_X86_COMPARE_MEMBASE_REG;
13985         }
13986 #endif
13987
13988 #ifdef TARGET_AMD64
13989         /* FIXME: This has sign extension issues */
13990         /*
13991         if ((opcode == OP_ICOMPARE_IMM) && (load_opcode == OP_LOADU1_MEMBASE))
13992                 return OP_X86_COMPARE_MEMBASE8_IMM;
13993         */
13994
13995         switch (opcode) {
13996         case OP_X86_PUSH:
13997                 if ((load_opcode == OP_LOAD_MEMBASE && !cfg->backend->ilp32) || (load_opcode == OP_LOADI8_MEMBASE))
13998                         return OP_X86_PUSH_MEMBASE;
13999                 break;
14000                 /* FIXME: This only works for 32 bit immediates
14001         case OP_COMPARE_IMM:
14002         case OP_LCOMPARE_IMM:
14003                 if ((load_opcode == OP_LOAD_MEMBASE) || (load_opcode == OP_LOADI8_MEMBASE))
14004                         return OP_AMD64_COMPARE_MEMBASE_IMM;
14005                 */
14006         case OP_ICOMPARE_IMM:
14007                 if ((load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE))
14008                         return OP_AMD64_ICOMPARE_MEMBASE_IMM;
14009                 break;
14010         case OP_COMPARE:
14011         case OP_LCOMPARE:
14012                 if (cfg->backend->ilp32 && load_opcode == OP_LOAD_MEMBASE)
14013                         return OP_AMD64_ICOMPARE_MEMBASE_REG;
14014                 if ((load_opcode == OP_LOAD_MEMBASE && !cfg->backend->ilp32) || (load_opcode == OP_LOADI8_MEMBASE))
14015                         return OP_AMD64_COMPARE_MEMBASE_REG;
14016                 break;
14017         case OP_ICOMPARE:
14018                 if ((load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE))
14019                         return OP_AMD64_ICOMPARE_MEMBASE_REG;
14020                 break;
14021         }
14022 #endif
14023
14024         return -1;
14025 }
14026
14027 static inline int
14028 op_to_op_src2_membase (MonoCompile *cfg, int load_opcode, int opcode)
14029 {
14030 #ifdef TARGET_X86
14031         if (!((load_opcode == OP_LOAD_MEMBASE) || (load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE)))
14032                 return -1;
14033         
14034         switch (opcode) {
14035         case OP_COMPARE:
14036         case OP_ICOMPARE:
14037                 return OP_X86_COMPARE_REG_MEMBASE;
14038         case OP_IADD:
14039                 return OP_X86_ADD_REG_MEMBASE;
14040         case OP_ISUB:
14041                 return OP_X86_SUB_REG_MEMBASE;
14042         case OP_IAND:
14043                 return OP_X86_AND_REG_MEMBASE;
14044         case OP_IOR:
14045                 return OP_X86_OR_REG_MEMBASE;
14046         case OP_IXOR:
14047                 return OP_X86_XOR_REG_MEMBASE;
14048         }
14049 #endif
14050
14051 #ifdef TARGET_AMD64
14052         if ((load_opcode == OP_LOADI4_MEMBASE) || (load_opcode == OP_LOADU4_MEMBASE) || (load_opcode == OP_LOAD_MEMBASE && cfg->backend->ilp32)) {
14053                 switch (opcode) {
14054                 case OP_ICOMPARE:
14055                         return OP_AMD64_ICOMPARE_REG_MEMBASE;
14056                 case OP_IADD:
14057                         return OP_X86_ADD_REG_MEMBASE;
14058                 case OP_ISUB:
14059                         return OP_X86_SUB_REG_MEMBASE;
14060                 case OP_IAND:
14061                         return OP_X86_AND_REG_MEMBASE;
14062                 case OP_IOR:
14063                         return OP_X86_OR_REG_MEMBASE;
14064                 case OP_IXOR:
14065                         return OP_X86_XOR_REG_MEMBASE;
14066                 }
14067         } else if ((load_opcode == OP_LOADI8_MEMBASE) || (load_opcode == OP_LOAD_MEMBASE && !cfg->backend->ilp32)) {
14068                 switch (opcode) {
14069                 case OP_COMPARE:
14070                 case OP_LCOMPARE:
14071                         return OP_AMD64_COMPARE_REG_MEMBASE;
14072                 case OP_LADD:
14073                         return OP_AMD64_ADD_REG_MEMBASE;
14074                 case OP_LSUB:
14075                         return OP_AMD64_SUB_REG_MEMBASE;
14076                 case OP_LAND:
14077                         return OP_AMD64_AND_REG_MEMBASE;
14078                 case OP_LOR:
14079                         return OP_AMD64_OR_REG_MEMBASE;
14080                 case OP_LXOR:
14081                         return OP_AMD64_XOR_REG_MEMBASE;
14082                 }
14083         }
14084 #endif
14085
14086         return -1;
14087 }
14088
14089 int
14090 mono_op_to_op_imm_noemul (int opcode)
14091 {
14092         switch (opcode) {
14093 #if SIZEOF_REGISTER == 4 && !defined(MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS)
14094         case OP_LSHR:
14095         case OP_LSHL:
14096         case OP_LSHR_UN:
14097                 return -1;
14098 #endif
14099 #if defined(MONO_ARCH_EMULATE_MUL_DIV) || defined(MONO_ARCH_EMULATE_DIV)
14100         case OP_IDIV:
14101         case OP_IDIV_UN:
14102         case OP_IREM:
14103         case OP_IREM_UN:
14104                 return -1;
14105 #endif
14106 #if defined(MONO_ARCH_EMULATE_MUL_DIV)
14107         case OP_IMUL:
14108                 return -1;
14109 #endif
14110         default:
14111                 return mono_op_to_op_imm (opcode);
14112         }
14113 }
14114
14115 /**
14116  * mono_handle_global_vregs:
14117  *
14118  *   Make vregs used in more than one bblock 'global', i.e. allocate a variable
14119  * for them.
14120  */
14121 void
14122 mono_handle_global_vregs (MonoCompile *cfg)
14123 {
14124         gint32 *vreg_to_bb;
14125         MonoBasicBlock *bb;
14126         int i, pos;
14127
14128         vreg_to_bb = (gint32 *)mono_mempool_alloc0 (cfg->mempool, sizeof (gint32*) * cfg->next_vreg + 1);
14129
14130 #ifdef MONO_ARCH_SIMD_INTRINSICS
14131         if (cfg->uses_simd_intrinsics)
14132                 mono_simd_simplify_indirection (cfg);
14133 #endif
14134
14135         /* Find local vregs used in more than one bb */
14136         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
14137                 MonoInst *ins = bb->code;       
14138                 int block_num = bb->block_num;
14139
14140                 if (cfg->verbose_level > 2)
14141                         printf ("\nHANDLE-GLOBAL-VREGS BLOCK %d:\n", bb->block_num);
14142
14143                 cfg->cbb = bb;
14144                 for (; ins; ins = ins->next) {
14145                         const char *spec = INS_INFO (ins->opcode);
14146                         int regtype = 0, regindex;
14147                         gint32 prev_bb;
14148
14149                         if (G_UNLIKELY (cfg->verbose_level > 2))
14150                                 mono_print_ins (ins);
14151
14152                         g_assert (ins->opcode >= MONO_CEE_LAST);
14153
14154                         for (regindex = 0; regindex < 4; regindex ++) {
14155                                 int vreg = 0;
14156
14157                                 if (regindex == 0) {
14158                                         regtype = spec [MONO_INST_DEST];
14159                                         if (regtype == ' ')
14160                                                 continue;
14161                                         vreg = ins->dreg;
14162                                 } else if (regindex == 1) {
14163                                         regtype = spec [MONO_INST_SRC1];
14164                                         if (regtype == ' ')
14165                                                 continue;
14166                                         vreg = ins->sreg1;
14167                                 } else if (regindex == 2) {
14168                                         regtype = spec [MONO_INST_SRC2];
14169                                         if (regtype == ' ')
14170                                                 continue;
14171                                         vreg = ins->sreg2;
14172                                 } else if (regindex == 3) {
14173                                         regtype = spec [MONO_INST_SRC3];
14174                                         if (regtype == ' ')
14175                                                 continue;
14176                                         vreg = ins->sreg3;
14177                                 }
14178
14179 #if SIZEOF_REGISTER == 4
14180                                 /* In the LLVM case, the long opcodes are not decomposed */
14181                                 if (regtype == 'l' && !COMPILE_LLVM (cfg)) {
14182                                         /*
14183                                          * Since some instructions reference the original long vreg,
14184                                          * and some reference the two component vregs, it is quite hard
14185                                          * to determine when it needs to be global. So be conservative.
14186                                          */
14187                                         if (!get_vreg_to_inst (cfg, vreg)) {
14188                                                 mono_compile_create_var_for_vreg (cfg, &mono_defaults.int64_class->byval_arg, OP_LOCAL, vreg);
14189
14190                                                 if (cfg->verbose_level > 2)
14191                                                         printf ("LONG VREG R%d made global.\n", vreg);
14192                                         }
14193
14194                                         /*
14195                                          * Make the component vregs volatile since the optimizations can
14196                                          * get confused otherwise.
14197                                          */
14198                                         get_vreg_to_inst (cfg, MONO_LVREG_LS (vreg))->flags |= MONO_INST_VOLATILE;
14199                                         get_vreg_to_inst (cfg, MONO_LVREG_MS (vreg))->flags |= MONO_INST_VOLATILE;
14200                                 }
14201 #endif
14202
14203                                 g_assert (vreg != -1);
14204
14205                                 prev_bb = vreg_to_bb [vreg];
14206                                 if (prev_bb == 0) {
14207                                         /* 0 is a valid block num */
14208                                         vreg_to_bb [vreg] = block_num + 1;
14209                                 } else if ((prev_bb != block_num + 1) && (prev_bb != -1)) {
14210                                         if (((regtype == 'i' && (vreg < MONO_MAX_IREGS))) || (regtype == 'f' && (vreg < MONO_MAX_FREGS)))
14211                                                 continue;
14212
14213                                         if (!get_vreg_to_inst (cfg, vreg)) {
14214                                                 if (G_UNLIKELY (cfg->verbose_level > 2))
14215                                                         printf ("VREG R%d used in BB%d and BB%d made global.\n", vreg, vreg_to_bb [vreg], block_num);
14216
14217                                                 switch (regtype) {
14218                                                 case 'i':
14219                                                         if (vreg_is_ref (cfg, vreg))
14220                                                                 mono_compile_create_var_for_vreg (cfg, &mono_defaults.object_class->byval_arg, OP_LOCAL, vreg);
14221                                                         else
14222                                                                 mono_compile_create_var_for_vreg (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL, vreg);
14223                                                         break;
14224                                                 case 'l':
14225                                                         mono_compile_create_var_for_vreg (cfg, &mono_defaults.int64_class->byval_arg, OP_LOCAL, vreg);
14226                                                         break;
14227                                                 case 'f':
14228                                                         mono_compile_create_var_for_vreg (cfg, &mono_defaults.double_class->byval_arg, OP_LOCAL, vreg);
14229                                                         break;
14230                                                 case 'v':
14231                                                         mono_compile_create_var_for_vreg (cfg, &ins->klass->byval_arg, OP_LOCAL, vreg);
14232                                                         break;
14233                                                 default:
14234                                                         g_assert_not_reached ();
14235                                                 }
14236                                         }
14237
14238                                         /* Flag as having been used in more than one bb */
14239                                         vreg_to_bb [vreg] = -1;
14240                                 }
14241                         }
14242                 }
14243         }
14244
14245         /* If a variable is used in only one bblock, convert it into a local vreg */
14246         for (i = 0; i < cfg->num_varinfo; i++) {
14247                 MonoInst *var = cfg->varinfo [i];
14248                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
14249
14250                 switch (var->type) {
14251                 case STACK_I4:
14252                 case STACK_OBJ:
14253                 case STACK_PTR:
14254                 case STACK_MP:
14255                 case STACK_VTYPE:
14256 #if SIZEOF_REGISTER == 8
14257                 case STACK_I8:
14258 #endif
14259 #if !defined(TARGET_X86)
14260                 /* Enabling this screws up the fp stack on x86 */
14261                 case STACK_R8:
14262 #endif
14263                         if (mono_arch_is_soft_float ())
14264                                 break;
14265
14266                         /*
14267                         if (var->type == STACK_VTYPE && cfg->gsharedvt && mini_is_gsharedvt_variable_type (var->inst_vtype))
14268                                 break;
14269                         */
14270
14271                         /* Arguments are implicitly global */
14272                         /* Putting R4 vars into registers doesn't work currently */
14273                         /* The gsharedvt vars are implicitly referenced by ldaddr opcodes, but those opcodes are only generated later */
14274                         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) {
14275                                 /* 
14276                                  * Make that the variable's liveness interval doesn't contain a call, since
14277                                  * that would cause the lvreg to be spilled, making the whole optimization
14278                                  * useless.
14279                                  */
14280                                 /* This is too slow for JIT compilation */
14281 #if 0
14282                                 if (cfg->compile_aot && vreg_to_bb [var->dreg]) {
14283                                         MonoInst *ins;
14284                                         int def_index, call_index, ins_index;
14285                                         gboolean spilled = FALSE;
14286
14287                                         def_index = -1;
14288                                         call_index = -1;
14289                                         ins_index = 0;
14290                                         for (ins = vreg_to_bb [var->dreg]->code; ins; ins = ins->next) {
14291                                                 const char *spec = INS_INFO (ins->opcode);
14292
14293                                                 if ((spec [MONO_INST_DEST] != ' ') && (ins->dreg == var->dreg))
14294                                                         def_index = ins_index;
14295
14296                                                 if (((spec [MONO_INST_SRC1] != ' ') && (ins->sreg1 == var->dreg)) ||
14297                                                         ((spec [MONO_INST_SRC1] != ' ') && (ins->sreg1 == var->dreg))) {
14298                                                         if (call_index > def_index) {
14299                                                                 spilled = TRUE;
14300                                                                 break;
14301                                                         }
14302                                                 }
14303
14304                                                 if (MONO_IS_CALL (ins))
14305                                                         call_index = ins_index;
14306
14307                                                 ins_index ++;
14308                                         }
14309
14310                                         if (spilled)
14311                                                 break;
14312                                 }
14313 #endif
14314
14315                                 if (G_UNLIKELY (cfg->verbose_level > 2))
14316                                         printf ("CONVERTED R%d(%d) TO VREG.\n", var->dreg, vmv->idx);
14317                                 var->flags |= MONO_INST_IS_DEAD;
14318                                 cfg->vreg_to_inst [var->dreg] = NULL;
14319                         }
14320                         break;
14321                 }
14322         }
14323
14324         /* 
14325          * Compress the varinfo and vars tables so the liveness computation is faster and
14326          * takes up less space.
14327          */
14328         pos = 0;
14329         for (i = 0; i < cfg->num_varinfo; ++i) {
14330                 MonoInst *var = cfg->varinfo [i];
14331                 if (pos < i && cfg->locals_start == i)
14332                         cfg->locals_start = pos;
14333                 if (!(var->flags & MONO_INST_IS_DEAD)) {
14334                         if (pos < i) {
14335                                 cfg->varinfo [pos] = cfg->varinfo [i];
14336                                 cfg->varinfo [pos]->inst_c0 = pos;
14337                                 memcpy (&cfg->vars [pos], &cfg->vars [i], sizeof (MonoMethodVar));
14338                                 cfg->vars [pos].idx = pos;
14339 #if SIZEOF_REGISTER == 4
14340                                 if (cfg->varinfo [pos]->type == STACK_I8) {
14341                                         /* Modify the two component vars too */
14342                                         MonoInst *var1;
14343
14344                                         var1 = get_vreg_to_inst (cfg, MONO_LVREG_LS (cfg->varinfo [pos]->dreg));
14345                                         var1->inst_c0 = pos;
14346                                         var1 = get_vreg_to_inst (cfg, MONO_LVREG_MS (cfg->varinfo [pos]->dreg));
14347                                         var1->inst_c0 = pos;
14348                                 }
14349 #endif
14350                         }
14351                         pos ++;
14352                 }
14353         }
14354         cfg->num_varinfo = pos;
14355         if (cfg->locals_start > cfg->num_varinfo)
14356                 cfg->locals_start = cfg->num_varinfo;
14357 }
14358
14359 /*
14360  * mono_allocate_gsharedvt_vars:
14361  *
14362  *   Allocate variables with gsharedvt types to entries in the MonoGSharedVtMethodRuntimeInfo.entries array.
14363  * Initialize cfg->gsharedvt_vreg_to_idx with the mapping between vregs and indexes.
14364  */
14365 void
14366 mono_allocate_gsharedvt_vars (MonoCompile *cfg)
14367 {
14368         int i;
14369
14370         cfg->gsharedvt_vreg_to_idx = (int *)mono_mempool_alloc0 (cfg->mempool, sizeof (int) * cfg->next_vreg);
14371
14372         for (i = 0; i < cfg->num_varinfo; ++i) {
14373                 MonoInst *ins = cfg->varinfo [i];
14374                 int idx;
14375
14376                 if (mini_is_gsharedvt_variable_type (ins->inst_vtype)) {
14377                         if (i >= cfg->locals_start) {
14378                                 /* Local */
14379                                 idx = get_gsharedvt_info_slot (cfg, ins->inst_vtype, MONO_RGCTX_INFO_LOCAL_OFFSET);
14380                                 cfg->gsharedvt_vreg_to_idx [ins->dreg] = idx + 1;
14381                                 ins->opcode = OP_GSHAREDVT_LOCAL;
14382                                 ins->inst_imm = idx;
14383                         } else {
14384                                 /* Arg */
14385                                 cfg->gsharedvt_vreg_to_idx [ins->dreg] = -1;
14386                                 ins->opcode = OP_GSHAREDVT_ARG_REGOFFSET;
14387                         }
14388                 }
14389         }
14390 }
14391
14392 /**
14393  * mono_spill_global_vars:
14394  *
14395  *   Generate spill code for variables which are not allocated to registers, 
14396  * and replace vregs with their allocated hregs. *need_local_opts is set to TRUE if
14397  * code is generated which could be optimized by the local optimization passes.
14398  */
14399 void
14400 mono_spill_global_vars (MonoCompile *cfg, gboolean *need_local_opts)
14401 {
14402         MonoBasicBlock *bb;
14403         char spec2 [16];
14404         int orig_next_vreg;
14405         guint32 *vreg_to_lvreg;
14406         guint32 *lvregs;
14407         guint32 i, lvregs_len;
14408         gboolean dest_has_lvreg = FALSE;
14409         MonoStackType stacktypes [128];
14410         MonoInst **live_range_start, **live_range_end;
14411         MonoBasicBlock **live_range_start_bb, **live_range_end_bb;
14412
14413         *need_local_opts = FALSE;
14414
14415         memset (spec2, 0, sizeof (spec2));
14416
14417         /* FIXME: Move this function to mini.c */
14418         stacktypes ['i'] = STACK_PTR;
14419         stacktypes ['l'] = STACK_I8;
14420         stacktypes ['f'] = STACK_R8;
14421 #ifdef MONO_ARCH_SIMD_INTRINSICS
14422         stacktypes ['x'] = STACK_VTYPE;
14423 #endif
14424
14425 #if SIZEOF_REGISTER == 4
14426         /* Create MonoInsts for longs */
14427         for (i = 0; i < cfg->num_varinfo; i++) {
14428                 MonoInst *ins = cfg->varinfo [i];
14429
14430                 if ((ins->opcode != OP_REGVAR) && !(ins->flags & MONO_INST_IS_DEAD)) {
14431                         switch (ins->type) {
14432                         case STACK_R8:
14433                         case STACK_I8: {
14434                                 MonoInst *tree;
14435
14436                                 if (ins->type == STACK_R8 && !COMPILE_SOFT_FLOAT (cfg))
14437                                         break;
14438
14439                                 g_assert (ins->opcode == OP_REGOFFSET);
14440
14441                                 tree = get_vreg_to_inst (cfg, MONO_LVREG_LS (ins->dreg));
14442                                 g_assert (tree);
14443                                 tree->opcode = OP_REGOFFSET;
14444                                 tree->inst_basereg = ins->inst_basereg;
14445                                 tree->inst_offset = ins->inst_offset + MINI_LS_WORD_OFFSET;
14446
14447                                 tree = get_vreg_to_inst (cfg, MONO_LVREG_MS (ins->dreg));
14448                                 g_assert (tree);
14449                                 tree->opcode = OP_REGOFFSET;
14450                                 tree->inst_basereg = ins->inst_basereg;
14451                                 tree->inst_offset = ins->inst_offset + MINI_MS_WORD_OFFSET;
14452                                 break;
14453                         }
14454                         default:
14455                                 break;
14456                         }
14457                 }
14458         }
14459 #endif
14460
14461         if (cfg->compute_gc_maps) {
14462                 /* registers need liveness info even for !non refs */
14463                 for (i = 0; i < cfg->num_varinfo; i++) {
14464                         MonoInst *ins = cfg->varinfo [i];
14465
14466                         if (ins->opcode == OP_REGVAR)
14467                                 ins->flags |= MONO_INST_GC_TRACK;
14468                 }
14469         }
14470                 
14471         /* FIXME: widening and truncation */
14472
14473         /*
14474          * As an optimization, when a variable allocated to the stack is first loaded into 
14475          * an lvreg, we will remember the lvreg and use it the next time instead of loading
14476          * the variable again.
14477          */
14478         orig_next_vreg = cfg->next_vreg;
14479         vreg_to_lvreg = (guint32 *)mono_mempool_alloc0 (cfg->mempool, sizeof (guint32) * cfg->next_vreg);
14480         lvregs = (guint32 *)mono_mempool_alloc (cfg->mempool, sizeof (guint32) * 1024);
14481         lvregs_len = 0;
14482
14483         /* 
14484          * These arrays contain the first and last instructions accessing a given
14485          * variable.
14486          * Since we emit bblocks in the same order we process them here, and we
14487          * don't split live ranges, these will precisely describe the live range of
14488          * the variable, i.e. the instruction range where a valid value can be found
14489          * in the variables location.
14490          * The live range is computed using the liveness info computed by the liveness pass.
14491          * We can't use vmv->range, since that is an abstract live range, and we need
14492          * one which is instruction precise.
14493          * FIXME: Variables used in out-of-line bblocks have a hole in their live range.
14494          */
14495         /* FIXME: Only do this if debugging info is requested */
14496         live_range_start = g_new0 (MonoInst*, cfg->next_vreg);
14497         live_range_end = g_new0 (MonoInst*, cfg->next_vreg);
14498         live_range_start_bb = g_new (MonoBasicBlock*, cfg->next_vreg);
14499         live_range_end_bb = g_new (MonoBasicBlock*, cfg->next_vreg);
14500         
14501         /* Add spill loads/stores */
14502         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
14503                 MonoInst *ins;
14504
14505                 if (cfg->verbose_level > 2)
14506                         printf ("\nSPILL BLOCK %d:\n", bb->block_num);
14507
14508                 /* Clear vreg_to_lvreg array */
14509                 for (i = 0; i < lvregs_len; i++)
14510                         vreg_to_lvreg [lvregs [i]] = 0;
14511                 lvregs_len = 0;
14512
14513                 cfg->cbb = bb;
14514                 MONO_BB_FOR_EACH_INS (bb, ins) {
14515                         const char *spec = INS_INFO (ins->opcode);
14516                         int regtype, srcindex, sreg, tmp_reg, prev_dreg, num_sregs;
14517                         gboolean store, no_lvreg;
14518                         int sregs [MONO_MAX_SRC_REGS];
14519
14520                         if (G_UNLIKELY (cfg->verbose_level > 2))
14521                                 mono_print_ins (ins);
14522
14523                         if (ins->opcode == OP_NOP)
14524                                 continue;
14525
14526                         /* 
14527                          * We handle LDADDR here as well, since it can only be decomposed
14528                          * when variable addresses are known.
14529                          */
14530                         if (ins->opcode == OP_LDADDR) {
14531                                 MonoInst *var = (MonoInst *)ins->inst_p0;
14532
14533                                 if (var->opcode == OP_VTARG_ADDR) {
14534                                         /* Happens on SPARC/S390 where vtypes are passed by reference */
14535                                         MonoInst *vtaddr = var->inst_left;
14536                                         if (vtaddr->opcode == OP_REGVAR) {
14537                                                 ins->opcode = OP_MOVE;
14538                                                 ins->sreg1 = vtaddr->dreg;
14539                                         }
14540                                         else if (var->inst_left->opcode == OP_REGOFFSET) {
14541                                                 ins->opcode = OP_LOAD_MEMBASE;
14542                                                 ins->inst_basereg = vtaddr->inst_basereg;
14543                                                 ins->inst_offset = vtaddr->inst_offset;
14544                                         } else
14545                                                 NOT_IMPLEMENTED;
14546                                 } else if (cfg->gsharedvt && cfg->gsharedvt_vreg_to_idx [var->dreg] < 0) {
14547                                         /* gsharedvt arg passed by ref */
14548                                         g_assert (var->opcode == OP_GSHAREDVT_ARG_REGOFFSET);
14549
14550                                         ins->opcode = OP_LOAD_MEMBASE;
14551                                         ins->inst_basereg = var->inst_basereg;
14552                                         ins->inst_offset = var->inst_offset;
14553                                 } else if (cfg->gsharedvt && cfg->gsharedvt_vreg_to_idx [var->dreg]) {
14554                                         MonoInst *load, *load2, *load3;
14555                                         int idx = cfg->gsharedvt_vreg_to_idx [var->dreg] - 1;
14556                                         int reg1, reg2, reg3;
14557                                         MonoInst *info_var = cfg->gsharedvt_info_var;
14558                                         MonoInst *locals_var = cfg->gsharedvt_locals_var;
14559
14560                                         /*
14561                                          * gsharedvt local.
14562                                          * Compute the address of the local as gsharedvt_locals_var + gsharedvt_info_var->locals_offsets [idx].
14563                                          */
14564
14565                                         g_assert (var->opcode == OP_GSHAREDVT_LOCAL);
14566
14567                                         g_assert (info_var);
14568                                         g_assert (locals_var);
14569
14570                                         /* Mark the instruction used to compute the locals var as used */
14571                                         cfg->gsharedvt_locals_var_ins = NULL;
14572
14573                                         /* Load the offset */
14574                                         if (info_var->opcode == OP_REGOFFSET) {
14575                                                 reg1 = alloc_ireg (cfg);
14576                                                 NEW_LOAD_MEMBASE (cfg, load, OP_LOAD_MEMBASE, reg1, info_var->inst_basereg, info_var->inst_offset);
14577                                         } else if (info_var->opcode == OP_REGVAR) {
14578                                                 load = NULL;
14579                                                 reg1 = info_var->dreg;
14580                                         } else {
14581                                                 g_assert_not_reached ();
14582                                         }
14583                                         reg2 = alloc_ireg (cfg);
14584                                         NEW_LOAD_MEMBASE (cfg, load2, OP_LOADI4_MEMBASE, reg2, reg1, MONO_STRUCT_OFFSET (MonoGSharedVtMethodRuntimeInfo, entries) + (idx * sizeof (gpointer)));
14585                                         /* Load the locals area address */
14586                                         reg3 = alloc_ireg (cfg);
14587                                         if (locals_var->opcode == OP_REGOFFSET) {
14588                                                 NEW_LOAD_MEMBASE (cfg, load3, OP_LOAD_MEMBASE, reg3, locals_var->inst_basereg, locals_var->inst_offset);
14589                                         } else if (locals_var->opcode == OP_REGVAR) {
14590                                                 NEW_UNALU (cfg, load3, OP_MOVE, reg3, locals_var->dreg);
14591                                         } else {
14592                                                 g_assert_not_reached ();
14593                                         }
14594                                         /* Compute the address */
14595                                         ins->opcode = OP_PADD;
14596                                         ins->sreg1 = reg3;
14597                                         ins->sreg2 = reg2;
14598
14599                                         mono_bblock_insert_before_ins (bb, ins, load3);
14600                                         mono_bblock_insert_before_ins (bb, load3, load2);
14601                                         if (load)
14602                                                 mono_bblock_insert_before_ins (bb, load2, load);
14603                                 } else {
14604                                         g_assert (var->opcode == OP_REGOFFSET);
14605
14606                                         ins->opcode = OP_ADD_IMM;
14607                                         ins->sreg1 = var->inst_basereg;
14608                                         ins->inst_imm = var->inst_offset;
14609                                 }
14610
14611                                 *need_local_opts = TRUE;
14612                                 spec = INS_INFO (ins->opcode);
14613                         }
14614
14615                         if (ins->opcode < MONO_CEE_LAST) {
14616                                 mono_print_ins (ins);
14617                                 g_assert_not_reached ();
14618                         }
14619
14620                         /*
14621                          * Store opcodes have destbasereg in the dreg, but in reality, it is an
14622                          * src register.
14623                          * FIXME:
14624                          */
14625                         if (MONO_IS_STORE_MEMBASE (ins)) {
14626                                 tmp_reg = ins->dreg;
14627                                 ins->dreg = ins->sreg2;
14628                                 ins->sreg2 = tmp_reg;
14629                                 store = TRUE;
14630
14631                                 spec2 [MONO_INST_DEST] = ' ';
14632                                 spec2 [MONO_INST_SRC1] = spec [MONO_INST_SRC1];
14633                                 spec2 [MONO_INST_SRC2] = spec [MONO_INST_DEST];
14634                                 spec2 [MONO_INST_SRC3] = ' ';
14635                                 spec = spec2;
14636                         } else if (MONO_IS_STORE_MEMINDEX (ins))
14637                                 g_assert_not_reached ();
14638                         else
14639                                 store = FALSE;
14640                         no_lvreg = FALSE;
14641
14642                         if (G_UNLIKELY (cfg->verbose_level > 2)) {
14643                                 printf ("\t %.3s %d", spec, ins->dreg);
14644                                 num_sregs = mono_inst_get_src_registers (ins, sregs);
14645                                 for (srcindex = 0; srcindex < num_sregs; ++srcindex)
14646                                         printf (" %d", sregs [srcindex]);
14647                                 printf ("\n");
14648                         }
14649
14650                         /***************/
14651                         /*    DREG     */
14652                         /***************/
14653                         regtype = spec [MONO_INST_DEST];
14654                         g_assert (((ins->dreg == -1) && (regtype == ' ')) || ((ins->dreg != -1) && (regtype != ' ')));
14655                         prev_dreg = -1;
14656
14657                         if ((ins->dreg != -1) && get_vreg_to_inst (cfg, ins->dreg)) {
14658                                 MonoInst *var = get_vreg_to_inst (cfg, ins->dreg);
14659                                 MonoInst *store_ins;
14660                                 int store_opcode;
14661                                 MonoInst *def_ins = ins;
14662                                 int dreg = ins->dreg; /* The original vreg */
14663
14664                                 store_opcode = mono_type_to_store_membase (cfg, var->inst_vtype);
14665
14666                                 if (var->opcode == OP_REGVAR) {
14667                                         ins->dreg = var->dreg;
14668                                 } 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)) {
14669                                         /* 
14670                                          * Instead of emitting a load+store, use a _membase opcode.
14671                                          */
14672                                         g_assert (var->opcode == OP_REGOFFSET);
14673                                         if (ins->opcode == OP_MOVE) {
14674                                                 NULLIFY_INS (ins);
14675                                                 def_ins = NULL;
14676                                         } else {
14677                                                 ins->opcode = op_to_op_dest_membase (store_opcode, ins->opcode);
14678                                                 ins->inst_basereg = var->inst_basereg;
14679                                                 ins->inst_offset = var->inst_offset;
14680                                                 ins->dreg = -1;
14681                                         }
14682                                         spec = INS_INFO (ins->opcode);
14683                                 } else {
14684                                         guint32 lvreg;
14685
14686                                         g_assert (var->opcode == OP_REGOFFSET);
14687
14688                                         prev_dreg = ins->dreg;
14689
14690                                         /* Invalidate any previous lvreg for this vreg */
14691                                         vreg_to_lvreg [ins->dreg] = 0;
14692
14693                                         lvreg = 0;
14694
14695                                         if (COMPILE_SOFT_FLOAT (cfg) && store_opcode == OP_STORER8_MEMBASE_REG) {
14696                                                 regtype = 'l';
14697                                                 store_opcode = OP_STOREI8_MEMBASE_REG;
14698                                         }
14699
14700                                         ins->dreg = alloc_dreg (cfg, stacktypes [regtype]);
14701
14702 #if SIZEOF_REGISTER != 8
14703                                         if (regtype == 'l') {
14704                                                 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));
14705                                                 mono_bblock_insert_after_ins (bb, ins, store_ins);
14706                                                 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));
14707                                                 mono_bblock_insert_after_ins (bb, ins, store_ins);
14708                                                 def_ins = store_ins;
14709                                         }
14710                                         else
14711 #endif
14712                                         {
14713                                                 g_assert (store_opcode != OP_STOREV_MEMBASE);
14714
14715                                                 /* Try to fuse the store into the instruction itself */
14716                                                 /* FIXME: Add more instructions */
14717                                                 if (!lvreg && ((ins->opcode == OP_ICONST) || ((ins->opcode == OP_I8CONST) && (ins->inst_c0 == 0)))) {
14718                                                         ins->opcode = store_membase_reg_to_store_membase_imm (store_opcode);
14719                                                         ins->inst_imm = ins->inst_c0;
14720                                                         ins->inst_destbasereg = var->inst_basereg;
14721                                                         ins->inst_offset = var->inst_offset;
14722                                                         spec = INS_INFO (ins->opcode);
14723                                                 } else if (!lvreg && ((ins->opcode == OP_MOVE) || (ins->opcode == OP_FMOVE) || (ins->opcode == OP_LMOVE) || (ins->opcode == OP_RMOVE))) {
14724                                                         ins->opcode = store_opcode;
14725                                                         ins->inst_destbasereg = var->inst_basereg;
14726                                                         ins->inst_offset = var->inst_offset;
14727
14728                                                         no_lvreg = TRUE;
14729
14730                                                         tmp_reg = ins->dreg;
14731                                                         ins->dreg = ins->sreg2;
14732                                                         ins->sreg2 = tmp_reg;
14733                                                         store = TRUE;
14734
14735                                                         spec2 [MONO_INST_DEST] = ' ';
14736                                                         spec2 [MONO_INST_SRC1] = spec [MONO_INST_SRC1];
14737                                                         spec2 [MONO_INST_SRC2] = spec [MONO_INST_DEST];
14738                                                         spec2 [MONO_INST_SRC3] = ' ';
14739                                                         spec = spec2;
14740                                                 } else if (!lvreg && (op_to_op_store_membase (store_opcode, ins->opcode) != -1)) {
14741                                                         // FIXME: The backends expect the base reg to be in inst_basereg
14742                                                         ins->opcode = op_to_op_store_membase (store_opcode, ins->opcode);
14743                                                         ins->dreg = -1;
14744                                                         ins->inst_basereg = var->inst_basereg;
14745                                                         ins->inst_offset = var->inst_offset;
14746                                                         spec = INS_INFO (ins->opcode);
14747                                                 } else {
14748                                                         /* printf ("INS: "); mono_print_ins (ins); */
14749                                                         /* Create a store instruction */
14750                                                         NEW_STORE_MEMBASE (cfg, store_ins, store_opcode, var->inst_basereg, var->inst_offset, ins->dreg);
14751
14752                                                         /* Insert it after the instruction */
14753                                                         mono_bblock_insert_after_ins (bb, ins, store_ins);
14754
14755                                                         def_ins = store_ins;
14756
14757                                                         /* 
14758                                                          * We can't assign ins->dreg to var->dreg here, since the
14759                                                          * sregs could use it. So set a flag, and do it after
14760                                                          * the sregs.
14761                                                          */
14762                                                         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)))
14763                                                                 dest_has_lvreg = TRUE;
14764                                                 }
14765                                         }
14766                                 }
14767
14768                                 if (def_ins && !live_range_start [dreg]) {
14769                                         live_range_start [dreg] = def_ins;
14770                                         live_range_start_bb [dreg] = bb;
14771                                 }
14772
14773                                 if (cfg->compute_gc_maps && def_ins && (var->flags & MONO_INST_GC_TRACK)) {
14774                                         MonoInst *tmp;
14775
14776                                         MONO_INST_NEW (cfg, tmp, OP_GC_LIVENESS_DEF);
14777                                         tmp->inst_c1 = dreg;
14778                                         mono_bblock_insert_after_ins (bb, def_ins, tmp);
14779                                 }
14780                         }
14781
14782                         /************/
14783                         /*  SREGS   */
14784                         /************/
14785                         num_sregs = mono_inst_get_src_registers (ins, sregs);
14786                         for (srcindex = 0; srcindex < 3; ++srcindex) {
14787                                 regtype = spec [MONO_INST_SRC1 + srcindex];
14788                                 sreg = sregs [srcindex];
14789
14790                                 g_assert (((sreg == -1) && (regtype == ' ')) || ((sreg != -1) && (regtype != ' ')));
14791                                 if ((sreg != -1) && get_vreg_to_inst (cfg, sreg)) {
14792                                         MonoInst *var = get_vreg_to_inst (cfg, sreg);
14793                                         MonoInst *use_ins = ins;
14794                                         MonoInst *load_ins;
14795                                         guint32 load_opcode;
14796
14797                                         if (var->opcode == OP_REGVAR) {
14798                                                 sregs [srcindex] = var->dreg;
14799                                                 //mono_inst_set_src_registers (ins, sregs);
14800                                                 live_range_end [sreg] = use_ins;
14801                                                 live_range_end_bb [sreg] = bb;
14802
14803                                                 if (cfg->compute_gc_maps && var->dreg < orig_next_vreg && (var->flags & MONO_INST_GC_TRACK)) {
14804                                                         MonoInst *tmp;
14805
14806                                                         MONO_INST_NEW (cfg, tmp, OP_GC_LIVENESS_USE);
14807                                                         /* var->dreg is a hreg */
14808                                                         tmp->inst_c1 = sreg;
14809                                                         mono_bblock_insert_after_ins (bb, ins, tmp);
14810                                                 }
14811
14812                                                 continue;
14813                                         }
14814
14815                                         g_assert (var->opcode == OP_REGOFFSET);
14816                                                 
14817                                         load_opcode = mono_type_to_load_membase (cfg, var->inst_vtype);
14818
14819                                         g_assert (load_opcode != OP_LOADV_MEMBASE);
14820
14821                                         if (vreg_to_lvreg [sreg]) {
14822                                                 g_assert (vreg_to_lvreg [sreg] != -1);
14823
14824                                                 /* The variable is already loaded to an lvreg */
14825                                                 if (G_UNLIKELY (cfg->verbose_level > 2))
14826                                                         printf ("\t\tUse lvreg R%d for R%d.\n", vreg_to_lvreg [sreg], sreg);
14827                                                 sregs [srcindex] = vreg_to_lvreg [sreg];
14828                                                 //mono_inst_set_src_registers (ins, sregs);
14829                                                 continue;
14830                                         }
14831
14832                                         /* Try to fuse the load into the instruction */
14833                                         if ((srcindex == 0) && (op_to_op_src1_membase (cfg, load_opcode, ins->opcode) != -1)) {
14834                                                 ins->opcode = op_to_op_src1_membase (cfg, load_opcode, ins->opcode);
14835                                                 sregs [0] = var->inst_basereg;
14836                                                 //mono_inst_set_src_registers (ins, sregs);
14837                                                 ins->inst_offset = var->inst_offset;
14838                                         } else if ((srcindex == 1) && (op_to_op_src2_membase (cfg, load_opcode, ins->opcode) != -1)) {
14839                                                 ins->opcode = op_to_op_src2_membase (cfg, load_opcode, ins->opcode);
14840                                                 sregs [1] = var->inst_basereg;
14841                                                 //mono_inst_set_src_registers (ins, sregs);
14842                                                 ins->inst_offset = var->inst_offset;
14843                                         } else {
14844                                                 if (MONO_IS_REAL_MOVE (ins)) {
14845                                                         ins->opcode = OP_NOP;
14846                                                         sreg = ins->dreg;
14847                                                 } else {
14848                                                         //printf ("%d ", srcindex); mono_print_ins (ins);
14849
14850                                                         sreg = alloc_dreg (cfg, stacktypes [regtype]);
14851
14852                                                         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) {
14853                                                                 if (var->dreg == prev_dreg) {
14854                                                                         /*
14855                                                                          * sreg refers to the value loaded by the load
14856                                                                          * emitted below, but we need to use ins->dreg
14857                                                                          * since it refers to the store emitted earlier.
14858                                                                          */
14859                                                                         sreg = ins->dreg;
14860                                                                 }
14861                                                                 g_assert (sreg != -1);
14862                                                                 vreg_to_lvreg [var->dreg] = sreg;
14863                                                                 g_assert (lvregs_len < 1024);
14864                                                                 lvregs [lvregs_len ++] = var->dreg;
14865                                                         }
14866                                                 }
14867
14868                                                 sregs [srcindex] = sreg;
14869                                                 //mono_inst_set_src_registers (ins, sregs);
14870
14871 #if SIZEOF_REGISTER != 8
14872                                                 if (regtype == 'l') {
14873                                                         NEW_LOAD_MEMBASE (cfg, load_ins, OP_LOADI4_MEMBASE, MONO_LVREG_MS (sreg), var->inst_basereg, var->inst_offset + MINI_MS_WORD_OFFSET);
14874                                                         mono_bblock_insert_before_ins (bb, ins, load_ins);
14875                                                         NEW_LOAD_MEMBASE (cfg, load_ins, OP_LOADI4_MEMBASE, MONO_LVREG_LS (sreg), var->inst_basereg, var->inst_offset + MINI_LS_WORD_OFFSET);
14876                                                         mono_bblock_insert_before_ins (bb, ins, load_ins);
14877                                                         use_ins = load_ins;
14878                                                 }
14879                                                 else
14880 #endif
14881                                                 {
14882 #if SIZEOF_REGISTER == 4
14883                                                         g_assert (load_opcode != OP_LOADI8_MEMBASE);
14884 #endif
14885                                                         NEW_LOAD_MEMBASE (cfg, load_ins, load_opcode, sreg, var->inst_basereg, var->inst_offset);
14886                                                         mono_bblock_insert_before_ins (bb, ins, load_ins);
14887                                                         use_ins = load_ins;
14888                                                 }
14889                                         }
14890
14891                                         if (var->dreg < orig_next_vreg) {
14892                                                 live_range_end [var->dreg] = use_ins;
14893                                                 live_range_end_bb [var->dreg] = bb;
14894                                         }
14895
14896                                         if (cfg->compute_gc_maps && var->dreg < orig_next_vreg && (var->flags & MONO_INST_GC_TRACK)) {
14897                                                 MonoInst *tmp;
14898
14899                                                 MONO_INST_NEW (cfg, tmp, OP_GC_LIVENESS_USE);
14900                                                 tmp->inst_c1 = var->dreg;
14901                                                 mono_bblock_insert_after_ins (bb, ins, tmp);
14902                                         }
14903                                 }
14904                         }
14905                         mono_inst_set_src_registers (ins, sregs);
14906
14907                         if (dest_has_lvreg) {
14908                                 g_assert (ins->dreg != -1);
14909                                 vreg_to_lvreg [prev_dreg] = ins->dreg;
14910                                 g_assert (lvregs_len < 1024);
14911                                 lvregs [lvregs_len ++] = prev_dreg;
14912                                 dest_has_lvreg = FALSE;
14913                         }
14914
14915                         if (store) {
14916                                 tmp_reg = ins->dreg;
14917                                 ins->dreg = ins->sreg2;
14918                                 ins->sreg2 = tmp_reg;
14919                         }
14920
14921                         if (MONO_IS_CALL (ins)) {
14922                                 /* Clear vreg_to_lvreg array */
14923                                 for (i = 0; i < lvregs_len; i++)
14924                                         vreg_to_lvreg [lvregs [i]] = 0;
14925                                 lvregs_len = 0;
14926                         } else if (ins->opcode == OP_NOP) {
14927                                 ins->dreg = -1;
14928                                 MONO_INST_NULLIFY_SREGS (ins);
14929                         }
14930
14931                         if (cfg->verbose_level > 2)
14932                                 mono_print_ins_index (1, ins);
14933                 }
14934
14935                 /* Extend the live range based on the liveness info */
14936                 if (cfg->compute_precise_live_ranges && bb->live_out_set && bb->code) {
14937                         for (i = 0; i < cfg->num_varinfo; i ++) {
14938                                 MonoMethodVar *vi = MONO_VARINFO (cfg, i);
14939
14940                                 if (vreg_is_volatile (cfg, vi->vreg))
14941                                         /* The liveness info is incomplete */
14942                                         continue;
14943
14944                                 if (mono_bitset_test_fast (bb->live_in_set, i) && !live_range_start [vi->vreg]) {
14945                                         /* Live from at least the first ins of this bb */
14946                                         live_range_start [vi->vreg] = bb->code;
14947                                         live_range_start_bb [vi->vreg] = bb;
14948                                 }
14949
14950                                 if (mono_bitset_test_fast (bb->live_out_set, i)) {
14951                                         /* Live at least until the last ins of this bb */
14952                                         live_range_end [vi->vreg] = bb->last_ins;
14953                                         live_range_end_bb [vi->vreg] = bb;
14954                                 }
14955                         }
14956                 }
14957         }
14958         
14959         /*
14960          * Emit LIVERANGE_START/LIVERANGE_END opcodes, the backend will implement them
14961          * by storing the current native offset into MonoMethodVar->live_range_start/end.
14962          */
14963         if (cfg->backend->have_liverange_ops && cfg->compute_precise_live_ranges && cfg->comp_done & MONO_COMP_LIVENESS) {
14964                 for (i = 0; i < cfg->num_varinfo; ++i) {
14965                         int vreg = MONO_VARINFO (cfg, i)->vreg;
14966                         MonoInst *ins;
14967
14968                         if (live_range_start [vreg]) {
14969                                 MONO_INST_NEW (cfg, ins, OP_LIVERANGE_START);
14970                                 ins->inst_c0 = i;
14971                                 ins->inst_c1 = vreg;
14972                                 mono_bblock_insert_after_ins (live_range_start_bb [vreg], live_range_start [vreg], ins);
14973                         }
14974                         if (live_range_end [vreg]) {
14975                                 MONO_INST_NEW (cfg, ins, OP_LIVERANGE_END);
14976                                 ins->inst_c0 = i;
14977                                 ins->inst_c1 = vreg;
14978                                 if (live_range_end [vreg] == live_range_end_bb [vreg]->last_ins)
14979                                         mono_add_ins_to_end (live_range_end_bb [vreg], ins);
14980                                 else
14981                                         mono_bblock_insert_after_ins (live_range_end_bb [vreg], live_range_end [vreg], ins);
14982                         }
14983                 }
14984         }
14985
14986         if (cfg->gsharedvt_locals_var_ins) {
14987                 /* Nullify if unused */
14988                 cfg->gsharedvt_locals_var_ins->opcode = OP_PCONST;
14989                 cfg->gsharedvt_locals_var_ins->inst_imm = 0;
14990         }
14991
14992         g_free (live_range_start);
14993         g_free (live_range_end);
14994         g_free (live_range_start_bb);
14995         g_free (live_range_end_bb);
14996 }
14997
14998 static void mono_decompose_typecheck (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst *ins)
14999 {
15000         MonoInst *ret, *move;
15001         MonoClass *klass = ins->klass;
15002         int context_used = mini_class_check_context_used (cfg, klass);
15003         int is_isinst = ins->opcode == OP_ISINST;
15004         g_assert (is_isinst || ins->opcode == OP_CASTCLASS);
15005
15006         MonoBasicBlock *first_bb;
15007         NEW_BBLOCK (cfg, first_bb);
15008         cfg->cbb = first_bb;
15009
15010         if (!context_used && mini_class_has_reference_variant_generic_argument (cfg, klass, context_used)) {
15011                 if (is_isinst)
15012                         ret = emit_isinst_with_cache_nonshared (cfg, ins->prev, klass);
15013                 else
15014                         ret = emit_castclass_with_cache_nonshared (cfg, ins->prev, klass);
15015         } else if (!context_used && (mono_class_is_marshalbyref (klass) || klass->flags & TYPE_ATTRIBUTE_INTERFACE)) {
15016                 MonoInst *iargs [1];
15017                 int costs;
15018
15019                 iargs [0] = ins->prev;
15020                 if (is_isinst) {
15021                         MonoMethod *wrapper = mono_marshal_get_isinst (klass);
15022                         costs = inline_method (cfg, wrapper, mono_method_signature (wrapper), iargs, 0, 0, TRUE);
15023                 } else {
15024                         MonoMethod *wrapper = mono_marshal_get_castclass (klass);
15025                         save_cast_details (cfg, klass, ins->prev->dreg, TRUE);
15026                         costs = inline_method (cfg, wrapper, mono_method_signature (wrapper), iargs, 0, 0, TRUE);
15027                         reset_cast_details (cfg);
15028                 }
15029                 g_assert (costs > 0);
15030                 ret = iargs [0];
15031         } else {
15032                 if (is_isinst)
15033                         ret = handle_isinst (cfg, klass, ins->prev, context_used);
15034                 else
15035                         ret = handle_castclass (cfg, klass, ins->prev, context_used);
15036         }
15037         EMIT_NEW_UNALU (cfg, move, OP_MOVE, ins->dreg, ret->dreg);
15038
15039         g_assert (cfg->cbb->code || first_bb->code);
15040         MonoInst *prev = ins->prev;
15041         mono_replace_ins (cfg, bb, ins, &prev, first_bb, cfg->cbb);
15042 }
15043
15044 void mono_decompose_typechecks (MonoCompile *cfg)
15045 {
15046         for (MonoBasicBlock *bb = cfg->bb_entry; bb; bb = bb->next_bb) {
15047                 MonoInst *c;
15048                 MONO_BB_FOR_EACH_INS (bb, c) {
15049                         switch (c->opcode) {
15050                         case OP_ISINST:
15051                         case OP_CASTCLASS:
15052                                 mono_decompose_typecheck (cfg, bb, c);
15053                                 break;
15054                         }
15055                 }
15056         }
15057 }
15058
15059
15060 /**
15061  * FIXME:
15062  * - use 'iadd' instead of 'int_add'
15063  * - handling ovf opcodes: decompose in method_to_ir.
15064  * - unify iregs/fregs
15065  *   -> partly done, the missing parts are:
15066  *   - a more complete unification would involve unifying the hregs as well, so
15067  *     code wouldn't need if (fp) all over the place. but that would mean the hregs
15068  *     would no longer map to the machine hregs, so the code generators would need to
15069  *     be modified. Also, on ia64 for example, niregs + nfregs > 256 -> bitmasks
15070  *     wouldn't work any more. Duplicating the code in mono_local_regalloc () into
15071  *     fp/non-fp branches speeds it up by about 15%.
15072  * - use sext/zext opcodes instead of shifts
15073  * - add OP_ICALL
15074  * - get rid of TEMPLOADs if possible and use vregs instead
15075  * - clean up usage of OP_P/OP_ opcodes
15076  * - cleanup usage of DUMMY_USE
15077  * - cleanup the setting of ins->type for MonoInst's which are pushed on the 
15078  *   stack
15079  * - set the stack type and allocate a dreg in the EMIT_NEW macros
15080  * - get rid of all the <foo>2 stuff when the new JIT is ready.
15081  * - make sure handle_stack_args () is called before the branch is emitted
15082  * - when the new IR is done, get rid of all unused stuff
15083  * - COMPARE/BEQ as separate instructions or unify them ?
15084  *   - keeping them separate allows specialized compare instructions like
15085  *     compare_imm, compare_membase
15086  *   - most back ends unify fp compare+branch, fp compare+ceq
15087  * - integrate mono_save_args into inline_method
15088  * - get rid of the empty bblocks created by MONO_EMIT_NEW_BRACH_BLOCK2
15089  * - handle long shift opts on 32 bit platforms somehow: they require 
15090  *   3 sregs (2 for arg1 and 1 for arg2)
15091  * - make byref a 'normal' type.
15092  * - use vregs for bb->out_stacks if possible, handle_global_vreg will make them a
15093  *   variable if needed.
15094  * - do not start a new IL level bblock when cfg->cbb is changed by a function call
15095  *   like inline_method.
15096  * - remove inlining restrictions
15097  * - fix LNEG and enable cfold of INEG
15098  * - generalize x86 optimizations like ldelema as a peephole optimization
15099  * - add store_mem_imm for amd64
15100  * - optimize the loading of the interruption flag in the managed->native wrappers
15101  * - avoid special handling of OP_NOP in passes
15102  * - move code inserting instructions into one function/macro.
15103  * - try a coalescing phase after liveness analysis
15104  * - add float -> vreg conversion + local optimizations on !x86
15105  * - figure out how to handle decomposed branches during optimizations, ie.
15106  *   compare+branch, op_jump_table+op_br etc.
15107  * - promote RuntimeXHandles to vregs
15108  * - vtype cleanups:
15109  *   - add a NEW_VARLOADA_VREG macro
15110  * - the vtype optimizations are blocked by the LDADDR opcodes generated for 
15111  *   accessing vtype fields.
15112  * - get rid of I8CONST on 64 bit platforms
15113  * - dealing with the increase in code size due to branches created during opcode
15114  *   decomposition:
15115  *   - use extended basic blocks
15116  *     - all parts of the JIT
15117  *     - handle_global_vregs () && local regalloc
15118  *   - avoid introducing global vregs during decomposition, like 'vtable' in isinst
15119  * - sources of increase in code size:
15120  *   - vtypes
15121  *   - long compares
15122  *   - isinst and castclass
15123  *   - lvregs not allocated to global registers even if used multiple times
15124  * - call cctors outside the JIT, to make -v output more readable and JIT timings more
15125  *   meaningful.
15126  * - check for fp stack leakage in other opcodes too. (-> 'exceptions' optimization)
15127  * - add all micro optimizations from the old JIT
15128  * - put tree optimizations into the deadce pass
15129  * - decompose op_start_handler/op_endfilter/op_endfinally earlier using an arch
15130  *   specific function.
15131  * - unify the float comparison opcodes with the other comparison opcodes, i.e.
15132  *   fcompare + branchCC.
15133  * - create a helper function for allocating a stack slot, taking into account 
15134  *   MONO_CFG_HAS_SPILLUP.
15135  * - merge r68207.
15136  * - merge the ia64 switch changes.
15137  * - optimize mono_regstate2_alloc_int/float.
15138  * - fix the pessimistic handling of variables accessed in exception handler blocks.
15139  * - need to write a tree optimization pass, but the creation of trees is difficult, i.e.
15140  *   parts of the tree could be separated by other instructions, killing the tree
15141  *   arguments, or stores killing loads etc. Also, should we fold loads into other
15142  *   instructions if the result of the load is used multiple times ?
15143  * - make the REM_IMM optimization in mini-x86.c arch-independent.
15144  * - LAST MERGE: 108395.
15145  * - when returning vtypes in registers, generate IR and append it to the end of the
15146  *   last bb instead of doing it in the epilog.
15147  * - change the store opcodes so they use sreg1 instead of dreg to store the base register.
15148  */
15149
15150 /*
15151
15152 NOTES
15153 -----
15154
15155 - When to decompose opcodes:
15156   - earlier: this makes some optimizations hard to implement, since the low level IR
15157   no longer contains the neccessary information. But it is easier to do.
15158   - later: harder to implement, enables more optimizations.
15159 - Branches inside bblocks:
15160   - created when decomposing complex opcodes. 
15161     - branches to another bblock: harmless, but not tracked by the branch 
15162       optimizations, so need to branch to a label at the start of the bblock.
15163     - branches to inside the same bblock: very problematic, trips up the local
15164       reg allocator. Can be fixed by spitting the current bblock, but that is a
15165       complex operation, since some local vregs can become global vregs etc.
15166 - Local/global vregs:
15167   - local vregs: temporary vregs used inside one bblock. Assigned to hregs by the
15168     local register allocator.
15169   - global vregs: used in more than one bblock. Have an associated MonoMethodVar
15170     structure, created by mono_create_var (). Assigned to hregs or the stack by
15171     the global register allocator.
15172 - When to do optimizations like alu->alu_imm:
15173   - earlier -> saves work later on since the IR will be smaller/simpler
15174   - later -> can work on more instructions
15175 - Handling of valuetypes:
15176   - When a vtype is pushed on the stack, a new temporary is created, an 
15177     instruction computing its address (LDADDR) is emitted and pushed on
15178     the stack. Need to optimize cases when the vtype is used immediately as in
15179     argument passing, stloc etc.
15180 - Instead of the to_end stuff in the old JIT, simply call the function handling
15181   the values on the stack before emitting the last instruction of the bb.
15182 */
15183
15184 #endif /* DISABLE_JIT */