[mini] Fix the llvmonlycheck test.
[mono.git] / mono / mini / mini-arm.c
1 /**
2  * \file
3  * ARM backend for the Mono code generator
4  *
5  * Authors:
6  *   Paolo Molaro (lupus@ximian.com)
7  *   Dietmar Maurer (dietmar@ximian.com)
8  *
9  * (C) 2003 Ximian, Inc.
10  * Copyright 2003-2011 Novell, Inc (http://www.novell.com)
11  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
12  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
13  */
14 #include "mini.h"
15 #include <string.h>
16
17 #include <mono/metadata/abi-details.h>
18 #include <mono/metadata/appdomain.h>
19 #include <mono/metadata/profiler-private.h>
20 #include <mono/metadata/debug-helpers.h>
21 #include <mono/utils/mono-mmap.h>
22 #include <mono/utils/mono-hwcap.h>
23 #include <mono/utils/mono-memory-model.h>
24 #include <mono/utils/mono-threads-coop.h>
25
26 #include "mini-arm.h"
27 #include "cpu-arm.h"
28 #include "trace.h"
29 #include "ir-emit.h"
30 #include "debugger-agent.h"
31 #include "mini-gc.h"
32 #include "mono/arch/arm/arm-vfp-codegen.h"
33
34 /* Sanity check: This makes no sense */
35 #if defined(ARM_FPU_NONE) && (defined(ARM_FPU_VFP) || defined(ARM_FPU_VFP_HARD))
36 #error "ARM_FPU_NONE is defined while one of ARM_FPU_VFP/ARM_FPU_VFP_HARD is defined"
37 #endif
38
39 /*
40  * IS_SOFT_FLOAT: Is full software floating point used?
41  * IS_HARD_FLOAT: Is full hardware floating point used?
42  * IS_VFP: Is hardware floating point with software ABI used?
43  *
44  * These are not necessarily constants, e.g. IS_SOFT_FLOAT and
45  * IS_VFP may delegate to mono_arch_is_soft_float ().
46  */
47
48 #if defined(ARM_FPU_VFP_HARD)
49 #define IS_SOFT_FLOAT (FALSE)
50 #define IS_HARD_FLOAT (TRUE)
51 #define IS_VFP (TRUE)
52 #elif defined(ARM_FPU_NONE)
53 #define IS_SOFT_FLOAT (mono_arch_is_soft_float ())
54 #define IS_HARD_FLOAT (FALSE)
55 #define IS_VFP (!mono_arch_is_soft_float ())
56 #else
57 #define IS_SOFT_FLOAT (FALSE)
58 #define IS_HARD_FLOAT (FALSE)
59 #define IS_VFP (TRUE)
60 #endif
61
62 #define THUNK_SIZE (3 * 4)
63
64 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
65
66 #if __APPLE__
67 void sys_icache_invalidate (void *start, size_t len);
68 #endif
69
70 /* This mutex protects architecture specific caches */
71 #define mono_mini_arch_lock() mono_os_mutex_lock (&mini_arch_mutex)
72 #define mono_mini_arch_unlock() mono_os_mutex_unlock (&mini_arch_mutex)
73 static mono_mutex_t mini_arch_mutex;
74
75 static gboolean v5_supported = FALSE;
76 static gboolean v6_supported = FALSE;
77 static gboolean v7_supported = FALSE;
78 static gboolean v7s_supported = FALSE;
79 static gboolean v7k_supported = FALSE;
80 static gboolean thumb_supported = FALSE;
81 static gboolean thumb2_supported = FALSE;
82 /*
83  * Whenever to use the ARM EABI
84  */
85 static gboolean eabi_supported = FALSE;
86
87 /* 
88  * Whenever to use the iphone ABI extensions:
89  * http://developer.apple.com/library/ios/documentation/Xcode/Conceptual/iPhoneOSABIReference/index.html
90  * Basically, r7 is used as a frame pointer and it should point to the saved r7 + lr.
91  * This is required for debugging/profiling tools to work, but it has some overhead so it should
92  * only be turned on in debug builds.
93  */
94 static gboolean iphone_abi = FALSE;
95
96 /*
97  * The FPU we are generating code for. This is NOT runtime configurable right now,
98  * since some things like MONO_ARCH_CALLEE_FREGS still depend on defines.
99  */
100 static MonoArmFPU arm_fpu;
101
102 #if defined(ARM_FPU_VFP_HARD)
103 /*
104  * On armhf, d0-d7 are used for argument passing and d8-d15
105  * must be preserved across calls, which leaves us no room
106  * for scratch registers. So we use d14-d15 but back up their
107  * previous contents to a stack slot before using them - see
108  * mono_arm_emit_vfp_scratch_save/_restore ().
109  */
110 static int vfp_scratch1 = ARM_VFP_D14;
111 static int vfp_scratch2 = ARM_VFP_D15;
112 #else
113 /*
114  * On armel, d0-d7 do not need to be preserved, so we can
115  * freely make use of them as scratch registers.
116  */
117 static int vfp_scratch1 = ARM_VFP_D0;
118 static int vfp_scratch2 = ARM_VFP_D1;
119 #endif
120
121 static int i8_align;
122
123 static gpointer single_step_tramp, breakpoint_tramp;
124 static gpointer get_tls_tramp;
125
126 /*
127  * The code generated for sequence points reads from this location, which is
128  * made read-only when single stepping is enabled.
129  */
130 static gpointer ss_trigger_page;
131
132 /* Enabled breakpoints read from this trigger page */
133 static gpointer bp_trigger_page;
134
135 /*
136  * TODO:
137  * floating point support: on ARM it is a mess, there are at least 3
138  * different setups, each of which binary incompat with the other.
139  * 1) FPA: old and ugly, but unfortunately what current distros use
140  *    the double binary format has the two words swapped. 8 double registers.
141  *    Implemented usually by kernel emulation.
142  * 2) softfloat: the compiler emulates all the fp ops. Usually uses the
143  *    ugly swapped double format (I guess a softfloat-vfp exists, too, though).
144  * 3) VFP: the new and actually sensible and useful FP support. Implemented
145  *    in HW or kernel-emulated, requires new tools. I think this is what symbian uses.
146  *
147  * We do not care about FPA. We will support soft float and VFP.
148  */
149 int mono_exc_esp_offset = 0;
150
151 #define arm_is_imm12(v) ((v) > -4096 && (v) < 4096)
152 #define arm_is_imm8(v) ((v) > -256 && (v) < 256)
153 #define arm_is_fpimm8(v) ((v) >= -1020 && (v) <= 1020)
154
155 #define LDR_MASK ((0xf << ARMCOND_SHIFT) | (3 << 26) | (1 << 22) | (1 << 20) | (15 << 12))
156 #define LDR_PC_VAL ((ARMCOND_AL << ARMCOND_SHIFT) | (1 << 26) | (0 << 22) | (1 << 20) | (15 << 12))
157 #define IS_LDR_PC(val) (((val) & LDR_MASK) == LDR_PC_VAL)
158
159 //#define DEBUG_IMT 0
160
161 #ifndef DISABLE_JIT
162 static void mono_arch_compute_omit_fp (MonoCompile *cfg);
163 #endif
164
165 static guint8*
166 emit_aotconst (MonoCompile *cfg, guint8 *code, int dreg, int patch_type, gpointer data);
167
168 const char*
169 mono_arch_regname (int reg)
170 {
171         static const char * rnames[] = {
172                 "arm_r0", "arm_r1", "arm_r2", "arm_r3", "arm_v1",
173                 "arm_v2", "arm_v3", "arm_v4", "arm_v5", "arm_v6",
174                 "arm_v7", "arm_fp", "arm_ip", "arm_sp", "arm_lr",
175                 "arm_pc"
176         };
177         if (reg >= 0 && reg < 16)
178                 return rnames [reg];
179         return "unknown";
180 }
181
182 const char*
183 mono_arch_fregname (int reg)
184 {
185         static const char * rnames[] = {
186                 "arm_f0", "arm_f1", "arm_f2", "arm_f3", "arm_f4",
187                 "arm_f5", "arm_f6", "arm_f7", "arm_f8", "arm_f9",
188                 "arm_f10", "arm_f11", "arm_f12", "arm_f13", "arm_f14",
189                 "arm_f15", "arm_f16", "arm_f17", "arm_f18", "arm_f19",
190                 "arm_f20", "arm_f21", "arm_f22", "arm_f23", "arm_f24",
191                 "arm_f25", "arm_f26", "arm_f27", "arm_f28", "arm_f29",
192                 "arm_f30", "arm_f31"
193         };
194         if (reg >= 0 && reg < 32)
195                 return rnames [reg];
196         return "unknown";
197 }
198
199
200 #ifndef DISABLE_JIT
201 static guint8*
202 emit_big_add (guint8 *code, int dreg, int sreg, int imm)
203 {
204         int imm8, rot_amount;
205         if ((imm8 = mono_arm_is_rotated_imm8 (imm, &rot_amount)) >= 0) {
206                 ARM_ADD_REG_IMM (code, dreg, sreg, imm8, rot_amount);
207                 return code;
208         }
209         if (dreg == sreg) {
210                 code = mono_arm_emit_load_imm (code, ARMREG_IP, imm);
211                 ARM_ADD_REG_REG (code, dreg, sreg, ARMREG_IP);
212         } else {
213                 code = mono_arm_emit_load_imm (code, dreg, imm);
214                 ARM_ADD_REG_REG (code, dreg, dreg, sreg);
215         }
216         return code;
217 }
218
219 /* If dreg == sreg, this clobbers IP */
220 static guint8*
221 emit_sub_imm (guint8 *code, int dreg, int sreg, int imm)
222 {
223         int imm8, rot_amount;
224         if ((imm8 = mono_arm_is_rotated_imm8 (imm, &rot_amount)) >= 0) {
225                 ARM_SUB_REG_IMM (code, dreg, sreg, imm8, rot_amount);
226                 return code;
227         }
228         if (dreg == sreg) {
229                 code = mono_arm_emit_load_imm (code, ARMREG_IP, imm);
230                 ARM_SUB_REG_REG (code, dreg, sreg, ARMREG_IP);
231         } else {
232                 code = mono_arm_emit_load_imm (code, dreg, imm);
233                 ARM_SUB_REG_REG (code, dreg, dreg, sreg);
234         }
235         return code;
236 }
237
238 static guint8*
239 emit_memcpy (guint8 *code, int size, int dreg, int doffset, int sreg, int soffset)
240 {
241         /* we can use r0-r3, since this is called only for incoming args on the stack */
242         if (size > sizeof (gpointer) * 4) {
243                 guint8 *start_loop;
244                 code = emit_big_add (code, ARMREG_R0, sreg, soffset);
245                 code = emit_big_add (code, ARMREG_R1, dreg, doffset);
246                 start_loop = code = mono_arm_emit_load_imm (code, ARMREG_R2, size);
247                 ARM_LDR_IMM (code, ARMREG_R3, ARMREG_R0, 0);
248                 ARM_STR_IMM (code, ARMREG_R3, ARMREG_R1, 0);
249                 ARM_ADD_REG_IMM8 (code, ARMREG_R0, ARMREG_R0, 4);
250                 ARM_ADD_REG_IMM8 (code, ARMREG_R1, ARMREG_R1, 4);
251                 ARM_SUBS_REG_IMM8 (code, ARMREG_R2, ARMREG_R2, 4);
252                 ARM_B_COND (code, ARMCOND_NE, 0);
253                 arm_patch (code - 4, start_loop);
254                 return code;
255         }
256         if (arm_is_imm12 (doffset) && arm_is_imm12 (doffset + size) &&
257                         arm_is_imm12 (soffset) && arm_is_imm12 (soffset + size)) {
258                 while (size >= 4) {
259                         ARM_LDR_IMM (code, ARMREG_LR, sreg, soffset);
260                         ARM_STR_IMM (code, ARMREG_LR, dreg, doffset);
261                         doffset += 4;
262                         soffset += 4;
263                         size -= 4;
264                 }
265         } else if (size) {
266                 code = emit_big_add (code, ARMREG_R0, sreg, soffset);
267                 code = emit_big_add (code, ARMREG_R1, dreg, doffset);
268                 doffset = soffset = 0;
269                 while (size >= 4) {
270                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_R0, soffset);
271                         ARM_STR_IMM (code, ARMREG_LR, ARMREG_R1, doffset);
272                         doffset += 4;
273                         soffset += 4;
274                         size -= 4;
275                 }
276         }
277         g_assert (size == 0);
278         return code;
279 }
280
281 static guint8*
282 emit_call_reg (guint8 *code, int reg)
283 {
284         if (v5_supported) {
285                 ARM_BLX_REG (code, reg);
286         } else {
287                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
288                 if (thumb_supported)
289                         ARM_BX (code, reg);
290                 else
291                         ARM_MOV_REG_REG (code, ARMREG_PC, reg);
292         }
293         return code;
294 }
295
296 static guint8*
297 emit_call_seq (MonoCompile *cfg, guint8 *code)
298 {
299         if (cfg->method->dynamic) {
300                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
301                 ARM_B (code, 0);
302                 *(gpointer*)code = NULL;
303                 code += 4;
304                 code = emit_call_reg (code, ARMREG_IP);
305         } else {
306                 ARM_BL (code, 0);
307         }
308         cfg->thunk_area += THUNK_SIZE;
309         return code;
310 }
311
312 guint8*
313 mono_arm_patchable_b (guint8 *code, int cond)
314 {
315         ARM_B_COND (code, cond, 0);
316         return code;
317 }
318
319 guint8*
320 mono_arm_patchable_bl (guint8 *code, int cond)
321 {
322         ARM_BL_COND (code, cond, 0);
323         return code;
324 }
325
326 #if defined(__ARM_EABI__) && defined(__linux__) && !defined(PLATFORM_ANDROID) && !defined(__native_client__)
327 #define HAVE_AEABI_READ_TP 1
328 #endif
329
330 #ifdef HAVE_AEABI_READ_TP
331 gpointer __aeabi_read_tp (void);
332 #endif
333
334 gboolean
335 mono_arch_have_fast_tls (void)
336 {
337 #ifdef HAVE_AEABI_READ_TP
338         static gboolean have_fast_tls = FALSE;
339         static gboolean inited = FALSE;
340         gpointer tp1, tp2;
341
342         if (mini_get_debug_options ()->use_fallback_tls)
343                 return FALSE;
344
345         if (inited)
346                 return have_fast_tls;
347
348         tp1 = __aeabi_read_tp ();
349         asm volatile("mrc p15, 0, %0, c13, c0, 3" : "=r" (tp2));
350
351         have_fast_tls = tp1 && tp1 == tp2;
352         inited = TRUE;
353         return have_fast_tls;
354 #else
355         return FALSE;
356 #endif
357 }
358
359 static guint8*
360 emit_tls_get (guint8 *code, int dreg, int tls_offset)
361 {
362         ARM_MRC (code, 15, 0, dreg, 13, 0, 3);
363         ARM_LDR_IMM (code, dreg, dreg, tls_offset);
364         return code;
365 }
366
367 static guint8*
368 emit_tls_set (guint8 *code, int sreg, int tls_offset)
369 {
370         int tp_reg = (sreg != ARMREG_R0) ? ARMREG_R0 : ARMREG_R1;
371         ARM_MRC (code, 15, 0, tp_reg, 13, 0, 3);
372         ARM_STR_IMM (code, sreg, tp_reg, tls_offset);
373         return code;
374 }
375
376 /*
377  * emit_save_lmf:
378  *
379  *   Emit code to push an LMF structure on the LMF stack.
380  * On arm, this is intermixed with the initialization of other fields of the structure.
381  */
382 static guint8*
383 emit_save_lmf (MonoCompile *cfg, guint8 *code, gint32 lmf_offset)
384 {
385         int i;
386
387         if (mono_arch_have_fast_tls () && mono_tls_get_tls_offset (TLS_KEY_LMF_ADDR) != -1) {
388                 code = emit_tls_get (code, ARMREG_R0, mono_tls_get_tls_offset (TLS_KEY_LMF_ADDR));
389         } else {
390                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
391                                                          (gpointer)"mono_tls_get_lmf_addr");
392                 code = emit_call_seq (cfg, code);
393         }
394         /* we build the MonoLMF structure on the stack - see mini-arm.h */
395         /* lmf_offset is the offset from the previous stack pointer,
396          * alloc_size is the total stack space allocated, so the offset
397          * of MonoLMF from the current stack ptr is alloc_size - lmf_offset.
398          * The pointer to the struct is put in r1 (new_lmf).
399          * ip is used as scratch
400          * The callee-saved registers are already in the MonoLMF structure
401          */
402         code = emit_big_add (code, ARMREG_R1, ARMREG_SP, lmf_offset);
403         /* r0 is the result from mono_get_lmf_addr () */
404         ARM_STR_IMM (code, ARMREG_R0, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, lmf_addr));
405         /* new_lmf->previous_lmf = *lmf_addr */
406         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
407         ARM_STR_IMM (code, ARMREG_IP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
408         /* *(lmf_addr) = r1 */
409         ARM_STR_IMM (code, ARMREG_R1, ARMREG_R0, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
410         /* Skip method (only needed for trampoline LMF frames) */
411         ARM_STR_IMM (code, ARMREG_SP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, sp));
412         ARM_STR_IMM (code, ARMREG_FP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, fp));
413         /* save the current IP */
414         ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_PC);
415         ARM_STR_IMM (code, ARMREG_IP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, ip));
416
417         for (i = 0; i < sizeof (MonoLMF); i += sizeof (mgreg_t))
418                 mini_gc_set_slot_type_from_fp (cfg, lmf_offset + i, SLOT_NOREF);
419
420         return code;
421 }
422
423 typedef struct {
424         gint32 vreg;
425         gint32 hreg;
426 } FloatArgData;
427
428 static guint8 *
429 emit_float_args (MonoCompile *cfg, MonoCallInst *inst, guint8 *code, int *max_len, guint *offset)
430 {
431         GSList *list;
432
433         for (list = inst->float_args; list; list = list->next) {
434                 FloatArgData *fad = list->data;
435                 MonoInst *var = get_vreg_to_inst (cfg, fad->vreg);
436                 gboolean imm = arm_is_fpimm8 (var->inst_offset);
437
438                 /* 4+1 insns for emit_big_add () and 1 for FLDS. */
439                 if (!imm)
440                         *max_len += 20 + 4;
441
442                 *max_len += 4;
443
444                 if (*offset + *max_len > cfg->code_size) {
445                         cfg->code_size += *max_len;
446                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
447
448                         code = cfg->native_code + *offset;
449                 }
450
451                 if (!imm) {
452                         code = emit_big_add (code, ARMREG_LR, var->inst_basereg, var->inst_offset);
453                         ARM_FLDS (code, fad->hreg, ARMREG_LR, 0);
454                 } else
455                         ARM_FLDS (code, fad->hreg, var->inst_basereg, var->inst_offset);
456
457                 *offset = code - cfg->native_code;
458         }
459
460         return code;
461 }
462
463 static guint8 *
464 mono_arm_emit_vfp_scratch_save (MonoCompile *cfg, guint8 *code, int reg)
465 {
466         MonoInst *inst;
467
468         g_assert (reg == vfp_scratch1 || reg == vfp_scratch2);
469
470         inst = (MonoInst *) cfg->arch.vfp_scratch_slots [reg == vfp_scratch1 ? 0 : 1];
471
472         if (IS_HARD_FLOAT) {
473                 if (!arm_is_fpimm8 (inst->inst_offset)) {
474                         code = emit_big_add (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
475                         ARM_FSTD (code, reg, ARMREG_LR, 0);
476                 } else
477                         ARM_FSTD (code, reg, inst->inst_basereg, inst->inst_offset);
478         }
479
480         return code;
481 }
482
483 static guint8 *
484 mono_arm_emit_vfp_scratch_restore (MonoCompile *cfg, guint8 *code, int reg)
485 {
486         MonoInst *inst;
487
488         g_assert (reg == vfp_scratch1 || reg == vfp_scratch2);
489
490         inst = (MonoInst *) cfg->arch.vfp_scratch_slots [reg == vfp_scratch1 ? 0 : 1];
491
492         if (IS_HARD_FLOAT) {
493                 if (!arm_is_fpimm8 (inst->inst_offset)) {
494                         code = emit_big_add (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
495                         ARM_FLDD (code, reg, ARMREG_LR, 0);
496                 } else
497                         ARM_FLDD (code, reg, inst->inst_basereg, inst->inst_offset);
498         }
499
500         return code;
501 }
502
503 /*
504  * emit_restore_lmf:
505  *
506  *   Emit code to pop an LMF structure from the LMF stack.
507  */
508 static guint8*
509 emit_restore_lmf (MonoCompile *cfg, guint8 *code, gint32 lmf_offset)
510 {
511         int basereg, offset;
512
513         if (lmf_offset < 32) {
514                 basereg = cfg->frame_reg;
515                 offset = lmf_offset;
516         } else {
517                 basereg = ARMREG_R2;
518                 offset = 0;
519                 code = emit_big_add (code, ARMREG_R2, cfg->frame_reg, lmf_offset);
520         }
521
522         /* ip = previous_lmf */
523         ARM_LDR_IMM (code, ARMREG_IP, basereg, offset + MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
524         /* lr = lmf_addr */
525         ARM_LDR_IMM (code, ARMREG_LR, basereg, offset + MONO_STRUCT_OFFSET (MonoLMF, lmf_addr));
526         /* *(lmf_addr) = previous_lmf */
527         ARM_STR_IMM (code, ARMREG_IP, ARMREG_LR, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
528
529         return code;
530 }
531
532 #endif /* #ifndef DISABLE_JIT */
533
534 /*
535  * mono_arch_get_argument_info:
536  * @csig:  a method signature
537  * @param_count: the number of parameters to consider
538  * @arg_info: an array to store the result infos
539  *
540  * Gathers information on parameters such as size, alignment and
541  * padding. arg_info should be large enought to hold param_count + 1 entries. 
542  *
543  * Returns the size of the activation frame.
544  */
545 int
546 mono_arch_get_argument_info (MonoMethodSignature *csig, int param_count, MonoJitArgumentInfo *arg_info)
547 {
548         int k, frame_size = 0;
549         guint32 size, align, pad;
550         int offset = 8;
551         MonoType *t;
552
553         t = mini_get_underlying_type (csig->ret);
554         if (MONO_TYPE_ISSTRUCT (t)) {
555                 frame_size += sizeof (gpointer);
556                 offset += 4;
557         }
558
559         arg_info [0].offset = offset;
560
561         if (csig->hasthis) {
562                 frame_size += sizeof (gpointer);
563                 offset += 4;
564         }
565
566         arg_info [0].size = frame_size;
567
568         for (k = 0; k < param_count; k++) {
569                 size = mini_type_stack_size_full (csig->params [k], &align, csig->pinvoke);
570
571                 /* ignore alignment for now */
572                 align = 1;
573
574                 frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1); 
575                 arg_info [k].pad = pad;
576                 frame_size += size;
577                 arg_info [k + 1].pad = 0;
578                 arg_info [k + 1].size = size;
579                 offset += pad;
580                 arg_info [k + 1].offset = offset;
581                 offset += size;
582         }
583
584         align = MONO_ARCH_FRAME_ALIGNMENT;
585         frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1);
586         arg_info [k].pad = pad;
587
588         return frame_size;
589 }
590
591 #define MAX_ARCH_DELEGATE_PARAMS 3
592
593 static gpointer
594 get_delegate_invoke_impl (MonoTrampInfo **info, gboolean has_target, gboolean param_count)
595 {
596         guint8 *code, *start;
597         GSList *unwind_ops = mono_arch_get_cie_program ();
598
599         if (has_target) {
600                 start = code = mono_global_codeman_reserve (12);
601
602                 /* Replace the this argument with the target */
603                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr));
604                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, MONO_STRUCT_OFFSET (MonoDelegate, target));
605                 ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
606
607                 g_assert ((code - start) <= 12);
608
609                 mono_arch_flush_icache (start, 12);
610         } else {
611                 int size, i;
612
613                 size = 8 + param_count * 4;
614                 start = code = mono_global_codeman_reserve (size);
615
616                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr));
617                 /* slide down the arguments */
618                 for (i = 0; i < param_count; ++i) {
619                         ARM_MOV_REG_REG (code, (ARMREG_R0 + i), (ARMREG_R0 + i + 1));
620                 }
621                 ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
622
623                 g_assert ((code - start) <= size);
624
625                 mono_arch_flush_icache (start, size);
626         }
627
628         if (has_target) {
629                  *info = mono_tramp_info_create ("delegate_invoke_impl_has_target", start, code - start, NULL, unwind_ops);
630         } else {
631                  char *name = g_strdup_printf ("delegate_invoke_impl_target_%d", param_count);
632                  *info = mono_tramp_info_create (name, start, code - start, NULL, unwind_ops);
633                  g_free (name);
634         }
635
636         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_DELEGATE_INVOKE, NULL);
637
638         return start;
639 }
640
641 /*
642  * mono_arch_get_delegate_invoke_impls:
643  *
644  *   Return a list of MonoAotTrampInfo structures for the delegate invoke impl
645  * trampolines.
646  */
647 GSList*
648 mono_arch_get_delegate_invoke_impls (void)
649 {
650         GSList *res = NULL;
651         MonoTrampInfo *info;
652         int i;
653
654         get_delegate_invoke_impl (&info, TRUE, 0);
655         res = g_slist_prepend (res, info);
656
657         for (i = 0; i <= MAX_ARCH_DELEGATE_PARAMS; ++i) {
658                 get_delegate_invoke_impl (&info, FALSE, i);
659                 res = g_slist_prepend (res, info);
660         }
661
662         return res;
663 }
664
665 gpointer
666 mono_arch_get_delegate_invoke_impl (MonoMethodSignature *sig, gboolean has_target)
667 {
668         guint8 *code, *start;
669         MonoType *sig_ret;
670
671         /* FIXME: Support more cases */
672         sig_ret = mini_get_underlying_type (sig->ret);
673         if (MONO_TYPE_ISSTRUCT (sig_ret))
674                 return NULL;
675
676         if (has_target) {
677                 static guint8* cached = NULL;
678                 mono_mini_arch_lock ();
679                 if (cached) {
680                         mono_mini_arch_unlock ();
681                         return cached;
682                 }
683
684                 if (mono_aot_only) {
685                         start = mono_aot_get_trampoline ("delegate_invoke_impl_has_target");
686                 } else {
687                         MonoTrampInfo *info;
688                         start = get_delegate_invoke_impl (&info, TRUE, 0);
689                         mono_tramp_info_register (info, NULL);
690                 }
691                 cached = start;
692                 mono_mini_arch_unlock ();
693                 return cached;
694         } else {
695                 static guint8* cache [MAX_ARCH_DELEGATE_PARAMS + 1] = {NULL};
696                 int i;
697
698                 if (sig->param_count > MAX_ARCH_DELEGATE_PARAMS)
699                         return NULL;
700                 for (i = 0; i < sig->param_count; ++i)
701                         if (!mono_is_regsize_var (sig->params [i]))
702                                 return NULL;
703
704                 mono_mini_arch_lock ();
705                 code = cache [sig->param_count];
706                 if (code) {
707                         mono_mini_arch_unlock ();
708                         return code;
709                 }
710
711                 if (mono_aot_only) {
712                         char *name = g_strdup_printf ("delegate_invoke_impl_target_%d", sig->param_count);
713                         start = mono_aot_get_trampoline (name);
714                         g_free (name);
715                 } else {
716                         MonoTrampInfo *info;
717                         start = get_delegate_invoke_impl (&info, FALSE, sig->param_count);
718                         mono_tramp_info_register (info, NULL);
719                 }
720                 cache [sig->param_count] = start;
721                 mono_mini_arch_unlock ();
722                 return start;
723         }
724
725         return NULL;
726 }
727
728 gpointer
729 mono_arch_get_delegate_virtual_invoke_impl (MonoMethodSignature *sig, MonoMethod *method, int offset, gboolean load_imt_reg)
730 {
731         return NULL;
732 }
733
734 gpointer
735 mono_arch_get_this_arg_from_call (mgreg_t *regs, guint8 *code)
736 {
737         return (gpointer)regs [ARMREG_R0];
738 }
739
740 /*
741  * Initialize the cpu to execute managed code.
742  */
743 void
744 mono_arch_cpu_init (void)
745 {
746         i8_align = MONO_ABI_ALIGNOF (gint64);
747 #ifdef MONO_CROSS_COMPILE
748         /* Need to set the alignment of i8 since it can different on the target */
749 #ifdef TARGET_ANDROID
750         /* linux gnueabi */
751         mono_type_set_alignment (MONO_TYPE_I8, i8_align);
752 #endif
753 #endif
754 }
755
756 /*
757  * Initialize architecture specific code.
758  */
759 void
760 mono_arch_init (void)
761 {
762         const char *cpu_arch;
763
764 #ifdef TARGET_WATCHOS
765         mini_get_debug_options ()->soft_breakpoints = TRUE;
766 #endif
767
768         mono_os_mutex_init_recursive (&mini_arch_mutex);
769         if (mini_get_debug_options ()->soft_breakpoints) {
770                 if (!mono_aot_only)
771                         breakpoint_tramp = mini_get_breakpoint_trampoline ();
772         } else {
773                 ss_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT, MONO_MEM_ACCOUNT_OTHER);
774                 bp_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT, MONO_MEM_ACCOUNT_OTHER);
775                 mono_mprotect (bp_trigger_page, mono_pagesize (), 0);
776         }
777
778         mono_aot_register_jit_icall ("mono_arm_throw_exception", mono_arm_throw_exception);
779         mono_aot_register_jit_icall ("mono_arm_throw_exception_by_token", mono_arm_throw_exception_by_token);
780         mono_aot_register_jit_icall ("mono_arm_resume_unwind", mono_arm_resume_unwind);
781 #if defined(MONO_ARCH_GSHAREDVT_SUPPORTED)
782         mono_aot_register_jit_icall ("mono_arm_start_gsharedvt_call", mono_arm_start_gsharedvt_call);
783 #endif
784         mono_aot_register_jit_icall ("mono_arm_unaligned_stack", mono_arm_unaligned_stack);
785         mono_aot_register_jit_icall ("mono_arm_handler_block_trampoline_helper", mono_arm_handler_block_trampoline_helper);
786 #if defined(__ARM_EABI__)
787         eabi_supported = TRUE;
788 #endif
789
790 #if defined(ARM_FPU_VFP_HARD)
791         arm_fpu = MONO_ARM_FPU_VFP_HARD;
792 #else
793         arm_fpu = MONO_ARM_FPU_VFP;
794
795 #if defined(ARM_FPU_NONE) && !defined(TARGET_IOS)
796         /*
797          * If we're compiling with a soft float fallback and it
798          * turns out that no VFP unit is available, we need to
799          * switch to soft float. We don't do this for iOS, since
800          * iOS devices always have a VFP unit.
801          */
802         if (!mono_hwcap_arm_has_vfp)
803                 arm_fpu = MONO_ARM_FPU_NONE;
804
805         /*
806          * This environment variable can be useful in testing
807          * environments to make sure the soft float fallback
808          * works. Most ARM devices have VFP units these days, so
809          * normally soft float code would not be exercised much.
810          */
811         const char *soft = g_getenv ("MONO_ARM_FORCE_SOFT_FLOAT");
812
813         if (soft && !strncmp (soft, "1", 1))
814                 arm_fpu = MONO_ARM_FPU_NONE;
815         g_free (soft);
816 #endif
817 #endif
818
819         v5_supported = mono_hwcap_arm_is_v5;
820         v6_supported = mono_hwcap_arm_is_v6;
821         v7_supported = mono_hwcap_arm_is_v7;
822
823         /*
824          * On weird devices, the hwcap code may fail to detect
825          * the ARM version. In that case, we can at least safely
826          * assume the version the runtime was compiled for.
827          */
828 #ifdef HAVE_ARMV5
829         v5_supported = TRUE;
830 #endif
831 #ifdef HAVE_ARMV6
832         v6_supported = TRUE;
833 #endif
834 #ifdef HAVE_ARMV7
835         v7_supported = TRUE;
836 #endif
837
838 #if defined(TARGET_IOS)
839         /* iOS is special-cased here because we don't yet
840            have a way to properly detect CPU features on it. */
841         thumb_supported = TRUE;
842         iphone_abi = TRUE;
843 #else
844         thumb_supported = mono_hwcap_arm_has_thumb;
845         thumb2_supported = mono_hwcap_arm_has_thumb2;
846 #endif
847
848         /* Format: armv(5|6|7[s])[-thumb[2]] */
849         cpu_arch = g_getenv ("MONO_CPU_ARCH");
850
851         /* Do this here so it overrides any detection. */
852         if (cpu_arch) {
853                 if (strncmp (cpu_arch, "armv", 4) == 0) {
854                         v5_supported = cpu_arch [4] >= '5';
855                         v6_supported = cpu_arch [4] >= '6';
856                         v7_supported = cpu_arch [4] >= '7';
857                         v7s_supported = strncmp (cpu_arch, "armv7s", 6) == 0;
858                         v7k_supported = strncmp (cpu_arch, "armv7k", 6) == 0;
859                 }
860
861                 thumb_supported = strstr (cpu_arch, "thumb") != NULL;
862                 thumb2_supported = strstr (cpu_arch, "thumb2") != NULL;
863                 g_free (cpu_arch);
864         }
865 }
866
867 /*
868  * Cleanup architecture specific code.
869  */
870 void
871 mono_arch_cleanup (void)
872 {
873 }
874
875 /*
876  * This function returns the optimizations supported on this cpu.
877  */
878 guint32
879 mono_arch_cpu_optimizations (guint32 *exclude_mask)
880 {
881         /* no arm-specific optimizations yet */
882         *exclude_mask = 0;
883         return 0;
884 }
885
886 /*
887  * This function test for all SIMD functions supported.
888  *
889  * Returns a bitmask corresponding to all supported versions.
890  *
891  */
892 guint32
893 mono_arch_cpu_enumerate_simd_versions (void)
894 {
895         /* SIMD is currently unimplemented */
896         return 0;
897 }
898
899 gboolean
900 mono_arm_is_hard_float (void)
901 {
902         return arm_fpu == MONO_ARM_FPU_VFP_HARD;
903 }
904
905 #ifndef DISABLE_JIT
906
907 gboolean
908 mono_arch_opcode_needs_emulation (MonoCompile *cfg, int opcode)
909 {
910         if (v7s_supported || v7k_supported) {
911                 switch (opcode) {
912                 case OP_IDIV:
913                 case OP_IREM:
914                 case OP_IDIV_UN:
915                 case OP_IREM_UN:
916                         return FALSE;
917                 default:
918                         break;
919                 }
920         }
921         return TRUE;
922 }
923
924 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
925 gboolean
926 mono_arch_is_soft_float (void)
927 {
928         return arm_fpu == MONO_ARM_FPU_NONE;
929 }
930 #endif
931
932 static gboolean
933 is_regsize_var (MonoType *t)
934 {
935         if (t->byref)
936                 return TRUE;
937         t = mini_get_underlying_type (t);
938         switch (t->type) {
939         case MONO_TYPE_I4:
940         case MONO_TYPE_U4:
941         case MONO_TYPE_I:
942         case MONO_TYPE_U:
943         case MONO_TYPE_PTR:
944         case MONO_TYPE_FNPTR:
945                 return TRUE;
946         case MONO_TYPE_OBJECT:
947                 return TRUE;
948         case MONO_TYPE_GENERICINST:
949                 if (!mono_type_generic_inst_is_valuetype (t))
950                         return TRUE;
951                 return FALSE;
952         case MONO_TYPE_VALUETYPE:
953                 return FALSE;
954         }
955         return FALSE;
956 }
957
958 GList *
959 mono_arch_get_allocatable_int_vars (MonoCompile *cfg)
960 {
961         GList *vars = NULL;
962         int i;
963
964         for (i = 0; i < cfg->num_varinfo; i++) {
965                 MonoInst *ins = cfg->varinfo [i];
966                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
967
968                 /* unused vars */
969                 if (vmv->range.first_use.abs_pos >= vmv->range.last_use.abs_pos)
970                         continue;
971
972                 if (ins->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT) || (ins->opcode != OP_LOCAL && ins->opcode != OP_ARG))
973                         continue;
974
975                 /* we can only allocate 32 bit values */
976                 if (is_regsize_var (ins->inst_vtype)) {
977                         g_assert (MONO_VARINFO (cfg, i)->reg == -1);
978                         g_assert (i == vmv->idx);
979                         vars = mono_varlist_insert_sorted (cfg, vars, vmv, FALSE);
980                 }
981         }
982
983         return vars;
984 }
985
986 GList *
987 mono_arch_get_global_int_regs (MonoCompile *cfg)
988 {
989         GList *regs = NULL;
990
991         mono_arch_compute_omit_fp (cfg);
992
993         /* 
994          * FIXME: Interface calls might go through a static rgctx trampoline which
995          * sets V5, but it doesn't save it, so we need to save it ourselves, and
996          * avoid using it.
997          */
998         if (cfg->flags & MONO_CFG_HAS_CALLS)
999                 cfg->uses_rgctx_reg = TRUE;
1000
1001         if (cfg->arch.omit_fp)
1002                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_FP));
1003         regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V1));
1004         regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V2));
1005         regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V3));
1006         if (iphone_abi)
1007                 /* V4=R7 is used as a frame pointer, but V7=R10 is preserved */
1008                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V7));
1009         else
1010                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V4));
1011         if (!(cfg->compile_aot || cfg->uses_rgctx_reg || COMPILE_LLVM (cfg)))
1012                 /* V5 is reserved for passing the vtable/rgctx/IMT method */
1013                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V5));
1014         /*regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V6));*/
1015         /*regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V7));*/
1016
1017         return regs;
1018 }
1019
1020 /*
1021  * mono_arch_regalloc_cost:
1022  *
1023  *  Return the cost, in number of memory references, of the action of 
1024  * allocating the variable VMV into a register during global register
1025  * allocation.
1026  */
1027 guint32
1028 mono_arch_regalloc_cost (MonoCompile *cfg, MonoMethodVar *vmv)
1029 {
1030         /* FIXME: */
1031         return 2;
1032 }
1033
1034 #endif /* #ifndef DISABLE_JIT */
1035
1036 void
1037 mono_arch_flush_icache (guint8 *code, gint size)
1038 {
1039 #if defined(MONO_CROSS_COMPILE)
1040 #elif __APPLE__
1041         sys_icache_invalidate (code, size);
1042 #else
1043     __builtin___clear_cache (code, code + size);
1044 #endif
1045 }
1046
1047 #define DEBUG(a)
1048
1049 static void inline
1050 add_general (guint *gr, guint *stack_size, ArgInfo *ainfo, gboolean simple)
1051 {
1052         if (simple) {
1053                 if (*gr > ARMREG_R3) {
1054                         ainfo->size = 4;
1055                         ainfo->offset = *stack_size;
1056                         ainfo->reg = ARMREG_SP; /* in the caller */
1057                         ainfo->storage = RegTypeBase;
1058                         *stack_size += 4;
1059                 } else {
1060                         ainfo->storage = RegTypeGeneral;
1061                         ainfo->reg = *gr;
1062                 }
1063         } else {
1064                 gboolean split;
1065
1066                 if (eabi_supported)
1067                         split = i8_align == 4;
1068                 else
1069                         split = TRUE;
1070
1071                 ainfo->size = 8;
1072                 if (*gr == ARMREG_R3 && split) {
1073                         /* first word in r3 and the second on the stack */
1074                         ainfo->offset = *stack_size;
1075                         ainfo->reg = ARMREG_SP; /* in the caller */
1076                         ainfo->storage = RegTypeBaseGen;
1077                         *stack_size += 4;
1078                 } else if (*gr >= ARMREG_R3) {
1079                         if (eabi_supported) {
1080                                 /* darwin aligns longs to 4 byte only */
1081                                 if (i8_align == 8) {
1082                                         *stack_size += 7;
1083                                         *stack_size &= ~7;
1084                                 }
1085                         }
1086                         ainfo->offset = *stack_size;
1087                         ainfo->reg = ARMREG_SP; /* in the caller */
1088                         ainfo->storage = RegTypeBase;
1089                         *stack_size += 8;
1090                 } else {
1091                         if (eabi_supported) {
1092                                 if (i8_align == 8 && ((*gr) & 1))
1093                                         (*gr) ++;
1094                         }
1095                         ainfo->storage = RegTypeIRegPair;
1096                         ainfo->reg = *gr;
1097                 }
1098                 (*gr) ++;
1099         }
1100         (*gr) ++;
1101 }
1102
1103 static void inline
1104 add_float (guint *fpr, guint *stack_size, ArgInfo *ainfo, gboolean is_double, gint *float_spare)
1105 {
1106         /*
1107          * If we're calling a function like this:
1108          *
1109          * void foo(float a, double b, float c)
1110          *
1111          * We pass a in s0 and b in d1. That leaves us
1112          * with s1 being unused. The armhf ABI recognizes
1113          * this and requires register assignment to then
1114          * use that for the next single-precision arg,
1115          * i.e. c in this example. So float_spare either
1116          * tells us which reg to use for the next single-
1117          * precision arg, or it's -1, meaning use *fpr.
1118          *
1119          * Note that even though most of the JIT speaks
1120          * double-precision, fpr represents single-
1121          * precision registers.
1122          *
1123          * See parts 5.5 and 6.1.2 of the AAPCS for how
1124          * this all works.
1125          */
1126
1127         if (*fpr < ARM_VFP_F16 || (!is_double && *float_spare >= 0)) {
1128                 ainfo->storage = RegTypeFP;
1129
1130                 if (is_double) {
1131                         /*
1132                          * If we're passing a double-precision value
1133                          * and *fpr is odd (e.g. it's s1, s3, ...)
1134                          * we need to use the next even register. So
1135                          * we mark the current *fpr as a spare that
1136                          * can be used for the next single-precision
1137                          * value.
1138                          */
1139                         if (*fpr % 2) {
1140                                 *float_spare = *fpr;
1141                                 (*fpr)++;
1142                         }
1143
1144                         /*
1145                          * At this point, we have an even register
1146                          * so we assign that and move along.
1147                          */
1148                         ainfo->reg = *fpr;
1149                         *fpr += 2;
1150                 } else if (*float_spare >= 0) {
1151                         /*
1152                          * We're passing a single-precision value
1153                          * and it looks like a spare single-
1154                          * precision register is available. Let's
1155                          * use it.
1156                          */
1157
1158                         ainfo->reg = *float_spare;
1159                         *float_spare = -1;
1160                 } else {
1161                         /*
1162                          * If we hit this branch, we're passing a
1163                          * single-precision value and we can simply
1164                          * use the next available register.
1165                          */
1166
1167                         ainfo->reg = *fpr;
1168                         (*fpr)++;
1169                 }
1170         } else {
1171                 /*
1172                  * We've exhausted available floating point
1173                  * regs, so pass the rest on the stack.
1174                  */
1175
1176                 if (is_double) {
1177                         *stack_size += 7;
1178                         *stack_size &= ~7;
1179                 }
1180
1181                 ainfo->offset = *stack_size;
1182                 ainfo->reg = ARMREG_SP;
1183                 ainfo->storage = RegTypeBase;
1184
1185                 *stack_size += 8;
1186         }
1187 }
1188
1189 static gboolean
1190 is_hfa (MonoType *t, int *out_nfields, int *out_esize)
1191 {
1192         MonoClass *klass;
1193         gpointer iter;
1194         MonoClassField *field;
1195         MonoType *ftype, *prev_ftype = NULL;
1196         int nfields = 0;
1197
1198         klass = mono_class_from_mono_type (t);
1199         iter = NULL;
1200         while ((field = mono_class_get_fields (klass, &iter))) {
1201                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1202                         continue;
1203                 ftype = mono_field_get_type (field);
1204                 ftype = mini_get_underlying_type (ftype);
1205
1206                 if (MONO_TYPE_ISSTRUCT (ftype)) {
1207                         int nested_nfields, nested_esize;
1208
1209                         if (!is_hfa (ftype, &nested_nfields, &nested_esize))
1210                                 return FALSE;
1211                         if (nested_esize == 4)
1212                                 ftype = &mono_defaults.single_class->byval_arg;
1213                         else
1214                                 ftype = &mono_defaults.double_class->byval_arg;
1215                         if (prev_ftype && prev_ftype->type != ftype->type)
1216                                 return FALSE;
1217                         prev_ftype = ftype;
1218                         nfields += nested_nfields;
1219                 } else {
1220                         if (!(!ftype->byref && (ftype->type == MONO_TYPE_R4 || ftype->type == MONO_TYPE_R8)))
1221                                 return FALSE;
1222                         if (prev_ftype && prev_ftype->type != ftype->type)
1223                                 return FALSE;
1224                         prev_ftype = ftype;
1225                         nfields ++;
1226                 }
1227         }
1228         if (nfields == 0 || nfields > 4)
1229                 return FALSE;
1230         *out_nfields = nfields;
1231         *out_esize = prev_ftype->type == MONO_TYPE_R4 ? 4 : 8;
1232         return TRUE;
1233 }
1234
1235 static CallInfo*
1236 get_call_info (MonoMemPool *mp, MonoMethodSignature *sig)
1237 {
1238         guint i, gr, fpr, pstart;
1239         gint float_spare;
1240         int n = sig->hasthis + sig->param_count;
1241         int nfields, esize;
1242         guint32 align;
1243         MonoType *t;
1244         guint32 stack_size = 0;
1245         CallInfo *cinfo;
1246         gboolean is_pinvoke = sig->pinvoke;
1247         gboolean vtype_retaddr = FALSE;
1248
1249         if (mp)
1250                 cinfo = mono_mempool_alloc0 (mp, sizeof (CallInfo) + (sizeof (ArgInfo) * n));
1251         else
1252                 cinfo = g_malloc0 (sizeof (CallInfo) + (sizeof (ArgInfo) * n));
1253
1254         cinfo->nargs = n;
1255         gr = ARMREG_R0;
1256         fpr = ARM_VFP_F0;
1257         float_spare = -1;
1258
1259         t = mini_get_underlying_type (sig->ret);
1260         switch (t->type) {
1261         case MONO_TYPE_I1:
1262         case MONO_TYPE_U1:
1263         case MONO_TYPE_I2:
1264         case MONO_TYPE_U2:
1265         case MONO_TYPE_I4:
1266         case MONO_TYPE_U4:
1267         case MONO_TYPE_I:
1268         case MONO_TYPE_U:
1269         case MONO_TYPE_PTR:
1270         case MONO_TYPE_FNPTR:
1271         case MONO_TYPE_OBJECT:
1272                 cinfo->ret.storage = RegTypeGeneral;
1273                 cinfo->ret.reg = ARMREG_R0;
1274                 break;
1275         case MONO_TYPE_U8:
1276         case MONO_TYPE_I8:
1277                 cinfo->ret.storage = RegTypeIRegPair;
1278                 cinfo->ret.reg = ARMREG_R0;
1279                 break;
1280         case MONO_TYPE_R4:
1281         case MONO_TYPE_R8:
1282                 cinfo->ret.storage = RegTypeFP;
1283
1284                 if (t->type == MONO_TYPE_R4)
1285                         cinfo->ret.size = 4;
1286                 else
1287                         cinfo->ret.size = 8;
1288
1289                 if (IS_HARD_FLOAT) {
1290                         cinfo->ret.reg = ARM_VFP_F0;
1291                 } else {
1292                         cinfo->ret.reg = ARMREG_R0;
1293                 }
1294                 break;
1295         case MONO_TYPE_GENERICINST:
1296                 if (!mono_type_generic_inst_is_valuetype (t)) {
1297                         cinfo->ret.storage = RegTypeGeneral;
1298                         cinfo->ret.reg = ARMREG_R0;
1299                         break;
1300                 }
1301                 if (mini_is_gsharedvt_variable_type (t)) {
1302                         cinfo->ret.storage = RegTypeStructByAddr;
1303                         break;
1304                 }
1305                 /* Fall through */
1306         case MONO_TYPE_VALUETYPE:
1307         case MONO_TYPE_TYPEDBYREF:
1308                 if (IS_HARD_FLOAT && sig->pinvoke && is_hfa (t, &nfields, &esize)) {
1309                         cinfo->ret.storage = RegTypeHFA;
1310                         cinfo->ret.reg = 0;
1311                         cinfo->ret.nregs = nfields;
1312                         cinfo->ret.esize = esize;
1313                 } else {
1314                         if (is_pinvoke) {
1315                                 int native_size = mono_class_native_size (mono_class_from_mono_type (t), &align);
1316                                 int max_size;
1317
1318 #ifdef TARGET_WATCHOS
1319                                 max_size = 16;
1320 #else
1321                                 max_size = 4;
1322 #endif
1323                                 if (native_size <= max_size) {
1324                                         cinfo->ret.storage = RegTypeStructByVal;
1325                                         cinfo->ret.struct_size = native_size;
1326                                         cinfo->ret.nregs = ALIGN_TO (native_size, 4) / 4;
1327                                 } else {
1328                                         cinfo->ret.storage = RegTypeStructByAddr;
1329                                 }
1330                         } else {
1331                                 cinfo->ret.storage = RegTypeStructByAddr;
1332                         }
1333                 }
1334                 break;
1335         case MONO_TYPE_VAR:
1336         case MONO_TYPE_MVAR:
1337                 g_assert (mini_is_gsharedvt_type (t));
1338                 cinfo->ret.storage = RegTypeStructByAddr;
1339                 break;
1340         case MONO_TYPE_VOID:
1341                 break;
1342         default:
1343                 g_error ("Can't handle as return value 0x%x", sig->ret->type);
1344         }
1345
1346         vtype_retaddr = cinfo->ret.storage == RegTypeStructByAddr;
1347
1348         pstart = 0;
1349         n = 0;
1350         /*
1351          * To simplify get_this_arg_reg () and LLVM integration, emit the vret arg after
1352          * the first argument, allowing 'this' to be always passed in the first arg reg.
1353          * Also do this if the first argument is a reference type, since virtual calls
1354          * are sometimes made using calli without sig->hasthis set, like in the delegate
1355          * invoke wrappers.
1356          */
1357         if (vtype_retaddr && !is_pinvoke && (sig->hasthis || (sig->param_count > 0 && MONO_TYPE_IS_REFERENCE (mini_get_underlying_type (sig->params [0]))))) {
1358                 if (sig->hasthis) {
1359                         add_general (&gr, &stack_size, cinfo->args + 0, TRUE);
1360                 } else {
1361                         add_general (&gr, &stack_size, &cinfo->args [sig->hasthis + 0], TRUE);
1362                         pstart = 1;
1363                 }
1364                 n ++;
1365                 cinfo->ret.reg = gr;
1366                 gr ++;
1367                 cinfo->vret_arg_index = 1;
1368         } else {
1369                 /* this */
1370                 if (sig->hasthis) {
1371                         add_general (&gr, &stack_size, cinfo->args + 0, TRUE);
1372                         n ++;
1373                 }
1374                 if (vtype_retaddr) {
1375                         cinfo->ret.reg = gr;
1376                         gr ++;
1377                 }
1378         }
1379
1380         DEBUG(g_print("params: %d\n", sig->param_count));
1381         for (i = pstart; i < sig->param_count; ++i) {
1382                 ArgInfo *ainfo = &cinfo->args [n];
1383
1384                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1385                         /* Prevent implicit arguments and sig_cookie from
1386                            being passed in registers */
1387                         gr = ARMREG_R3 + 1;
1388                         fpr = ARM_VFP_F16;
1389                         /* Emit the signature cookie just before the implicit arguments */
1390                         add_general (&gr, &stack_size, &cinfo->sig_cookie, TRUE);
1391                 }
1392                 DEBUG(g_print("param %d: ", i));
1393                 if (sig->params [i]->byref) {
1394                         DEBUG(g_print("byref\n"));
1395                         add_general (&gr, &stack_size, ainfo, TRUE);
1396                         n++;
1397                         continue;
1398                 }
1399                 t = mini_get_underlying_type (sig->params [i]);
1400                 switch (t->type) {
1401                 case MONO_TYPE_I1:
1402                 case MONO_TYPE_U1:
1403                         cinfo->args [n].size = 1;
1404                         add_general (&gr, &stack_size, ainfo, TRUE);
1405                         break;
1406                 case MONO_TYPE_I2:
1407                 case MONO_TYPE_U2:
1408                         cinfo->args [n].size = 2;
1409                         add_general (&gr, &stack_size, ainfo, TRUE);
1410                         break;
1411                 case MONO_TYPE_I4:
1412                 case MONO_TYPE_U4:
1413                         cinfo->args [n].size = 4;
1414                         add_general (&gr, &stack_size, ainfo, TRUE);
1415                         break;
1416                 case MONO_TYPE_I:
1417                 case MONO_TYPE_U:
1418                 case MONO_TYPE_PTR:
1419                 case MONO_TYPE_FNPTR:
1420                 case MONO_TYPE_OBJECT:
1421                         cinfo->args [n].size = sizeof (gpointer);
1422                         add_general (&gr, &stack_size, ainfo, TRUE);
1423                         break;
1424                 case MONO_TYPE_GENERICINST:
1425                         if (!mono_type_generic_inst_is_valuetype (t)) {
1426                                 cinfo->args [n].size = sizeof (gpointer);
1427                                 add_general (&gr, &stack_size, ainfo, TRUE);
1428                                 break;
1429                         }
1430                         if (mini_is_gsharedvt_variable_type (t)) {
1431                                 /* gsharedvt arguments are passed by ref */
1432                                 g_assert (mini_is_gsharedvt_type (t));
1433                                 add_general (&gr, &stack_size, ainfo, TRUE);
1434                                 switch (ainfo->storage) {
1435                                 case RegTypeGeneral:
1436                                         ainfo->storage = RegTypeGSharedVtInReg;
1437                                         break;
1438                                 case RegTypeBase:
1439                                         ainfo->storage = RegTypeGSharedVtOnStack;
1440                                         break;
1441                                 default:
1442                                         g_assert_not_reached ();
1443                                 }
1444                                 break;
1445                         }
1446                         /* Fall through */
1447                 case MONO_TYPE_TYPEDBYREF:
1448                 case MONO_TYPE_VALUETYPE: {
1449                         gint size;
1450                         int align_size;
1451                         int nwords, nfields, esize;
1452                         guint32 align;
1453
1454                         if (IS_HARD_FLOAT && sig->pinvoke && is_hfa (t, &nfields, &esize)) {
1455                                 if (fpr + nfields < ARM_VFP_F16) {
1456                                         ainfo->storage = RegTypeHFA;
1457                                         ainfo->reg = fpr;
1458                                         ainfo->nregs = nfields;
1459                                         ainfo->esize = esize;
1460                                         if (esize == 4)
1461                                                 fpr += nfields;
1462                                         else
1463                                                 fpr += nfields * 2;
1464                                         break;
1465                                 } else {
1466                                         fpr = ARM_VFP_F16;
1467                                 }
1468                         }
1469
1470                         if (t->type == MONO_TYPE_TYPEDBYREF) {
1471                                 size = sizeof (MonoTypedRef);
1472                                 align = sizeof (gpointer);
1473                         } else {
1474                                 MonoClass *klass = mono_class_from_mono_type (sig->params [i]);
1475                                 if (is_pinvoke)
1476                                         size = mono_class_native_size (klass, &align);
1477                                 else
1478                                         size = mini_type_stack_size_full (t, &align, FALSE);
1479                         }
1480                         DEBUG(g_print ("load %d bytes struct\n", size));
1481
1482 #ifdef TARGET_WATCHOS
1483                         /* Watchos pass large structures by ref */
1484                         /* We only do this for pinvoke to make gsharedvt/dyncall simpler */
1485                         if (sig->pinvoke && size > 16) {
1486                                 add_general (&gr, &stack_size, ainfo, TRUE);
1487                                 switch (ainfo->storage) {
1488                                 case RegTypeGeneral:
1489                                         ainfo->storage = RegTypeStructByAddr;
1490                                         break;
1491                                 case RegTypeBase:
1492                                         ainfo->storage = RegTypeStructByAddrOnStack;
1493                                         break;
1494                                 default:
1495                                         g_assert_not_reached ();
1496                                         break;
1497                                 }
1498                                 break;
1499                         }
1500 #endif
1501
1502                         align_size = size;
1503                         nwords = 0;
1504                         align_size += (sizeof (gpointer) - 1);
1505                         align_size &= ~(sizeof (gpointer) - 1);
1506                         nwords = (align_size + sizeof (gpointer) -1 ) / sizeof (gpointer);
1507                         ainfo->storage = RegTypeStructByVal;
1508                         ainfo->struct_size = size;
1509                         ainfo->align = align;
1510                         /* FIXME: align stack_size if needed */
1511                         if (eabi_supported) {
1512                                 if (align >= 8 && (gr & 1))
1513                                         gr ++;
1514                         }
1515                         if (gr > ARMREG_R3) {
1516                                 ainfo->size = 0;
1517                                 ainfo->vtsize = nwords;
1518                         } else {
1519                                 int rest = ARMREG_R3 - gr + 1;
1520                                 int n_in_regs = rest >= nwords? nwords: rest;
1521
1522                                 ainfo->size = n_in_regs;
1523                                 ainfo->vtsize = nwords - n_in_regs;
1524                                 ainfo->reg = gr;
1525                                 gr += n_in_regs;
1526                                 nwords -= n_in_regs;
1527                         }
1528                         if (sig->call_convention == MONO_CALL_VARARG)
1529                                 /* This matches the alignment in mono_ArgIterator_IntGetNextArg () */
1530                                 stack_size = ALIGN_TO (stack_size, align);
1531                         ainfo->offset = stack_size;
1532                         /*g_print ("offset for arg %d at %d\n", n, stack_size);*/
1533                         stack_size += nwords * sizeof (gpointer);
1534                         break;
1535                 }
1536                 case MONO_TYPE_U8:
1537                 case MONO_TYPE_I8:
1538                         ainfo->size = 8;
1539                         add_general (&gr, &stack_size, ainfo, FALSE);
1540                         break;
1541                 case MONO_TYPE_R4:
1542                         ainfo->size = 4;
1543
1544                         if (IS_HARD_FLOAT)
1545                                 add_float (&fpr, &stack_size, ainfo, FALSE, &float_spare);
1546                         else
1547                                 add_general (&gr, &stack_size, ainfo, TRUE);
1548                         break;
1549                 case MONO_TYPE_R8:
1550                         ainfo->size = 8;
1551
1552                         if (IS_HARD_FLOAT)
1553                                 add_float (&fpr, &stack_size, ainfo, TRUE, &float_spare);
1554                         else
1555                                 add_general (&gr, &stack_size, ainfo, FALSE);
1556                         break;
1557                 case MONO_TYPE_VAR:
1558                 case MONO_TYPE_MVAR:
1559                         /* gsharedvt arguments are passed by ref */
1560                         g_assert (mini_is_gsharedvt_type (t));
1561                         add_general (&gr, &stack_size, ainfo, TRUE);
1562                         switch (ainfo->storage) {
1563                         case RegTypeGeneral:
1564                                 ainfo->storage = RegTypeGSharedVtInReg;
1565                                 break;
1566                         case RegTypeBase:
1567                                 ainfo->storage = RegTypeGSharedVtOnStack;
1568                                 break;
1569                         default:
1570                                 g_assert_not_reached ();
1571                         }
1572                         break;
1573                 default:
1574                         g_error ("Can't handle 0x%x", sig->params [i]->type);
1575                 }
1576                 n ++;
1577         }
1578
1579         /* Handle the case where there are no implicit arguments */
1580         if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1581                 /* Prevent implicit arguments and sig_cookie from
1582                    being passed in registers */
1583                 gr = ARMREG_R3 + 1;
1584                 fpr = ARM_VFP_F16;
1585                 /* Emit the signature cookie just before the implicit arguments */
1586                 add_general (&gr, &stack_size, &cinfo->sig_cookie, TRUE);
1587         }
1588
1589         /* align stack size to 8 */
1590         DEBUG (g_print ("      stack size: %d (%d)\n", (stack_size + 15) & ~15, stack_size));
1591         stack_size = (stack_size + 7) & ~7;
1592
1593         cinfo->stack_usage = stack_size;
1594         return cinfo;
1595 }
1596
1597
1598 gboolean
1599 mono_arch_tail_call_supported (MonoCompile *cfg, MonoMethodSignature *caller_sig, MonoMethodSignature *callee_sig)
1600 {
1601         MonoType *callee_ret;
1602         CallInfo *c1, *c2;
1603         gboolean res;
1604
1605         c1 = get_call_info (NULL, caller_sig);
1606         c2 = get_call_info (NULL, callee_sig);
1607
1608         /*
1609          * Tail calls with more callee stack usage than the caller cannot be supported, since
1610          * the extra stack space would be left on the stack after the tail call.
1611          */
1612         res = c1->stack_usage >= c2->stack_usage;
1613         callee_ret = mini_get_underlying_type (callee_sig->ret);
1614         if (callee_ret && MONO_TYPE_ISSTRUCT (callee_ret) && c2->ret.storage != RegTypeStructByVal)
1615                 /* An address on the callee's stack is passed as the first argument */
1616                 res = FALSE;
1617
1618         if (c2->stack_usage > 16 * 4)
1619                 res = FALSE;
1620
1621         g_free (c1);
1622         g_free (c2);
1623
1624         return res;
1625 }
1626
1627 #ifndef DISABLE_JIT
1628
1629 static gboolean
1630 debug_omit_fp (void)
1631 {
1632 #if 0
1633         return mono_debug_count ();
1634 #else
1635         return TRUE;
1636 #endif
1637 }
1638
1639 /**
1640  * mono_arch_compute_omit_fp:
1641  * Determine whether the frame pointer can be eliminated.
1642  */
1643 static void
1644 mono_arch_compute_omit_fp (MonoCompile *cfg)
1645 {
1646         MonoMethodSignature *sig;
1647         MonoMethodHeader *header;
1648         int i, locals_size;
1649         CallInfo *cinfo;
1650
1651         if (cfg->arch.omit_fp_computed)
1652                 return;
1653
1654         header = cfg->header;
1655
1656         sig = mono_method_signature (cfg->method);
1657
1658         if (!cfg->arch.cinfo)
1659                 cfg->arch.cinfo = get_call_info (cfg->mempool, sig);
1660         cinfo = cfg->arch.cinfo;
1661
1662         /*
1663          * FIXME: Remove some of the restrictions.
1664          */
1665         cfg->arch.omit_fp = TRUE;
1666         cfg->arch.omit_fp_computed = TRUE;
1667
1668         if (cfg->disable_omit_fp)
1669                 cfg->arch.omit_fp = FALSE;
1670         if (!debug_omit_fp ())
1671                 cfg->arch.omit_fp = FALSE;
1672         /*
1673         if (cfg->method->save_lmf)
1674                 cfg->arch.omit_fp = FALSE;
1675         */
1676         if (cfg->flags & MONO_CFG_HAS_ALLOCA)
1677                 cfg->arch.omit_fp = FALSE;
1678         if (header->num_clauses)
1679                 cfg->arch.omit_fp = FALSE;
1680         if (cfg->param_area)
1681                 cfg->arch.omit_fp = FALSE;
1682         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG))
1683                 cfg->arch.omit_fp = FALSE;
1684         if ((mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method)) ||
1685                 (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE))
1686                 cfg->arch.omit_fp = FALSE;
1687         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
1688                 ArgInfo *ainfo = &cinfo->args [i];
1689
1690                 if (ainfo->storage == RegTypeBase || ainfo->storage == RegTypeBaseGen || ainfo->storage == RegTypeStructByVal) {
1691                         /* 
1692                          * The stack offset can only be determined when the frame
1693                          * size is known.
1694                          */
1695                         cfg->arch.omit_fp = FALSE;
1696                 }
1697         }
1698
1699         locals_size = 0;
1700         for (i = cfg->locals_start; i < cfg->num_varinfo; i++) {
1701                 MonoInst *ins = cfg->varinfo [i];
1702                 int ialign;
1703
1704                 locals_size += mono_type_size (ins->inst_vtype, &ialign);
1705         }
1706 }
1707
1708 /*
1709  * Set var information according to the calling convention. arm version.
1710  * The locals var stuff should most likely be split in another method.
1711  */
1712 void
1713 mono_arch_allocate_vars (MonoCompile *cfg)
1714 {
1715         MonoMethodSignature *sig;
1716         MonoMethodHeader *header;
1717         MonoInst *ins;
1718         MonoType *sig_ret;
1719         int i, offset, size, align, curinst;
1720         CallInfo *cinfo;
1721         ArgInfo *ainfo;
1722         guint32 ualign;
1723
1724         sig = mono_method_signature (cfg->method);
1725
1726         if (!cfg->arch.cinfo)
1727                 cfg->arch.cinfo = get_call_info (cfg->mempool, sig);
1728         cinfo = cfg->arch.cinfo;
1729         sig_ret = mini_get_underlying_type (sig->ret);
1730
1731         mono_arch_compute_omit_fp (cfg);
1732
1733         if (cfg->arch.omit_fp)
1734                 cfg->frame_reg = ARMREG_SP;
1735         else
1736                 cfg->frame_reg = ARMREG_FP;
1737
1738         cfg->flags |= MONO_CFG_HAS_SPILLUP;
1739
1740         /* allow room for the vararg method args: void* and long/double */
1741         if (mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method))
1742                 cfg->param_area = MAX (cfg->param_area, sizeof (gpointer)*8);
1743
1744         header = cfg->header;
1745
1746         /* See mono_arch_get_global_int_regs () */
1747         if (cfg->flags & MONO_CFG_HAS_CALLS)
1748                 cfg->uses_rgctx_reg = TRUE;
1749
1750         if (cfg->frame_reg != ARMREG_SP)
1751                 cfg->used_int_regs |= 1 << cfg->frame_reg;
1752
1753         if (cfg->compile_aot || cfg->uses_rgctx_reg || COMPILE_LLVM (cfg))
1754                 /* V5 is reserved for passing the vtable/rgctx/IMT method */
1755                 cfg->used_int_regs |= (1 << MONO_ARCH_IMT_REG);
1756
1757         offset = 0;
1758         curinst = 0;
1759         if (!MONO_TYPE_ISSTRUCT (sig_ret) && cinfo->ret.storage != RegTypeStructByAddr) {
1760                 if (sig_ret->type != MONO_TYPE_VOID) {
1761                         cfg->ret->opcode = OP_REGVAR;
1762                         cfg->ret->inst_c0 = ARMREG_R0;
1763                 }
1764         }
1765         /* local vars are at a positive offset from the stack pointer */
1766         /* 
1767          * also note that if the function uses alloca, we use FP
1768          * to point at the local variables.
1769          */
1770         offset = 0; /* linkage area */
1771         /* align the offset to 16 bytes: not sure this is needed here  */
1772         //offset += 8 - 1;
1773         //offset &= ~(8 - 1);
1774
1775         /* add parameter area size for called functions */
1776         offset += cfg->param_area;
1777         offset += 8 - 1;
1778         offset &= ~(8 - 1);
1779         if (cfg->flags & MONO_CFG_HAS_FPOUT)
1780                 offset += 8;
1781
1782         /* allow room to save the return value */
1783         if (mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method))
1784                 offset += 8;
1785
1786         switch (cinfo->ret.storage) {
1787         case RegTypeStructByVal:
1788         case RegTypeHFA:
1789                 /* Allocate a local to hold the result, the epilog will copy it to the correct place */
1790                 offset = ALIGN_TO (offset, 8);
1791                 cfg->ret->opcode = OP_REGOFFSET;
1792                 cfg->ret->inst_basereg = cfg->frame_reg;
1793                 cfg->ret->inst_offset = offset;
1794                 if (cinfo->ret.storage == RegTypeStructByVal)
1795                         offset += cinfo->ret.nregs * sizeof (gpointer);
1796                 else
1797                         offset += 32;
1798                 break;
1799         case RegTypeStructByAddr:
1800                 ins = cfg->vret_addr;
1801                 offset += sizeof(gpointer) - 1;
1802                 offset &= ~(sizeof(gpointer) - 1);
1803                 ins->inst_offset = offset;
1804                 ins->opcode = OP_REGOFFSET;
1805                 ins->inst_basereg = cfg->frame_reg;
1806                 if (G_UNLIKELY (cfg->verbose_level > 1)) {
1807                         g_print ("vret_addr =");
1808                         mono_print_ins (cfg->vret_addr);
1809                 }
1810                 offset += sizeof(gpointer);
1811                 break;
1812         default:
1813                 break;
1814         }
1815
1816         /* Allocate these first so they have a small offset, OP_SEQ_POINT depends on this */
1817         if (cfg->arch.seq_point_info_var) {
1818                 MonoInst *ins;
1819
1820                 ins = cfg->arch.seq_point_info_var;
1821
1822                 size = 4;
1823                 align = 4;
1824                 offset += align - 1;
1825                 offset &= ~(align - 1);
1826                 ins->opcode = OP_REGOFFSET;
1827                 ins->inst_basereg = cfg->frame_reg;
1828                 ins->inst_offset = offset;
1829                 offset += size;
1830         }
1831         if (cfg->arch.ss_trigger_page_var) {
1832                 MonoInst *ins;
1833
1834                 ins = cfg->arch.ss_trigger_page_var;
1835                 size = 4;
1836                 align = 4;
1837                 offset += align - 1;
1838                 offset &= ~(align - 1);
1839                 ins->opcode = OP_REGOFFSET;
1840                 ins->inst_basereg = cfg->frame_reg;
1841                 ins->inst_offset = offset;
1842                 offset += size;
1843         }
1844
1845         if (cfg->arch.seq_point_ss_method_var) {
1846                 MonoInst *ins;
1847
1848                 ins = cfg->arch.seq_point_ss_method_var;
1849                 size = 4;
1850                 align = 4;
1851                 offset += align - 1;
1852                 offset &= ~(align - 1);
1853                 ins->opcode = OP_REGOFFSET;
1854                 ins->inst_basereg = cfg->frame_reg;
1855                 ins->inst_offset = offset;
1856                 offset += size;
1857         }
1858         if (cfg->arch.seq_point_bp_method_var) {
1859                 MonoInst *ins;
1860
1861                 ins = cfg->arch.seq_point_bp_method_var;
1862                 size = 4;
1863                 align = 4;
1864                 offset += align - 1;
1865                 offset &= ~(align - 1);
1866                 ins->opcode = OP_REGOFFSET;
1867                 ins->inst_basereg = cfg->frame_reg;
1868                 ins->inst_offset = offset;
1869                 offset += size;
1870         }
1871
1872         if (cfg->has_atomic_exchange_i4 || cfg->has_atomic_cas_i4 || cfg->has_atomic_add_i4) {
1873                 /* Allocate a temporary used by the atomic ops */
1874                 size = 4;
1875                 align = 4;
1876
1877                 /* Allocate a local slot to hold the sig cookie address */
1878                 offset += align - 1;
1879                 offset &= ~(align - 1);
1880                 cfg->arch.atomic_tmp_offset = offset;
1881                 offset += size;
1882         } else {
1883                 cfg->arch.atomic_tmp_offset = -1;
1884         }
1885
1886         cfg->locals_min_stack_offset = offset;
1887
1888         curinst = cfg->locals_start;
1889         for (i = curinst; i < cfg->num_varinfo; ++i) {
1890                 MonoType *t;
1891
1892                 ins = cfg->varinfo [i];
1893                 if ((ins->flags & MONO_INST_IS_DEAD) || ins->opcode == OP_REGVAR || ins->opcode == OP_REGOFFSET)
1894                         continue;
1895
1896                 t = ins->inst_vtype;
1897                 if (cfg->gsharedvt && mini_is_gsharedvt_variable_type (t))
1898                         continue;
1899
1900                 /* inst->backend.is_pinvoke indicates native sized value types, this is used by the
1901                 * pinvoke wrappers when they call functions returning structure */
1902                 if (ins->backend.is_pinvoke && MONO_TYPE_ISSTRUCT (t) && t->type != MONO_TYPE_TYPEDBYREF) {
1903                         size = mono_class_native_size (mono_class_from_mono_type (t), &ualign);
1904                         align = ualign;
1905                 }
1906                 else
1907                         size = mono_type_size (t, &align);
1908
1909                 /* FIXME: if a structure is misaligned, our memcpy doesn't work,
1910                  * since it loads/stores misaligned words, which don't do the right thing.
1911                  */
1912                 if (align < 4 && size >= 4)
1913                         align = 4;
1914                 if (ALIGN_TO (offset, align) > ALIGN_TO (offset, 4))
1915                         mini_gc_set_slot_type_from_fp (cfg, ALIGN_TO (offset, 4), SLOT_NOREF);
1916                 offset += align - 1;
1917                 offset &= ~(align - 1);
1918                 ins->opcode = OP_REGOFFSET;
1919                 ins->inst_offset = offset;
1920                 ins->inst_basereg = cfg->frame_reg;
1921                 offset += size;
1922                 //g_print ("allocating local %d to %d\n", i, inst->inst_offset);
1923         }
1924
1925         cfg->locals_max_stack_offset = offset;
1926
1927         curinst = 0;
1928         if (sig->hasthis) {
1929                 ins = cfg->args [curinst];
1930                 if (ins->opcode != OP_REGVAR) {
1931                         ins->opcode = OP_REGOFFSET;
1932                         ins->inst_basereg = cfg->frame_reg;
1933                         offset += sizeof (gpointer) - 1;
1934                         offset &= ~(sizeof (gpointer) - 1);
1935                         ins->inst_offset = offset;
1936                         offset += sizeof (gpointer);
1937                 }
1938                 curinst++;
1939         }
1940
1941         if (sig->call_convention == MONO_CALL_VARARG) {
1942                 size = 4;
1943                 align = 4;
1944
1945                 /* Allocate a local slot to hold the sig cookie address */
1946                 offset += align - 1;
1947                 offset &= ~(align - 1);
1948                 cfg->sig_cookie = offset;
1949                 offset += size;
1950         }                       
1951
1952         for (i = 0; i < sig->param_count; ++i) {
1953                 ainfo = cinfo->args + i;
1954
1955                 ins = cfg->args [curinst];
1956
1957                 switch (ainfo->storage) {
1958                 case RegTypeHFA:
1959                         offset = ALIGN_TO (offset, 8);
1960                         ins->opcode = OP_REGOFFSET;
1961                         ins->inst_basereg = cfg->frame_reg;
1962                         /* These arguments are saved to the stack in the prolog */
1963                         ins->inst_offset = offset;
1964                         if (cfg->verbose_level >= 2)
1965                                 g_print ("arg %d allocated to %s+0x%0x.\n", i, mono_arch_regname (ins->inst_basereg), (int)ins->inst_offset);
1966                         // FIXME:
1967                         offset += 32;
1968                         break;
1969                 default:
1970                         break;
1971                 }
1972
1973                 if (ins->opcode != OP_REGVAR) {
1974                         ins->opcode = OP_REGOFFSET;
1975                         ins->inst_basereg = cfg->frame_reg;
1976                         size = mini_type_stack_size_full (sig->params [i], &ualign, sig->pinvoke);
1977                         align = ualign;
1978                         /* FIXME: if a structure is misaligned, our memcpy doesn't work,
1979                          * since it loads/stores misaligned words, which don't do the right thing.
1980                          */
1981                         if (align < 4 && size >= 4)
1982                                 align = 4;
1983                         /* The code in the prolog () stores words when storing vtypes received in a register */
1984                         if (MONO_TYPE_ISSTRUCT (sig->params [i]))
1985                                 align = 4;
1986                         if (ALIGN_TO (offset, align) > ALIGN_TO (offset, 4))
1987                                 mini_gc_set_slot_type_from_fp (cfg, ALIGN_TO (offset, 4), SLOT_NOREF);
1988                         offset += align - 1;
1989                         offset &= ~(align - 1);
1990                         ins->inst_offset = offset;
1991                         offset += size;
1992                 }
1993                 curinst++;
1994         }
1995
1996         /* align the offset to 8 bytes */
1997         if (ALIGN_TO (offset, 8) > ALIGN_TO (offset, 4))
1998                 mini_gc_set_slot_type_from_fp (cfg, ALIGN_TO (offset, 4), SLOT_NOREF);
1999         offset += 8 - 1;
2000         offset &= ~(8 - 1);
2001
2002         /* change sign? */
2003         cfg->stack_offset = offset;
2004 }
2005
2006 void
2007 mono_arch_create_vars (MonoCompile *cfg)
2008 {
2009         MonoMethodSignature *sig;
2010         CallInfo *cinfo;
2011         int i;
2012
2013         sig = mono_method_signature (cfg->method);
2014
2015         if (!cfg->arch.cinfo)
2016                 cfg->arch.cinfo = get_call_info (cfg->mempool, sig);
2017         cinfo = cfg->arch.cinfo;
2018
2019         if (IS_HARD_FLOAT) {
2020                 for (i = 0; i < 2; i++) {
2021                         MonoInst *inst = mono_compile_create_var (cfg, &mono_defaults.double_class->byval_arg, OP_LOCAL);
2022                         inst->flags |= MONO_INST_VOLATILE;
2023
2024                         cfg->arch.vfp_scratch_slots [i] = (gpointer) inst;
2025                 }
2026         }
2027
2028         if (cinfo->ret.storage == RegTypeStructByVal)
2029                 cfg->ret_var_is_local = TRUE;
2030
2031         if (cinfo->ret.storage == RegTypeStructByAddr) {
2032                 cfg->vret_addr = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_ARG);
2033                 if (G_UNLIKELY (cfg->verbose_level > 1)) {
2034                         g_print ("vret_addr = ");
2035                         mono_print_ins (cfg->vret_addr);
2036                 }
2037         }
2038
2039         if (cfg->gen_sdb_seq_points) {
2040                 if (cfg->compile_aot) {
2041                         MonoInst *ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2042                         ins->flags |= MONO_INST_VOLATILE;
2043                         cfg->arch.seq_point_info_var = ins;
2044
2045                         if (!cfg->soft_breakpoints) {
2046                                 /* Allocate a separate variable for this to save 1 load per seq point */
2047                                 ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2048                                 ins->flags |= MONO_INST_VOLATILE;
2049                                 cfg->arch.ss_trigger_page_var = ins;
2050                         }
2051                 }
2052                 if (cfg->soft_breakpoints) {
2053                         MonoInst *ins;
2054
2055                         ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2056                         ins->flags |= MONO_INST_VOLATILE;
2057                         cfg->arch.seq_point_ss_method_var = ins;
2058
2059                         ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2060                         ins->flags |= MONO_INST_VOLATILE;
2061                         cfg->arch.seq_point_bp_method_var = ins;
2062                 }
2063         }
2064 }
2065
2066 static void
2067 emit_sig_cookie (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo)
2068 {
2069         MonoMethodSignature *tmp_sig;
2070         int sig_reg;
2071
2072         if (call->tail_call)
2073                 NOT_IMPLEMENTED;
2074
2075         g_assert (cinfo->sig_cookie.storage == RegTypeBase);
2076                         
2077         /*
2078          * mono_ArgIterator_Setup assumes the signature cookie is 
2079          * passed first and all the arguments which were before it are
2080          * passed on the stack after the signature. So compensate by 
2081          * passing a different signature.
2082          */
2083         tmp_sig = mono_metadata_signature_dup (call->signature);
2084         tmp_sig->param_count -= call->signature->sentinelpos;
2085         tmp_sig->sentinelpos = 0;
2086         memcpy (tmp_sig->params, call->signature->params + call->signature->sentinelpos, tmp_sig->param_count * sizeof (MonoType*));
2087
2088         sig_reg = mono_alloc_ireg (cfg);
2089         MONO_EMIT_NEW_SIGNATURECONST (cfg, sig_reg, tmp_sig);
2090
2091         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, cinfo->sig_cookie.offset, sig_reg);
2092 }
2093
2094 #ifdef ENABLE_LLVM
2095 LLVMCallInfo*
2096 mono_arch_get_llvm_call_info (MonoCompile *cfg, MonoMethodSignature *sig)
2097 {
2098         int i, n;
2099         CallInfo *cinfo;
2100         ArgInfo *ainfo;
2101         LLVMCallInfo *linfo;
2102
2103         n = sig->param_count + sig->hasthis;
2104
2105         cinfo = get_call_info (cfg->mempool, sig);
2106
2107         linfo = mono_mempool_alloc0 (cfg->mempool, sizeof (LLVMCallInfo) + (sizeof (LLVMArgInfo) * n));
2108
2109         /*
2110          * LLVM always uses the native ABI while we use our own ABI, the
2111          * only difference is the handling of vtypes:
2112          * - we only pass/receive them in registers in some cases, and only 
2113          *   in 1 or 2 integer registers.
2114          */
2115         switch (cinfo->ret.storage) {
2116         case RegTypeGeneral:
2117         case RegTypeNone:
2118         case RegTypeFP:
2119         case RegTypeIRegPair:
2120                 break;
2121         case RegTypeStructByAddr:
2122                 /* Vtype returned using a hidden argument */
2123                 linfo->ret.storage = LLVMArgVtypeRetAddr;
2124                 linfo->vret_arg_index = cinfo->vret_arg_index;
2125                 break;
2126 #if TARGET_WATCHOS
2127         case RegTypeStructByVal:
2128                 /* LLVM models this by returning an int array */
2129                 linfo->ret.storage = LLVMArgAsIArgs;
2130                 linfo->ret.nslots = cinfo->ret.nregs;
2131                 break;
2132 #endif
2133         case RegTypeHFA:
2134                 linfo->ret.storage = LLVMArgFpStruct;
2135                 linfo->ret.nslots = cinfo->ret.nregs;
2136                 linfo->ret.esize = cinfo->ret.esize;
2137                 break;
2138         default:
2139                 cfg->exception_message = g_strdup_printf ("unknown ret conv (%d)", cinfo->ret.storage);
2140                 cfg->disable_llvm = TRUE;
2141                 return linfo;
2142         }
2143
2144         for (i = 0; i < n; ++i) {
2145                 LLVMArgInfo *lainfo = &linfo->args [i];
2146                 ainfo = cinfo->args + i;
2147
2148                 lainfo->storage = LLVMArgNone;
2149
2150                 switch (ainfo->storage) {
2151                 case RegTypeGeneral:
2152                 case RegTypeIRegPair:
2153                 case RegTypeBase:
2154                 case RegTypeBaseGen:
2155                 case RegTypeFP:
2156                         lainfo->storage = LLVMArgNormal;
2157                         break;
2158                 case RegTypeStructByVal:
2159                         lainfo->storage = LLVMArgAsIArgs;
2160                         if (eabi_supported && ainfo->align == 8) {
2161                                 /* LLVM models this by passing an int64 array */
2162                                 lainfo->nslots = ALIGN_TO (ainfo->struct_size, 8) / 8;
2163                                 lainfo->esize = 8;
2164                         } else {
2165                                 lainfo->nslots = ainfo->struct_size / sizeof (gpointer);
2166                                 lainfo->esize = 4;
2167                         }
2168                         break;
2169                 case RegTypeStructByAddr:
2170                 case RegTypeStructByAddrOnStack:
2171                         lainfo->storage = LLVMArgVtypeByRef;
2172                         break;
2173                 case RegTypeHFA: {
2174                         int j;
2175
2176                         lainfo->storage = LLVMArgAsFpArgs;
2177                         lainfo->nslots = ainfo->nregs;
2178                         lainfo->esize = ainfo->esize;
2179                         for (j = 0; j < ainfo->nregs; ++j)
2180                                 lainfo->pair_storage [j] = LLVMArgInFPReg;
2181                         break;
2182                 }
2183                 default:
2184                         cfg->exception_message = g_strdup_printf ("ainfo->storage (%d)", ainfo->storage);
2185                         cfg->disable_llvm = TRUE;
2186                         break;
2187                 }
2188         }
2189
2190         return linfo;
2191 }
2192 #endif
2193
2194 void
2195 mono_arch_emit_call (MonoCompile *cfg, MonoCallInst *call)
2196 {
2197         MonoInst *in, *ins;
2198         MonoMethodSignature *sig;
2199         int i, n;
2200         CallInfo *cinfo;
2201
2202         sig = call->signature;
2203         n = sig->param_count + sig->hasthis;
2204         
2205         cinfo = get_call_info (cfg->mempool, sig);
2206
2207         switch (cinfo->ret.storage) {
2208         case RegTypeStructByVal:
2209         case RegTypeHFA:
2210                 if (cinfo->ret.storage == RegTypeStructByVal && cinfo->ret.nregs == 1) {
2211                         /* The JIT will transform this into a normal call */
2212                         call->vret_in_reg = TRUE;
2213                         break;
2214                 }
2215                 if (call->inst.opcode == OP_TAILCALL)
2216                         break;
2217                 /*
2218                  * The vtype is returned in registers, save the return area address in a local, and save the vtype into
2219                  * the location pointed to by it after call in emit_move_return_value ().
2220                  */
2221                 if (!cfg->arch.vret_addr_loc) {
2222                         cfg->arch.vret_addr_loc = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2223                         /* Prevent it from being register allocated or optimized away */
2224                         ((MonoInst*)cfg->arch.vret_addr_loc)->flags |= MONO_INST_VOLATILE;
2225                 }
2226
2227                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, ((MonoInst*)cfg->arch.vret_addr_loc)->dreg, call->vret_var->dreg);
2228                 break;
2229         case RegTypeStructByAddr: {
2230                 MonoInst *vtarg;
2231                 MONO_INST_NEW (cfg, vtarg, OP_MOVE);
2232                 vtarg->sreg1 = call->vret_var->dreg;
2233                 vtarg->dreg = mono_alloc_preg (cfg);
2234                 MONO_ADD_INS (cfg->cbb, vtarg);
2235
2236                 mono_call_inst_add_outarg_reg (cfg, call, vtarg->dreg, cinfo->ret.reg, FALSE);
2237                 break;
2238         }
2239         default:
2240                 break;
2241         }
2242
2243         for (i = 0; i < n; ++i) {
2244                 ArgInfo *ainfo = cinfo->args + i;
2245                 MonoType *t;
2246
2247                 if (i >= sig->hasthis)
2248                         t = sig->params [i - sig->hasthis];
2249                 else
2250                         t = &mono_defaults.int_class->byval_arg;
2251                 t = mini_get_underlying_type (t);
2252
2253                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
2254                         /* Emit the signature cookie just before the implicit arguments */
2255                         emit_sig_cookie (cfg, call, cinfo);
2256                 }
2257
2258                 in = call->args [i];
2259
2260                 switch (ainfo->storage) {
2261                 case RegTypeGeneral:
2262                 case RegTypeIRegPair:
2263                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
2264                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2265                                 ins->dreg = mono_alloc_ireg (cfg);
2266                                 ins->sreg1 = MONO_LVREG_LS (in->dreg);
2267                                 MONO_ADD_INS (cfg->cbb, ins);
2268                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2269
2270                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2271                                 ins->dreg = mono_alloc_ireg (cfg);
2272                                 ins->sreg1 = MONO_LVREG_MS (in->dreg);
2273                                 MONO_ADD_INS (cfg->cbb, ins);
2274                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg + 1, FALSE);
2275                         } else if (!t->byref && ((t->type == MONO_TYPE_R8) || (t->type == MONO_TYPE_R4))) {
2276                                 if (ainfo->size == 4) {
2277                                         if (IS_SOFT_FLOAT) {
2278                                                 /* mono_emit_call_args () have already done the r8->r4 conversion */
2279                                                 /* The converted value is in an int vreg */
2280                                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2281                                                 ins->dreg = mono_alloc_ireg (cfg);
2282                                                 ins->sreg1 = in->dreg;
2283                                                 MONO_ADD_INS (cfg->cbb, ins);
2284                                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2285                                         } else {
2286                                                 int creg;
2287
2288                                                 cfg->param_area = MAX (cfg->param_area, 8);
2289                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, ARMREG_SP, (cfg->param_area - 8), in->dreg);
2290                                                 creg = mono_alloc_ireg (cfg);
2291                                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8));
2292                                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ainfo->reg, FALSE);
2293                                         }
2294                                 } else {
2295                                         if (IS_SOFT_FLOAT) {
2296                                                 MONO_INST_NEW (cfg, ins, OP_FGETLOW32);
2297                                                 ins->dreg = mono_alloc_ireg (cfg);
2298                                                 ins->sreg1 = in->dreg;
2299                                                 MONO_ADD_INS (cfg->cbb, ins);
2300                                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2301
2302                                                 MONO_INST_NEW (cfg, ins, OP_FGETHIGH32);
2303                                                 ins->dreg = mono_alloc_ireg (cfg);
2304                                                 ins->sreg1 = in->dreg;
2305                                                 MONO_ADD_INS (cfg->cbb, ins);
2306                                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg + 1, FALSE);
2307                                         } else {
2308                                                 int creg;
2309
2310                                                 cfg->param_area = MAX (cfg->param_area, 8);
2311                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, ARMREG_SP, (cfg->param_area - 8), in->dreg);
2312                                                 creg = mono_alloc_ireg (cfg);
2313                                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8));
2314                                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ainfo->reg, FALSE);
2315                                                 creg = mono_alloc_ireg (cfg);
2316                                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8 + 4));
2317                                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ainfo->reg + 1, FALSE);
2318                                         }
2319                                 }
2320                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
2321                         } else {
2322                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2323                                 ins->dreg = mono_alloc_ireg (cfg);
2324                                 ins->sreg1 = in->dreg;
2325                                 MONO_ADD_INS (cfg->cbb, ins);
2326
2327                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2328                         }
2329                         break;
2330                 case RegTypeStructByVal:
2331                 case RegTypeGSharedVtInReg:
2332                 case RegTypeGSharedVtOnStack:
2333                 case RegTypeHFA:
2334                 case RegTypeStructByAddr:
2335                 case RegTypeStructByAddrOnStack:
2336                         MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
2337                         ins->opcode = OP_OUTARG_VT;
2338                         ins->sreg1 = in->dreg;
2339                         ins->klass = in->klass;
2340                         ins->inst_p0 = call;
2341                         ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
2342                         memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
2343                         mono_call_inst_add_outarg_vt (cfg, call, ins);
2344                         MONO_ADD_INS (cfg->cbb, ins);
2345                         break;
2346                 case RegTypeBase:
2347                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
2348                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2349                         } else if (!t->byref && ((t->type == MONO_TYPE_R4) || (t->type == MONO_TYPE_R8))) {
2350                                 if (t->type == MONO_TYPE_R8) {
2351                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2352                                 } else {
2353                                         if (IS_SOFT_FLOAT)
2354                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2355                                         else
2356                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2357                                 }
2358                         } else {
2359                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2360                         }
2361                         break;
2362                 case RegTypeBaseGen:
2363                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
2364                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, (G_BYTE_ORDER == G_BIG_ENDIAN) ? MONO_LVREG_LS (in->dreg) : MONO_LVREG_MS (in->dreg));
2365                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2366                                 ins->dreg = mono_alloc_ireg (cfg);
2367                                 ins->sreg1 = G_BYTE_ORDER == G_BIG_ENDIAN ? MONO_LVREG_MS (in->dreg) : MONO_LVREG_LS (in->dreg);
2368                                 MONO_ADD_INS (cfg->cbb, ins);
2369                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ARMREG_R3, FALSE);
2370                         } else if (!t->byref && (t->type == MONO_TYPE_R8)) {
2371                                 int creg;
2372
2373                                 /* This should work for soft-float as well */
2374
2375                                 cfg->param_area = MAX (cfg->param_area, 8);
2376                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, ARMREG_SP, (cfg->param_area - 8), in->dreg);
2377                                 creg = mono_alloc_ireg (cfg);
2378                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ARMREG_R3, FALSE);
2379                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8));
2380                                 creg = mono_alloc_ireg (cfg);
2381                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 4));
2382                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, creg);
2383                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
2384                         } else {
2385                                 g_assert_not_reached ();
2386                         }
2387                         break;
2388                 case RegTypeFP: {
2389                         int fdreg = mono_alloc_freg (cfg);
2390
2391                         if (ainfo->size == 8) {
2392                                 MONO_INST_NEW (cfg, ins, OP_FMOVE);
2393                                 ins->sreg1 = in->dreg;
2394                                 ins->dreg = fdreg;
2395                                 MONO_ADD_INS (cfg->cbb, ins);
2396
2397                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, TRUE);
2398                         } else {
2399                                 FloatArgData *fad;
2400
2401                                 /*
2402                                  * Mono's register allocator doesn't speak single-precision registers that
2403                                  * overlap double-precision registers (i.e. armhf). So we have to work around
2404                                  * the register allocator and load the value from memory manually.
2405                                  *
2406                                  * So we create a variable for the float argument and an instruction to store
2407                                  * the argument into the variable. We then store the list of these arguments
2408                                  * in call->float_args. This list is then used by emit_float_args later to
2409                                  * pass the arguments in the various call opcodes.
2410                                  *
2411                                  * This is not very nice, and we should really try to fix the allocator.
2412                                  */
2413
2414                                 MonoInst *float_arg = mono_compile_create_var (cfg, &mono_defaults.single_class->byval_arg, OP_LOCAL);
2415
2416                                 /* Make sure the instruction isn't seen as pointless and removed.
2417                                  */
2418                                 float_arg->flags |= MONO_INST_VOLATILE;
2419
2420                                 MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, float_arg->dreg, in->dreg);
2421
2422                                 /* We use the dreg to look up the instruction later. The hreg is used to
2423                                  * emit the instruction that loads the value into the FP reg.
2424                                  */
2425                                 fad = mono_mempool_alloc0 (cfg->mempool, sizeof (FloatArgData));
2426                                 fad->vreg = float_arg->dreg;
2427                                 fad->hreg = ainfo->reg;
2428
2429                                 call->float_args = g_slist_append_mempool (cfg->mempool, call->float_args, fad);
2430                         }
2431
2432                         call->used_iregs |= 1 << ainfo->reg;
2433                         cfg->flags |= MONO_CFG_HAS_FPOUT;
2434                         break;
2435                 }
2436                 default:
2437                         g_assert_not_reached ();
2438                 }
2439         }
2440
2441         /* Handle the case where there are no implicit arguments */
2442         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (n == sig->sentinelpos))
2443                 emit_sig_cookie (cfg, call, cinfo);
2444
2445         call->call_info = cinfo;
2446         call->stack_usage = cinfo->stack_usage;
2447 }
2448
2449 static void
2450 add_outarg_reg (MonoCompile *cfg, MonoCallInst *call, ArgStorage storage, int reg, MonoInst *arg)
2451 {
2452         MonoInst *ins;
2453
2454         switch (storage) {
2455         case RegTypeFP:
2456                 MONO_INST_NEW (cfg, ins, OP_FMOVE);
2457                 ins->dreg = mono_alloc_freg (cfg);
2458                 ins->sreg1 = arg->dreg;
2459                 MONO_ADD_INS (cfg->cbb, ins);
2460                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, reg, TRUE);
2461                 break;
2462         default:
2463                 g_assert_not_reached ();
2464                 break;
2465         }
2466 }
2467
2468 void
2469 mono_arch_emit_outarg_vt (MonoCompile *cfg, MonoInst *ins, MonoInst *src)
2470 {
2471         MonoCallInst *call = (MonoCallInst*)ins->inst_p0;
2472         MonoInst *load;
2473         ArgInfo *ainfo = ins->inst_p1;
2474         int ovf_size = ainfo->vtsize;
2475         int doffset = ainfo->offset;
2476         int struct_size = ainfo->struct_size;
2477         int i, soffset, dreg, tmpreg;
2478
2479         switch (ainfo->storage) {
2480         case RegTypeGSharedVtInReg:
2481         case RegTypeStructByAddr:
2482                 /* Pass by addr */
2483                 mono_call_inst_add_outarg_reg (cfg, call, src->dreg, ainfo->reg, FALSE);
2484                 break;
2485         case RegTypeGSharedVtOnStack:
2486         case RegTypeStructByAddrOnStack:
2487                 /* Pass by addr on stack */
2488                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, src->dreg);
2489                 break;
2490         case RegTypeHFA:
2491                 for (i = 0; i < ainfo->nregs; ++i) {
2492                         if (ainfo->esize == 4)
2493                                 MONO_INST_NEW (cfg, load, OP_LOADR4_MEMBASE);
2494                         else
2495                                 MONO_INST_NEW (cfg, load, OP_LOADR8_MEMBASE);
2496                         load->dreg = mono_alloc_freg (cfg);
2497                         load->inst_basereg = src->dreg;
2498                         load->inst_offset = i * ainfo->esize;
2499                         MONO_ADD_INS (cfg->cbb, load);
2500
2501                         if (ainfo->esize == 4) {
2502                                 FloatArgData *fad;
2503
2504                                 /* See RegTypeFP in mono_arch_emit_call () */
2505                                 MonoInst *float_arg = mono_compile_create_var (cfg, &mono_defaults.single_class->byval_arg, OP_LOCAL);
2506                                 float_arg->flags |= MONO_INST_VOLATILE;
2507                                 MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, float_arg->dreg, load->dreg);
2508
2509                                 fad = mono_mempool_alloc0 (cfg->mempool, sizeof (FloatArgData));
2510                                 fad->vreg = float_arg->dreg;
2511                                 fad->hreg = ainfo->reg + i;
2512
2513                                 call->float_args = g_slist_append_mempool (cfg->mempool, call->float_args, fad);
2514                         } else {
2515                                 add_outarg_reg (cfg, call, RegTypeFP, ainfo->reg + (i * 2), load);
2516                         }
2517                 }
2518                 break;
2519         default:
2520                 soffset = 0;
2521                 for (i = 0; i < ainfo->size; ++i) {
2522                         dreg = mono_alloc_ireg (cfg);
2523                         switch (struct_size) {
2524                         case 1:
2525                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, dreg, src->dreg, soffset);
2526                                 break;
2527                         case 2:
2528                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU2_MEMBASE, dreg, src->dreg, soffset);
2529                                 break;
2530                         case 3:
2531                                 tmpreg = mono_alloc_ireg (cfg);
2532                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, dreg, src->dreg, soffset);
2533                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, tmpreg, src->dreg, soffset + 1);
2534                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, tmpreg, tmpreg, 8);
2535                                 MONO_EMIT_NEW_BIALU (cfg, OP_IOR, dreg, dreg, tmpreg);
2536                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, tmpreg, src->dreg, soffset + 2);
2537                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, tmpreg, tmpreg, 16);
2538                                 MONO_EMIT_NEW_BIALU (cfg, OP_IOR, dreg, dreg, tmpreg);
2539                                 break;
2540                         default:
2541                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, src->dreg, soffset);
2542                                 break;
2543                         }
2544                         mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg + i, FALSE);
2545                         soffset += sizeof (gpointer);
2546                         struct_size -= sizeof (gpointer);
2547                 }
2548                 //g_print ("vt size: %d at R%d + %d\n", doffset, vt->inst_basereg, vt->inst_offset);
2549                 if (ovf_size != 0)
2550                         mini_emit_memcpy (cfg, ARMREG_SP, doffset, src->dreg, soffset, MIN (ovf_size * sizeof (gpointer), struct_size), struct_size < 4 ? 1 : 4);
2551                 break;
2552         }
2553 }
2554
2555 void
2556 mono_arch_emit_setret (MonoCompile *cfg, MonoMethod *method, MonoInst *val)
2557 {
2558         MonoType *ret = mini_get_underlying_type (mono_method_signature (method)->ret);
2559
2560         if (!ret->byref) {
2561                 if (ret->type == MONO_TYPE_I8 || ret->type == MONO_TYPE_U8) {
2562                         MonoInst *ins;
2563
2564                         if (COMPILE_LLVM (cfg)) {
2565                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
2566                         } else {
2567                                 MONO_INST_NEW (cfg, ins, OP_SETLRET);
2568                                 ins->sreg1 = MONO_LVREG_LS (val->dreg);
2569                                 ins->sreg2 = MONO_LVREG_MS (val->dreg);
2570                                 MONO_ADD_INS (cfg->cbb, ins);
2571                         }
2572                         return;
2573                 }
2574                 switch (arm_fpu) {
2575                 case MONO_ARM_FPU_NONE:
2576                         if (ret->type == MONO_TYPE_R8) {
2577                                 MonoInst *ins;
2578
2579                                 MONO_INST_NEW (cfg, ins, OP_SETFRET);
2580                                 ins->dreg = cfg->ret->dreg;
2581                                 ins->sreg1 = val->dreg;
2582                                 MONO_ADD_INS (cfg->cbb, ins);
2583                                 return;
2584                         }
2585                         if (ret->type == MONO_TYPE_R4) {
2586                                 /* Already converted to an int in method_to_ir () */
2587                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
2588                                 return;
2589                         }
2590                         break;
2591                 case MONO_ARM_FPU_VFP:
2592                 case MONO_ARM_FPU_VFP_HARD:
2593                         if (ret->type == MONO_TYPE_R8 || ret->type == MONO_TYPE_R4) {
2594                                 MonoInst *ins;
2595
2596                                 MONO_INST_NEW (cfg, ins, OP_SETFRET);
2597                                 ins->dreg = cfg->ret->dreg;
2598                                 ins->sreg1 = val->dreg;
2599                                 MONO_ADD_INS (cfg->cbb, ins);
2600                                 return;
2601                         }
2602                         break;
2603                 default:
2604                         g_assert_not_reached ();
2605                 }
2606         }
2607
2608         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
2609 }
2610
2611 #endif /* #ifndef DISABLE_JIT */
2612
2613 gboolean 
2614 mono_arch_is_inst_imm (gint64 imm)
2615 {
2616         return TRUE;
2617 }
2618
2619 typedef struct {
2620         MonoMethodSignature *sig;
2621         CallInfo *cinfo;
2622         MonoType *rtype;
2623         MonoType **param_types;
2624 } ArchDynCallInfo;
2625
2626 static gboolean
2627 dyn_call_supported (CallInfo *cinfo, MonoMethodSignature *sig)
2628 {
2629         int i;
2630
2631         if (sig->hasthis + sig->param_count > PARAM_REGS + DYN_CALL_STACK_ARGS)
2632                 return FALSE;
2633
2634         switch (cinfo->ret.storage) {
2635         case RegTypeNone:
2636         case RegTypeGeneral:
2637         case RegTypeIRegPair:
2638         case RegTypeStructByAddr:
2639                 break;
2640         case RegTypeFP:
2641                 if (IS_VFP)
2642                         break;
2643                 else
2644                         return FALSE;
2645         default:
2646                 return FALSE;
2647         }
2648
2649         for (i = 0; i < cinfo->nargs; ++i) {
2650                 ArgInfo *ainfo = &cinfo->args [i];
2651                 int last_slot;
2652
2653                 switch (ainfo->storage) {
2654                 case RegTypeGeneral:
2655                 case RegTypeIRegPair:
2656                 case RegTypeBaseGen:
2657                 case RegTypeFP:
2658                         break;
2659                 case RegTypeBase:
2660                         if (ainfo->offset >= (DYN_CALL_STACK_ARGS * sizeof (gpointer)))
2661                                 return FALSE;
2662                         break;
2663                 case RegTypeStructByVal:
2664                         if (ainfo->size == 0)
2665                                 last_slot = PARAM_REGS + (ainfo->offset / 4) + ainfo->vtsize;
2666                         else
2667                                 last_slot = ainfo->reg + ainfo->size + ainfo->vtsize;
2668                         if (last_slot >= PARAM_REGS + DYN_CALL_STACK_ARGS)
2669                                 return FALSE;
2670                         break;
2671                 default:
2672                         return FALSE;
2673                 }
2674         }
2675
2676         // FIXME: Can't use cinfo only as it doesn't contain info about I8/float */
2677         for (i = 0; i < sig->param_count; ++i) {
2678                 MonoType *t = sig->params [i];
2679
2680                 if (t->byref)
2681                         continue;
2682
2683                 t = mini_get_underlying_type (t);
2684
2685                 switch (t->type) {
2686                 case MONO_TYPE_R4:
2687                 case MONO_TYPE_R8:
2688                         if (IS_SOFT_FLOAT)
2689                                 return FALSE;
2690                         else
2691                                 break;
2692                         /*
2693                 case MONO_TYPE_I8:
2694                 case MONO_TYPE_U8:
2695                         return FALSE;
2696                         */
2697                 default:
2698                         break;
2699                 }
2700         }
2701
2702         return TRUE;
2703 }
2704
2705 MonoDynCallInfo*
2706 mono_arch_dyn_call_prepare (MonoMethodSignature *sig)
2707 {
2708         ArchDynCallInfo *info;
2709         CallInfo *cinfo;
2710         int i;
2711
2712         cinfo = get_call_info (NULL, sig);
2713
2714         if (!dyn_call_supported (cinfo, sig)) {
2715                 g_free (cinfo);
2716                 return NULL;
2717         }
2718
2719         info = g_new0 (ArchDynCallInfo, 1);
2720         // FIXME: Preprocess the info to speed up start_dyn_call ()
2721         info->sig = sig;
2722         info->cinfo = cinfo;
2723         info->rtype = mini_get_underlying_type (sig->ret);
2724         info->param_types = g_new0 (MonoType*, sig->param_count);
2725         for (i = 0; i < sig->param_count; ++i)
2726                 info->param_types [i] = mini_get_underlying_type (sig->params [i]);
2727         
2728         return (MonoDynCallInfo*)info;
2729 }
2730
2731 void
2732 mono_arch_dyn_call_free (MonoDynCallInfo *info)
2733 {
2734         ArchDynCallInfo *ainfo = (ArchDynCallInfo*)info;
2735
2736         g_free (ainfo->cinfo);
2737         g_free (ainfo);
2738 }
2739
2740 void
2741 mono_arch_start_dyn_call (MonoDynCallInfo *info, gpointer **args, guint8 *ret, guint8 *buf, int buf_len)
2742 {
2743         ArchDynCallInfo *dinfo = (ArchDynCallInfo*)info;
2744         DynCallArgs *p = (DynCallArgs*)buf;
2745         int arg_index, greg, i, j, pindex;
2746         MonoMethodSignature *sig = dinfo->sig;
2747
2748         g_assert (buf_len >= sizeof (DynCallArgs));
2749
2750         p->res = 0;
2751         p->ret = ret;
2752         p->has_fpregs = 0;
2753
2754         arg_index = 0;
2755         greg = 0;
2756         pindex = 0;
2757
2758         if (sig->hasthis || dinfo->cinfo->vret_arg_index == 1) {
2759                 p->regs [greg ++] = (mgreg_t)*(args [arg_index ++]);
2760                 if (!sig->hasthis)
2761                         pindex = 1;
2762         }
2763
2764         if (dinfo->cinfo->ret.storage == RegTypeStructByAddr)
2765                 p->regs [greg ++] = (mgreg_t)ret;
2766
2767         for (i = pindex; i < sig->param_count; i++) {
2768                 MonoType *t = dinfo->param_types [i];
2769                 gpointer *arg = args [arg_index ++];
2770                 ArgInfo *ainfo = &dinfo->cinfo->args [i + sig->hasthis];
2771                 int slot = -1;
2772
2773                 if (ainfo->storage == RegTypeGeneral || ainfo->storage == RegTypeIRegPair || ainfo->storage == RegTypeStructByVal) {
2774                         slot = ainfo->reg;
2775                 } else if (ainfo->storage == RegTypeFP) {
2776                 } else if (ainfo->storage == RegTypeBase) {
2777                         slot = PARAM_REGS + (ainfo->offset / 4);
2778                 } else if (ainfo->storage == RegTypeBaseGen) {
2779                         /* slot + 1 is the first stack slot, so the code below will work */
2780                         slot = 3;
2781                 } else {
2782                         g_assert_not_reached ();
2783                 }
2784
2785                 if (t->byref) {
2786                         p->regs [slot] = (mgreg_t)*arg;
2787                         continue;
2788                 }
2789
2790                 switch (t->type) {
2791                 case MONO_TYPE_OBJECT:
2792                 case MONO_TYPE_PTR:
2793                 case MONO_TYPE_I:
2794                 case MONO_TYPE_U:
2795                         p->regs [slot] = (mgreg_t)*arg;
2796                         break;
2797                 case MONO_TYPE_U1:
2798                         p->regs [slot] = *(guint8*)arg;
2799                         break;
2800                 case MONO_TYPE_I1:
2801                         p->regs [slot] = *(gint8*)arg;
2802                         break;
2803                 case MONO_TYPE_I2:
2804                         p->regs [slot] = *(gint16*)arg;
2805                         break;
2806                 case MONO_TYPE_U2:
2807                         p->regs [slot] = *(guint16*)arg;
2808                         break;
2809                 case MONO_TYPE_I4:
2810                         p->regs [slot] = *(gint32*)arg;
2811                         break;
2812                 case MONO_TYPE_U4:
2813                         p->regs [slot] = *(guint32*)arg;
2814                         break;
2815                 case MONO_TYPE_I8:
2816                 case MONO_TYPE_U8:
2817                         p->regs [slot ++] = (mgreg_t)arg [0];
2818                         p->regs [slot] = (mgreg_t)arg [1];
2819                         break;
2820                 case MONO_TYPE_R4:
2821                         if (ainfo->storage == RegTypeFP) {
2822                                 float f = *(float*)arg;
2823                                 p->fpregs [ainfo->reg / 2] = *(double*)&f;
2824                                 p->has_fpregs = 1;
2825                         } else {
2826                                 p->regs [slot] = *(mgreg_t*)arg;
2827                         }
2828                         break;
2829                 case MONO_TYPE_R8:
2830                         if (ainfo->storage == RegTypeFP) {
2831                                 p->fpregs [ainfo->reg / 2] = *(double*)arg;
2832                                 p->has_fpregs = 1;
2833                         } else {
2834                                 p->regs [slot ++] = (mgreg_t)arg [0];
2835                                 p->regs [slot] = (mgreg_t)arg [1];
2836                         }
2837                         break;
2838                 case MONO_TYPE_GENERICINST:
2839                         if (MONO_TYPE_IS_REFERENCE (t)) {
2840                                 p->regs [slot] = (mgreg_t)*arg;
2841                                 break;
2842                         } else {
2843                                 if (t->type == MONO_TYPE_GENERICINST && mono_class_is_nullable (mono_class_from_mono_type (t))) {
2844                                         MonoClass *klass = mono_class_from_mono_type (t);
2845                                         guint8 *nullable_buf;
2846                                         int size;
2847
2848                                         size = mono_class_value_size (klass, NULL);
2849                                         nullable_buf = g_alloca (size);
2850                                         g_assert (nullable_buf);
2851
2852                                         /* The argument pointed to by arg is either a boxed vtype or null */
2853                                         mono_nullable_init (nullable_buf, (MonoObject*)arg, klass);
2854
2855                                         arg = (gpointer*)nullable_buf;
2856                                         /* Fall though */
2857                                 } else {
2858                                         /* Fall though */
2859                                 }
2860                         }
2861                 case MONO_TYPE_VALUETYPE:
2862                         g_assert (ainfo->storage == RegTypeStructByVal);
2863
2864                         if (ainfo->size == 0)
2865                                 slot = PARAM_REGS + (ainfo->offset / 4);
2866                         else
2867                                 slot = ainfo->reg;
2868
2869                         for (j = 0; j < ainfo->size + ainfo->vtsize; ++j)
2870                                 p->regs [slot ++] = ((mgreg_t*)arg) [j];
2871                         break;
2872                 default:
2873                         g_assert_not_reached ();
2874                 }
2875         }
2876 }
2877
2878 void
2879 mono_arch_finish_dyn_call (MonoDynCallInfo *info, guint8 *buf)
2880 {
2881         ArchDynCallInfo *ainfo = (ArchDynCallInfo*)info;
2882         DynCallArgs *p = (DynCallArgs*)buf;
2883         MonoType *ptype = ainfo->rtype;
2884         guint8 *ret = p->ret;
2885         mgreg_t res = p->res;
2886         mgreg_t res2 = p->res2;
2887
2888         switch (ptype->type) {
2889         case MONO_TYPE_VOID:
2890                 *(gpointer*)ret = NULL;
2891                 break;
2892         case MONO_TYPE_OBJECT:
2893         case MONO_TYPE_I:
2894         case MONO_TYPE_U:
2895         case MONO_TYPE_PTR:
2896                 *(gpointer*)ret = (gpointer)res;
2897                 break;
2898         case MONO_TYPE_I1:
2899                 *(gint8*)ret = res;
2900                 break;
2901         case MONO_TYPE_U1:
2902                 *(guint8*)ret = res;
2903                 break;
2904         case MONO_TYPE_I2:
2905                 *(gint16*)ret = res;
2906                 break;
2907         case MONO_TYPE_U2:
2908                 *(guint16*)ret = res;
2909                 break;
2910         case MONO_TYPE_I4:
2911                 *(gint32*)ret = res;
2912                 break;
2913         case MONO_TYPE_U4:
2914                 *(guint32*)ret = res;
2915                 break;
2916         case MONO_TYPE_I8:
2917         case MONO_TYPE_U8:
2918                 /* This handles endianness as well */
2919                 ((gint32*)ret) [0] = res;
2920                 ((gint32*)ret) [1] = res2;
2921                 break;
2922         case MONO_TYPE_GENERICINST:
2923                 if (MONO_TYPE_IS_REFERENCE (ptype)) {
2924                         *(gpointer*)ret = (gpointer)res;
2925                         break;
2926                 } else {
2927                         /* Fall though */
2928                 }
2929         case MONO_TYPE_VALUETYPE:
2930                 g_assert (ainfo->cinfo->ret.storage == RegTypeStructByAddr);
2931                 /* Nothing to do */
2932                 break;
2933         case MONO_TYPE_R4:
2934                 g_assert (IS_VFP);
2935                 if (IS_HARD_FLOAT)
2936                         *(float*)ret = *(float*)&p->fpregs [0];
2937                 else
2938                         *(float*)ret = *(float*)&res;
2939                 break;
2940         case MONO_TYPE_R8: {
2941                 mgreg_t regs [2];
2942
2943                 g_assert (IS_VFP);
2944                 if (IS_HARD_FLOAT) {
2945                         *(double*)ret = p->fpregs [0];
2946                 } else {
2947                         regs [0] = res;
2948                         regs [1] = res2;
2949
2950                         *(double*)ret = *(double*)&regs;
2951                 }
2952                 break;
2953         }
2954         default:
2955                 g_assert_not_reached ();
2956         }
2957 }
2958
2959 #ifndef DISABLE_JIT
2960
2961 /*
2962  * Allow tracing to work with this interface (with an optional argument)
2963  */
2964
2965 void*
2966 mono_arch_instrument_prolog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments)
2967 {
2968         guchar *code = p;
2969
2970         code = mono_arm_emit_load_imm (code, ARMREG_R0, (guint32)cfg->method);
2971         ARM_MOV_REG_IMM8 (code, ARMREG_R1, 0); /* NULL ebp for now */
2972         code = mono_arm_emit_load_imm (code, ARMREG_R2, (guint32)func);
2973         code = emit_call_reg (code, ARMREG_R2);
2974         return code;
2975 }
2976
2977 enum {
2978         SAVE_NONE,
2979         SAVE_STRUCT,
2980         SAVE_ONE,
2981         SAVE_TWO,
2982         SAVE_ONE_FP,
2983         SAVE_TWO_FP
2984 };
2985
2986 void*
2987 mono_arch_instrument_epilog_full (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments, gboolean preserve_argument_registers)
2988 {
2989         guchar *code = p;
2990         int save_mode = SAVE_NONE;
2991         int offset;
2992         MonoMethod *method = cfg->method;
2993         MonoType *ret_type = mini_get_underlying_type (mono_method_signature (method)->ret);
2994         int rtype = ret_type->type;
2995         int save_offset = cfg->param_area;
2996         save_offset += 7;
2997         save_offset &= ~7;
2998         
2999         offset = code - cfg->native_code;
3000         /* we need about 16 instructions */
3001         if (offset > (cfg->code_size - 16 * 4)) {
3002                 cfg->code_size *= 2;
3003                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
3004                 code = cfg->native_code + offset;
3005         }
3006         switch (rtype) {
3007         case MONO_TYPE_VOID:
3008                 /* special case string .ctor icall */
3009                 if (strcmp (".ctor", method->name) && method->klass == mono_defaults.string_class)
3010                         save_mode = SAVE_ONE;
3011                 else
3012                         save_mode = SAVE_NONE;
3013                 break;
3014         case MONO_TYPE_I8:
3015         case MONO_TYPE_U8:
3016                 save_mode = SAVE_TWO;
3017                 break;
3018         case MONO_TYPE_R4:
3019                 if (IS_HARD_FLOAT)
3020                         save_mode = SAVE_ONE_FP;
3021                 else
3022                         save_mode = SAVE_ONE;
3023                 break;
3024         case MONO_TYPE_R8:
3025                 if (IS_HARD_FLOAT)
3026                         save_mode = SAVE_TWO_FP;
3027                 else
3028                         save_mode = SAVE_TWO;
3029                 break;
3030         case MONO_TYPE_GENERICINST:
3031                 if (!mono_type_generic_inst_is_valuetype (ret_type)) {
3032                         save_mode = SAVE_ONE;
3033                         break;
3034                 }
3035                 /* Fall through */
3036         case MONO_TYPE_VALUETYPE:
3037                 save_mode = SAVE_STRUCT;
3038                 break;
3039         default:
3040                 save_mode = SAVE_ONE;
3041                 break;
3042         }
3043
3044         switch (save_mode) {
3045         case SAVE_TWO:
3046                 ARM_STR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3047                 ARM_STR_IMM (code, ARMREG_R1, cfg->frame_reg, save_offset + 4);
3048                 if (enable_arguments) {
3049                         ARM_MOV_REG_REG (code, ARMREG_R2, ARMREG_R1);
3050                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_R0);
3051                 }
3052                 break;
3053         case SAVE_ONE:
3054                 ARM_STR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3055                 if (enable_arguments) {
3056                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_R0);
3057                 }
3058                 break;
3059         case SAVE_ONE_FP:
3060                 ARM_FSTS (code, ARM_VFP_F0, cfg->frame_reg, save_offset);
3061                 if (enable_arguments) {
3062                         ARM_FMRS (code, ARMREG_R1, ARM_VFP_F0);
3063                 }
3064                 break;
3065         case SAVE_TWO_FP:
3066                 ARM_FSTD (code, ARM_VFP_D0, cfg->frame_reg, save_offset);
3067                 if (enable_arguments) {
3068                         ARM_FMDRR (code, ARMREG_R1, ARMREG_R2, ARM_VFP_D0);
3069                 }
3070                 break;
3071         case SAVE_STRUCT:
3072                 if (enable_arguments) {
3073                         /* FIXME: get the actual address  */
3074                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_R0);
3075                 }
3076                 break;
3077         case SAVE_NONE:
3078         default:
3079                 break;
3080         }
3081
3082         code = mono_arm_emit_load_imm (code, ARMREG_R0, (guint32)cfg->method);
3083         code = mono_arm_emit_load_imm (code, ARMREG_IP, (guint32)func);
3084         code = emit_call_reg (code, ARMREG_IP);
3085
3086         switch (save_mode) {
3087         case SAVE_TWO:
3088                 ARM_LDR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3089                 ARM_LDR_IMM (code, ARMREG_R1, cfg->frame_reg, save_offset + 4);
3090                 break;
3091         case SAVE_ONE:
3092                 ARM_LDR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3093                 break;
3094         case SAVE_ONE_FP:
3095                 ARM_FLDS (code, ARM_VFP_F0, cfg->frame_reg, save_offset);
3096                 break;
3097         case SAVE_TWO_FP:
3098                 ARM_FLDD (code, ARM_VFP_D0, cfg->frame_reg, save_offset);
3099                 break;
3100         case SAVE_NONE:
3101         default:
3102                 break;
3103         }
3104
3105         return code;
3106 }
3107
3108 /*
3109  * The immediate field for cond branches is big enough for all reasonable methods
3110  */
3111 #define EMIT_COND_BRANCH_FLAGS(ins,condcode) \
3112 if (0 && ins->inst_true_bb->native_offset) { \
3113         ARM_B_COND (code, (condcode), (code - cfg->native_code + ins->inst_true_bb->native_offset) & 0xffffff); \
3114 } else { \
3115         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_true_bb); \
3116         ARM_B_COND (code, (condcode), 0); \
3117 }
3118
3119 #define EMIT_COND_BRANCH(ins,cond) EMIT_COND_BRANCH_FLAGS(ins, branch_cc_table [(cond)])
3120
3121 /* emit an exception if condition is fail
3122  *
3123  * We assign the extra code used to throw the implicit exceptions
3124  * to cfg->bb_exit as far as the big branch handling is concerned
3125  */
3126 #define EMIT_COND_SYSTEM_EXCEPTION_FLAGS(condcode,exc_name)            \
3127         do {                                                        \
3128                 mono_add_patch_info (cfg, code - cfg->native_code,   \
3129                                     MONO_PATCH_INFO_EXC, exc_name); \
3130                 ARM_BL_COND (code, (condcode), 0); \
3131         } while (0); 
3132
3133 #define EMIT_COND_SYSTEM_EXCEPTION(cond,exc_name) EMIT_COND_SYSTEM_EXCEPTION_FLAGS(branch_cc_table [(cond)], (exc_name))
3134
3135 void
3136 mono_arch_peephole_pass_1 (MonoCompile *cfg, MonoBasicBlock *bb)
3137 {
3138 }
3139
3140 void
3141 mono_arch_peephole_pass_2 (MonoCompile *cfg, MonoBasicBlock *bb)
3142 {
3143         MonoInst *ins, *n;
3144
3145         MONO_BB_FOR_EACH_INS_SAFE (bb, n, ins) {
3146                 MonoInst *last_ins = mono_inst_prev (ins, FILTER_IL_SEQ_POINT);
3147
3148                 switch (ins->opcode) {
3149                 case OP_MUL_IMM: 
3150                 case OP_IMUL_IMM: 
3151                         /* Already done by an arch-independent pass */
3152                         break;
3153                 case OP_LOAD_MEMBASE:
3154                 case OP_LOADI4_MEMBASE:
3155                         /* 
3156                          * OP_STORE_MEMBASE_REG reg, offset(basereg) 
3157                          * OP_LOAD_MEMBASE offset(basereg), reg
3158                          */
3159                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_REG 
3160                                          || last_ins->opcode == OP_STORE_MEMBASE_REG) &&
3161                             ins->inst_basereg == last_ins->inst_destbasereg &&
3162                             ins->inst_offset == last_ins->inst_offset) {
3163                                 if (ins->dreg == last_ins->sreg1) {
3164                                         MONO_DELETE_INS (bb, ins);
3165                                         continue;
3166                                 } else {
3167                                         //static int c = 0; g_print ("MATCHX %s %d\n", cfg->method->name,c++);
3168                                         ins->opcode = OP_MOVE;
3169                                         ins->sreg1 = last_ins->sreg1;
3170                                 }
3171
3172                         /* 
3173                          * Note: reg1 must be different from the basereg in the second load
3174                          * OP_LOAD_MEMBASE offset(basereg), reg1
3175                          * OP_LOAD_MEMBASE offset(basereg), reg2
3176                          * -->
3177                          * OP_LOAD_MEMBASE offset(basereg), reg1
3178                          * OP_MOVE reg1, reg2
3179                          */
3180                         } if (last_ins && (last_ins->opcode == OP_LOADI4_MEMBASE
3181                                            || last_ins->opcode == OP_LOAD_MEMBASE) &&
3182                               ins->inst_basereg != last_ins->dreg &&
3183                               ins->inst_basereg == last_ins->inst_basereg &&
3184                               ins->inst_offset == last_ins->inst_offset) {
3185
3186                                 if (ins->dreg == last_ins->dreg) {
3187                                         MONO_DELETE_INS (bb, ins);
3188                                         continue;
3189                                 } else {
3190                                         ins->opcode = OP_MOVE;
3191                                         ins->sreg1 = last_ins->dreg;
3192                                 }
3193
3194                                 //g_assert_not_reached ();
3195
3196 #if 0
3197                         /* 
3198                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
3199                          * OP_LOAD_MEMBASE offset(basereg), reg
3200                          * -->
3201                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
3202                          * OP_ICONST reg, imm
3203                          */
3204                         } else if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_IMM
3205                                                 || last_ins->opcode == OP_STORE_MEMBASE_IMM) &&
3206                                    ins->inst_basereg == last_ins->inst_destbasereg &&
3207                                    ins->inst_offset == last_ins->inst_offset) {
3208                                 //static int c = 0; g_print ("MATCHX %s %d\n", cfg->method->name,c++);
3209                                 ins->opcode = OP_ICONST;
3210                                 ins->inst_c0 = last_ins->inst_imm;
3211                                 g_assert_not_reached (); // check this rule
3212 #endif
3213                         }
3214                         break;
3215                 case OP_LOADU1_MEMBASE:
3216                 case OP_LOADI1_MEMBASE:
3217                         if (last_ins && (last_ins->opcode == OP_STOREI1_MEMBASE_REG) &&
3218                                         ins->inst_basereg == last_ins->inst_destbasereg &&
3219                                         ins->inst_offset == last_ins->inst_offset) {
3220                                 ins->opcode = (ins->opcode == OP_LOADI1_MEMBASE) ? OP_ICONV_TO_I1 : OP_ICONV_TO_U1;
3221                                 ins->sreg1 = last_ins->sreg1;                           
3222                         }
3223                         break;
3224                 case OP_LOADU2_MEMBASE:
3225                 case OP_LOADI2_MEMBASE:
3226                         if (last_ins && (last_ins->opcode == OP_STOREI2_MEMBASE_REG) &&
3227                                         ins->inst_basereg == last_ins->inst_destbasereg &&
3228                                         ins->inst_offset == last_ins->inst_offset) {
3229                                 ins->opcode = (ins->opcode == OP_LOADI2_MEMBASE) ? OP_ICONV_TO_I2 : OP_ICONV_TO_U2;
3230                                 ins->sreg1 = last_ins->sreg1;                           
3231                         }
3232                         break;
3233                 case OP_MOVE:
3234                         ins->opcode = OP_MOVE;
3235                         /* 
3236                          * OP_MOVE reg, reg 
3237                          */
3238                         if (ins->dreg == ins->sreg1) {
3239                                 MONO_DELETE_INS (bb, ins);
3240                                 continue;
3241                         }
3242                         /* 
3243                          * OP_MOVE sreg, dreg 
3244                          * OP_MOVE dreg, sreg
3245                          */
3246                         if (last_ins && last_ins->opcode == OP_MOVE &&
3247                             ins->sreg1 == last_ins->dreg &&
3248                             ins->dreg == last_ins->sreg1) {
3249                                 MONO_DELETE_INS (bb, ins);
3250                                 continue;
3251                         }
3252                         break;
3253                 }
3254         }
3255 }
3256
3257 /* 
3258  * the branch_cc_table should maintain the order of these
3259  * opcodes.
3260 case CEE_BEQ:
3261 case CEE_BGE:
3262 case CEE_BGT:
3263 case CEE_BLE:
3264 case CEE_BLT:
3265 case CEE_BNE_UN:
3266 case CEE_BGE_UN:
3267 case CEE_BGT_UN:
3268 case CEE_BLE_UN:
3269 case CEE_BLT_UN:
3270  */
3271 static const guchar 
3272 branch_cc_table [] = {
3273         ARMCOND_EQ, 
3274         ARMCOND_GE, 
3275         ARMCOND_GT, 
3276         ARMCOND_LE,
3277         ARMCOND_LT, 
3278         
3279         ARMCOND_NE, 
3280         ARMCOND_HS, 
3281         ARMCOND_HI, 
3282         ARMCOND_LS,
3283         ARMCOND_LO
3284 };
3285
3286 #define ADD_NEW_INS(cfg,dest,op) do {       \
3287                 MONO_INST_NEW ((cfg), (dest), (op)); \
3288         mono_bblock_insert_before_ins (bb, ins, (dest)); \
3289         } while (0)
3290
3291 static int
3292 map_to_reg_reg_op (int op)
3293 {
3294         switch (op) {
3295         case OP_ADD_IMM:
3296                 return OP_IADD;
3297         case OP_SUB_IMM:
3298                 return OP_ISUB;
3299         case OP_AND_IMM:
3300                 return OP_IAND;
3301         case OP_COMPARE_IMM:
3302                 return OP_COMPARE;
3303         case OP_ICOMPARE_IMM:
3304                 return OP_ICOMPARE;
3305         case OP_ADDCC_IMM:
3306                 return OP_ADDCC;
3307         case OP_ADC_IMM:
3308                 return OP_ADC;
3309         case OP_SUBCC_IMM:
3310                 return OP_SUBCC;
3311         case OP_SBB_IMM:
3312                 return OP_SBB;
3313         case OP_OR_IMM:
3314                 return OP_IOR;
3315         case OP_XOR_IMM:
3316                 return OP_IXOR;
3317         case OP_LOAD_MEMBASE:
3318                 return OP_LOAD_MEMINDEX;
3319         case OP_LOADI4_MEMBASE:
3320                 return OP_LOADI4_MEMINDEX;
3321         case OP_LOADU4_MEMBASE:
3322                 return OP_LOADU4_MEMINDEX;
3323         case OP_LOADU1_MEMBASE:
3324                 return OP_LOADU1_MEMINDEX;
3325         case OP_LOADI2_MEMBASE:
3326                 return OP_LOADI2_MEMINDEX;
3327         case OP_LOADU2_MEMBASE:
3328                 return OP_LOADU2_MEMINDEX;
3329         case OP_LOADI1_MEMBASE:
3330                 return OP_LOADI1_MEMINDEX;
3331         case OP_STOREI1_MEMBASE_REG:
3332                 return OP_STOREI1_MEMINDEX;
3333         case OP_STOREI2_MEMBASE_REG:
3334                 return OP_STOREI2_MEMINDEX;
3335         case OP_STOREI4_MEMBASE_REG:
3336                 return OP_STOREI4_MEMINDEX;
3337         case OP_STORE_MEMBASE_REG:
3338                 return OP_STORE_MEMINDEX;
3339         case OP_STORER4_MEMBASE_REG:
3340                 return OP_STORER4_MEMINDEX;
3341         case OP_STORER8_MEMBASE_REG:
3342                 return OP_STORER8_MEMINDEX;
3343         case OP_STORE_MEMBASE_IMM:
3344                 return OP_STORE_MEMBASE_REG;
3345         case OP_STOREI1_MEMBASE_IMM:
3346                 return OP_STOREI1_MEMBASE_REG;
3347         case OP_STOREI2_MEMBASE_IMM:
3348                 return OP_STOREI2_MEMBASE_REG;
3349         case OP_STOREI4_MEMBASE_IMM:
3350                 return OP_STOREI4_MEMBASE_REG;
3351         }
3352         g_assert_not_reached ();
3353 }
3354
3355 /*
3356  * Remove from the instruction list the instructions that can't be
3357  * represented with very simple instructions with no register
3358  * requirements.
3359  */
3360 void
3361 mono_arch_lowering_pass (MonoCompile *cfg, MonoBasicBlock *bb)
3362 {
3363         MonoInst *ins, *temp, *last_ins = NULL;
3364         int rot_amount, imm8, low_imm;
3365
3366         MONO_BB_FOR_EACH_INS (bb, ins) {
3367 loop_start:
3368                 switch (ins->opcode) {
3369                 case OP_ADD_IMM:
3370                 case OP_SUB_IMM:
3371                 case OP_AND_IMM:
3372                 case OP_COMPARE_IMM:
3373                 case OP_ICOMPARE_IMM:
3374                 case OP_ADDCC_IMM:
3375                 case OP_ADC_IMM:
3376                 case OP_SUBCC_IMM:
3377                 case OP_SBB_IMM:
3378                 case OP_OR_IMM:
3379                 case OP_XOR_IMM:
3380                 case OP_IADD_IMM:
3381                 case OP_ISUB_IMM:
3382                 case OP_IAND_IMM:
3383                 case OP_IADC_IMM:
3384                 case OP_ISBB_IMM:
3385                 case OP_IOR_IMM:
3386                 case OP_IXOR_IMM:
3387                         if ((imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount)) < 0) {
3388                                 int opcode2 = mono_op_imm_to_op (ins->opcode);
3389                                 ADD_NEW_INS (cfg, temp, OP_ICONST);
3390                                 temp->inst_c0 = ins->inst_imm;
3391                                 temp->dreg = mono_alloc_ireg (cfg);
3392                                 ins->sreg2 = temp->dreg;
3393                                 if (opcode2 == -1)
3394                                         g_error ("mono_op_imm_to_op failed for %s\n", mono_inst_name (ins->opcode));
3395                                 ins->opcode = opcode2;
3396                         }
3397                         if (ins->opcode == OP_SBB || ins->opcode == OP_ISBB || ins->opcode == OP_SUBCC)
3398                                 goto loop_start;
3399                         else
3400                                 break;
3401                 case OP_MUL_IMM:
3402                 case OP_IMUL_IMM:
3403                         if (ins->inst_imm == 1) {
3404                                 ins->opcode = OP_MOVE;
3405                                 break;
3406                         }
3407                         if (ins->inst_imm == 0) {
3408                                 ins->opcode = OP_ICONST;
3409                                 ins->inst_c0 = 0;
3410                                 break;
3411                         }
3412                         imm8 = mono_is_power_of_two (ins->inst_imm);
3413                         if (imm8 > 0) {
3414                                 ins->opcode = OP_SHL_IMM;
3415                                 ins->inst_imm = imm8;
3416                                 break;
3417                         }
3418                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3419                         temp->inst_c0 = ins->inst_imm;
3420                         temp->dreg = mono_alloc_ireg (cfg);
3421                         ins->sreg2 = temp->dreg;
3422                         ins->opcode = OP_IMUL;
3423                         break;
3424                 case OP_SBB:
3425                 case OP_ISBB:
3426                 case OP_SUBCC:
3427                 case OP_ISUBCC:
3428                         if (ins->next  && (ins->next->opcode == OP_COND_EXC_C || ins->next->opcode == OP_COND_EXC_IC))
3429                                 /* ARM sets the C flag to 1 if there was _no_ overflow */
3430                                 ins->next->opcode = OP_COND_EXC_NC;
3431                         break;
3432                 case OP_IDIV_IMM:
3433                 case OP_IDIV_UN_IMM:
3434                 case OP_IREM_IMM:
3435                 case OP_IREM_UN_IMM: {
3436                         int opcode2 = mono_op_imm_to_op (ins->opcode);
3437                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3438                         temp->inst_c0 = ins->inst_imm;
3439                         temp->dreg = mono_alloc_ireg (cfg);
3440                         ins->sreg2 = temp->dreg;
3441                         if (opcode2 == -1)
3442                                 g_error ("mono_op_imm_to_op failed for %s\n", mono_inst_name (ins->opcode));
3443                         ins->opcode = opcode2;
3444                         break;
3445                 }
3446                 case OP_LOCALLOC_IMM:
3447                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3448                         temp->inst_c0 = ins->inst_imm;
3449                         temp->dreg = mono_alloc_ireg (cfg);
3450                         ins->sreg1 = temp->dreg;
3451                         ins->opcode = OP_LOCALLOC;
3452                         break;
3453                 case OP_LOAD_MEMBASE:
3454                 case OP_LOADI4_MEMBASE:
3455                 case OP_LOADU4_MEMBASE:
3456                 case OP_LOADU1_MEMBASE:
3457                         /* we can do two things: load the immed in a register
3458                          * and use an indexed load, or see if the immed can be
3459                          * represented as an ad_imm + a load with a smaller offset
3460                          * that fits. We just do the first for now, optimize later.
3461                          */
3462                         if (arm_is_imm12 (ins->inst_offset))
3463                                 break;
3464                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3465                         temp->inst_c0 = ins->inst_offset;
3466                         temp->dreg = mono_alloc_ireg (cfg);
3467                         ins->sreg2 = temp->dreg;
3468                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3469                         break;
3470                 case OP_LOADI2_MEMBASE:
3471                 case OP_LOADU2_MEMBASE:
3472                 case OP_LOADI1_MEMBASE:
3473                         if (arm_is_imm8 (ins->inst_offset))
3474                                 break;
3475                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3476                         temp->inst_c0 = ins->inst_offset;
3477                         temp->dreg = mono_alloc_ireg (cfg);
3478                         ins->sreg2 = temp->dreg;
3479                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3480                         break;
3481                 case OP_LOADR4_MEMBASE:
3482                 case OP_LOADR8_MEMBASE:
3483                         if (arm_is_fpimm8 (ins->inst_offset))
3484                                 break;
3485                         low_imm = ins->inst_offset & 0x1ff;
3486                         if ((imm8 = mono_arm_is_rotated_imm8 (ins->inst_offset & ~0x1ff, &rot_amount)) >= 0) {
3487                                 ADD_NEW_INS (cfg, temp, OP_ADD_IMM);
3488                                 temp->inst_imm = ins->inst_offset & ~0x1ff;
3489                                 temp->sreg1 = ins->inst_basereg;
3490                                 temp->dreg = mono_alloc_ireg (cfg);
3491                                 ins->inst_basereg = temp->dreg;
3492                                 ins->inst_offset = low_imm;
3493                         } else {
3494                                 MonoInst *add_ins;
3495
3496                                 ADD_NEW_INS (cfg, temp, OP_ICONST);
3497                                 temp->inst_c0 = ins->inst_offset;
3498                                 temp->dreg = mono_alloc_ireg (cfg);
3499
3500                                 ADD_NEW_INS (cfg, add_ins, OP_IADD);
3501                                 add_ins->sreg1 = ins->inst_basereg;
3502                                 add_ins->sreg2 = temp->dreg;
3503                                 add_ins->dreg = mono_alloc_ireg (cfg);
3504
3505                                 ins->inst_basereg = add_ins->dreg;
3506                                 ins->inst_offset = 0;
3507                         }
3508                         break;
3509                 case OP_STORE_MEMBASE_REG:
3510                 case OP_STOREI4_MEMBASE_REG:
3511                 case OP_STOREI1_MEMBASE_REG:
3512                         if (arm_is_imm12 (ins->inst_offset))
3513                                 break;
3514                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3515                         temp->inst_c0 = ins->inst_offset;
3516                         temp->dreg = mono_alloc_ireg (cfg);
3517                         ins->sreg2 = temp->dreg;
3518                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3519                         break;
3520                 case OP_STOREI2_MEMBASE_REG:
3521                         if (arm_is_imm8 (ins->inst_offset))
3522                                 break;
3523                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3524                         temp->inst_c0 = ins->inst_offset;
3525                         temp->dreg = mono_alloc_ireg (cfg);
3526                         ins->sreg2 = temp->dreg;
3527                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3528                         break;
3529                 case OP_STORER4_MEMBASE_REG:
3530                 case OP_STORER8_MEMBASE_REG:
3531                         if (arm_is_fpimm8 (ins->inst_offset))
3532                                 break;
3533                         low_imm = ins->inst_offset & 0x1ff;
3534                         if ((imm8 = mono_arm_is_rotated_imm8 (ins->inst_offset & ~ 0x1ff, &rot_amount)) >= 0 && arm_is_fpimm8 (low_imm)) {
3535                                 ADD_NEW_INS (cfg, temp, OP_ADD_IMM);
3536                                 temp->inst_imm = ins->inst_offset & ~0x1ff;
3537                                 temp->sreg1 = ins->inst_destbasereg;
3538                                 temp->dreg = mono_alloc_ireg (cfg);
3539                                 ins->inst_destbasereg = temp->dreg;
3540                                 ins->inst_offset = low_imm;
3541                         } else {
3542                                 MonoInst *add_ins;
3543
3544                                 ADD_NEW_INS (cfg, temp, OP_ICONST);
3545                                 temp->inst_c0 = ins->inst_offset;
3546                                 temp->dreg = mono_alloc_ireg (cfg);
3547
3548                                 ADD_NEW_INS (cfg, add_ins, OP_IADD);
3549                                 add_ins->sreg1 = ins->inst_destbasereg;
3550                                 add_ins->sreg2 = temp->dreg;
3551                                 add_ins->dreg = mono_alloc_ireg (cfg);
3552
3553                                 ins->inst_destbasereg = add_ins->dreg;
3554                                 ins->inst_offset = 0;
3555                         }
3556                         break;
3557                 case OP_STORE_MEMBASE_IMM:
3558                 case OP_STOREI1_MEMBASE_IMM:
3559                 case OP_STOREI2_MEMBASE_IMM:
3560                 case OP_STOREI4_MEMBASE_IMM:
3561                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3562                         temp->inst_c0 = ins->inst_imm;
3563                         temp->dreg = mono_alloc_ireg (cfg);
3564                         ins->sreg1 = temp->dreg;
3565                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3566                         last_ins = temp;
3567                         goto loop_start; /* make it handle the possibly big ins->inst_offset */
3568                 case OP_FCOMPARE:
3569                 case OP_RCOMPARE: {
3570                         gboolean swap = FALSE;
3571                         int reg;
3572
3573                         if (!ins->next) {
3574                                 /* Optimized away */
3575                                 NULLIFY_INS (ins);
3576                                 break;
3577                         }
3578
3579                         /* Some fp compares require swapped operands */
3580                         switch (ins->next->opcode) {
3581                         case OP_FBGT:
3582                                 ins->next->opcode = OP_FBLT;
3583                                 swap = TRUE;
3584                                 break;
3585                         case OP_FBGT_UN:
3586                                 ins->next->opcode = OP_FBLT_UN;
3587                                 swap = TRUE;
3588                                 break;
3589                         case OP_FBLE:
3590                                 ins->next->opcode = OP_FBGE;
3591                                 swap = TRUE;
3592                                 break;
3593                         case OP_FBLE_UN:
3594                                 ins->next->opcode = OP_FBGE_UN;
3595                                 swap = TRUE;
3596                                 break;
3597                         default:
3598                                 break;
3599                         }
3600                         if (swap) {
3601                                 reg = ins->sreg1;
3602                                 ins->sreg1 = ins->sreg2;
3603                                 ins->sreg2 = reg;
3604                         }
3605                         break;
3606                 }
3607                 }
3608
3609                 last_ins = ins;
3610         }
3611         bb->last_ins = last_ins;
3612         bb->max_vreg = cfg->next_vreg;
3613 }
3614
3615 void
3616 mono_arch_decompose_long_opts (MonoCompile *cfg, MonoInst *long_ins)
3617 {
3618         MonoInst *ins;
3619
3620         if (long_ins->opcode == OP_LNEG) {
3621                 ins = long_ins;
3622                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ARM_RSBS_IMM, MONO_LVREG_LS (ins->dreg), MONO_LVREG_LS (ins->sreg1), 0);
3623                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ARM_RSC_IMM, MONO_LVREG_MS (ins->dreg), MONO_LVREG_MS (ins->sreg1), 0);
3624                 NULLIFY_INS (ins);
3625         }
3626 }
3627
3628 static guchar*
3629 emit_float_to_int (MonoCompile *cfg, guchar *code, int dreg, int sreg, int size, gboolean is_signed)
3630 {
3631         /* sreg is a float, dreg is an integer reg  */
3632         if (IS_VFP) {
3633                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
3634                 if (is_signed)
3635                         ARM_TOSIZD (code, vfp_scratch1, sreg);
3636                 else
3637                         ARM_TOUIZD (code, vfp_scratch1, sreg);
3638                 ARM_FMRS (code, dreg, vfp_scratch1);
3639                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
3640         }
3641         if (!is_signed) {
3642                 if (size == 1)
3643                         ARM_AND_REG_IMM8 (code, dreg, dreg, 0xff);
3644                 else if (size == 2) {
3645                         ARM_SHL_IMM (code, dreg, dreg, 16);
3646                         ARM_SHR_IMM (code, dreg, dreg, 16);
3647                 }
3648         } else {
3649                 if (size == 1) {
3650                         ARM_SHL_IMM (code, dreg, dreg, 24);
3651                         ARM_SAR_IMM (code, dreg, dreg, 24);
3652                 } else if (size == 2) {
3653                         ARM_SHL_IMM (code, dreg, dreg, 16);
3654                         ARM_SAR_IMM (code, dreg, dreg, 16);
3655                 }
3656         }
3657         return code;
3658 }
3659
3660 static guchar*
3661 emit_r4_to_int (MonoCompile *cfg, guchar *code, int dreg, int sreg, int size, gboolean is_signed)
3662 {
3663         /* sreg is a float, dreg is an integer reg  */
3664         g_assert (IS_VFP);
3665         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
3666         if (is_signed)
3667                 ARM_TOSIZS (code, vfp_scratch1, sreg);
3668         else
3669                 ARM_TOUIZS (code, vfp_scratch1, sreg);
3670         ARM_FMRS (code, dreg, vfp_scratch1);
3671         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
3672
3673         if (!is_signed) {
3674                 if (size == 1)
3675                         ARM_AND_REG_IMM8 (code, dreg, dreg, 0xff);
3676                 else if (size == 2) {
3677                         ARM_SHL_IMM (code, dreg, dreg, 16);
3678                         ARM_SHR_IMM (code, dreg, dreg, 16);
3679                 }
3680         } else {
3681                 if (size == 1) {
3682                         ARM_SHL_IMM (code, dreg, dreg, 24);
3683                         ARM_SAR_IMM (code, dreg, dreg, 24);
3684                 } else if (size == 2) {
3685                         ARM_SHL_IMM (code, dreg, dreg, 16);
3686                         ARM_SAR_IMM (code, dreg, dreg, 16);
3687                 }
3688         }
3689         return code;
3690 }
3691
3692 #endif /* #ifndef DISABLE_JIT */
3693
3694 #define is_call_imm(diff) ((gint)(diff) >= -33554432 && (gint)(diff) <= 33554431)
3695
3696 static void
3697 emit_thunk (guint8 *code, gconstpointer target)
3698 {
3699         guint8 *p = code;
3700
3701         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
3702         if (thumb_supported)
3703                 ARM_BX (code, ARMREG_IP);
3704         else
3705                 ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
3706         *(guint32*)code = (guint32)target;
3707         code += 4;
3708         mono_arch_flush_icache (p, code - p);
3709 }
3710
3711 static void
3712 handle_thunk (MonoCompile *cfg, MonoDomain *domain, guchar *code, const guchar *target)
3713 {
3714         MonoJitInfo *ji = NULL;
3715         MonoThunkJitInfo *info;
3716         guint8 *thunks, *p;
3717         int thunks_size;
3718         guint8 *orig_target;
3719         guint8 *target_thunk;
3720
3721         if (!domain)
3722                 domain = mono_domain_get ();
3723
3724         if (cfg) {
3725                 /*
3726                  * This can be called multiple times during JITting,
3727                  * save the current position in cfg->arch to avoid
3728                  * doing a O(n^2) search.
3729                  */
3730                 if (!cfg->arch.thunks) {
3731                         cfg->arch.thunks = cfg->thunks;
3732                         cfg->arch.thunks_size = cfg->thunk_area;
3733                 }
3734                 thunks = cfg->arch.thunks;
3735                 thunks_size = cfg->arch.thunks_size;
3736                 if (!thunks_size) {
3737                         g_print ("thunk failed %p->%p, thunk space=%d method %s", code, target, thunks_size, mono_method_full_name (cfg->method, TRUE));
3738                         g_assert_not_reached ();
3739                 }
3740
3741                 g_assert (*(guint32*)thunks == 0);
3742                 emit_thunk (thunks, target);
3743                 arm_patch (code, thunks);
3744
3745                 cfg->arch.thunks += THUNK_SIZE;
3746                 cfg->arch.thunks_size -= THUNK_SIZE;
3747         } else {
3748                 ji = mini_jit_info_table_find (domain, (char*)code, NULL);
3749                 g_assert (ji);
3750                 info = mono_jit_info_get_thunk_info (ji);
3751                 g_assert (info);
3752
3753                 thunks = (guint8*)ji->code_start + info->thunks_offset;
3754                 thunks_size = info->thunks_size;
3755
3756                 orig_target = mono_arch_get_call_target (code + 4);
3757
3758                 mono_mini_arch_lock ();
3759
3760                 target_thunk = NULL;
3761                 if (orig_target >= thunks && orig_target < thunks + thunks_size) {
3762                         /* The call already points to a thunk, because of trampolines etc. */
3763                         target_thunk = orig_target;
3764                 } else {
3765                         for (p = thunks; p < thunks + thunks_size; p += THUNK_SIZE) {
3766                                 if (((guint32*)p) [0] == 0) {
3767                                         /* Free entry */
3768                                         target_thunk = p;
3769                                         break;
3770                                 } else if (((guint32*)p) [2] == (guint32)target) {
3771                                         /* Thunk already points to target */
3772                                         target_thunk = p;
3773                                         break;
3774                                 }
3775                         }
3776                 }
3777
3778                 //g_print ("THUNK: %p %p %p\n", code, target, target_thunk);
3779
3780                 if (!target_thunk) {
3781                         mono_mini_arch_unlock ();
3782                         g_print ("thunk failed %p->%p, thunk space=%d method %s", code, target, thunks_size, cfg ? mono_method_full_name (cfg->method, TRUE) : mono_method_full_name (jinfo_get_method (ji), TRUE));
3783                         g_assert_not_reached ();
3784                 }
3785
3786                 emit_thunk (target_thunk, target);
3787                 arm_patch (code, target_thunk);
3788                 mono_arch_flush_icache (code, 4);
3789
3790                 mono_mini_arch_unlock ();
3791         }
3792 }
3793
3794 static void
3795 arm_patch_general (MonoCompile *cfg, MonoDomain *domain, guchar *code, const guchar *target)
3796 {
3797         guint32 *code32 = (void*)code;
3798         guint32 ins = *code32;
3799         guint32 prim = (ins >> 25) & 7;
3800         guint32 tval = GPOINTER_TO_UINT (target);
3801
3802         //g_print ("patching 0x%08x (0x%08x) to point to 0x%08x\n", code, ins, target);
3803         if (prim == 5) { /* 101b */
3804                 /* the diff starts 8 bytes from the branch opcode */
3805                 gint diff = target - code - 8;
3806                 gint tbits;
3807                 gint tmask = 0xffffffff;
3808                 if (tval & 1) { /* entering thumb mode */
3809                         diff = target - 1 - code - 8;
3810                         g_assert (thumb_supported);
3811                         tbits = 0xf << 28; /* bl->blx bit pattern */
3812                         g_assert ((ins & (1 << 24))); /* it must be a bl, not b instruction */
3813                         /* this low bit of the displacement is moved to bit 24 in the instruction encoding */
3814                         if (diff & 2) {
3815                                 tbits |= 1 << 24;
3816                         }
3817                         tmask = ~(1 << 24); /* clear the link bit */
3818                         /*g_print ("blx to thumb: target: %p, code: %p, diff: %d, mask: %x\n", target, code, diff, tmask);*/
3819                 } else {
3820                         tbits = 0;
3821                 }
3822                 if (diff >= 0) {
3823                         if (diff <= 33554431) {
3824                                 diff >>= 2;
3825                                 ins = (ins & 0xff000000) | diff;
3826                                 ins &= tmask;
3827                                 *code32 = ins | tbits;
3828                                 return;
3829                         }
3830                 } else {
3831                         /* diff between 0 and -33554432 */
3832                         if (diff >= -33554432) {
3833                                 diff >>= 2;
3834                                 ins = (ins & 0xff000000) | (diff & ~0xff000000);
3835                                 ins &= tmask;
3836                                 *code32 = ins | tbits;
3837                                 return;
3838                         }
3839                 }
3840                 
3841                 handle_thunk (cfg, domain, code, target);
3842                 return;
3843         }
3844
3845         /*
3846          * The alternative call sequences looks like this:
3847          *
3848          *      ldr ip, [pc] // loads the address constant
3849          *      b 1f         // jumps around the constant
3850          *      address constant embedded in the code
3851          *   1f:
3852          *      mov lr, pc
3853          *      mov pc, ip
3854          *
3855          * There are two cases for patching:
3856          * a) at the end of method emission: in this case code points to the start
3857          *    of the call sequence
3858          * b) during runtime patching of the call site: in this case code points
3859          *    to the mov pc, ip instruction
3860          *
3861          * We have to handle also the thunk jump code sequence:
3862          *
3863          *      ldr ip, [pc]
3864          *      mov pc, ip
3865          *      address constant // execution never reaches here
3866          */
3867         if ((ins & 0x0ffffff0) == 0x12fff10) {
3868                 /* Branch and exchange: the address is constructed in a reg 
3869                  * We can patch BX when the code sequence is the following:
3870                  *  ldr     ip, [pc, #0]    ; 0x8
3871                  *  b       0xc
3872                  *  .word code_ptr
3873                  *  mov     lr, pc
3874                  *  bx      ips
3875                  * */
3876                 guint32 ccode [4];
3877                 guint8 *emit = (guint8*)ccode;
3878                 ARM_LDR_IMM (emit, ARMREG_IP, ARMREG_PC, 0);
3879                 ARM_B (emit, 0);
3880                 ARM_MOV_REG_REG (emit, ARMREG_LR, ARMREG_PC);
3881                 ARM_BX (emit, ARMREG_IP);
3882
3883                 /*patching from magic trampoline*/
3884                 if (ins == ccode [3]) {
3885                         g_assert (code32 [-4] == ccode [0]);
3886                         g_assert (code32 [-3] == ccode [1]);
3887                         g_assert (code32 [-1] == ccode [2]);
3888                         code32 [-2] = (guint32)target;
3889                         return;
3890                 }
3891                 /*patching from JIT*/
3892                 if (ins == ccode [0]) {
3893                         g_assert (code32 [1] == ccode [1]);
3894                         g_assert (code32 [3] == ccode [2]);
3895                         g_assert (code32 [4] == ccode [3]);
3896                         code32 [2] = (guint32)target;
3897                         return;
3898                 }
3899                 g_assert_not_reached ();
3900         } else if ((ins & 0x0ffffff0) == 0x12fff30) {
3901                 /*
3902                  * ldr ip, [pc, #0]
3903                  * b 0xc
3904                  * .word code_ptr
3905                  * blx ip
3906                  */
3907                 guint32 ccode [4];
3908                 guint8 *emit = (guint8*)ccode;
3909                 ARM_LDR_IMM (emit, ARMREG_IP, ARMREG_PC, 0);
3910                 ARM_B (emit, 0);
3911                 ARM_BLX_REG (emit, ARMREG_IP);
3912
3913                 g_assert (code32 [-3] == ccode [0]);
3914                 g_assert (code32 [-2] == ccode [1]);
3915                 g_assert (code32 [0] == ccode [2]);
3916
3917                 code32 [-1] = (guint32)target;
3918         } else {
3919                 guint32 ccode [4];
3920                 guint32 *tmp = ccode;
3921                 guint8 *emit = (guint8*)tmp;
3922                 ARM_LDR_IMM (emit, ARMREG_IP, ARMREG_PC, 0);
3923                 ARM_MOV_REG_REG (emit, ARMREG_LR, ARMREG_PC);
3924                 ARM_MOV_REG_REG (emit, ARMREG_PC, ARMREG_IP);
3925                 ARM_BX (emit, ARMREG_IP);
3926                 if (ins == ccode [2]) {
3927                         g_assert_not_reached (); // should be -2 ...
3928                         code32 [-1] = (guint32)target;
3929                         return;
3930                 }
3931                 if (ins == ccode [0]) {
3932                         /* handles both thunk jump code and the far call sequence */
3933                         code32 [2] = (guint32)target;
3934                         return;
3935                 }
3936                 g_assert_not_reached ();
3937         }
3938 //      g_print ("patched with 0x%08x\n", ins);
3939 }
3940
3941 void
3942 arm_patch (guchar *code, const guchar *target)
3943 {
3944         arm_patch_general (NULL, NULL, code, target);
3945 }
3946
3947 /* 
3948  * Return the >= 0 uimm8 value if val can be represented with a byte + rotation
3949  * (with the rotation amount in *rot_amount. rot_amount is already adjusted
3950  * to be used with the emit macros.
3951  * Return -1 otherwise.
3952  */
3953 int
3954 mono_arm_is_rotated_imm8 (guint32 val, gint *rot_amount)
3955 {
3956         guint32 res, i;
3957         for (i = 0; i < 31; i+= 2) {
3958                 res = (val << (32 - i)) | (val >> i);
3959                 if (res & ~0xff)
3960                         continue;
3961                 *rot_amount = i? 32 - i: 0;
3962                 return res;
3963         }
3964         return -1;
3965 }
3966
3967 /*
3968  * Emits in code a sequence of instructions that load the value 'val'
3969  * into the dreg register. Uses at most 4 instructions.
3970  */
3971 guint8*
3972 mono_arm_emit_load_imm (guint8 *code, int dreg, guint32 val)
3973 {
3974         int imm8, rot_amount;
3975 #if 0
3976         ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
3977         /* skip the constant pool */
3978         ARM_B (code, 0);
3979         *(int*)code = val;
3980         code += 4;
3981         return code;
3982 #endif
3983         if (mini_get_debug_options()->single_imm_size && v7_supported) {
3984                 ARM_MOVW_REG_IMM (code, dreg, val & 0xffff);
3985                 ARM_MOVT_REG_IMM (code, dreg, (val >> 16) & 0xffff);
3986                 return code;
3987         }
3988
3989         if ((imm8 = mono_arm_is_rotated_imm8 (val, &rot_amount)) >= 0) {
3990                 ARM_MOV_REG_IMM (code, dreg, imm8, rot_amount);
3991         } else if ((imm8 = mono_arm_is_rotated_imm8 (~val, &rot_amount)) >= 0) {
3992                 ARM_MVN_REG_IMM (code, dreg, imm8, rot_amount);
3993         } else {
3994                 if (v7_supported) {
3995                         ARM_MOVW_REG_IMM (code, dreg, val & 0xffff);
3996                         if (val >> 16)
3997                                 ARM_MOVT_REG_IMM (code, dreg, (val >> 16) & 0xffff);
3998                         return code;
3999                 }
4000                 if (val & 0xFF) {
4001                         ARM_MOV_REG_IMM8 (code, dreg, (val & 0xFF));
4002                         if (val & 0xFF00) {
4003                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF00) >> 8, 24);
4004                         }
4005                         if (val & 0xFF0000) {
4006                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4007                         }
4008                         if (val & 0xFF000000) {
4009                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4010                         }
4011                 } else if (val & 0xFF00) {
4012                         ARM_MOV_REG_IMM (code, dreg, (val & 0xFF00) >> 8, 24);
4013                         if (val & 0xFF0000) {
4014                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4015                         }
4016                         if (val & 0xFF000000) {
4017                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4018                         }
4019                 } else if (val & 0xFF0000) {
4020                         ARM_MOV_REG_IMM (code, dreg, (val & 0xFF0000) >> 16, 16);
4021                         if (val & 0xFF000000) {
4022                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4023                         }
4024                 }
4025                 //g_assert_not_reached ();
4026         }
4027         return code;
4028 }
4029
4030 gboolean
4031 mono_arm_thumb_supported (void)
4032 {
4033         return thumb_supported;
4034 }
4035
4036 gboolean
4037 mono_arm_eabi_supported (void)
4038 {
4039         return eabi_supported;
4040 }
4041
4042 #ifndef DISABLE_JIT
4043
4044 static guint8*
4045 emit_move_return_value (MonoCompile *cfg, MonoInst *ins, guint8 *code)
4046 {
4047         CallInfo *cinfo;
4048         MonoCallInst *call;
4049
4050         call = (MonoCallInst*)ins;
4051         cinfo = call->call_info;
4052
4053         switch (cinfo->ret.storage) {
4054         case RegTypeStructByVal:
4055         case RegTypeHFA: {
4056                 MonoInst *loc = cfg->arch.vret_addr_loc;
4057                 int i;
4058
4059                 if (cinfo->ret.storage == RegTypeStructByVal && cinfo->ret.nregs == 1) {
4060                         /* The JIT treats this as a normal call */
4061                         break;
4062                 }
4063
4064                 /* Load the destination address */
4065                 g_assert (loc && loc->opcode == OP_REGOFFSET);
4066
4067                 if (arm_is_imm12 (loc->inst_offset)) {
4068                         ARM_LDR_IMM (code, ARMREG_LR, loc->inst_basereg, loc->inst_offset);
4069                 } else {
4070                         code = mono_arm_emit_load_imm (code, ARMREG_LR, loc->inst_offset);
4071                         ARM_LDR_REG_REG (code, ARMREG_LR, loc->inst_basereg, ARMREG_LR);
4072                 }
4073
4074                 if (cinfo->ret.storage == RegTypeStructByVal) {
4075                         int rsize = cinfo->ret.struct_size;
4076
4077                         for (i = 0; i < cinfo->ret.nregs; ++i) {
4078                                 g_assert (rsize >= 0);
4079                                 switch (rsize) {
4080                                 case 0:
4081                                         break;
4082                                 case 1:
4083                                         ARM_STRB_IMM (code, i, ARMREG_LR, i * 4);
4084                                         break;
4085                                 case 2:
4086                                         ARM_STRH_IMM (code, i, ARMREG_LR, i * 4);
4087                                         break;
4088                                 default:
4089                                         ARM_STR_IMM (code, i, ARMREG_LR, i * 4);
4090                                         break;
4091                                 }
4092                                 rsize -= 4;
4093                         }
4094                 } else {
4095                         for (i = 0; i < cinfo->ret.nregs; ++i) {
4096                                 if (cinfo->ret.esize == 4)
4097                                         ARM_FSTS (code, cinfo->ret.reg + i, ARMREG_LR, i * 4);
4098                                 else
4099                                         ARM_FSTD (code, cinfo->ret.reg + (i * 2), ARMREG_LR, i * 8);
4100                         }
4101                 }
4102                 return code;
4103         }
4104         default:
4105                 break;
4106         }
4107
4108         switch (ins->opcode) {
4109         case OP_FCALL:
4110         case OP_FCALL_REG:
4111         case OP_FCALL_MEMBASE:
4112                 if (IS_VFP) {
4113                         MonoType *sig_ret = mini_get_underlying_type (((MonoCallInst*)ins)->signature->ret);
4114                         if (sig_ret->type == MONO_TYPE_R4) {
4115                                 if (IS_HARD_FLOAT) {
4116                                         ARM_CVTS (code, ins->dreg, ARM_VFP_F0);
4117                                 } else {
4118                                         ARM_FMSR (code, ins->dreg, ARMREG_R0);
4119                                         ARM_CVTS (code, ins->dreg, ins->dreg);
4120                                 }
4121                         } else {
4122                                 if (IS_HARD_FLOAT) {
4123                                         ARM_CPYD (code, ins->dreg, ARM_VFP_D0);
4124                                 } else {
4125                                         ARM_FMDRR (code, ARMREG_R0, ARMREG_R1, ins->dreg);
4126                                 }
4127                         }
4128                 }
4129                 break;
4130         case OP_RCALL:
4131         case OP_RCALL_REG:
4132         case OP_RCALL_MEMBASE: {
4133                 MonoType *sig_ret;
4134
4135                 g_assert (IS_VFP);
4136
4137                 sig_ret = mini_get_underlying_type (((MonoCallInst*)ins)->signature->ret);
4138                 g_assert (sig_ret->type == MONO_TYPE_R4);
4139                 if (IS_HARD_FLOAT) {
4140                         ARM_CPYS (code, ins->dreg, ARM_VFP_F0);
4141                 } else {
4142                         ARM_FMSR (code, ins->dreg, ARMREG_R0);
4143                         ARM_CPYS (code, ins->dreg, ins->dreg);
4144                 }
4145                 break;
4146         }
4147         default:
4148                 break;
4149         }
4150
4151         return code;
4152 }
4153
4154 void
4155 mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
4156 {
4157         MonoInst *ins;
4158         MonoCallInst *call;
4159         guint offset;
4160         guint8 *code = cfg->native_code + cfg->code_len;
4161         MonoInst *last_ins = NULL;
4162         guint last_offset = 0;
4163         int max_len, cpos;
4164         int imm8, rot_amount;
4165
4166         /* we don't align basic blocks of loops on arm */
4167
4168         if (cfg->verbose_level > 2)
4169                 g_print ("Basic block %d starting at offset 0x%x\n", bb->block_num, bb->native_offset);
4170
4171         cpos = bb->max_offset;
4172
4173         if (cfg->prof_options & MONO_PROFILE_COVERAGE) {
4174                 //MonoCoverageInfo *cov = mono_get_coverage_info (cfg->method);
4175                 //g_assert (!mono_compile_aot);
4176                 //cpos += 6;
4177                 //if (bb->cil_code)
4178                 //      cov->data [bb->dfn].iloffset = bb->cil_code - cfg->cil_code;
4179                 /* this is not thread save, but good enough */
4180                 /* fixme: howto handle overflows? */
4181                 //x86_inc_mem (code, &cov->data [bb->dfn].count); 
4182         }
4183
4184     if (mono_break_at_bb_method && mono_method_desc_full_match (mono_break_at_bb_method, cfg->method) && bb->block_num == mono_break_at_bb_bb_num) {
4185                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
4186                                                          (gpointer)"mono_break");
4187                 code = emit_call_seq (cfg, code);
4188         }
4189
4190         MONO_BB_FOR_EACH_INS (bb, ins) {
4191                 offset = code - cfg->native_code;
4192
4193                 max_len = ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
4194
4195                 if (offset > (cfg->code_size - max_len - 16)) {
4196                         cfg->code_size *= 2;
4197                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
4198                         code = cfg->native_code + offset;
4199                 }
4200         //      if (ins->cil_code)
4201         //              g_print ("cil code\n");
4202                 mono_debug_record_line_number (cfg, ins, offset);
4203
4204                 switch (ins->opcode) {
4205                 case OP_MEMORY_BARRIER:
4206                         if (v6_supported) {
4207                                 ARM_MOV_REG_IMM8 (code, ARMREG_R0, 0);
4208                                 ARM_MCR (code, 15, 0, ARMREG_R0, 7, 10, 5);
4209                         }
4210                         break;
4211                 case OP_TLS_GET:
4212                         code = emit_tls_get (code, ins->dreg, ins->inst_offset);
4213                         break;
4214                 case OP_TLS_SET:
4215                         code = emit_tls_set (code, ins->sreg1, ins->inst_offset);
4216                         break;
4217                 case OP_ATOMIC_EXCHANGE_I4:
4218                 case OP_ATOMIC_CAS_I4:
4219                 case OP_ATOMIC_ADD_I4: {
4220                         int tmpreg;
4221                         guint8 *buf [16];
4222
4223                         g_assert (v7_supported);
4224
4225                         /* Free up a reg */
4226                         if (ins->sreg1 != ARMREG_IP && ins->sreg2 != ARMREG_IP && ins->sreg3 != ARMREG_IP)
4227                                 tmpreg = ARMREG_IP;
4228                         else if (ins->sreg1 != ARMREG_R0 && ins->sreg2 != ARMREG_R0 && ins->sreg3 != ARMREG_R0)
4229                                 tmpreg = ARMREG_R0;
4230                         else if (ins->sreg1 != ARMREG_R1 && ins->sreg2 != ARMREG_R1 && ins->sreg3 != ARMREG_R1)
4231                                 tmpreg = ARMREG_R1;
4232                         else
4233                                 tmpreg = ARMREG_R2;
4234                         g_assert (cfg->arch.atomic_tmp_offset != -1);
4235                         ARM_STR_IMM (code, tmpreg, cfg->frame_reg, cfg->arch.atomic_tmp_offset);
4236
4237                         switch (ins->opcode) {
4238                         case OP_ATOMIC_EXCHANGE_I4:
4239                                 buf [0] = code;
4240                                 ARM_DMB (code, ARM_DMB_SY);
4241                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4242                                 ARM_STREX_REG (code, tmpreg, ins->sreg2, ins->sreg1);
4243                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4244                                 buf [1] = code;
4245                                 ARM_B_COND (code, ARMCOND_NE, 0);
4246                                 arm_patch (buf [1], buf [0]);
4247                                 break;
4248                         case OP_ATOMIC_CAS_I4:
4249                                 ARM_DMB (code, ARM_DMB_SY);
4250                                 buf [0] = code;
4251                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4252                                 ARM_CMP_REG_REG (code, ARMREG_LR, ins->sreg3);
4253                                 buf [1] = code;
4254                                 ARM_B_COND (code, ARMCOND_NE, 0);
4255                                 ARM_STREX_REG (code, tmpreg, ins->sreg2, ins->sreg1);
4256                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4257                                 buf [2] = code;
4258                                 ARM_B_COND (code, ARMCOND_NE, 0);
4259                                 arm_patch (buf [2], buf [0]);
4260                                 arm_patch (buf [1], code);
4261                                 break;
4262                         case OP_ATOMIC_ADD_I4:
4263                                 buf [0] = code;
4264                                 ARM_DMB (code, ARM_DMB_SY);
4265                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4266                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->sreg2);
4267                                 ARM_STREX_REG (code, tmpreg, ARMREG_LR, ins->sreg1);
4268                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4269                                 buf [1] = code;
4270                                 ARM_B_COND (code, ARMCOND_NE, 0);
4271                                 arm_patch (buf [1], buf [0]);
4272                                 break;
4273                         default:
4274                                 g_assert_not_reached ();
4275                         }
4276
4277                         ARM_DMB (code, ARM_DMB_SY);
4278                         if (tmpreg != ins->dreg)
4279                                 ARM_LDR_IMM (code, tmpreg, cfg->frame_reg, cfg->arch.atomic_tmp_offset);
4280                         ARM_MOV_REG_REG (code, ins->dreg, ARMREG_LR);
4281                         break;
4282                 }
4283                 case OP_ATOMIC_LOAD_I1:
4284                 case OP_ATOMIC_LOAD_U1:
4285                 case OP_ATOMIC_LOAD_I2:
4286                 case OP_ATOMIC_LOAD_U2:
4287                 case OP_ATOMIC_LOAD_I4:
4288                 case OP_ATOMIC_LOAD_U4:
4289                 case OP_ATOMIC_LOAD_R4:
4290                 case OP_ATOMIC_LOAD_R8: {
4291                         if (ins->backend.memory_barrier_kind == MONO_MEMORY_BARRIER_SEQ)
4292                                 ARM_DMB (code, ARM_DMB_SY);
4293
4294                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4295
4296                         switch (ins->opcode) {
4297                         case OP_ATOMIC_LOAD_I1:
4298                                 ARM_LDRSB_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4299                                 break;
4300                         case OP_ATOMIC_LOAD_U1:
4301                                 ARM_LDRB_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4302                                 break;
4303                         case OP_ATOMIC_LOAD_I2:
4304                                 ARM_LDRSH_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4305                                 break;
4306                         case OP_ATOMIC_LOAD_U2:
4307                                 ARM_LDRH_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4308                                 break;
4309                         case OP_ATOMIC_LOAD_I4:
4310                         case OP_ATOMIC_LOAD_U4:
4311                                 ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4312                                 break;
4313                         case OP_ATOMIC_LOAD_R4:
4314                                 if (cfg->r4fp) {
4315                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4316                                         ARM_FLDS (code, ins->dreg, ARMREG_LR, 0);
4317                                 } else {
4318                                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4319                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4320                                         ARM_FLDS (code, vfp_scratch1, ARMREG_LR, 0);
4321                                         ARM_CVTS (code, ins->dreg, vfp_scratch1);
4322                                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4323                                 }
4324                                 break;
4325                         case OP_ATOMIC_LOAD_R8:
4326                                 ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4327                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
4328                                 break;
4329                         }
4330
4331                         if (ins->backend.memory_barrier_kind != MONO_MEMORY_BARRIER_NONE)
4332                                 ARM_DMB (code, ARM_DMB_SY);
4333                         break;
4334                 }
4335                 case OP_ATOMIC_STORE_I1:
4336                 case OP_ATOMIC_STORE_U1:
4337                 case OP_ATOMIC_STORE_I2:
4338                 case OP_ATOMIC_STORE_U2:
4339                 case OP_ATOMIC_STORE_I4:
4340                 case OP_ATOMIC_STORE_U4:
4341                 case OP_ATOMIC_STORE_R4:
4342                 case OP_ATOMIC_STORE_R8: {
4343                         if (ins->backend.memory_barrier_kind != MONO_MEMORY_BARRIER_NONE)
4344                                 ARM_DMB (code, ARM_DMB_SY);
4345
4346                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4347
4348                         switch (ins->opcode) {
4349                         case OP_ATOMIC_STORE_I1:
4350                         case OP_ATOMIC_STORE_U1:
4351                                 ARM_STRB_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4352                                 break;
4353                         case OP_ATOMIC_STORE_I2:
4354                         case OP_ATOMIC_STORE_U2:
4355                                 ARM_STRH_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4356                                 break;
4357                         case OP_ATOMIC_STORE_I4:
4358                         case OP_ATOMIC_STORE_U4:
4359                                 ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4360                                 break;
4361                         case OP_ATOMIC_STORE_R4:
4362                                 if (cfg->r4fp) {
4363                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4364                                         ARM_FSTS (code, ins->sreg1, ARMREG_LR, 0);
4365                                 } else {
4366                                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4367                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4368                                         ARM_CVTD (code, vfp_scratch1, ins->sreg1);
4369                                         ARM_FSTS (code, vfp_scratch1, ARMREG_LR, 0);
4370                                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4371                                 }
4372                                 break;
4373                         case OP_ATOMIC_STORE_R8:
4374                                 ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4375                                 ARM_FSTD (code, ins->sreg1, ARMREG_LR, 0);
4376                                 break;
4377                         }
4378
4379                         if (ins->backend.memory_barrier_kind == MONO_MEMORY_BARRIER_SEQ)
4380                                 ARM_DMB (code, ARM_DMB_SY);
4381                         break;
4382                 }
4383                 case OP_BIGMUL:
4384                         ARM_SMULL_REG_REG (code, ins->backend.reg3, ins->dreg, ins->sreg1, ins->sreg2);
4385                         break;
4386                 case OP_BIGMUL_UN:
4387                         ARM_UMULL_REG_REG (code, ins->backend.reg3, ins->dreg, ins->sreg1, ins->sreg2);
4388                         break;
4389                 case OP_STOREI1_MEMBASE_IMM:
4390                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm & 0xFF);
4391                         g_assert (arm_is_imm12 (ins->inst_offset));
4392                         ARM_STRB_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4393                         break;
4394                 case OP_STOREI2_MEMBASE_IMM:
4395                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm & 0xFFFF);
4396                         g_assert (arm_is_imm8 (ins->inst_offset));
4397                         ARM_STRH_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4398                         break;
4399                 case OP_STORE_MEMBASE_IMM:
4400                 case OP_STOREI4_MEMBASE_IMM:
4401                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm);
4402                         g_assert (arm_is_imm12 (ins->inst_offset));
4403                         ARM_STR_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4404                         break;
4405                 case OP_STOREI1_MEMBASE_REG:
4406                         g_assert (arm_is_imm12 (ins->inst_offset));
4407                         ARM_STRB_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4408                         break;
4409                 case OP_STOREI2_MEMBASE_REG:
4410                         g_assert (arm_is_imm8 (ins->inst_offset));
4411                         ARM_STRH_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4412                         break;
4413                 case OP_STORE_MEMBASE_REG:
4414                 case OP_STOREI4_MEMBASE_REG:
4415                         /* this case is special, since it happens for spill code after lowering has been called */
4416                         if (arm_is_imm12 (ins->inst_offset)) {
4417                                 ARM_STR_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4418                         } else {
4419                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4420                                 ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4421                         }
4422                         break;
4423                 case OP_STOREI1_MEMINDEX:
4424                         ARM_STRB_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4425                         break;
4426                 case OP_STOREI2_MEMINDEX:
4427                         ARM_STRH_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4428                         break;
4429                 case OP_STORE_MEMINDEX:
4430                 case OP_STOREI4_MEMINDEX:
4431                         ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4432                         break;
4433                 case OP_LOADU4_MEM:
4434                         g_assert_not_reached ();
4435                         break;
4436                 case OP_LOAD_MEMINDEX:
4437                 case OP_LOADI4_MEMINDEX:
4438                 case OP_LOADU4_MEMINDEX:
4439                         ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4440                         break;
4441                 case OP_LOADI1_MEMINDEX:
4442                         ARM_LDRSB_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4443                         break;
4444                 case OP_LOADU1_MEMINDEX:
4445                         ARM_LDRB_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4446                         break;
4447                 case OP_LOADI2_MEMINDEX:
4448                         ARM_LDRSH_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4449                         break;
4450                 case OP_LOADU2_MEMINDEX:
4451                         ARM_LDRH_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4452                         break;
4453                 case OP_LOAD_MEMBASE:
4454                 case OP_LOADI4_MEMBASE:
4455                 case OP_LOADU4_MEMBASE:
4456                         /* this case is special, since it happens for spill code after lowering has been called */
4457                         if (arm_is_imm12 (ins->inst_offset)) {
4458                                 ARM_LDR_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4459                         } else {
4460                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4461                                 ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4462                         }
4463                         break;
4464                 case OP_LOADI1_MEMBASE:
4465                         g_assert (arm_is_imm8 (ins->inst_offset));
4466                         ARM_LDRSB_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4467                         break;
4468                 case OP_LOADU1_MEMBASE:
4469                         g_assert (arm_is_imm12 (ins->inst_offset));
4470                         ARM_LDRB_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4471                         break;
4472                 case OP_LOADU2_MEMBASE:
4473                         g_assert (arm_is_imm8 (ins->inst_offset));
4474                         ARM_LDRH_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4475                         break;
4476                 case OP_LOADI2_MEMBASE:
4477                         g_assert (arm_is_imm8 (ins->inst_offset));
4478                         ARM_LDRSH_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4479                         break;
4480                 case OP_ICONV_TO_I1:
4481                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 24);
4482                         ARM_SAR_IMM (code, ins->dreg, ins->dreg, 24);
4483                         break;
4484                 case OP_ICONV_TO_I2:
4485                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 16);
4486                         ARM_SAR_IMM (code, ins->dreg, ins->dreg, 16);
4487                         break;
4488                 case OP_ICONV_TO_U1:
4489                         ARM_AND_REG_IMM8 (code, ins->dreg, ins->sreg1, 0xff);
4490                         break;
4491                 case OP_ICONV_TO_U2:
4492                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 16);
4493                         ARM_SHR_IMM (code, ins->dreg, ins->dreg, 16);
4494                         break;
4495                 case OP_COMPARE:
4496                 case OP_ICOMPARE:
4497                         ARM_CMP_REG_REG (code, ins->sreg1, ins->sreg2);
4498                         break;
4499                 case OP_COMPARE_IMM:
4500                 case OP_ICOMPARE_IMM:
4501                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4502                         g_assert (imm8 >= 0);
4503                         ARM_CMP_REG_IMM (code, ins->sreg1, imm8, rot_amount);
4504                         break;
4505                 case OP_BREAK:
4506                         /*
4507                          * gdb does not like encountering the hw breakpoint ins in the debugged code. 
4508                          * So instead of emitting a trap, we emit a call a C function and place a 
4509                          * breakpoint there.
4510                          */
4511                         //*(int*)code = 0xef9f0001;
4512                         //code += 4;
4513                         //ARM_DBRK (code);
4514                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
4515                                                                  (gpointer)"mono_break");
4516                         code = emit_call_seq (cfg, code);
4517                         break;
4518                 case OP_RELAXED_NOP:
4519                         ARM_NOP (code);
4520                         break;
4521                 case OP_NOP:
4522                 case OP_DUMMY_USE:
4523                 case OP_DUMMY_STORE:
4524                 case OP_DUMMY_ICONST:
4525                 case OP_DUMMY_R8CONST:
4526                 case OP_NOT_REACHED:
4527                 case OP_NOT_NULL:
4528                         break;
4529                 case OP_IL_SEQ_POINT:
4530                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
4531                         break;
4532                 case OP_SEQ_POINT: {
4533                         int i;
4534                         MonoInst *info_var = cfg->arch.seq_point_info_var;
4535                         MonoInst *ss_trigger_page_var = cfg->arch.ss_trigger_page_var;
4536                         MonoInst *ss_method_var = cfg->arch.seq_point_ss_method_var;
4537                         MonoInst *bp_method_var = cfg->arch.seq_point_bp_method_var;
4538                         MonoInst *var;
4539                         int dreg = ARMREG_LR;
4540
4541 #if 0
4542                         if (cfg->soft_breakpoints) {
4543                                 g_assert (!cfg->compile_aot);
4544                         }
4545 #endif
4546
4547                         /*
4548                          * For AOT, we use one got slot per method, which will point to a
4549                          * SeqPointInfo structure, containing all the information required
4550                          * by the code below.
4551                          */
4552                         if (cfg->compile_aot) {
4553                                 g_assert (info_var);
4554                                 g_assert (info_var->opcode == OP_REGOFFSET);
4555                                 g_assert (arm_is_imm12 (info_var->inst_offset));
4556                         }
4557
4558                         if (!cfg->soft_breakpoints && !cfg->compile_aot) {
4559                                 /*
4560                                  * Read from the single stepping trigger page. This will cause a
4561                                  * SIGSEGV when single stepping is enabled.
4562                                  * We do this _before_ the breakpoint, so single stepping after
4563                                  * a breakpoint is hit will step to the next IL offset.
4564                                  */
4565                                 g_assert (((guint64)(gsize)ss_trigger_page >> 32) == 0);
4566                         }
4567
4568                         /* Single step check */
4569                         if (ins->flags & MONO_INST_SINGLE_STEP_LOC) {
4570                                 if (cfg->soft_breakpoints) {
4571                                         /* Load the address of the sequence point method variable. */
4572                                         var = ss_method_var;
4573                                         g_assert (var);
4574                                         g_assert (var->opcode == OP_REGOFFSET);
4575                                         g_assert (arm_is_imm12 (var->inst_offset));
4576                                         ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4577
4578                                         /* Read the value and check whether it is non-zero. */
4579                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4580                                         ARM_CMP_REG_IMM (code, dreg, 0, 0);
4581                                         /* Call it conditionally. */
4582                                         ARM_BLX_REG_COND (code, ARMCOND_NE, dreg);
4583                                 } else {
4584                                         if (cfg->compile_aot) {
4585                                                 /* Load the trigger page addr from the variable initialized in the prolog */
4586                                                 var = ss_trigger_page_var;
4587                                                 g_assert (var);
4588                                                 g_assert (var->opcode == OP_REGOFFSET);
4589                                                 g_assert (arm_is_imm12 (var->inst_offset));
4590                                                 ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4591                                         } else {
4592                                                 ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
4593                                                 ARM_B (code, 0);
4594                                                 *(int*)code = (int)ss_trigger_page;
4595                                                 code += 4;
4596                                         }
4597                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4598                                 }
4599                         }
4600
4601                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
4602
4603                         /* Breakpoint check */
4604                         if (cfg->compile_aot) {
4605                                 guint32 offset = code - cfg->native_code;
4606                                 guint32 val;
4607
4608                                 ARM_LDR_IMM (code, dreg, info_var->inst_basereg, info_var->inst_offset);
4609                                 /* Add the offset */
4610                                 val = ((offset / 4) * sizeof (guint8*)) + MONO_STRUCT_OFFSET (SeqPointInfo, bp_addrs);
4611                                 /* Load the info->bp_addrs [offset], which is either 0 or the address of a trigger page */
4612                                 if (arm_is_imm12 ((int)val)) {
4613                                         ARM_LDR_IMM (code, dreg, dreg, val);
4614                                 } else {
4615                                         ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF), 0);
4616                                         if (val & 0xFF00)
4617                                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF00) >> 8, 24);
4618                                         if (val & 0xFF0000)
4619                                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4620                                         g_assert (!(val & 0xFF000000));
4621
4622                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4623                                 }
4624                                 /* What is faster, a branch or a load ? */
4625                                 ARM_CMP_REG_IMM (code, dreg, 0, 0);
4626                                 /* The breakpoint instruction */
4627                                 if (cfg->soft_breakpoints)
4628                                         ARM_BLX_REG_COND (code, ARMCOND_NE, dreg);
4629                                 else
4630                                         ARM_LDR_IMM_COND (code, dreg, dreg, 0, ARMCOND_NE);
4631                         } else if (cfg->soft_breakpoints) {
4632                                 /* Load the address of the breakpoint method into ip. */
4633                                 var = bp_method_var;
4634                                 g_assert (var);
4635                                 g_assert (var->opcode == OP_REGOFFSET);
4636                                 g_assert (arm_is_imm12 (var->inst_offset));
4637                                 ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4638
4639                                 /*
4640                                  * A placeholder for a possible breakpoint inserted by
4641                                  * mono_arch_set_breakpoint ().
4642                                  */
4643                                 ARM_NOP (code);
4644                         } else {
4645                                 /* 
4646                                  * A placeholder for a possible breakpoint inserted by
4647                                  * mono_arch_set_breakpoint ().
4648                                  */
4649                                 for (i = 0; i < 4; ++i)
4650                                         ARM_NOP (code);
4651                         }
4652
4653                         /*
4654                          * Add an additional nop so skipping the bp doesn't cause the ip to point
4655                          * to another IL offset.
4656                          */
4657
4658                         ARM_NOP (code);
4659                         break;
4660                 }
4661                 case OP_ADDCC:
4662                 case OP_IADDCC:
4663                         ARM_ADDS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4664                         break;
4665                 case OP_IADD:
4666                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4667                         break;
4668                 case OP_ADC:
4669                 case OP_IADC:
4670                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4671                         break;
4672                 case OP_ADDCC_IMM:
4673                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4674                         g_assert (imm8 >= 0);
4675                         ARM_ADDS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4676                         break;
4677                 case OP_ADD_IMM:
4678                 case OP_IADD_IMM:
4679                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4680                         g_assert (imm8 >= 0);
4681                         ARM_ADD_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4682                         break;
4683                 case OP_ADC_IMM:
4684                 case OP_IADC_IMM:
4685                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4686                         g_assert (imm8 >= 0);
4687                         ARM_ADCS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4688                         break;
4689                 case OP_IADD_OVF:
4690                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4691                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4692                         break;
4693                 case OP_IADD_OVF_UN:
4694                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4695                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4696                         break;
4697                 case OP_ISUB_OVF:
4698                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4699                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4700                         break;
4701                 case OP_ISUB_OVF_UN:
4702                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4703                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
4704                         break;
4705                 case OP_ADD_OVF_CARRY:
4706                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4707                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4708                         break;
4709                 case OP_ADD_OVF_UN_CARRY:
4710                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4711                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4712                         break;
4713                 case OP_SUB_OVF_CARRY:
4714                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4715                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4716                         break;
4717                 case OP_SUB_OVF_UN_CARRY:
4718                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4719                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
4720                         break;
4721                 case OP_SUBCC:
4722                 case OP_ISUBCC:
4723                         ARM_SUBS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4724                         break;
4725                 case OP_SUBCC_IMM:
4726                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4727                         g_assert (imm8 >= 0);
4728                         ARM_SUBS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4729                         break;
4730                 case OP_ISUB:
4731                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4732                         break;
4733                 case OP_SBB:
4734                 case OP_ISBB:
4735                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4736                         break;
4737                 case OP_SUB_IMM:
4738                 case OP_ISUB_IMM:
4739                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4740                         g_assert (imm8 >= 0);
4741                         ARM_SUB_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4742                         break;
4743                 case OP_SBB_IMM:
4744                 case OP_ISBB_IMM:
4745                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4746                         g_assert (imm8 >= 0);
4747                         ARM_SBCS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4748                         break;
4749                 case OP_ARM_RSBS_IMM:
4750                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4751                         g_assert (imm8 >= 0);
4752                         ARM_RSBS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4753                         break;
4754                 case OP_ARM_RSC_IMM:
4755                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4756                         g_assert (imm8 >= 0);
4757                         ARM_RSC_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4758                         break;
4759                 case OP_IAND:
4760                         ARM_AND_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4761                         break;
4762                 case OP_AND_IMM:
4763                 case OP_IAND_IMM:
4764                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4765                         g_assert (imm8 >= 0);
4766                         ARM_AND_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4767                         break;
4768                 case OP_IDIV:
4769                         g_assert (v7s_supported || v7k_supported);
4770                         ARM_SDIV (code, ins->dreg, ins->sreg1, ins->sreg2);
4771                         break;
4772                 case OP_IDIV_UN:
4773                         g_assert (v7s_supported || v7k_supported);
4774                         ARM_UDIV (code, ins->dreg, ins->sreg1, ins->sreg2);
4775                         break;
4776                 case OP_IREM:
4777                         g_assert (v7s_supported || v7k_supported);
4778                         ARM_SDIV (code, ARMREG_LR, ins->sreg1, ins->sreg2);
4779                         ARM_MLS (code, ins->dreg, ARMREG_LR, ins->sreg2, ins->sreg1);
4780                         break;
4781                 case OP_IREM_UN:
4782                         g_assert (v7s_supported || v7k_supported);
4783                         ARM_UDIV (code, ARMREG_LR, ins->sreg1, ins->sreg2);
4784                         ARM_MLS (code, ins->dreg, ARMREG_LR, ins->sreg2, ins->sreg1);
4785                         break;
4786                 case OP_DIV_IMM:
4787                 case OP_REM_IMM:
4788                         g_assert_not_reached ();
4789                 case OP_IOR:
4790                         ARM_ORR_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4791                         break;
4792                 case OP_OR_IMM:
4793                 case OP_IOR_IMM:
4794                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4795                         g_assert (imm8 >= 0);
4796                         ARM_ORR_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4797                         break;
4798                 case OP_IXOR:
4799                         ARM_EOR_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4800                         break;
4801                 case OP_XOR_IMM:
4802                 case OP_IXOR_IMM:
4803                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4804                         g_assert (imm8 >= 0);
4805                         ARM_EOR_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4806                         break;
4807                 case OP_ISHL:
4808                         ARM_SHL_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4809                         break;
4810                 case OP_SHL_IMM:
4811                 case OP_ISHL_IMM:
4812                         if (ins->inst_imm)
4813                                 ARM_SHL_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4814                         else if (ins->dreg != ins->sreg1)
4815                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4816                         break;
4817                 case OP_ISHR:
4818                         ARM_SAR_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4819                         break;
4820                 case OP_SHR_IMM:
4821                 case OP_ISHR_IMM:
4822                         if (ins->inst_imm)
4823                                 ARM_SAR_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4824                         else if (ins->dreg != ins->sreg1)
4825                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4826                         break;
4827                 case OP_SHR_UN_IMM:
4828                 case OP_ISHR_UN_IMM:
4829                         if (ins->inst_imm)
4830                                 ARM_SHR_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4831                         else if (ins->dreg != ins->sreg1)
4832                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4833                         break;
4834                 case OP_ISHR_UN:
4835                         ARM_SHR_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4836                         break;
4837                 case OP_INOT:
4838                         ARM_MVN_REG_REG (code, ins->dreg, ins->sreg1);
4839                         break;
4840                 case OP_INEG:
4841                         ARM_RSB_REG_IMM8 (code, ins->dreg, ins->sreg1, 0);
4842                         break;
4843                 case OP_IMUL:
4844                         if (ins->dreg == ins->sreg2)
4845                                 ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4846                         else
4847                                 ARM_MUL_REG_REG (code, ins->dreg, ins->sreg2, ins->sreg1);
4848                         break;
4849                 case OP_MUL_IMM:
4850                         g_assert_not_reached ();
4851                         break;
4852                 case OP_IMUL_OVF:
4853                         /* FIXME: handle ovf/ sreg2 != dreg */
4854                         ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4855                         /* FIXME: MUL doesn't set the C/O flags on ARM */
4856                         break;
4857                 case OP_IMUL_OVF_UN:
4858                         /* FIXME: handle ovf/ sreg2 != dreg */
4859                         ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4860                         /* FIXME: MUL doesn't set the C/O flags on ARM */
4861                         break;
4862                 case OP_ICONST:
4863                         code = mono_arm_emit_load_imm (code, ins->dreg, ins->inst_c0);
4864                         break;
4865                 case OP_AOTCONST:
4866                         /* Load the GOT offset */
4867                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
4868                         ARM_LDR_IMM (code, ins->dreg, ARMREG_PC, 0);
4869                         ARM_B (code, 0);
4870                         *(gpointer*)code = NULL;
4871                         code += 4;
4872                         /* Load the value from the GOT */
4873                         ARM_LDR_REG_REG (code, ins->dreg, ARMREG_PC, ins->dreg);
4874                         break;
4875                 case OP_OBJC_GET_SELECTOR:
4876                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_OBJC_SELECTOR_REF, ins->inst_p0);
4877                         ARM_LDR_IMM (code, ins->dreg, ARMREG_PC, 0);
4878                         ARM_B (code, 0);
4879                         *(gpointer*)code = NULL;
4880                         code += 4;
4881                         ARM_LDR_REG_REG (code, ins->dreg, ARMREG_PC, ins->dreg);
4882                         break;
4883                 case OP_ICONV_TO_I4:
4884                 case OP_ICONV_TO_U4:
4885                 case OP_MOVE:
4886                         if (ins->dreg != ins->sreg1)
4887                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4888                         break;
4889                 case OP_SETLRET: {
4890                         int saved = ins->sreg2;
4891                         if (ins->sreg2 == ARM_LSW_REG) {
4892                                 ARM_MOV_REG_REG (code, ARMREG_LR, ins->sreg2);
4893                                 saved = ARMREG_LR;
4894                         }
4895                         if (ins->sreg1 != ARM_LSW_REG)
4896                                 ARM_MOV_REG_REG (code, ARM_LSW_REG, ins->sreg1);
4897                         if (saved != ARM_MSW_REG)
4898                                 ARM_MOV_REG_REG (code, ARM_MSW_REG, saved);
4899                         break;
4900                 }
4901                 case OP_FMOVE:
4902                         if (IS_VFP && ins->dreg != ins->sreg1)
4903                                 ARM_CPYD (code, ins->dreg, ins->sreg1);
4904                         break;
4905                 case OP_RMOVE:
4906                         if (IS_VFP && ins->dreg != ins->sreg1)
4907                                 ARM_CPYS (code, ins->dreg, ins->sreg1);
4908                         break;
4909                 case OP_MOVE_F_TO_I4:
4910                         if (cfg->r4fp) {
4911                                 ARM_FMRS (code, ins->dreg, ins->sreg1);
4912                         } else {
4913                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4914                                 ARM_CVTD (code, vfp_scratch1, ins->sreg1);
4915                                 ARM_FMRS (code, ins->dreg, vfp_scratch1);
4916                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4917                         }
4918                         break;
4919                 case OP_MOVE_I4_TO_F:
4920                         if (cfg->r4fp) {
4921                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
4922                         } else {
4923                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
4924                                 ARM_CVTS (code, ins->dreg, ins->dreg);
4925                         }
4926                         break;
4927                 case OP_FCONV_TO_R4:
4928                         if (IS_VFP) {
4929                                 if (cfg->r4fp) {
4930                                         ARM_CVTD (code, ins->dreg, ins->sreg1);
4931                                 } else {
4932                                         ARM_CVTD (code, ins->dreg, ins->sreg1);
4933                                         ARM_CVTS (code, ins->dreg, ins->dreg);
4934                                 }
4935                         }
4936                         break;
4937                 case OP_TAILCALL: {
4938                         MonoCallInst *call = (MonoCallInst*)ins;
4939
4940                         /*
4941                          * The stack looks like the following:
4942                          * <caller argument area>
4943                          * <saved regs etc>
4944                          * <rest of frame>
4945                          * <callee argument area>
4946                          * Need to copy the arguments from the callee argument area to
4947                          * the caller argument area, and pop the frame.
4948                          */
4949                         if (call->stack_usage) {
4950                                 int i, prev_sp_offset = 0;
4951
4952                                 /* Compute size of saved registers restored below */
4953                                 if (iphone_abi)
4954                                         prev_sp_offset = 2 * 4;
4955                                 else
4956                                         prev_sp_offset = 1 * 4;
4957                                 for (i = 0; i < 16; ++i) {
4958                                         if (cfg->used_int_regs & (1 << i))
4959                                                 prev_sp_offset += 4;
4960                                 }
4961
4962                                 code = emit_big_add (code, ARMREG_IP, cfg->frame_reg, cfg->stack_usage + prev_sp_offset);
4963
4964                                 /* Copy arguments on the stack to our argument area */
4965                                 for (i = 0; i < call->stack_usage; i += sizeof (mgreg_t)) {
4966                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, i);
4967                                         ARM_STR_IMM (code, ARMREG_LR, ARMREG_IP, i);
4968                                 }
4969                         }
4970
4971                         /*
4972                          * Keep in sync with mono_arch_emit_epilog
4973                          */
4974                         g_assert (!cfg->method->save_lmf);
4975
4976                         code = emit_big_add (code, ARMREG_SP, cfg->frame_reg, cfg->stack_usage);
4977                         if (iphone_abi) {
4978                                 if (cfg->used_int_regs)
4979                                         ARM_POP (code, cfg->used_int_regs);
4980                                 ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_LR));
4981                         } else {
4982                                 ARM_POP (code, cfg->used_int_regs | (1 << ARMREG_LR));
4983                         }
4984
4985                         mono_add_patch_info (cfg, (guint8*) code - cfg->native_code, MONO_PATCH_INFO_METHOD_JUMP, call->method);
4986                         if (cfg->compile_aot) {
4987                                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
4988                                 ARM_B (code, 0);
4989                                 *(gpointer*)code = NULL;
4990                                 code += 4;
4991                                 ARM_LDR_REG_REG (code, ARMREG_PC, ARMREG_PC, ARMREG_IP);
4992                         } else {
4993                                 code = mono_arm_patchable_b (code, ARMCOND_AL);
4994                                 cfg->thunk_area += THUNK_SIZE;
4995                         }
4996                         break;
4997                 }
4998                 case OP_CHECK_THIS:
4999                         /* ensure ins->sreg1 is not NULL */
5000                         ARM_LDRB_IMM (code, ARMREG_LR, ins->sreg1, 0);
5001                         break;
5002                 case OP_ARGLIST: {
5003                         g_assert (cfg->sig_cookie < 128);
5004                         ARM_LDR_IMM (code, ARMREG_IP, cfg->frame_reg, cfg->sig_cookie);
5005                         ARM_STR_IMM (code, ARMREG_IP, ins->sreg1, 0);
5006                         break;
5007                 }
5008                 case OP_FCALL:
5009                 case OP_RCALL:
5010                 case OP_LCALL:
5011                 case OP_VCALL:
5012                 case OP_VCALL2:
5013                 case OP_VOIDCALL:
5014                 case OP_CALL:
5015                         call = (MonoCallInst*)ins;
5016
5017                         if (IS_HARD_FLOAT)
5018                                 code = emit_float_args (cfg, call, code, &max_len, &offset);
5019
5020                         if (ins->flags & MONO_INST_HAS_METHOD)
5021                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_METHOD, call->method);
5022                         else
5023                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_ABS, call->fptr);
5024                         code = emit_call_seq (cfg, code);
5025                         ins->flags |= MONO_INST_GC_CALLSITE;
5026                         ins->backend.pc_offset = code - cfg->native_code;
5027                         code = emit_move_return_value (cfg, ins, code);
5028                         break;
5029                 case OP_FCALL_REG:
5030                 case OP_RCALL_REG:
5031                 case OP_LCALL_REG:
5032                 case OP_VCALL_REG:
5033                 case OP_VCALL2_REG:
5034                 case OP_VOIDCALL_REG:
5035                 case OP_CALL_REG:
5036                         if (IS_HARD_FLOAT)
5037                                 code = emit_float_args (cfg, (MonoCallInst *)ins, code, &max_len, &offset);
5038
5039                         code = emit_call_reg (code, ins->sreg1);
5040                         ins->flags |= MONO_INST_GC_CALLSITE;
5041                         ins->backend.pc_offset = code - cfg->native_code;
5042                         code = emit_move_return_value (cfg, ins, code);
5043                         break;
5044                 case OP_FCALL_MEMBASE:
5045                 case OP_RCALL_MEMBASE:
5046                 case OP_LCALL_MEMBASE:
5047                 case OP_VCALL_MEMBASE:
5048                 case OP_VCALL2_MEMBASE:
5049                 case OP_VOIDCALL_MEMBASE:
5050                 case OP_CALL_MEMBASE: {
5051                         g_assert (ins->sreg1 != ARMREG_LR);
5052                         call = (MonoCallInst*)ins;
5053
5054                         if (IS_HARD_FLOAT)
5055                                 code = emit_float_args (cfg, call, code, &max_len, &offset);
5056                         if (!arm_is_imm12 (ins->inst_offset)) {
5057                                 /* sreg1 might be IP */
5058                                 ARM_MOV_REG_REG (code, ARMREG_LR, ins->sreg1);
5059                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, ins->inst_offset);
5060                                 ARM_ADD_REG_REG (code, ARMREG_IP, ARMREG_IP, ARMREG_LR);
5061                                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
5062                                 ARM_LDR_IMM (code, ARMREG_PC, ARMREG_IP, 0);
5063                         } else {
5064                                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
5065                                 ARM_LDR_IMM (code, ARMREG_PC, ins->sreg1, ins->inst_offset);
5066                         }
5067                         ins->flags |= MONO_INST_GC_CALLSITE;
5068                         ins->backend.pc_offset = code - cfg->native_code;
5069                         code = emit_move_return_value (cfg, ins, code);
5070                         break;
5071                 }
5072                 case OP_GENERIC_CLASS_INIT: {
5073                         int byte_offset;
5074                         guint8 *jump;
5075
5076                         byte_offset = MONO_STRUCT_OFFSET (MonoVTable, initialized);
5077
5078                         g_assert (arm_is_imm8 (byte_offset));
5079                         ARM_LDRSB_IMM (code, ARMREG_IP, ins->sreg1, byte_offset);
5080                         ARM_CMP_REG_IMM (code, ARMREG_IP, 0, 0);
5081                         jump = code;
5082                         ARM_B_COND (code, ARMCOND_NE, 0);
5083
5084                         /* Uninitialized case */
5085                         g_assert (ins->sreg1 == ARMREG_R0);
5086
5087                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
5088                                                                  (gpointer)"mono_generic_class_init");
5089                         code = emit_call_seq (cfg, code);
5090
5091                         /* Initialized case */
5092                         arm_patch (jump, code);
5093                         break;
5094                 }
5095                 case OP_LOCALLOC: {
5096                         /* round the size to 8 bytes */
5097                         ARM_ADD_REG_IMM8 (code, ins->dreg, ins->sreg1, (MONO_ARCH_FRAME_ALIGNMENT - 1));
5098                         ARM_BIC_REG_IMM8 (code, ins->dreg, ins->dreg, (MONO_ARCH_FRAME_ALIGNMENT - 1));
5099                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ins->dreg);
5100                         /* memzero the area: dreg holds the size, sp is the pointer */
5101                         if (ins->flags & MONO_INST_INIT) {
5102                                 guint8 *start_loop, *branch_to_cond;
5103                                 ARM_MOV_REG_IMM8 (code, ARMREG_LR, 0);
5104                                 branch_to_cond = code;
5105                                 ARM_B (code, 0);
5106                                 start_loop = code;
5107                                 ARM_STR_REG_REG (code, ARMREG_LR, ARMREG_SP, ins->dreg);
5108                                 arm_patch (branch_to_cond, code);
5109                                 /* decrement by 4 and set flags */
5110                                 ARM_SUBS_REG_IMM8 (code, ins->dreg, ins->dreg, sizeof (mgreg_t));
5111                                 ARM_B_COND (code, ARMCOND_GE, 0);
5112                                 arm_patch (code - 4, start_loop);
5113                         }
5114                         ARM_MOV_REG_REG (code, ins->dreg, ARMREG_SP);
5115                         if (cfg->param_area)
5116                                 code = emit_sub_imm (code, ARMREG_SP, ARMREG_SP, ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT));
5117                         break;
5118                 }
5119                 case OP_DYN_CALL: {
5120                         int i;
5121                         MonoInst *var = cfg->dyn_call_var;
5122                         guint8 *buf [16];
5123
5124                         g_assert (var->opcode == OP_REGOFFSET);
5125                         g_assert (arm_is_imm12 (var->inst_offset));
5126
5127                         /* lr = args buffer filled by mono_arch_get_dyn_call_args () */
5128                         ARM_MOV_REG_REG (code, ARMREG_LR, ins->sreg1);
5129                         /* ip = ftn */
5130                         ARM_MOV_REG_REG (code, ARMREG_IP, ins->sreg2);
5131
5132                         /* Save args buffer */
5133                         ARM_STR_IMM (code, ARMREG_LR, var->inst_basereg, var->inst_offset);
5134
5135                         /* Set stack slots using R0 as scratch reg */
5136                         /* MONO_ARCH_DYN_CALL_PARAM_AREA gives the size of stack space available */
5137                         for (i = 0; i < DYN_CALL_STACK_ARGS; ++i) {
5138                                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_LR, (PARAM_REGS + i) * sizeof (mgreg_t));
5139                                 ARM_STR_IMM (code, ARMREG_R0, ARMREG_SP, i * sizeof (mgreg_t));
5140                         }
5141
5142                         /* Set fp argument registers */
5143                         if (IS_HARD_FLOAT) {
5144                                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_LR, MONO_STRUCT_OFFSET (DynCallArgs, has_fpregs));
5145                                 ARM_CMP_REG_IMM (code, ARMREG_R0, 0, 0);
5146                                 buf [0] = code;
5147                                 ARM_B_COND (code, ARMCOND_EQ, 0);
5148                                 for (i = 0; i < FP_PARAM_REGS; ++i) {
5149                                         int offset = MONO_STRUCT_OFFSET (DynCallArgs, fpregs) + (i * sizeof (double));
5150                                         g_assert (arm_is_fpimm8 (offset));
5151                                         ARM_FLDD (code, i * 2, ARMREG_LR, offset);
5152                                 }
5153                                 arm_patch (buf [0], code);
5154                         }
5155
5156                         /* Set argument registers */
5157                         for (i = 0; i < PARAM_REGS; ++i)
5158                                 ARM_LDR_IMM (code, i, ARMREG_LR, i * sizeof (mgreg_t));
5159
5160                         /* Make the call */
5161                         ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
5162                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5163
5164                         /* Save result */
5165                         ARM_LDR_IMM (code, ARMREG_IP, var->inst_basereg, var->inst_offset);
5166                         ARM_STR_IMM (code, ARMREG_R0, ARMREG_IP, MONO_STRUCT_OFFSET (DynCallArgs, res)); 
5167                         ARM_STR_IMM (code, ARMREG_R1, ARMREG_IP, MONO_STRUCT_OFFSET (DynCallArgs, res2));
5168                         if (IS_HARD_FLOAT)
5169                                 ARM_FSTD (code, ARM_VFP_D0, ARMREG_IP, MONO_STRUCT_OFFSET (DynCallArgs, fpregs));
5170                         break;
5171                 }
5172                 case OP_THROW: {
5173                         if (ins->sreg1 != ARMREG_R0)
5174                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5175                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
5176                                              (gpointer)"mono_arch_throw_exception");
5177                         code = emit_call_seq (cfg, code);
5178                         break;
5179                 }
5180                 case OP_RETHROW: {
5181                         if (ins->sreg1 != ARMREG_R0)
5182                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5183                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
5184                                              (gpointer)"mono_arch_rethrow_exception");
5185                         code = emit_call_seq (cfg, code);
5186                         break;
5187                 }
5188                 case OP_START_HANDLER: {
5189                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5190                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5191                         int i, rot_amount;
5192
5193                         /* Reserve a param area, see filter-stack.exe */
5194                         if (param_area) {
5195                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5196                                         ARM_SUB_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5197                                 } else {
5198                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5199                                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5200                                 }
5201                         }
5202
5203                         if (arm_is_imm12 (spvar->inst_offset)) {
5204                                 ARM_STR_IMM (code, ARMREG_LR, spvar->inst_basereg, spvar->inst_offset);
5205                         } else {
5206                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5207                                 ARM_STR_REG_REG (code, ARMREG_LR, spvar->inst_basereg, ARMREG_IP);
5208                         }
5209                         break;
5210                 }
5211                 case OP_ENDFILTER: {
5212                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5213                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5214                         int i, rot_amount;
5215
5216                         /* Free the param area */
5217                         if (param_area) {
5218                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5219                                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5220                                 } else {
5221                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5222                                         ARM_ADD_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5223                                 }
5224                         }
5225
5226                         if (ins->sreg1 != ARMREG_R0)
5227                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5228                         if (arm_is_imm12 (spvar->inst_offset)) {
5229                                 ARM_LDR_IMM (code, ARMREG_IP, spvar->inst_basereg, spvar->inst_offset);
5230                         } else {
5231                                 g_assert (ARMREG_IP != spvar->inst_basereg);
5232                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5233                                 ARM_LDR_REG_REG (code, ARMREG_IP, spvar->inst_basereg, ARMREG_IP);
5234                         }
5235                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5236                         break;
5237                 }
5238                 case OP_ENDFINALLY: {
5239                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5240                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5241                         int i, rot_amount;
5242
5243                         /* Free the param area */
5244                         if (param_area) {
5245                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5246                                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5247                                 } else {
5248                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5249                                         ARM_ADD_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5250                                 }
5251                         }
5252
5253                         if (arm_is_imm12 (spvar->inst_offset)) {
5254                                 ARM_LDR_IMM (code, ARMREG_IP, spvar->inst_basereg, spvar->inst_offset);
5255                         } else {
5256                                 g_assert (ARMREG_IP != spvar->inst_basereg);
5257                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5258                                 ARM_LDR_REG_REG (code, ARMREG_IP, spvar->inst_basereg, ARMREG_IP);
5259                         }
5260                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5261                         break;
5262                 }
5263                 case OP_CALL_HANDLER: 
5264                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_target_bb);
5265                         code = mono_arm_patchable_bl (code, ARMCOND_AL);
5266                         cfg->thunk_area += THUNK_SIZE;
5267                         mono_cfg_add_try_hole (cfg, ins->inst_eh_block, code, bb);
5268                         break;
5269                 case OP_GET_EX_OBJ:
5270                         if (ins->dreg != ARMREG_R0)
5271                                 ARM_MOV_REG_REG (code, ins->dreg, ARMREG_R0);
5272                         break;
5273
5274                 case OP_LABEL:
5275                         ins->inst_c0 = code - cfg->native_code;
5276                         break;
5277                 case OP_BR:
5278                         /*if (ins->inst_target_bb->native_offset) {
5279                                 ARM_B (code, 0);
5280                                 //x86_jump_code (code, cfg->native_code + ins->inst_target_bb->native_offset); 
5281                         } else*/ {
5282                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
5283                                 code = mono_arm_patchable_b (code, ARMCOND_AL);
5284                         } 
5285                         break;
5286                 case OP_BR_REG:
5287                         ARM_MOV_REG_REG (code, ARMREG_PC, ins->sreg1);
5288                         break;
5289                 case OP_SWITCH:
5290                         /* 
5291                          * In the normal case we have:
5292                          *      ldr pc, [pc, ins->sreg1 << 2]
5293                          *      nop
5294                          * If aot, we have:
5295                          *      ldr lr, [pc, ins->sreg1 << 2]
5296                          *      add pc, pc, lr
5297                          * After follows the data.
5298                          * FIXME: add aot support.
5299                          */
5300                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_SWITCH, ins->inst_p0);
5301                         max_len += 4 * GPOINTER_TO_INT (ins->klass);
5302                         if (offset + max_len > (cfg->code_size - 16)) {
5303                                 cfg->code_size += max_len;
5304                                 cfg->code_size *= 2;
5305                                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5306                                 code = cfg->native_code + offset;
5307                         }
5308                         ARM_LDR_REG_REG_SHIFT (code, ARMREG_PC, ARMREG_PC, ins->sreg1, ARMSHIFT_LSL, 2);
5309                         ARM_NOP (code);
5310                         code += 4 * GPOINTER_TO_INT (ins->klass);
5311                         break;
5312                 case OP_CEQ:
5313                 case OP_ICEQ:
5314                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5315                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5316                         break;
5317                 case OP_CLT:
5318                 case OP_ICLT:
5319                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5320                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_LT);
5321                         break;
5322                 case OP_CLT_UN:
5323                 case OP_ICLT_UN:
5324                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5325                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_LO);
5326                         break;
5327                 case OP_CGT:
5328                 case OP_ICGT:
5329                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5330                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_GT);
5331                         break;
5332                 case OP_CGT_UN:
5333                 case OP_ICGT_UN:
5334                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5335                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_HI);
5336                         break;
5337                 case OP_ICNEQ:
5338                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5339                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5340                         break;
5341                 case OP_ICGE:
5342                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5343                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_LT);
5344                         break;
5345                 case OP_ICLE:
5346                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5347                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_GT);
5348                         break;
5349                 case OP_ICGE_UN:
5350                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5351                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_LO);
5352                         break;
5353                 case OP_ICLE_UN:
5354                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5355                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_HI);
5356                         break;
5357                 case OP_COND_EXC_EQ:
5358                 case OP_COND_EXC_NE_UN:
5359                 case OP_COND_EXC_LT:
5360                 case OP_COND_EXC_LT_UN:
5361                 case OP_COND_EXC_GT:
5362                 case OP_COND_EXC_GT_UN:
5363                 case OP_COND_EXC_GE:
5364                 case OP_COND_EXC_GE_UN:
5365                 case OP_COND_EXC_LE:
5366                 case OP_COND_EXC_LE_UN:
5367                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_EQ, ins->inst_p1);
5368                         break;
5369                 case OP_COND_EXC_IEQ:
5370                 case OP_COND_EXC_INE_UN:
5371                 case OP_COND_EXC_ILT:
5372                 case OP_COND_EXC_ILT_UN:
5373                 case OP_COND_EXC_IGT:
5374                 case OP_COND_EXC_IGT_UN:
5375                 case OP_COND_EXC_IGE:
5376                 case OP_COND_EXC_IGE_UN:
5377                 case OP_COND_EXC_ILE:
5378                 case OP_COND_EXC_ILE_UN:
5379                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_IEQ, ins->inst_p1);
5380                         break;
5381                 case OP_COND_EXC_C:
5382                 case OP_COND_EXC_IC:
5383                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_CS, ins->inst_p1);
5384                         break;
5385                 case OP_COND_EXC_OV:
5386                 case OP_COND_EXC_IOV:
5387                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VS, ins->inst_p1);
5388                         break;
5389                 case OP_COND_EXC_NC:
5390                 case OP_COND_EXC_INC:
5391                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_CC, ins->inst_p1);
5392                         break;
5393                 case OP_COND_EXC_NO:
5394                 case OP_COND_EXC_INO:
5395                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VC, ins->inst_p1);
5396                         break;
5397                 case OP_IBEQ:
5398                 case OP_IBNE_UN:
5399                 case OP_IBLT:
5400                 case OP_IBLT_UN:
5401                 case OP_IBGT:
5402                 case OP_IBGT_UN:
5403                 case OP_IBGE:
5404                 case OP_IBGE_UN:
5405                 case OP_IBLE:
5406                 case OP_IBLE_UN:
5407                         EMIT_COND_BRANCH (ins, ins->opcode - OP_IBEQ);
5408                         break;
5409
5410                 /* floating point opcodes */
5411                 case OP_R8CONST:
5412                         if (cfg->compile_aot) {
5413                                 ARM_FLDD (code, ins->dreg, ARMREG_PC, 0);
5414                                 ARM_B (code, 1);
5415                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[0];
5416                                 code += 4;
5417                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[1];
5418                                 code += 4;
5419                         } else {
5420                                 /* FIXME: we can optimize the imm load by dealing with part of 
5421                                  * the displacement in LDFD (aligning to 512).
5422                                  */
5423                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, (guint32)ins->inst_p0);
5424                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
5425                         }
5426                         break;
5427                 case OP_R4CONST:
5428                         if (cfg->compile_aot) {
5429                                 ARM_FLDS (code, ins->dreg, ARMREG_PC, 0);
5430                                 ARM_B (code, 0);
5431                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[0];
5432                                 code += 4;
5433                                 if (!cfg->r4fp)
5434                                         ARM_CVTS (code, ins->dreg, ins->dreg);
5435                         } else {
5436                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, (guint32)ins->inst_p0);
5437                                 ARM_FLDS (code, ins->dreg, ARMREG_LR, 0);
5438                                 if (!cfg->r4fp)
5439                                         ARM_CVTS (code, ins->dreg, ins->dreg);
5440                         }
5441                         break;
5442                 case OP_STORER8_MEMBASE_REG:
5443                         /* This is generated by the local regalloc pass which runs after the lowering pass */
5444                         if (!arm_is_fpimm8 (ins->inst_offset)) {
5445                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
5446                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->inst_destbasereg);
5447                                 ARM_FSTD (code, ins->sreg1, ARMREG_LR, 0);
5448                         } else {
5449                                 ARM_FSTD (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
5450                         }
5451                         break;
5452                 case OP_LOADR8_MEMBASE:
5453                         /* This is generated by the local regalloc pass which runs after the lowering pass */
5454                         if (!arm_is_fpimm8 (ins->inst_offset)) {
5455                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
5456                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->inst_basereg);
5457                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
5458                         } else {
5459                                 ARM_FLDD (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
5460                         }
5461                         break;
5462                 case OP_STORER4_MEMBASE_REG:
5463                         g_assert (arm_is_fpimm8 (ins->inst_offset));
5464                         if (cfg->r4fp) {
5465                                 ARM_FSTS (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
5466                         } else {
5467                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5468                                 ARM_CVTD (code, vfp_scratch1, ins->sreg1);
5469                                 ARM_FSTS (code, vfp_scratch1, ins->inst_destbasereg, ins->inst_offset);
5470                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5471                         }
5472                         break;
5473                 case OP_LOADR4_MEMBASE:
5474                         if (cfg->r4fp) {
5475                                 ARM_FLDS (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
5476                         } else {
5477                                 g_assert (arm_is_fpimm8 (ins->inst_offset));
5478                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5479                                 ARM_FLDS (code, vfp_scratch1, ins->inst_basereg, ins->inst_offset);
5480                                 ARM_CVTS (code, ins->dreg, vfp_scratch1);
5481                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5482                         }
5483                         break;
5484                 case OP_ICONV_TO_R_UN: {
5485                         g_assert_not_reached ();
5486                         break;
5487                 }
5488                 case OP_ICONV_TO_R4:
5489                         if (cfg->r4fp) {
5490                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
5491                                 ARM_FSITOS (code, ins->dreg, ins->dreg);
5492                         } else {
5493                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5494                                 ARM_FMSR (code, vfp_scratch1, ins->sreg1);
5495                                 ARM_FSITOS (code, vfp_scratch1, vfp_scratch1);
5496                                 ARM_CVTS (code, ins->dreg, vfp_scratch1);
5497                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5498                         }
5499                         break;
5500                 case OP_ICONV_TO_R8:
5501                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5502                         ARM_FMSR (code, vfp_scratch1, ins->sreg1);
5503                         ARM_FSITOD (code, ins->dreg, vfp_scratch1);
5504                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5505                         break;
5506
5507                 case OP_SETFRET: {
5508                         MonoType *sig_ret = mini_get_underlying_type (mono_method_signature (cfg->method)->ret);
5509                         if (sig_ret->type == MONO_TYPE_R4) {
5510                                 if (cfg->r4fp) {
5511                                         if (IS_HARD_FLOAT) {
5512                                                 if (ins->sreg1 != ARM_VFP_D0)
5513                                                         ARM_CPYS (code, ARM_VFP_D0, ins->sreg1);
5514                                         } else {
5515                                                 ARM_FMRS (code, ARMREG_R0, ins->sreg1);
5516                                         }
5517                                 } else {
5518                                         ARM_CVTD (code, ARM_VFP_F0, ins->sreg1);
5519
5520                                         if (!IS_HARD_FLOAT)
5521                                                 ARM_FMRS (code, ARMREG_R0, ARM_VFP_F0);
5522                                 }
5523                         } else {
5524                                 if (IS_HARD_FLOAT)
5525                                         ARM_CPYD (code, ARM_VFP_D0, ins->sreg1);
5526                                 else
5527                                         ARM_FMRRD (code, ARMREG_R0, ARMREG_R1, ins->sreg1);
5528                         }
5529                         break;
5530                 }
5531                 case OP_FCONV_TO_I1:
5532                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
5533                         break;
5534                 case OP_FCONV_TO_U1:
5535                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
5536                         break;
5537                 case OP_FCONV_TO_I2:
5538                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
5539                         break;
5540                 case OP_FCONV_TO_U2:
5541                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
5542                         break;
5543                 case OP_FCONV_TO_I4:
5544                 case OP_FCONV_TO_I:
5545                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
5546                         break;
5547                 case OP_FCONV_TO_U4:
5548                 case OP_FCONV_TO_U:
5549                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
5550                         break;
5551                 case OP_FCONV_TO_I8:
5552                 case OP_FCONV_TO_U8:
5553                         g_assert_not_reached ();
5554                         /* Implemented as helper calls */
5555                         break;
5556                 case OP_LCONV_TO_R_UN:
5557                         g_assert_not_reached ();
5558                         /* Implemented as helper calls */
5559                         break;
5560                 case OP_LCONV_TO_OVF_I4_2: {
5561                         guint8 *high_bit_not_set, *valid_negative, *invalid_negative, *valid_positive;
5562                         /* 
5563                          * Valid ints: 0xffffffff:8000000 to 00000000:0x7f000000
5564                          */
5565
5566                         ARM_CMP_REG_IMM8 (code, ins->sreg1, 0);
5567                         high_bit_not_set = code;
5568                         ARM_B_COND (code, ARMCOND_GE, 0); /*branch if bit 31 of the lower part is not set*/
5569
5570                         ARM_CMN_REG_IMM8 (code, ins->sreg2, 1); /*This have the same effect as CMP reg, 0xFFFFFFFF */
5571                         valid_negative = code;
5572                         ARM_B_COND (code, ARMCOND_EQ, 0); /*branch if upper part == 0xFFFFFFFF (lower part has bit 31 set) */
5573                         invalid_negative = code;
5574                         ARM_B_COND (code, ARMCOND_AL, 0);
5575                         
5576                         arm_patch (high_bit_not_set, code);
5577
5578                         ARM_CMP_REG_IMM8 (code, ins->sreg2, 0);
5579                         valid_positive = code;
5580                         ARM_B_COND (code, ARMCOND_EQ, 0); /*branch if upper part == 0 (lower part has bit 31 clear)*/
5581
5582                         arm_patch (invalid_negative, code);
5583                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_AL, "OverflowException");
5584
5585                         arm_patch (valid_negative, code);
5586                         arm_patch (valid_positive, code);
5587
5588                         if (ins->dreg != ins->sreg1)
5589                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
5590                         break;
5591                 }
5592                 case OP_FADD:
5593                         ARM_VFP_ADDD (code, ins->dreg, ins->sreg1, ins->sreg2);
5594                         break;
5595                 case OP_FSUB:
5596                         ARM_VFP_SUBD (code, ins->dreg, ins->sreg1, ins->sreg2);
5597                         break;          
5598                 case OP_FMUL:
5599                         ARM_VFP_MULD (code, ins->dreg, ins->sreg1, ins->sreg2);
5600                         break;          
5601                 case OP_FDIV:
5602                         ARM_VFP_DIVD (code, ins->dreg, ins->sreg1, ins->sreg2);
5603                         break;          
5604                 case OP_FNEG:
5605                         ARM_NEGD (code, ins->dreg, ins->sreg1);
5606                         break;
5607                 case OP_FREM:
5608                         /* emulated */
5609                         g_assert_not_reached ();
5610                         break;
5611                 case OP_FCOMPARE:
5612                         if (IS_VFP) {
5613                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5614                                 ARM_FMSTAT (code);
5615                         }
5616                         break;
5617                 case OP_RCOMPARE:
5618                         g_assert (IS_VFP);
5619                         ARM_CMPS (code, ins->sreg1, ins->sreg2);
5620                         ARM_FMSTAT (code);
5621                         break;
5622                 case OP_FCEQ:
5623                         if (IS_VFP) {
5624                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5625                                 ARM_FMSTAT (code);
5626                         }
5627                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5628                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5629                         break;
5630                 case OP_FCLT:
5631                         if (IS_VFP) {
5632                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5633                                 ARM_FMSTAT (code);
5634                         }
5635                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5636                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5637                         break;
5638                 case OP_FCLT_UN:
5639                         if (IS_VFP) {
5640                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5641                                 ARM_FMSTAT (code);
5642                         }
5643                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5644                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5645                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5646                         break;
5647                 case OP_FCGT:
5648                         if (IS_VFP) {
5649                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5650                                 ARM_FMSTAT (code);
5651                         }
5652                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5653                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5654                         break;
5655                 case OP_FCGT_UN:
5656                         if (IS_VFP) {
5657                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5658                                 ARM_FMSTAT (code);
5659                         }
5660                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5661                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5662                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5663                         break;
5664                 case OP_FCNEQ:
5665                         if (IS_VFP) {
5666                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5667                                 ARM_FMSTAT (code);
5668                         }
5669                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5670                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5671                         break;
5672                 case OP_FCGE:
5673                         if (IS_VFP) {
5674                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5675                                 ARM_FMSTAT (code);
5676                         }
5677                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5678                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5679                         break;
5680                 case OP_FCLE:
5681                         if (IS_VFP) {
5682                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5683                                 ARM_FMSTAT (code);
5684                         }
5685                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5686                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5687                         break;
5688
5689                 /* ARM FPA flags table:
5690                  * N        Less than               ARMCOND_MI
5691                  * Z        Equal                   ARMCOND_EQ
5692                  * C        Greater Than or Equal   ARMCOND_CS
5693                  * V        Unordered               ARMCOND_VS
5694                  */
5695                 case OP_FBEQ:
5696                         EMIT_COND_BRANCH (ins, OP_IBEQ - OP_IBEQ);
5697                         break;
5698                 case OP_FBNE_UN:
5699                         EMIT_COND_BRANCH (ins, OP_IBNE_UN - OP_IBEQ);
5700                         break;
5701                 case OP_FBLT:
5702                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_MI); /* N set */
5703                         break;
5704                 case OP_FBLT_UN:
5705                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_VS); /* V set */
5706                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_MI); /* N set */
5707                         break;
5708                 case OP_FBGT:
5709                 case OP_FBGT_UN:
5710                 case OP_FBLE:
5711                 case OP_FBLE_UN:
5712                         g_assert_not_reached ();
5713                         break;
5714                 case OP_FBGE:
5715                         if (IS_VFP) {
5716                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_GE);
5717                         } else {
5718                                 /* FPA requires EQ even thou the docs suggests that just CS is enough */
5719                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_EQ);
5720                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_CS);
5721                         }
5722                         break;
5723                 case OP_FBGE_UN:
5724                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_VS); /* V set */
5725                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_GE);
5726                         break;
5727
5728                 case OP_CKFINITE: {
5729                         if (IS_VFP) {
5730                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5731                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch2);
5732
5733                                 ARM_ABSD (code, vfp_scratch2, ins->sreg1);
5734                                 ARM_FLDD (code, vfp_scratch1, ARMREG_PC, 0);
5735                                 ARM_B (code, 1);
5736                                 *(guint32*)code = 0xffffffff;
5737                                 code += 4;
5738                                 *(guint32*)code = 0x7fefffff;
5739                                 code += 4;
5740                                 ARM_CMPD (code, vfp_scratch2, vfp_scratch1);
5741                                 ARM_FMSTAT (code);
5742                                 EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_GT, "OverflowException");
5743                                 ARM_CMPD (code, ins->sreg1, ins->sreg1);
5744                                 ARM_FMSTAT (code);
5745                                 EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VS, "OverflowException");
5746                                 ARM_CPYD (code, ins->dreg, ins->sreg1);
5747
5748                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5749                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch2);
5750                         }
5751                         break;
5752                 }
5753
5754                 case OP_RCONV_TO_I1:
5755                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
5756                         break;
5757                 case OP_RCONV_TO_U1:
5758                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
5759                         break;
5760                 case OP_RCONV_TO_I2:
5761                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
5762                         break;
5763                 case OP_RCONV_TO_U2:
5764                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
5765                         break;
5766                 case OP_RCONV_TO_I4:
5767                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
5768                         break;
5769                 case OP_RCONV_TO_U4:
5770                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
5771                         break;
5772                 case OP_RCONV_TO_R4:
5773                         g_assert (IS_VFP);
5774                         if (ins->dreg != ins->sreg1)
5775                                 ARM_CPYS (code, ins->dreg, ins->sreg1);
5776                         break;
5777                 case OP_RCONV_TO_R8:
5778                         g_assert (IS_VFP);
5779                         ARM_CVTS (code, ins->dreg, ins->sreg1);
5780                         break;
5781                 case OP_RADD:
5782                         ARM_VFP_ADDS (code, ins->dreg, ins->sreg1, ins->sreg2);
5783                         break;
5784                 case OP_RSUB:
5785                         ARM_VFP_SUBS (code, ins->dreg, ins->sreg1, ins->sreg2);
5786                         break;          
5787                 case OP_RMUL:
5788                         ARM_VFP_MULS (code, ins->dreg, ins->sreg1, ins->sreg2);
5789                         break;          
5790                 case OP_RDIV:
5791                         ARM_VFP_DIVS (code, ins->dreg, ins->sreg1, ins->sreg2);
5792                         break;          
5793                 case OP_RNEG:
5794                         ARM_NEGS (code, ins->dreg, ins->sreg1);
5795                         break;
5796                 case OP_RCEQ:
5797                         if (IS_VFP) {
5798                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5799                                 ARM_FMSTAT (code);
5800                         }
5801                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5802                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5803                         break;
5804                 case OP_RCLT:
5805                         if (IS_VFP) {
5806                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5807                                 ARM_FMSTAT (code);
5808                         }
5809                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5810                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5811                         break;
5812                 case OP_RCLT_UN:
5813                         if (IS_VFP) {
5814                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5815                                 ARM_FMSTAT (code);
5816                         }
5817                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5818                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5819                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5820                         break;
5821                 case OP_RCGT:
5822                         if (IS_VFP) {
5823                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5824                                 ARM_FMSTAT (code);
5825                         }
5826                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5827                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5828                         break;
5829                 case OP_RCGT_UN:
5830                         if (IS_VFP) {
5831                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5832                                 ARM_FMSTAT (code);
5833                         }
5834                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5835                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5836                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5837                         break;
5838                 case OP_RCNEQ:
5839                         if (IS_VFP) {
5840                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5841                                 ARM_FMSTAT (code);
5842                         }
5843                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5844                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5845                         break;
5846                 case OP_RCGE:
5847                         if (IS_VFP) {
5848                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5849                                 ARM_FMSTAT (code);
5850                         }
5851                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5852                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5853                         break;
5854                 case OP_RCLE:
5855                         if (IS_VFP) {
5856                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5857                                 ARM_FMSTAT (code);
5858                         }
5859                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5860                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5861                         break;
5862
5863                 case OP_GC_LIVENESS_DEF:
5864                 case OP_GC_LIVENESS_USE:
5865                 case OP_GC_PARAM_SLOT_LIVENESS_DEF:
5866                         ins->backend.pc_offset = code - cfg->native_code;
5867                         break;
5868                 case OP_GC_SPILL_SLOT_LIVENESS_DEF:
5869                         ins->backend.pc_offset = code - cfg->native_code;
5870                         bb->spill_slot_defs = g_slist_prepend_mempool (cfg->mempool, bb->spill_slot_defs, ins);
5871                         break;
5872                 case OP_GC_SAFE_POINT: {
5873                         guint8 *buf [1];
5874
5875                         g_assert (mono_threads_is_coop_enabled ());
5876
5877                         ARM_LDR_IMM (code, ARMREG_IP, ins->sreg1, 0);
5878                         ARM_CMP_REG_IMM (code, ARMREG_IP, 0, 0);
5879                         buf [0] = code;
5880                         ARM_B_COND (code, ARMCOND_EQ, 0);
5881                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, "mono_threads_state_poll");
5882                         code = emit_call_seq (cfg, code);
5883                         arm_patch (buf [0], code);
5884                         break;
5885                 }
5886
5887                 default:
5888                         g_warning ("unknown opcode %s in %s()\n", mono_inst_name (ins->opcode), __FUNCTION__);
5889                         g_assert_not_reached ();
5890                 }
5891
5892                 if ((cfg->opt & MONO_OPT_BRANCH) && ((code - cfg->native_code - offset) > max_len)) {
5893                         g_warning ("wrong maximal instruction length of instruction %s (expected %d, got %d)",
5894                                    mono_inst_name (ins->opcode), max_len, code - cfg->native_code - offset);
5895                         g_assert_not_reached ();
5896                 }
5897                
5898                 cpos += max_len;
5899
5900                 last_ins = ins;
5901                 last_offset = offset;
5902         }
5903
5904         cfg->code_len = code - cfg->native_code;
5905 }
5906
5907 #endif /* DISABLE_JIT */
5908
5909 void
5910 mono_arch_register_lowlevel_calls (void)
5911 {
5912         /* The signature doesn't matter */
5913         mono_register_jit_icall (mono_arm_throw_exception, "mono_arm_throw_exception", mono_create_icall_signature ("void"), TRUE);
5914         mono_register_jit_icall (mono_arm_throw_exception_by_token, "mono_arm_throw_exception_by_token", mono_create_icall_signature ("void"), TRUE);
5915         mono_register_jit_icall (mono_arm_unaligned_stack, "mono_arm_unaligned_stack", mono_create_icall_signature ("void"), TRUE);
5916 }
5917
5918 #define patch_lis_ori(ip,val) do {\
5919                 guint16 *__lis_ori = (guint16*)(ip);    \
5920                 __lis_ori [1] = (((guint32)(val)) >> 16) & 0xffff;      \
5921                 __lis_ori [3] = ((guint32)(val)) & 0xffff;      \
5922         } while (0)
5923
5924 void
5925 mono_arch_patch_code_new (MonoCompile *cfg, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, gpointer target)
5926 {
5927         unsigned char *ip = ji->ip.i + code;
5928
5929         if (ji->type == MONO_PATCH_INFO_SWITCH) {
5930         }
5931
5932         switch (ji->type) {
5933         case MONO_PATCH_INFO_SWITCH: {
5934                 gpointer *jt = (gpointer*)(ip + 8);
5935                 int i;
5936                 /* jt is the inlined jump table, 2 instructions after ip
5937                  * In the normal case we store the absolute addresses,
5938                  * otherwise the displacements.
5939                  */
5940                 for (i = 0; i < ji->data.table->table_size; i++)
5941                         jt [i] = code + (int)ji->data.table->table [i];
5942                 break;
5943         }
5944         case MONO_PATCH_INFO_IP:
5945                 g_assert_not_reached ();
5946                 patch_lis_ori (ip, ip);
5947                 break;
5948         case MONO_PATCH_INFO_METHOD_REL:
5949                 g_assert_not_reached ();
5950                 *((gpointer *)(ip)) = target;
5951                 break;
5952         case MONO_PATCH_INFO_METHODCONST:
5953         case MONO_PATCH_INFO_CLASS:
5954         case MONO_PATCH_INFO_IMAGE:
5955         case MONO_PATCH_INFO_FIELD:
5956         case MONO_PATCH_INFO_VTABLE:
5957         case MONO_PATCH_INFO_IID:
5958         case MONO_PATCH_INFO_SFLDA:
5959         case MONO_PATCH_INFO_LDSTR:
5960         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
5961         case MONO_PATCH_INFO_LDTOKEN:
5962                 g_assert_not_reached ();
5963                 /* from OP_AOTCONST : lis + ori */
5964                 patch_lis_ori (ip, target);
5965                 break;
5966         case MONO_PATCH_INFO_R4:
5967         case MONO_PATCH_INFO_R8:
5968                 g_assert_not_reached ();
5969                 *((gconstpointer *)(ip + 2)) = target;
5970                 break;
5971         case MONO_PATCH_INFO_EXC_NAME:
5972                 g_assert_not_reached ();
5973                 *((gconstpointer *)(ip + 1)) = target;
5974                 break;
5975         case MONO_PATCH_INFO_NONE:
5976         case MONO_PATCH_INFO_BB_OVF:
5977         case MONO_PATCH_INFO_EXC_OVF:
5978                 /* everything is dealt with at epilog output time */
5979                 break;
5980         default:
5981                 arm_patch_general (cfg, domain, ip, target);
5982                 break;
5983         }
5984 }
5985
5986 void
5987 mono_arm_unaligned_stack (MonoMethod *method)
5988 {
5989         g_assert_not_reached ();
5990 }
5991
5992 #ifndef DISABLE_JIT
5993
5994 /*
5995  * Stack frame layout:
5996  * 
5997  *   ------------------- fp
5998  *      MonoLMF structure or saved registers
5999  *   -------------------
6000  *      locals
6001  *   -------------------
6002  *      spilled regs
6003  *   -------------------
6004  *      optional 8 bytes for tracing
6005  *   -------------------
6006  *      param area             size is cfg->param_area
6007  *   ------------------- sp
6008  */
6009 guint8 *
6010 mono_arch_emit_prolog (MonoCompile *cfg)
6011 {
6012         MonoMethod *method = cfg->method;
6013         MonoBasicBlock *bb;
6014         MonoMethodSignature *sig;
6015         MonoInst *inst;
6016         int alloc_size, orig_alloc_size, pos, max_offset, i, rot_amount, part;
6017         guint8 *code;
6018         CallInfo *cinfo;
6019         int tracing = 0;
6020         int lmf_offset = 0;
6021         int prev_sp_offset, reg_offset;
6022
6023         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
6024                 tracing = 1;
6025
6026         sig = mono_method_signature (method);
6027         cfg->code_size = 256 + sig->param_count * 64;
6028         code = cfg->native_code = g_malloc (cfg->code_size);
6029
6030         mono_emit_unwind_op_def_cfa (cfg, code, ARMREG_SP, 0);
6031
6032         alloc_size = cfg->stack_offset;
6033         pos = 0;
6034         prev_sp_offset = 0;
6035
6036         if (iphone_abi) {
6037                 /* 
6038                  * The iphone uses R7 as the frame pointer, and it points at the saved
6039                  * r7+lr:
6040                  *         <lr>
6041                  * r7 ->   <r7>
6042                  *         <rest of frame>
6043                  * We can't use r7 as a frame pointer since it points into the middle of
6044                  * the frame, so we keep using our own frame pointer.
6045                  * FIXME: Optimize this.
6046                  */
6047                 ARM_PUSH (code, (1 << ARMREG_R7) | (1 << ARMREG_LR));
6048                 prev_sp_offset += 8; /* r7 and lr */
6049                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6050                 mono_emit_unwind_op_offset (cfg, code, ARMREG_R7, (- prev_sp_offset) + 0);
6051                 ARM_MOV_REG_REG (code, ARMREG_R7, ARMREG_SP);
6052         }
6053
6054         if (!method->save_lmf) {
6055                 if (iphone_abi) {
6056                         /* No need to push LR again */
6057                         if (cfg->used_int_regs)
6058                                 ARM_PUSH (code, cfg->used_int_regs);
6059                 } else {
6060                         ARM_PUSH (code, cfg->used_int_regs | (1 << ARMREG_LR));
6061                         prev_sp_offset += 4;
6062                 }
6063                 for (i = 0; i < 16; ++i) {
6064                         if (cfg->used_int_regs & (1 << i))
6065                                 prev_sp_offset += 4;
6066                 }
6067                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6068                 reg_offset = 0;
6069                 for (i = 0; i < 16; ++i) {
6070                         if ((cfg->used_int_regs & (1 << i))) {
6071                                 mono_emit_unwind_op_offset (cfg, code, i, (- prev_sp_offset) + reg_offset);
6072                                 mini_gc_set_slot_type_from_cfa (cfg, (- prev_sp_offset) + reg_offset, SLOT_NOREF);
6073                                 reg_offset += 4;
6074                         }
6075                 }
6076                 mono_emit_unwind_op_offset (cfg, code, ARMREG_LR, -4);
6077                 mini_gc_set_slot_type_from_cfa (cfg, -4, SLOT_NOREF);
6078         } else {
6079                 ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_SP);
6080                 ARM_PUSH (code, 0x5ff0);
6081                 prev_sp_offset += 4 * 10; /* all but r0-r3, sp and pc */
6082                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6083                 reg_offset = 0;
6084                 for (i = 0; i < 16; ++i) {
6085                         if ((i > ARMREG_R3) && (i != ARMREG_SP) && (i != ARMREG_PC)) {
6086                                 /* The original r7 is saved at the start */
6087                                 if (!(iphone_abi && i == ARMREG_R7))
6088                                         mono_emit_unwind_op_offset (cfg, code, i, (- prev_sp_offset) + reg_offset);
6089                                 reg_offset += 4;
6090                         }
6091                 }
6092                 g_assert (reg_offset == 4 * 10);
6093                 pos += sizeof (MonoLMF) - (4 * 10);
6094                 lmf_offset = pos;
6095         }
6096         alloc_size += pos;
6097         orig_alloc_size = alloc_size;
6098         // align to MONO_ARCH_FRAME_ALIGNMENT bytes
6099         if (alloc_size & (MONO_ARCH_FRAME_ALIGNMENT - 1)) {
6100                 alloc_size += MONO_ARCH_FRAME_ALIGNMENT - 1;
6101                 alloc_size &= ~(MONO_ARCH_FRAME_ALIGNMENT - 1);
6102         }
6103
6104         /* the stack used in the pushed regs */
6105         alloc_size += ALIGN_TO (prev_sp_offset, MONO_ARCH_FRAME_ALIGNMENT) - prev_sp_offset;
6106         cfg->stack_usage = alloc_size;
6107         if (alloc_size) {
6108                 if ((i = mono_arm_is_rotated_imm8 (alloc_size, &rot_amount)) >= 0) {
6109                         ARM_SUB_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
6110                 } else {
6111                         code = mono_arm_emit_load_imm (code, ARMREG_IP, alloc_size);
6112                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
6113                 }
6114                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset + alloc_size);
6115         }
6116         if (cfg->frame_reg != ARMREG_SP) {
6117                 ARM_MOV_REG_REG (code, cfg->frame_reg, ARMREG_SP);
6118                 mono_emit_unwind_op_def_cfa_reg (cfg, code, cfg->frame_reg);
6119         }
6120         //g_print ("prev_sp_offset: %d, alloc_size:%d\n", prev_sp_offset, alloc_size);
6121         prev_sp_offset += alloc_size;
6122
6123         for (i = 0; i < alloc_size - orig_alloc_size; i += 4)
6124                 mini_gc_set_slot_type_from_cfa (cfg, (- prev_sp_offset) + orig_alloc_size + i, SLOT_NOREF);
6125
6126         /* compute max_offset in order to use short forward jumps
6127          * we could skip do it on arm because the immediate displacement
6128          * for jumps is large enough, it may be useful later for constant pools
6129          */
6130         max_offset = 0;
6131         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
6132                 MonoInst *ins = bb->code;
6133                 bb->max_offset = max_offset;
6134
6135                 if (cfg->prof_options & MONO_PROFILE_COVERAGE)
6136                         max_offset += 6; 
6137
6138                 MONO_BB_FOR_EACH_INS (bb, ins)
6139                         max_offset += ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
6140         }
6141
6142         /* stack alignment check */
6143         /*
6144         {
6145                 guint8 *buf [16];
6146                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_SP);
6147                 code = mono_arm_emit_load_imm (code, ARMREG_IP, MONO_ARCH_FRAME_ALIGNMENT -1);
6148                 ARM_AND_REG_REG (code, ARMREG_LR, ARMREG_LR, ARMREG_IP);
6149                 ARM_CMP_REG_IMM (code, ARMREG_LR, 0, 0);
6150                 buf [0] = code;
6151                 ARM_B_COND (code, ARMCOND_EQ, 0);
6152                 if (cfg->compile_aot)
6153                         ARM_MOV_REG_IMM8 (code, ARMREG_R0, 0);
6154                 else
6155                         code = mono_arm_emit_load_imm (code, ARMREG_R0, (guint32)cfg->method);
6156                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, "mono_arm_unaligned_stack");
6157                 code = emit_call_seq (cfg, code);
6158                 arm_patch (buf [0], code);
6159         }
6160         */
6161
6162         /* store runtime generic context */
6163         if (cfg->rgctx_var) {
6164                 MonoInst *ins = cfg->rgctx_var;
6165
6166                 g_assert (ins->opcode == OP_REGOFFSET);
6167
6168                 if (arm_is_imm12 (ins->inst_offset)) {
6169                         ARM_STR_IMM (code, MONO_ARCH_RGCTX_REG, ins->inst_basereg, ins->inst_offset);
6170                 } else {
6171                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6172                         ARM_STR_REG_REG (code, MONO_ARCH_RGCTX_REG, ins->inst_basereg, ARMREG_LR);
6173                 }
6174         }
6175
6176         /* load arguments allocated to register from the stack */
6177         pos = 0;
6178
6179         cinfo = get_call_info (NULL, sig);
6180
6181         if (cinfo->ret.storage == RegTypeStructByAddr) {
6182                 ArgInfo *ainfo = &cinfo->ret;
6183                 inst = cfg->vret_addr;
6184                 g_assert (arm_is_imm12 (inst->inst_offset));
6185                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6186         }
6187
6188         if (sig->call_convention == MONO_CALL_VARARG) {
6189                 ArgInfo *cookie = &cinfo->sig_cookie;
6190
6191                 /* Save the sig cookie address */
6192                 g_assert (cookie->storage == RegTypeBase);
6193
6194                 g_assert (arm_is_imm12 (prev_sp_offset + cookie->offset));
6195                 g_assert (arm_is_imm12 (cfg->sig_cookie));
6196                 ARM_ADD_REG_IMM8 (code, ARMREG_IP, cfg->frame_reg, prev_sp_offset + cookie->offset);
6197                 ARM_STR_IMM (code, ARMREG_IP, cfg->frame_reg, cfg->sig_cookie);
6198         }
6199
6200         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
6201                 ArgInfo *ainfo = cinfo->args + i;
6202                 inst = cfg->args [pos];
6203                 
6204                 if (cfg->verbose_level > 2)
6205                         g_print ("Saving argument %d (type: %d)\n", i, ainfo->storage);
6206
6207                 if (inst->opcode == OP_REGVAR) {
6208                         if (ainfo->storage == RegTypeGeneral)
6209                                 ARM_MOV_REG_REG (code, inst->dreg, ainfo->reg);
6210                         else if (ainfo->storage == RegTypeFP) {
6211                                 g_assert_not_reached ();
6212                         } else if (ainfo->storage == RegTypeBase) {
6213                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6214                                         ARM_LDR_IMM (code, inst->dreg, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6215                                 } else {
6216                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6217                                         ARM_LDR_REG_REG (code, inst->dreg, ARMREG_SP, ARMREG_IP);
6218                                 }
6219                         } else
6220                                 g_assert_not_reached ();
6221
6222                         if (cfg->verbose_level > 2)
6223                                 g_print ("Argument %d assigned to register %s\n", pos, mono_arch_regname (inst->dreg));
6224                 } else {
6225                         switch (ainfo->storage) {
6226                         case RegTypeHFA:
6227                                 for (part = 0; part < ainfo->nregs; part ++) {
6228                                         if (ainfo->esize == 4)
6229                                                 ARM_FSTS (code, ainfo->reg + part, inst->inst_basereg, inst->inst_offset + (part * ainfo->esize));
6230                                         else
6231                                                 ARM_FSTD (code, ainfo->reg + (part * 2), inst->inst_basereg, inst->inst_offset + (part * ainfo->esize));
6232                                 }
6233                                 break;
6234                         case RegTypeGeneral:
6235                         case RegTypeIRegPair:
6236                         case RegTypeGSharedVtInReg:
6237                         case RegTypeStructByAddr:
6238                                 switch (ainfo->size) {
6239                                 case 1:
6240                                         if (arm_is_imm12 (inst->inst_offset))
6241                                                 ARM_STRB_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6242                                         else {
6243                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6244                                                 ARM_STRB_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6245                                         }
6246                                         break;
6247                                 case 2:
6248                                         if (arm_is_imm8 (inst->inst_offset)) {
6249                                                 ARM_STRH_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6250                                         } else {
6251                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6252                                                 ARM_STRH_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6253                                         }
6254                                         break;
6255                                 case 8:
6256                                         if (arm_is_imm12 (inst->inst_offset)) {
6257                                                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6258                                         } else {
6259                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6260                                                 ARM_STR_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6261                                         }
6262                                         if (arm_is_imm12 (inst->inst_offset + 4)) {
6263                                                 ARM_STR_IMM (code, ainfo->reg + 1, inst->inst_basereg, inst->inst_offset + 4);
6264                                         } else {
6265                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6266                                                 ARM_STR_REG_REG (code, ainfo->reg + 1, inst->inst_basereg, ARMREG_IP);
6267                                         }
6268                                         break;
6269                                 default:
6270                                         if (arm_is_imm12 (inst->inst_offset)) {
6271                                                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6272                                         } else {
6273                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6274                                                 ARM_STR_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6275                                         }
6276                                         break;
6277                                 }
6278                                 break;
6279                         case RegTypeBaseGen:
6280                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6281                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6282                                 } else {
6283                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6284                                         ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6285                                 }
6286                                 if (arm_is_imm12 (inst->inst_offset + 4)) {
6287                                         ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset + 4);
6288                                         ARM_STR_IMM (code, ARMREG_R3, inst->inst_basereg, inst->inst_offset);
6289                                 } else {
6290                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6291                                         ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6292                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6293                                         ARM_STR_REG_REG (code, ARMREG_R3, inst->inst_basereg, ARMREG_IP);
6294                                 }
6295                                 break;
6296                         case RegTypeBase:
6297                         case RegTypeGSharedVtOnStack:
6298                         case RegTypeStructByAddrOnStack:
6299                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6300                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6301                                 } else {
6302                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6303                                         ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6304                                 }
6305
6306                                 switch (ainfo->size) {
6307                                 case 1:
6308                                         if (arm_is_imm8 (inst->inst_offset)) {
6309                                                 ARM_STRB_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6310                                         } else {
6311                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6312                                                 ARM_STRB_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6313                                         }
6314                                         break;
6315                                 case 2:
6316                                         if (arm_is_imm8 (inst->inst_offset)) {
6317                                                 ARM_STRH_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6318                                         } else {
6319                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6320                                                 ARM_STRH_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6321                                         }
6322                                         break;
6323                                 case 8:
6324                                         if (arm_is_imm12 (inst->inst_offset)) {
6325                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6326                                         } else {
6327                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6328                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6329                                         }
6330                                         if (arm_is_imm12 (prev_sp_offset + ainfo->offset + 4)) {
6331                                                 ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset + 4));
6332                                         } else {
6333                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset + 4);
6334                                                 ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6335                                         }
6336                                         if (arm_is_imm12 (inst->inst_offset + 4)) {
6337                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset + 4);
6338                                         } else {
6339                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6340                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6341                                         }
6342                                         break;
6343                                 default:
6344                                         if (arm_is_imm12 (inst->inst_offset)) {
6345                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6346                                         } else {
6347                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6348                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6349                                         }
6350                                         break;
6351                                 }
6352                                 break;
6353                         case RegTypeFP: {
6354                                 int imm8, rot_amount;
6355
6356                                 if ((imm8 = mono_arm_is_rotated_imm8 (inst->inst_offset, &rot_amount)) == -1) {
6357                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6358                                         ARM_ADD_REG_REG (code, ARMREG_IP, ARMREG_IP, inst->inst_basereg);
6359                                 } else
6360                                         ARM_ADD_REG_IMM (code, ARMREG_IP, inst->inst_basereg, imm8, rot_amount);
6361
6362                                 if (ainfo->size == 8)
6363                                         ARM_FSTD (code, ainfo->reg, ARMREG_IP, 0);
6364                                 else
6365                                         ARM_FSTS (code, ainfo->reg, ARMREG_IP, 0);
6366                                 break;
6367                         }
6368                         case RegTypeStructByVal: {
6369                                 int doffset = inst->inst_offset;
6370                                 int soffset = 0;
6371                                 int cur_reg;
6372                                 int size = 0;
6373                                 size = mini_type_stack_size_full (inst->inst_vtype, NULL, sig->pinvoke);
6374                                 for (cur_reg = 0; cur_reg < ainfo->size; ++cur_reg) {
6375                                         if (arm_is_imm12 (doffset)) {
6376                                                 ARM_STR_IMM (code, ainfo->reg + cur_reg, inst->inst_basereg, doffset);
6377                                         } else {
6378                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, doffset);
6379                                                 ARM_STR_REG_REG (code, ainfo->reg + cur_reg, inst->inst_basereg, ARMREG_IP);
6380                                         }
6381                                         soffset += sizeof (gpointer);
6382                                         doffset += sizeof (gpointer);
6383                                 }
6384                                 if (ainfo->vtsize) {
6385                                         /* FIXME: handle overrun! with struct sizes not multiple of 4 */
6386                                         //g_print ("emit_memcpy (prev_sp_ofs: %d, ainfo->offset: %d, soffset: %d)\n", prev_sp_offset, ainfo->offset, soffset);
6387                                         code = emit_memcpy (code, ainfo->vtsize * sizeof (gpointer), inst->inst_basereg, doffset, ARMREG_SP, prev_sp_offset + ainfo->offset);
6388                                 }
6389                                 break;
6390                         }
6391                         default:
6392                                 g_assert_not_reached ();
6393                                 break;
6394                         }
6395                 }
6396                 pos++;
6397         }
6398
6399         if (method->save_lmf)
6400                 code = emit_save_lmf (cfg, code, alloc_size - lmf_offset);
6401
6402         if (tracing)
6403                 code = mono_arch_instrument_prolog (cfg, mono_trace_enter_method, code, TRUE);
6404
6405         if (cfg->arch.seq_point_info_var) {
6406                 MonoInst *ins = cfg->arch.seq_point_info_var;
6407
6408                 /* Initialize the variable from a GOT slot */
6409                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_SEQ_POINT_INFO, cfg->method);
6410                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_PC, 0);
6411                 ARM_B (code, 0);
6412                 *(gpointer*)code = NULL;
6413                 code += 4;
6414                 ARM_LDR_REG_REG (code, ARMREG_R0, ARMREG_PC, ARMREG_R0);
6415
6416                 g_assert (ins->opcode == OP_REGOFFSET);
6417
6418                 if (arm_is_imm12 (ins->inst_offset)) {
6419                         ARM_STR_IMM (code, ARMREG_R0, ins->inst_basereg, ins->inst_offset);
6420                 } else {
6421                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6422                         ARM_STR_REG_REG (code, ARMREG_R0, ins->inst_basereg, ARMREG_LR);
6423                 }
6424         }
6425
6426         /* Initialize ss_trigger_page_var */
6427         if (!cfg->soft_breakpoints) {
6428                 MonoInst *info_var = cfg->arch.seq_point_info_var;
6429                 MonoInst *ss_trigger_page_var = cfg->arch.ss_trigger_page_var;
6430                 int dreg = ARMREG_LR;
6431
6432                 if (info_var) {
6433                         g_assert (info_var->opcode == OP_REGOFFSET);
6434                         g_assert (arm_is_imm12 (info_var->inst_offset));
6435
6436                         ARM_LDR_IMM (code, dreg, info_var->inst_basereg, info_var->inst_offset);
6437                         /* Load the trigger page addr */
6438                         ARM_LDR_IMM (code, dreg, dreg, MONO_STRUCT_OFFSET (SeqPointInfo, ss_trigger_page));
6439                         ARM_STR_IMM (code, dreg, ss_trigger_page_var->inst_basereg, ss_trigger_page_var->inst_offset);
6440                 }
6441         }
6442
6443         if (cfg->arch.seq_point_ss_method_var) {
6444                 MonoInst *ss_method_ins = cfg->arch.seq_point_ss_method_var;
6445                 MonoInst *bp_method_ins = cfg->arch.seq_point_bp_method_var;
6446
6447                 g_assert (ss_method_ins->opcode == OP_REGOFFSET);
6448                 g_assert (arm_is_imm12 (ss_method_ins->inst_offset));
6449
6450                 if (cfg->compile_aot) {
6451                         MonoInst *info_var = cfg->arch.seq_point_info_var;
6452                         int dreg = ARMREG_LR;
6453
6454                         g_assert (info_var->opcode == OP_REGOFFSET);
6455                         g_assert (arm_is_imm12 (info_var->inst_offset));
6456
6457                         ARM_LDR_IMM (code, dreg, info_var->inst_basereg, info_var->inst_offset);
6458                         ARM_LDR_IMM (code, dreg, dreg, MONO_STRUCT_OFFSET (SeqPointInfo, ss_tramp_addr));
6459                         ARM_STR_IMM (code, dreg, ss_method_ins->inst_basereg, ss_method_ins->inst_offset);
6460                 } else {
6461                         g_assert (bp_method_ins->opcode == OP_REGOFFSET);
6462                         g_assert (arm_is_imm12 (bp_method_ins->inst_offset));
6463
6464                         ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
6465                         ARM_B (code, 1);
6466                         *(gpointer*)code = &single_step_tramp;
6467                         code += 4;
6468                         *(gpointer*)code = breakpoint_tramp;
6469                         code += 4;
6470
6471                         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_LR, 0);
6472                         ARM_STR_IMM (code, ARMREG_IP, ss_method_ins->inst_basereg, ss_method_ins->inst_offset);
6473                         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_LR, 4);
6474                         ARM_STR_IMM (code, ARMREG_IP, bp_method_ins->inst_basereg, bp_method_ins->inst_offset);
6475                 }
6476         }
6477
6478         cfg->code_len = code - cfg->native_code;
6479         g_assert (cfg->code_len < cfg->code_size);
6480         g_free (cinfo);
6481
6482         return code;
6483 }
6484
6485 void
6486 mono_arch_emit_epilog (MonoCompile *cfg)
6487 {
6488         MonoMethod *method = cfg->method;
6489         int pos, i, rot_amount;
6490         int max_epilog_size = 16 + 20*4;
6491         guint8 *code;
6492         CallInfo *cinfo;
6493
6494         if (cfg->method->save_lmf)
6495                 max_epilog_size += 128;
6496         
6497         if (mono_jit_trace_calls != NULL)
6498                 max_epilog_size += 50;
6499
6500         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
6501                 max_epilog_size += 50;
6502
6503         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
6504                 cfg->code_size *= 2;
6505                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
6506                 cfg->stat_code_reallocs++;
6507         }
6508
6509         /*
6510          * Keep in sync with OP_JMP
6511          */
6512         code = cfg->native_code + cfg->code_len;
6513
6514         /* Save the uwind state which is needed by the out-of-line code */
6515         mono_emit_unwind_op_remember_state (cfg, code);
6516
6517         if (mono_jit_trace_calls != NULL && mono_trace_eval (method)) {
6518                 code = mono_arch_instrument_epilog (cfg, mono_trace_leave_method, code, TRUE);
6519         }
6520         pos = 0;
6521
6522         /* Load returned vtypes into registers if needed */
6523         cinfo = cfg->arch.cinfo;
6524         switch (cinfo->ret.storage) {
6525         case RegTypeStructByVal: {
6526                 MonoInst *ins = cfg->ret;
6527
6528                 if (cinfo->ret.nregs == 1) {
6529                         if (arm_is_imm12 (ins->inst_offset)) {
6530                                 ARM_LDR_IMM (code, ARMREG_R0, ins->inst_basereg, ins->inst_offset);
6531                         } else {
6532                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6533                                 ARM_LDR_REG_REG (code, ARMREG_R0, ins->inst_basereg, ARMREG_LR);
6534                         }
6535                 } else {
6536                         for (i = 0; i < cinfo->ret.nregs; ++i) {
6537                                 int offset = ins->inst_offset + (i * 4);
6538                                 if (arm_is_imm12 (offset)) {
6539                                         ARM_LDR_IMM (code, i, ins->inst_basereg, offset);
6540                                 } else {
6541                                         code = mono_arm_emit_load_imm (code, ARMREG_LR, offset);
6542                                         ARM_LDR_REG_REG (code, i, ins->inst_basereg, ARMREG_LR);
6543                                 }
6544                         }
6545                 }
6546                 break;
6547         }
6548         case RegTypeHFA: {
6549                 MonoInst *ins = cfg->ret;
6550
6551                 for (i = 0; i < cinfo->ret.nregs; ++i) {
6552                         if (cinfo->ret.esize == 4)
6553                                 ARM_FLDS (code, cinfo->ret.reg + i, ins->inst_basereg, ins->inst_offset + (i * cinfo->ret.esize));
6554                         else
6555                                 ARM_FLDD (code, cinfo->ret.reg + (i * 2), ins->inst_basereg, ins->inst_offset + (i * cinfo->ret.esize));
6556                 }
6557                 break;
6558         }
6559         default:
6560                 break;
6561         }
6562
6563         if (method->save_lmf) {
6564                 int lmf_offset, reg, sp_adj, regmask, nused_int_regs = 0;
6565                 /* all but r0-r3, sp and pc */
6566                 pos += sizeof (MonoLMF) - (MONO_ARM_NUM_SAVED_REGS * sizeof (mgreg_t));
6567                 lmf_offset = pos;
6568
6569                 code = emit_restore_lmf (cfg, code, cfg->stack_usage - lmf_offset);
6570
6571                 /* This points to r4 inside MonoLMF->iregs */
6572                 sp_adj = (sizeof (MonoLMF) - MONO_ARM_NUM_SAVED_REGS * sizeof (mgreg_t));
6573                 reg = ARMREG_R4;
6574                 regmask = 0x9ff0; /* restore lr to pc */
6575                 /* Skip caller saved registers not used by the method */
6576                 while (!(cfg->used_int_regs & (1 << reg)) && reg < ARMREG_FP) {
6577                         regmask &= ~(1 << reg);
6578                         sp_adj += 4;
6579                         reg ++;
6580                 }
6581                 if (iphone_abi)
6582                         /* Restored later */
6583                         regmask &= ~(1 << ARMREG_PC);
6584                 /* point sp at the registers to restore: 10 is 14 -4, because we skip r0-r3 */
6585                 code = emit_big_add (code, ARMREG_SP, cfg->frame_reg, cfg->stack_usage - lmf_offset + sp_adj);
6586                 for (i = 0; i < 16; i++) {
6587                         if (regmask & (1 << i))
6588                                 nused_int_regs ++;
6589                 }
6590                 mono_emit_unwind_op_def_cfa (cfg, code, ARMREG_SP, ((iphone_abi ? 3 : 0) + nused_int_regs) * 4);
6591                 /* restore iregs */
6592                 ARM_POP (code, regmask); 
6593                 if (iphone_abi) {
6594                         for (i = 0; i < 16; i++) {
6595                                 if (regmask & (1 << i))
6596                                         mono_emit_unwind_op_same_value (cfg, code, i);
6597                         }
6598                         /* Restore saved r7, restore LR to PC */
6599                         /* Skip lr from the lmf */
6600                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 3 * 4);
6601                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, sizeof (gpointer), 0);
6602                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 2 * 4);
6603                         ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_PC));
6604                 }
6605         } else {
6606                 int i, nused_int_regs = 0;
6607
6608                 for (i = 0; i < 16; i++) {
6609                         if (cfg->used_int_regs & (1 << i))
6610                                 nused_int_regs ++;
6611                 }
6612
6613                 if ((i = mono_arm_is_rotated_imm8 (cfg->stack_usage, &rot_amount)) >= 0) {
6614                         ARM_ADD_REG_IMM (code, ARMREG_SP, cfg->frame_reg, i, rot_amount);
6615                 } else {
6616                         code = mono_arm_emit_load_imm (code, ARMREG_IP, cfg->stack_usage);
6617                         ARM_ADD_REG_REG (code, ARMREG_SP, cfg->frame_reg, ARMREG_IP);
6618                 }
6619
6620                 if (cfg->frame_reg != ARMREG_SP) {
6621                         mono_emit_unwind_op_def_cfa_reg (cfg, code, ARMREG_SP);
6622                 }
6623
6624                 if (iphone_abi) {
6625                         /* Restore saved gregs */
6626                         if (cfg->used_int_regs) {
6627                                 mono_emit_unwind_op_def_cfa_offset (cfg, code, (2 + nused_int_regs) * 4);
6628                                 ARM_POP (code, cfg->used_int_regs);
6629                                 for (i = 0; i < 16; i++) {
6630                                         if (cfg->used_int_regs & (1 << i))
6631                                                 mono_emit_unwind_op_same_value (cfg, code, i);
6632                                 }
6633                         }
6634                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 2 * 4);
6635                         /* Restore saved r7, restore LR to PC */
6636                         ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_PC));
6637                 } else {
6638                         mono_emit_unwind_op_def_cfa_offset (cfg, code, (nused_int_regs + 1) * 4);
6639                         ARM_POP (code, cfg->used_int_regs | (1 << ARMREG_PC));
6640                 }
6641         }
6642
6643         /* Restore the unwind state to be the same as before the epilog */
6644         mono_emit_unwind_op_restore_state (cfg, code);
6645
6646         cfg->code_len = code - cfg->native_code;
6647
6648         g_assert (cfg->code_len < cfg->code_size);
6649
6650 }
6651
6652 void
6653 mono_arch_emit_exceptions (MonoCompile *cfg)
6654 {
6655         MonoJumpInfo *patch_info;
6656         int i;
6657         guint8 *code;
6658         guint8* exc_throw_pos [MONO_EXC_INTRINS_NUM];
6659         guint8 exc_throw_found [MONO_EXC_INTRINS_NUM];
6660         int max_epilog_size = 50;
6661
6662         for (i = 0; i < MONO_EXC_INTRINS_NUM; i++) {
6663                 exc_throw_pos [i] = NULL;
6664                 exc_throw_found [i] = 0;
6665         }
6666
6667         /* count the number of exception infos */
6668      
6669         /* 
6670          * make sure we have enough space for exceptions
6671          */
6672         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
6673                 if (patch_info->type == MONO_PATCH_INFO_EXC) {
6674                         i = mini_exception_id_by_name (patch_info->data.target);
6675                         if (!exc_throw_found [i]) {
6676                                 max_epilog_size += 32;
6677                                 exc_throw_found [i] = TRUE;
6678                         }
6679                 }
6680         }
6681
6682         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
6683                 cfg->code_size *= 2;
6684                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
6685                 cfg->stat_code_reallocs++;
6686         }
6687
6688         code = cfg->native_code + cfg->code_len;
6689
6690         /* add code to raise exceptions */
6691         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
6692                 switch (patch_info->type) {
6693                 case MONO_PATCH_INFO_EXC: {
6694                         MonoClass *exc_class;
6695                         unsigned char *ip = patch_info->ip.i + cfg->native_code;
6696
6697                         i = mini_exception_id_by_name (patch_info->data.target);
6698                         if (exc_throw_pos [i]) {
6699                                 arm_patch (ip, exc_throw_pos [i]);
6700                                 patch_info->type = MONO_PATCH_INFO_NONE;
6701                                 break;
6702                         } else {
6703                                 exc_throw_pos [i] = code;
6704                         }
6705                         arm_patch (ip, code);
6706
6707                         exc_class = mono_class_load_from_name (mono_defaults.corlib, "System", patch_info->data.name);
6708
6709                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_LR);
6710                         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_PC, 0);
6711                         patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
6712                         patch_info->data.name = "mono_arch_throw_corlib_exception";
6713                         patch_info->ip.i = code - cfg->native_code;
6714                         ARM_BL (code, 0);
6715                         cfg->thunk_area += THUNK_SIZE;
6716                         *(guint32*)(gpointer)code = exc_class->type_token - MONO_TOKEN_TYPE_DEF;
6717                         code += 4;
6718                         break;
6719                 }
6720                 default:
6721                         /* do nothing */
6722                         break;
6723                 }
6724         }
6725
6726         cfg->code_len = code - cfg->native_code;
6727
6728         g_assert (cfg->code_len < cfg->code_size);
6729
6730 }
6731
6732 #endif /* #ifndef DISABLE_JIT */
6733
6734 void
6735 mono_arch_finish_init (void)
6736 {
6737 }
6738
6739 void
6740 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
6741 {
6742 }
6743
6744 MonoInst*
6745 mono_arch_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
6746 {
6747         /* FIXME: */
6748         return NULL;
6749 }
6750
6751 gboolean
6752 mono_arch_print_tree (MonoInst *tree, int arity)
6753 {
6754         return 0;
6755 }
6756
6757 #ifndef DISABLE_JIT
6758
6759 #endif
6760
6761 guint32
6762 mono_arch_get_patch_offset (guint8 *code)
6763 {
6764         /* OP_AOTCONST */
6765         return 8;
6766 }
6767
6768 void
6769 mono_arch_flush_register_windows (void)
6770 {
6771 }
6772
6773 MonoMethod*
6774 mono_arch_find_imt_method (mgreg_t *regs, guint8 *code)
6775 {
6776         return (MonoMethod*)regs [MONO_ARCH_IMT_REG];
6777 }
6778
6779 MonoVTable*
6780 mono_arch_find_static_call_vtable (mgreg_t *regs, guint8 *code)
6781 {
6782         return (MonoVTable*) regs [MONO_ARCH_RGCTX_REG];
6783 }
6784
6785 GSList*
6786 mono_arch_get_cie_program (void)
6787 {
6788         GSList *l = NULL;
6789
6790         mono_add_unwind_op_def_cfa (l, (guint8*)NULL, (guint8*)NULL, ARMREG_SP, 0);
6791
6792         return l;
6793 }
6794
6795 /* #define ENABLE_WRONG_METHOD_CHECK 1 */
6796 #define BASE_SIZE (6 * 4)
6797 #define BSEARCH_ENTRY_SIZE (4 * 4)
6798 #define CMP_SIZE (3 * 4)
6799 #define BRANCH_SIZE (1 * 4)
6800 #define CALL_SIZE (2 * 4)
6801 #define WMC_SIZE (8 * 4)
6802 #define DISTANCE(A, B) (((gint32)(B)) - ((gint32)(A)))
6803
6804 static arminstr_t *
6805 arm_emit_value_and_patch_ldr (arminstr_t *code, arminstr_t *target, guint32 value)
6806 {
6807         guint32 delta = DISTANCE (target, code);
6808         delta -= 8;
6809         g_assert (delta >= 0 && delta <= 0xFFF);
6810         *target = *target | delta;
6811         *code = value;
6812         return code + 1;
6813 }
6814
6815 #ifdef ENABLE_WRONG_METHOD_CHECK
6816 static void
6817 mini_dump_bad_imt (int input_imt, int compared_imt, int pc)
6818 {
6819         g_print ("BAD IMT comparing %x with expected %x at ip %x", input_imt, compared_imt, pc);
6820         g_assert (0);
6821 }
6822 #endif
6823
6824 gpointer
6825 mono_arch_build_imt_trampoline (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count,
6826         gpointer fail_tramp)
6827 {
6828         int size, i;
6829         arminstr_t *code, *start;
6830         gboolean large_offsets = FALSE;
6831         guint32 **constant_pool_starts;
6832         arminstr_t *vtable_target = NULL;
6833         int extra_space = 0;
6834 #ifdef ENABLE_WRONG_METHOD_CHECK
6835         char * cond;
6836 #endif
6837         GSList *unwind_ops;
6838
6839         size = BASE_SIZE;
6840         constant_pool_starts = g_new0 (guint32*, count);
6841
6842         for (i = 0; i < count; ++i) {
6843                 MonoIMTCheckItem *item = imt_entries [i];
6844                 if (item->is_equals) {
6845                         gboolean fail_case = !item->check_target_idx && fail_tramp;
6846
6847                         if (item->has_target_code || !arm_is_imm12 (DISTANCE (vtable, &vtable->vtable[item->value.vtable_slot]))) {
6848                                 item->chunk_size += 32;
6849                                 large_offsets = TRUE;
6850                         }
6851
6852                         if (item->check_target_idx || fail_case) {
6853                                 if (!item->compare_done || fail_case)
6854                                         item->chunk_size += CMP_SIZE;
6855                                 item->chunk_size += BRANCH_SIZE;
6856                         } else {
6857 #ifdef ENABLE_WRONG_METHOD_CHECK
6858                                 item->chunk_size += WMC_SIZE;
6859 #endif
6860                         }
6861                         if (fail_case) {
6862                                 item->chunk_size += 16;
6863                                 large_offsets = TRUE;
6864                         }
6865                         item->chunk_size += CALL_SIZE;
6866                 } else {
6867                         item->chunk_size += BSEARCH_ENTRY_SIZE;
6868                         imt_entries [item->check_target_idx]->compare_done = TRUE;
6869                 }
6870                 size += item->chunk_size;
6871         }
6872
6873         if (large_offsets)
6874                 size += 4 * count; /* The ARM_ADD_REG_IMM to pop the stack */
6875
6876         if (fail_tramp)
6877                 code = mono_method_alloc_generic_virtual_trampoline (domain, size);
6878         else
6879                 code = mono_domain_code_reserve (domain, size);
6880         start = code;
6881
6882         unwind_ops = mono_arch_get_cie_program ();
6883
6884 #ifdef DEBUG_IMT
6885         g_print ("Building IMT trampoline for class %s %s entries %d code size %d code at %p end %p vtable %p fail_tramp %p\n", vtable->klass->name_space, vtable->klass->name, count, size, start, ((guint8*)start) + size, vtable, fail_tramp);
6886         for (i = 0; i < count; ++i) {
6887                 MonoIMTCheckItem *item = imt_entries [i];
6888                 g_print ("method %d (%p) %s vtable slot %p is_equals %d chunk size %d\n", i, item->key, ((MonoMethod*)item->key)->name, &vtable->vtable [item->value.vtable_slot], item->is_equals, item->chunk_size);
6889         }
6890 #endif
6891
6892         if (large_offsets) {
6893                 ARM_PUSH4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
6894                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 4 * sizeof (mgreg_t));
6895         } else {
6896                 ARM_PUSH2 (code, ARMREG_R0, ARMREG_R1);
6897                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 2 * sizeof (mgreg_t));
6898         }
6899         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_LR, -4);
6900         vtable_target = code;
6901         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
6902         ARM_MOV_REG_REG (code, ARMREG_R0, ARMREG_V5);
6903
6904         for (i = 0; i < count; ++i) {
6905                 MonoIMTCheckItem *item = imt_entries [i];
6906                 arminstr_t *imt_method = NULL, *vtable_offset_ins = NULL, *target_code_ins = NULL;
6907                 gint32 vtable_offset;
6908
6909                 item->code_target = (guint8*)code;
6910
6911                 if (item->is_equals) {
6912                         gboolean fail_case = !item->check_target_idx && fail_tramp;
6913
6914                         if (item->check_target_idx || fail_case) {
6915                                 if (!item->compare_done || fail_case) {
6916                                         imt_method = code;
6917                                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
6918                                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
6919                                 }
6920                                 item->jmp_code = (guint8*)code;
6921                                 ARM_B_COND (code, ARMCOND_NE, 0);
6922                         } else {
6923                                 /*Enable the commented code to assert on wrong method*/
6924 #ifdef ENABLE_WRONG_METHOD_CHECK
6925                                 imt_method = code;
6926                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
6927                                 ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
6928                                 cond = code;
6929                                 ARM_B_COND (code, ARMCOND_EQ, 0);
6930
6931 /* Define this if your system is so bad that gdb is failing. */
6932 #ifdef BROKEN_DEV_ENV
6933                                 ARM_MOV_REG_REG (code, ARMREG_R2, ARMREG_PC);
6934                                 ARM_BL (code, 0);
6935                                 arm_patch (code - 1, mini_dump_bad_imt);
6936 #else
6937                                 ARM_DBRK (code);
6938 #endif
6939                                 arm_patch (cond, code);
6940 #endif
6941                         }
6942
6943                         if (item->has_target_code) {
6944                                 /* Load target address */
6945                                 target_code_ins = code;
6946                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
6947                                 /* Save it to the fourth slot */
6948                                 ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
6949                                 /* Restore registers and branch */
6950                                 ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
6951                                 
6952                                 code = arm_emit_value_and_patch_ldr (code, target_code_ins, (gsize)item->value.target_code);
6953                         } else {
6954                                 vtable_offset = DISTANCE (vtable, &vtable->vtable[item->value.vtable_slot]);
6955                                 if (!arm_is_imm12 (vtable_offset)) {
6956                                         /* 
6957                                          * We need to branch to a computed address but we don't have
6958                                          * a free register to store it, since IP must contain the 
6959                                          * vtable address. So we push the two values to the stack, and
6960                                          * load them both using LDM.
6961                                          */
6962                                         /* Compute target address */
6963                                         vtable_offset_ins = code;
6964                                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
6965                                         ARM_LDR_REG_REG (code, ARMREG_R1, ARMREG_IP, ARMREG_R1);
6966                                         /* Save it to the fourth slot */
6967                                         ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
6968                                         /* Restore registers and branch */
6969                                         ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
6970                                 
6971                                         code = arm_emit_value_and_patch_ldr (code, vtable_offset_ins, vtable_offset);
6972                                 } else {
6973                                         ARM_POP2 (code, ARMREG_R0, ARMREG_R1);
6974                                         if (large_offsets) {
6975                                                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 2 * sizeof (mgreg_t));
6976                                                 ARM_ADD_REG_IMM8 (code, ARMREG_SP, ARMREG_SP, 2 * sizeof (gpointer));
6977                                         }
6978                                         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
6979                                         ARM_LDR_IMM (code, ARMREG_PC, ARMREG_IP, vtable_offset);
6980                                 }
6981                         }
6982
6983                         if (fail_case) {
6984                                 arm_patch (item->jmp_code, (guchar*)code);
6985
6986                                 target_code_ins = code;
6987                                 /* Load target address */
6988                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
6989                                 /* Save it to the fourth slot */
6990                                 ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
6991                                 /* Restore registers and branch */
6992                                 ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
6993                                 
6994                                 code = arm_emit_value_and_patch_ldr (code, target_code_ins, (gsize)fail_tramp);
6995                                 item->jmp_code = NULL;
6996                         }
6997
6998                         if (imt_method)
6999                                 code = arm_emit_value_and_patch_ldr (code, imt_method, (guint32)item->key);
7000
7001                         /*must emit after unconditional branch*/
7002                         if (vtable_target) {
7003                                 code = arm_emit_value_and_patch_ldr (code, vtable_target, (guint32)vtable);
7004                                 item->chunk_size += 4;
7005                                 vtable_target = NULL;
7006                         }
7007
7008                         /*We reserve the space for bsearch IMT values after the first entry with an absolute jump*/
7009                         constant_pool_starts [i] = code;
7010                         if (extra_space) {
7011                                 code += extra_space;
7012                                 extra_space = 0;
7013                         }
7014                 } else {
7015                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7016                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7017
7018                         item->jmp_code = (guint8*)code;
7019                         ARM_B_COND (code, ARMCOND_HS, 0);
7020                         ++extra_space;
7021                 }
7022         }
7023
7024         for (i = 0; i < count; ++i) {
7025                 MonoIMTCheckItem *item = imt_entries [i];
7026                 if (item->jmp_code) {
7027                         if (item->check_target_idx)
7028                                 arm_patch (item->jmp_code, imt_entries [item->check_target_idx]->code_target);
7029                 }
7030                 if (i > 0 && item->is_equals) {
7031                         int j;
7032                         arminstr_t *space_start = constant_pool_starts [i];
7033                         for (j = i - 1; j >= 0 && !imt_entries [j]->is_equals; --j) {
7034                                 space_start = arm_emit_value_and_patch_ldr (space_start, (arminstr_t*)imt_entries [j]->code_target, (guint32)imt_entries [j]->key);
7035                         }
7036                 }
7037         }
7038
7039 #ifdef DEBUG_IMT
7040         {
7041                 char *buff = g_strdup_printf ("thunk_for_class_%s_%s_entries_%d", vtable->klass->name_space, vtable->klass->name, count);
7042                 mono_disassemble_code (NULL, (guint8*)start, size, buff);
7043                 g_free (buff);
7044         }
7045 #endif
7046
7047         g_free (constant_pool_starts);
7048
7049         mono_arch_flush_icache ((guint8*)start, size);
7050         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_IMT_TRAMPOLINE, NULL);
7051         mono_stats.imt_trampolines_size += code - start;
7052
7053         g_assert (DISTANCE (start, code) <= size);
7054
7055         mono_tramp_info_register (mono_tramp_info_create (NULL, (guint8*)start, DISTANCE (start, code), NULL, unwind_ops), domain);
7056
7057         return start;
7058 }
7059
7060 mgreg_t
7061 mono_arch_context_get_int_reg (MonoContext *ctx, int reg)
7062 {
7063         return ctx->regs [reg];
7064 }
7065
7066 void
7067 mono_arch_context_set_int_reg (MonoContext *ctx, int reg, mgreg_t val)
7068 {
7069         ctx->regs [reg] = val;
7070 }
7071
7072 /*
7073  * mono_arch_get_trampolines:
7074  *
7075  *   Return a list of MonoTrampInfo structures describing arch specific trampolines
7076  * for AOT.
7077  */
7078 GSList *
7079 mono_arch_get_trampolines (gboolean aot)
7080 {
7081         return mono_arm_get_exception_trampolines (aot);
7082 }
7083
7084 gpointer
7085 mono_arch_install_handler_block_guard (MonoJitInfo *ji, MonoJitExceptionInfo *clause, MonoContext *ctx, gpointer new_value)
7086 {
7087         gpointer *lr_loc;
7088         char *old_value;
7089         char *bp;
7090
7091         /*Load the spvar*/
7092         bp = MONO_CONTEXT_GET_BP (ctx);
7093         lr_loc = (gpointer*)(bp + clause->exvar_offset);
7094
7095         old_value = *lr_loc;
7096         if ((char*)old_value < (char*)ji->code_start || (char*)old_value > ((char*)ji->code_start + ji->code_size))
7097                 return old_value;
7098
7099         *lr_loc = new_value;
7100
7101         return old_value;
7102 }
7103
7104 #if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED)
7105 /*
7106  * mono_arch_set_breakpoint:
7107  *
7108  *   Set a breakpoint at the native code corresponding to JI at NATIVE_OFFSET.
7109  * The location should contain code emitted by OP_SEQ_POINT.
7110  */
7111 void
7112 mono_arch_set_breakpoint (MonoJitInfo *ji, guint8 *ip)
7113 {
7114         guint8 *code = ip;
7115         guint32 native_offset = ip - (guint8*)ji->code_start;
7116         MonoDebugOptions *opt = mini_get_debug_options ();
7117
7118         if (ji->from_aot) {
7119                 SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start);
7120
7121                 if (!breakpoint_tramp)
7122                         breakpoint_tramp = mini_get_breakpoint_trampoline ();
7123
7124                 g_assert (native_offset % 4 == 0);
7125                 g_assert (info->bp_addrs [native_offset / 4] == 0);
7126                 info->bp_addrs [native_offset / 4] = opt->soft_breakpoints ? breakpoint_tramp : bp_trigger_page;
7127         } else if (opt->soft_breakpoints) {
7128                 code += 4;
7129                 ARM_BLX_REG (code, ARMREG_LR);
7130                 mono_arch_flush_icache (code - 4, 4);
7131         } else {
7132                 int dreg = ARMREG_LR;
7133
7134                 /* Read from another trigger page */
7135                 ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
7136                 ARM_B (code, 0);
7137                 *(int*)code = (int)bp_trigger_page;
7138                 code += 4;
7139                 ARM_LDR_IMM (code, dreg, dreg, 0);
7140
7141                 mono_arch_flush_icache (code - 16, 16);
7142
7143 #if 0
7144                 /* This is currently implemented by emitting an SWI instruction, which 
7145                  * qemu/linux seems to convert to a SIGILL.
7146                  */
7147                 *(int*)code = (0xef << 24) | 8;
7148                 code += 4;
7149                 mono_arch_flush_icache (code - 4, 4);
7150 #endif
7151         }
7152 }
7153
7154 /*
7155  * mono_arch_clear_breakpoint:
7156  *
7157  *   Clear the breakpoint at IP.
7158  */
7159 void
7160 mono_arch_clear_breakpoint (MonoJitInfo *ji, guint8 *ip)
7161 {
7162         MonoDebugOptions *opt = mini_get_debug_options ();
7163         guint8 *code = ip;
7164         int i;
7165
7166         if (ji->from_aot) {
7167                 guint32 native_offset = ip - (guint8*)ji->code_start;
7168                 SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start);
7169
7170                 if (!breakpoint_tramp)
7171                         breakpoint_tramp = mini_get_breakpoint_trampoline ();
7172
7173                 g_assert (native_offset % 4 == 0);
7174                 g_assert (info->bp_addrs [native_offset / 4] == (opt->soft_breakpoints ? breakpoint_tramp : bp_trigger_page));
7175                 info->bp_addrs [native_offset / 4] = 0;
7176         } else if (opt->soft_breakpoints) {
7177                 code += 4;
7178                 ARM_NOP (code);
7179                 mono_arch_flush_icache (code - 4, 4);
7180         } else {
7181                 for (i = 0; i < 4; ++i)
7182                         ARM_NOP (code);
7183
7184                 mono_arch_flush_icache (ip, code - ip);
7185         }
7186 }
7187         
7188 /*
7189  * mono_arch_start_single_stepping:
7190  *
7191  *   Start single stepping.
7192  */
7193 void
7194 mono_arch_start_single_stepping (void)
7195 {
7196         if (ss_trigger_page)
7197                 mono_mprotect (ss_trigger_page, mono_pagesize (), 0);
7198         else
7199                 single_step_tramp = mini_get_single_step_trampoline ();
7200 }
7201         
7202 /*
7203  * mono_arch_stop_single_stepping:
7204  *
7205  *   Stop single stepping.
7206  */
7207 void
7208 mono_arch_stop_single_stepping (void)
7209 {
7210         if (ss_trigger_page)
7211                 mono_mprotect (ss_trigger_page, mono_pagesize (), MONO_MMAP_READ);
7212         else
7213                 single_step_tramp = NULL;
7214 }
7215
7216 #if __APPLE__
7217 #define DBG_SIGNAL SIGBUS
7218 #else
7219 #define DBG_SIGNAL SIGSEGV
7220 #endif
7221
7222 /*
7223  * mono_arch_is_single_step_event:
7224  *
7225  *   Return whenever the machine state in SIGCTX corresponds to a single
7226  * step event.
7227  */
7228 gboolean
7229 mono_arch_is_single_step_event (void *info, void *sigctx)
7230 {
7231         siginfo_t *sinfo = info;
7232
7233         if (!ss_trigger_page)
7234                 return FALSE;
7235
7236         /* Sometimes the address is off by 4 */
7237         if (sinfo->si_addr >= ss_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)ss_trigger_page + 128)
7238                 return TRUE;
7239         else
7240                 return FALSE;
7241 }
7242
7243 /*
7244  * mono_arch_is_breakpoint_event:
7245  *
7246  *   Return whenever the machine state in SIGCTX corresponds to a breakpoint event.
7247  */
7248 gboolean
7249 mono_arch_is_breakpoint_event (void *info, void *sigctx)
7250 {
7251         siginfo_t *sinfo = info;
7252
7253         if (!ss_trigger_page)
7254                 return FALSE;
7255
7256         if (sinfo->si_signo == DBG_SIGNAL) {
7257                 /* Sometimes the address is off by 4 */
7258                 if (sinfo->si_addr >= bp_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)bp_trigger_page + 128)
7259                         return TRUE;
7260                 else
7261                         return FALSE;
7262         } else {
7263                 return FALSE;
7264         }
7265 }
7266
7267 /*
7268  * mono_arch_skip_breakpoint:
7269  *
7270  *   See mini-amd64.c for docs.
7271  */
7272 void
7273 mono_arch_skip_breakpoint (MonoContext *ctx, MonoJitInfo *ji)
7274 {
7275         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
7276 }
7277
7278 /*
7279  * mono_arch_skip_single_step:
7280  *
7281  *   See mini-amd64.c for docs.
7282  */
7283 void
7284 mono_arch_skip_single_step (MonoContext *ctx)
7285 {
7286         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
7287 }
7288
7289 #endif /* MONO_ARCH_SOFT_DEBUG_SUPPORTED */
7290
7291 /*
7292  * mono_arch_get_seq_point_info:
7293  *
7294  *   See mini-amd64.c for docs.
7295  */
7296 gpointer
7297 mono_arch_get_seq_point_info (MonoDomain *domain, guint8 *code)
7298 {
7299         SeqPointInfo *info;
7300         MonoJitInfo *ji;
7301
7302         // FIXME: Add a free function
7303
7304         mono_domain_lock (domain);
7305         info = g_hash_table_lookup (domain_jit_info (domain)->arch_seq_points, 
7306                                                                 code);
7307         mono_domain_unlock (domain);
7308
7309         if (!info) {
7310                 ji = mono_jit_info_table_find (domain, (char*)code);
7311                 g_assert (ji);
7312
7313                 info = g_malloc0 (sizeof (SeqPointInfo) + ji->code_size);
7314
7315                 info->ss_trigger_page = ss_trigger_page;
7316                 info->bp_trigger_page = bp_trigger_page;
7317                 info->ss_tramp_addr = &single_step_tramp;
7318
7319                 mono_domain_lock (domain);
7320                 g_hash_table_insert (domain_jit_info (domain)->arch_seq_points,
7321                                                          code, info);
7322                 mono_domain_unlock (domain);
7323         }
7324
7325         return info;
7326 }
7327
7328 void
7329 mono_arch_init_lmf_ext (MonoLMFExt *ext, gpointer prev_lmf)
7330 {
7331         ext->lmf.previous_lmf = prev_lmf;
7332         /* Mark that this is a MonoLMFExt */
7333         ext->lmf.previous_lmf = (gpointer)(((gssize)ext->lmf.previous_lmf) | 2);
7334         ext->lmf.sp = (gssize)ext;
7335 }
7336
7337 /*
7338  * mono_arch_set_target:
7339  *
7340  *   Set the target architecture the JIT backend should generate code for, in the form
7341  * of a GNU target triplet. Only used in AOT mode.
7342  */
7343 void
7344 mono_arch_set_target (char *mtriple)
7345 {
7346         /* The GNU target triple format is not very well documented */
7347         if (strstr (mtriple, "armv7")) {
7348                 v5_supported = TRUE;
7349                 v6_supported = TRUE;
7350                 v7_supported = TRUE;
7351         }
7352         if (strstr (mtriple, "armv6")) {
7353                 v5_supported = TRUE;
7354                 v6_supported = TRUE;
7355         }
7356         if (strstr (mtriple, "armv7s")) {
7357                 v7s_supported = TRUE;
7358         }
7359         if (strstr (mtriple, "armv7k")) {
7360                 v7k_supported = TRUE;
7361         }
7362         if (strstr (mtriple, "thumbv7s")) {
7363                 v5_supported = TRUE;
7364                 v6_supported = TRUE;
7365                 v7_supported = TRUE;
7366                 v7s_supported = TRUE;
7367                 thumb_supported = TRUE;
7368                 thumb2_supported = TRUE;
7369         }
7370         if (strstr (mtriple, "darwin") || strstr (mtriple, "ios")) {
7371                 v5_supported = TRUE;
7372                 v6_supported = TRUE;
7373                 thumb_supported = TRUE;
7374                 iphone_abi = TRUE;
7375         }
7376         if (strstr (mtriple, "gnueabi"))
7377                 eabi_supported = TRUE;
7378 }
7379
7380 gboolean
7381 mono_arch_opcode_supported (int opcode)
7382 {
7383         switch (opcode) {
7384         case OP_ATOMIC_ADD_I4:
7385         case OP_ATOMIC_EXCHANGE_I4:
7386         case OP_ATOMIC_CAS_I4:
7387         case OP_ATOMIC_LOAD_I1:
7388         case OP_ATOMIC_LOAD_I2:
7389         case OP_ATOMIC_LOAD_I4:
7390         case OP_ATOMIC_LOAD_U1:
7391         case OP_ATOMIC_LOAD_U2:
7392         case OP_ATOMIC_LOAD_U4:
7393         case OP_ATOMIC_STORE_I1:
7394         case OP_ATOMIC_STORE_I2:
7395         case OP_ATOMIC_STORE_I4:
7396         case OP_ATOMIC_STORE_U1:
7397         case OP_ATOMIC_STORE_U2:
7398         case OP_ATOMIC_STORE_U4:
7399                 return v7_supported;
7400         case OP_ATOMIC_LOAD_R4:
7401         case OP_ATOMIC_LOAD_R8:
7402         case OP_ATOMIC_STORE_R4:
7403         case OP_ATOMIC_STORE_R8:
7404                 return v7_supported && IS_VFP;
7405         default:
7406                 return FALSE;
7407         }
7408 }
7409
7410 CallInfo*
7411 mono_arch_get_call_info (MonoMemPool *mp, MonoMethodSignature *sig)
7412 {
7413         return get_call_info (mp, sig);
7414 }
7415
7416 gpointer
7417 mono_arch_get_get_tls_tramp (void)
7418 {
7419         return NULL;
7420 }
7421
7422 static guint8*
7423 emit_aotconst (MonoCompile *cfg, guint8 *code, int dreg, int patch_type, gpointer data)
7424 {
7425         /* OP_AOTCONST */
7426         mono_add_patch_info (cfg, code - cfg->native_code, patch_type, data);
7427         ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
7428         ARM_B (code, 0);
7429         *(gpointer*)code = NULL;
7430         code += 4;
7431         /* Load the value from the GOT */
7432         ARM_LDR_REG_REG (code, dreg, ARMREG_PC, dreg);
7433         return code;
7434 }
7435
7436 guint8*
7437 mono_arm_emit_aotconst (gpointer ji_list, guint8 *code, guint8 *buf, int dreg, int patch_type, gconstpointer data)
7438 {
7439         MonoJumpInfo **ji = (MonoJumpInfo**)ji_list;
7440
7441         *ji = mono_patch_info_list_prepend (*ji, code - buf, patch_type, data);
7442         ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
7443         ARM_B (code, 0);
7444         *(gpointer*)code = NULL;
7445         code += 4;
7446         ARM_LDR_REG_REG (code, dreg, ARMREG_PC, dreg);
7447         return code;
7448 }