2006-09-26 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / mini / mini.h
1 #ifndef __MONO_MINI_H__
2 #define __MONO_MINI_H__
3
4 #include "config.h"
5 #include <glib.h>
6 #include <signal.h>
7 #include <mono/metadata/loader.h>
8 #include <mono/metadata/mempool.h>
9 #include <mono/utils/monobitset.h>
10 #include <mono/metadata/class.h>
11 #include <mono/metadata/object.h>
12 #include <mono/metadata/opcodes.h>
13 #include <mono/metadata/tabledefs.h>
14 #include <mono/metadata/domain-internals.h>
15 #include "mono/metadata/class-internals.h"
16 #include "mono/metadata/object-internals.h"
17 #include <mono/metadata/profiler-private.h>
18 #include <mono/utils/mono-compiler.h>
19
20 #include "mini-arch.h"
21 #include "regalloc.h"
22 #include "declsec.h"
23
24 #ifndef G_LIKELY
25 #define G_LIKELY(a) (a)
26 #define G_UNLIKELY(a) (a)
27 #endif
28
29 #if DISABLE_LOGGING
30 #define MINI_DEBUG(level,limit,code)
31 #else
32 #define MINI_DEBUG(level,limit,code) do {if (G_UNLIKELY ((level) >= (limit))) code} while (0)
33 #endif
34
35 #ifndef DISABLE_AOT
36 #define MONO_USE_AOT_COMPILER
37 #endif
38
39 /* for 32 bit systems */
40 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
41 #define MINI_LS_WORD_OFFSET 0
42 #define MINI_MS_WORD_OFFSET 4
43 #define inst_ls_word data.op[0].const_val
44 #define inst_ms_word data.op[1].const_val
45 #else
46 #define MINI_LS_WORD_OFFSET 4
47 #define MINI_MS_WORD_OFFSET 0
48 #define inst_ls_word data.op[1].const_val
49 #define inst_ms_word data.op[0].const_val
50 #endif
51
52 /* Version number of the AOT file format */
53 #define MONO_AOT_FILE_VERSION "29"
54
55 #if 0
56 #define mono_bitset_foreach_bit(set,b,n) \
57         for (b = 0; b < n; b++)\
58                 if (mono_bitset_test_fast(set,b))
59 #define mono_bitset_foreach_bit_rev(set,b,n) \
60         for (b = n - 1; b >= 0; b--)\
61                 if (mono_bitset_test_fast(set,b))
62 #else
63 #define mono_bitset_foreach_bit(set,b,n) \
64         for (b = mono_bitset_find_start (set); b < n && b >= 0; b = mono_bitset_find_first (set, b))
65 #define mono_bitset_foreach_bit_rev(set,b,n) \
66         for (b = mono_bitset_find_last (set, n - 1); b >= 0; b = b ? mono_bitset_find_last (set, b) : -1)
67  
68 #endif
69
70 /*
71  * Pull the list of opcodes
72  */
73 #define OPDEF(a,b,c,d,e,f,g,h,i,j) \
74         a = i,
75
76 enum {
77 #include "mono/cil/opcode.def"
78         CEE_LASTOP
79 };
80 #undef OPDEF
81
82 #define MONO_VARINFO(cfg,varnum) ((cfg)->vars [varnum])
83
84 #define MONO_INST_NEW(cfg,dest,op) do { \
85                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoInst));       \
86                 (dest)->opcode = (op);  \
87         } while (0)
88
89 #define MONO_INST_NEW_CALL(cfg,dest,op) do {    \
90                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoCallInst));   \
91                 (dest)->inst.opcode = (op);     \
92         } while (0)
93
94 #define MONO_INST_NEW_CALL_ARG(cfg,dest,op) do {        \
95                 (dest) = mono_mempool_alloc0 ((cfg)->mempool, sizeof (MonoCallArgParm));        \
96                 (dest)->ins.opcode = (op);      \
97         } while (0)
98
99 #define MONO_ADD_INS(b,inst) do {       \
100                 if ((b)->last_ins) {    \
101                         (b)->last_ins->next = (inst);   \
102                         (b)->last_ins = (inst); \
103                 } else {        \
104                         (b)->code = (b)->last_ins = (inst);     \
105                 }       \
106         } while (0)
107
108 typedef struct MonoInst MonoInst;
109 typedef struct MonoCallInst MonoCallInst;
110 typedef struct MonoCallArgParm MonoCallArgParm;
111 typedef struct MonoEdge MonoEdge;
112 typedef struct MonoMethodVar MonoMethodVar;
113 typedef struct MonoBasicBlock MonoBasicBlock;
114 typedef struct MonoLMF MonoLMF;
115 typedef struct MonoSpillInfo MonoSpillInfo;
116 typedef struct MonoTraceSpec MonoTraceSpec;
117
118 extern guint32 mono_jit_tls_id;
119 extern MonoTraceSpec *mono_jit_trace_calls;
120 extern gboolean mono_break_on_exc;
121 extern int mono_exc_esp_offset;
122 #ifdef DISABLE_AOT
123 #define mono_compile_aot 0
124 #else
125 extern gboolean mono_compile_aot;
126 #endif
127 extern gboolean mono_use_security_manager;
128
129 struct MonoEdge {
130         MonoEdge *next;
131         MonoBasicBlock *bb;
132         /* add edge type? */
133 };
134
135 struct MonoSpillInfo {
136 #ifndef MONO_ARCH_HAS_XP_REGALLOC
137         MonoSpillInfo *next;
138 #endif
139         int offset;
140 };
141
142 /*
143  * This structure contains the information maintained by the verifier for each CIL
144  * stack slot. This information is also available in MonoInst, but the verifier needs to
145  * update the type information during stack merges, which could lead to problems if done
146  * on MonoInsts, so we use a dedicated structure instead.
147  */
148 typedef struct {
149         int type;
150         MonoClass *klass;
151 } MonoStackSlot;
152
153 /*
154  * The IR-level basic block.  
155  *
156  * A basic block can have multiple exits just fine, as long as the point of
157  * 'departure' is the last instruction in the basic block. Extended basic
158  * blocks, on the other hand, may have instructions that leave the block
159  * midstream. The important thing is that they cannot be _entered_
160  * midstream, ie, execution of a basic block (or extened bb) always start
161  * at the beginning of the block, never in the middle.
162  */
163 struct MonoBasicBlock {
164         MonoInst *last_ins;
165
166         /* the next basic block in the order it appears in IL */
167         MonoBasicBlock *next_bb;
168
169         /*
170          * Before instruction selection it is the first tree in the
171          * forest and the first item in the list of trees. After
172          * instruction selection it is the first instruction and the
173          * first item in the list of instructions.
174          */
175         MonoInst *code;
176
177         /* unique block number identification */
178         gint32 block_num;
179         
180         gint32 dfn;
181
182         /* Basic blocks: incoming and outgoing counts and pointers */
183         /* Each bb should only appear once in each array */
184         gint16 out_count, in_count;
185         MonoBasicBlock **in_bb;
186         MonoBasicBlock **out_bb;
187
188         /* Points to the start of the CIL code that initiated this BB */
189         unsigned char* cil_code;
190
191         /* Length of the CIL block */
192         gint32 cil_length;
193
194         /* The address of the generated code, used for fixups */
195         int native_offset;
196         int max_offset;
197
198         /* Visited and reachable flags */
199         guint32 flags;
200
201         /*
202          * SSA and loop based flags
203          */
204         MonoBitSet *dominators;
205         MonoBitSet *dfrontier;
206         MonoBasicBlock *idom;
207         GList *dominated;
208         /* fast dominator algorithm */
209         MonoBasicBlock *df_parent, *ancestor, *child, *label;
210         MonoEdge *bucket;
211         int size, sdom, idomn;
212         
213         /* loop nesting and recognition */
214         GList *loop_blocks;
215         gint8  nesting;
216         gint8  loop_body_start;
217
218         /* 
219          * Whenever the bblock is rarely executed so it should be emitted after
220          * the function epilog.
221          */
222         guint out_of_line : 1;
223         /* Caches the result of uselessness calculation during optimize_branches */
224         guint not_useless : 1;
225
226         /* use for liveness analysis */
227         MonoBitSet *gen_set;
228         MonoBitSet *kill_set;
229         MonoBitSet *live_in_set;
230         MonoBitSet *live_out_set;
231
232         /* fields to deal with non-empty stack slots at bb boundary */
233         guint16 out_scount, in_scount;
234         MonoInst **out_stack;
235         MonoInst **in_stack;
236         MonoStackSlot *stack_state; /* Verification stack state on enter to bblock */
237
238         /* we use that to prevent merging of bblock covered by different clauses*/
239         guint real_offset;
240
241         /*
242          * The region encodes whether the basic block is inside
243          * a finally, catch, filter or none of thoese.
244          *
245          * If the value is -1, then it is neither finally, catch nor filter
246          *
247          * Otherwise the format is:
248          *
249          *  Bits: |     0-3      |       4-7      |     8-31
250          *        |              |                |
251          *        | clause-flags |   MONO_REGION  | clause-index 
252          *
253          */
254         guint region;
255
256         /* The current symbolic register number, used in local register allocation. */
257         guint32 max_ireg, max_freg;
258 };
259
260 /* BBlock flags */
261 enum {
262         BB_VISITED            = 1 << 0,
263         BB_REACHABLE          = 1 << 1,
264         BB_EXCEPTION_DEAD_OBJ = 1 << 2,
265         BB_EXCEPTION_UNSAFE   = 1 << 3,
266         BB_EXCEPTION_HANDLER  = 1 << 4
267 };
268
269 struct MonoInst {
270         union {
271                 union {
272                         MonoInst *src;
273                         MonoMethodVar *var;
274                         gssize const_val;
275                         gpointer p;
276                         MonoMethod *method;
277                         MonoMethodSignature *signature;
278                         MonoBasicBlock **many_blocks;
279                         MonoBasicBlock *target_block;
280                         MonoInst **args;
281                         MonoType *vtype;
282                         MonoClass *klass;
283                         int *phi_args;
284                 } op [2];
285                 gint64 i8const;
286                 double r8const;
287         } data;
288         guint16 opcode;
289         guint8  type; /* stack type */
290         guint   ssa_op : 3;
291         guint8  flags  : 5;
292         
293         /* used by the register allocator */
294         gint32 dreg, sreg1, sreg2;
295         /* used mostly by the backend to store additional info it may need */
296         /* keep this <= 32 bits long */
297         union {
298                 gint32 reg3;
299                 gint32 arg_info;
300                 gint32 size; /* in OP_MEMSET and OP_MEMCPY */
301                 gint shift_amount;
302                 gboolean is_pinvoke; /* for variables in the unmanaged marshal format */
303         } backend;
304         
305         MonoInst *next;
306         MonoClass *klass;
307         const unsigned char* cil_code; /* for debugging and bblock splitting */
308 };
309         
310 struct MonoCallInst {
311         MonoInst inst;
312         MonoMethodSignature *signature;
313         MonoMethod *method;
314         MonoInst **args;
315         MonoInst *out_args;
316         gconstpointer fptr;
317         guint stack_usage;
318         gboolean virtual;
319         regmask_t used_iregs;
320         regmask_t used_fregs;
321 #if defined(MONO_ARCH_HAS_XP_LOCAL_REGALLOC)
322         GSList *out_ireg_args;
323         GSList *out_freg_args;
324 #endif
325 };
326
327 struct MonoCallArgParm {
328         MonoInst ins;
329         gint32 size;
330         gint32 offset;
331         gint32 offPrm;
332 };
333
334 /* 
335  * flags for MonoInst
336  * Note: some of the values overlap, because they can't appear
337  * in the same MonoInst.
338  */
339 enum {
340         MONO_INST_HAS_METHOD = 1,
341         /* temp local created by a DUP: used only within a BB */
342         MONO_INST_IS_TEMP    = 1,
343         MONO_INST_INIT       = 1, /* in localloc */
344         MONO_INST_IS_DEAD    = 2,
345         MONO_INST_TAILCALL   = 4,
346         MONO_INST_VOLATILE   = 4,
347         MONO_INST_BRLABEL    = 4,
348         MONO_INST_NOTYPECHECK    = 4,
349         MONO_INST_UNALIGNED  = 8,
350         MONO_INST_DEFINITION_HAS_SIDE_EFFECTS = 8,
351         /* the address of the variable has been taken */
352         MONO_INST_INDIRECT   = 16,
353         MONO_INST_NORANGECHECK   = 16
354 };
355
356 #define inst_c0 data.op[0].const_val
357 #define inst_c1 data.op[1].const_val
358 #define inst_i0 data.op[0].src
359 #define inst_i1 data.op[1].src
360 #define inst_p0 data.op[0].p
361 #define inst_p1 data.op[1].p
362 #define inst_l  data.i8const
363 #define inst_r  data.r8const
364 #define inst_left  data.op[0].src
365 #define inst_right data.op[1].src
366
367 #define inst_newa_len   data.op[0].src
368 #define inst_newa_class data.op[1].klass
369
370 #define inst_var    data.op[0].var
371 #define inst_vtype  data.op[1].vtype
372 /* in branch instructions */
373 #define inst_many_bb   data.op[1].many_blocks
374 #define inst_target_bb data.op[0].target_block
375 #define inst_true_bb   data.op[1].many_blocks[0]
376 #define inst_false_bb  data.op[1].many_blocks[1]
377
378 #define inst_basereg sreg1
379 #define inst_indexreg sreg2
380 #define inst_destbasereg dreg
381 #define inst_offset data.op[0].const_val
382 #define inst_imm    data.op[1].const_val
383
384 #define inst_phi_args   data.op[1].phi_args
385
386 /* instruction description for use in regalloc/scheduling */
387 enum {
388         MONO_INST_DEST,
389         MONO_INST_SRC1,
390         MONO_INST_SRC2,
391         MONO_INST_FLAGS,
392         MONO_INST_CLOB,
393         MONO_INST_COST,
394         MONO_INST_DELAY,
395         MONO_INST_RES,
396         MONO_INST_LEN,
397         MONO_INST_MAX
398 };
399
400 typedef union {
401         struct {
402                 guint16 tid; /* tree number */
403                 guint16 bid; /* block number */
404         } pos ;
405         guint32 abs_pos; 
406 } MonoPosition;
407
408 typedef struct {
409         MonoPosition first_use, last_use;
410 } MonoLiveRange;
411
412 /*
413  * Additional information about a variable
414  */
415 struct MonoMethodVar {
416         guint           idx; /* inside cfg->varinfo, cfg->vars */
417         guint           last_name;
418         MonoBitSet     *dfrontier;
419         MonoLiveRange   range; /* generated by liveness analysis */
420         int             reg; /* != -1 if allocated into a register */
421         int             spill_costs;
422         MonoBitSet     *def_in; /* used by SSA */
423         MonoInst       *def;    /* used by SSA */
424         MonoBasicBlock *def_bb; /* used by SSA */
425         GList          *uses;   /* used by SSA */
426         char            cpstate;  /* used by SSA conditional  constant propagation */
427 };
428
429 typedef struct {
430         gpointer          end_of_stack;
431         guint32           stack_size;
432         MonoLMF          *lmf;
433         MonoLMF          *first_lmf;
434         gpointer         signal_stack;
435         guint32          signal_stack_size;
436         void            (*abort_func) (MonoObject *object);
437 } MonoJitTlsData;
438
439 typedef enum {
440         MONO_PATCH_INFO_BB,
441         MONO_PATCH_INFO_ABS,
442         MONO_PATCH_INFO_LABEL,
443         MONO_PATCH_INFO_METHOD,
444         MONO_PATCH_INFO_METHOD_JUMP,
445         MONO_PATCH_INFO_METHOD_REL,
446         MONO_PATCH_INFO_METHODCONST,
447         MONO_PATCH_INFO_INTERNAL_METHOD,
448         MONO_PATCH_INFO_SWITCH,
449         MONO_PATCH_INFO_EXC,
450         MONO_PATCH_INFO_EXC_NAME,
451         MONO_PATCH_INFO_CLASS,
452         MONO_PATCH_INFO_IMAGE,
453         MONO_PATCH_INFO_FIELD,
454         MONO_PATCH_INFO_VTABLE,
455         MONO_PATCH_INFO_CLASS_INIT,
456         MONO_PATCH_INFO_SFLDA,
457         MONO_PATCH_INFO_LDSTR,
458         MONO_PATCH_INFO_LDTOKEN,
459         MONO_PATCH_INFO_TYPE_FROM_HANDLE,
460         MONO_PATCH_INFO_R4,
461         MONO_PATCH_INFO_R8,
462         MONO_PATCH_INFO_IP,
463         MONO_PATCH_INFO_IID,
464         MONO_PATCH_INFO_ADJUSTED_IID,
465         MONO_PATCH_INFO_BB_OVF,
466         MONO_PATCH_INFO_EXC_OVF,
467         MONO_PATCH_INFO_WRAPPER,
468         MONO_PATCH_INFO_GOT_OFFSET,
469         MONO_PATCH_INFO_DECLSEC,
470         MONO_PATCH_INFO_NONE
471 } MonoJumpInfoType;
472
473 /*
474  * We need to store the image which the token refers to along with the token,
475  * since the image might not be the same as the image of the method which
476  * contains the relocation, because of inlining.
477  */
478 typedef struct MonoJumpInfoToken {
479         MonoImage *image;
480         guint32 token;
481 } MonoJumpInfoToken;
482
483 typedef struct MonoJumpInfoBBTable {
484         MonoBasicBlock **table;
485         int table_size;
486 } MonoJumpInfoBBTable;
487
488 typedef struct MonoJumpInfo MonoJumpInfo;
489 struct MonoJumpInfo {
490         MonoJumpInfo *next;
491         union {
492                 int i;
493                 guint8 *p;
494                 MonoInst *label;
495         } ip;
496
497         MonoJumpInfoType type;
498         union {
499                 gconstpointer   target;
500 #if SIZEOF_VOID_P == 8
501                 gint64          offset;
502 #else
503                 int             offset;
504 #endif
505                 MonoBasicBlock *bb;
506                 MonoInst       *inst;
507                 MonoMethod     *method;
508                 MonoClass      *klass;
509                 MonoClassField *field;
510                 MonoImage      *image;
511                 MonoVTable     *vtable;
512                 const char     *name;
513                 MonoJumpInfoToken  *token;
514                 MonoJumpInfoBBTable *table;
515         } data;
516 };
517
518 typedef enum {
519         MONO_TRAMPOLINE_GENERIC,
520         MONO_TRAMPOLINE_JUMP,
521         MONO_TRAMPOLINE_CLASS_INIT,
522         MONO_TRAMPOLINE_AOT,
523         MONO_TRAMPOLINE_AOT_PLT,
524         MONO_TRAMPOLINE_DELEGATE,
525         MONO_TRAMPOLINE_NUM
526 } MonoTrampolineType;
527
528 /* optimization flags */
529 #define OPTFLAG(id,shift,name,descr) MONO_OPT_ ## id = 1 << shift,
530 enum {
531 #include "optflags-def.h"
532         MONO_OPT_LAST
533 };
534
535 /* Bit-fields in the MonoBasicBlock.region */
536 #define MONO_REGION_TRY       0
537 #define MONO_REGION_FINALLY  16
538 #define MONO_REGION_CATCH    32
539 #define MONO_REGION_FAULT    64         /* Currently unused */
540 #define MONO_REGION_FILTER  128
541
542 #define MONO_BBLOCK_IS_IN_REGION(bblock, regtype) (((bblock)->region & (0xf << 4)) == (regtype))
543
544 /*
545  * Control Flow Graph and compilation unit information
546  */
547 typedef struct {
548         MonoMethod      *method;
549         MonoMemPool     *mempool;
550         MonoInst       **varinfo;
551         MonoMethodVar  **vars;
552         MonoInst        *ret;
553         MonoBasicBlock  *bb_entry;
554         MonoBasicBlock  *bb_exit;
555         MonoBasicBlock  *bb_init;
556         MonoBasicBlock **bblocks;
557         GHashTable      *bb_hash;
558         MonoMemPool     *state_pool; /* used by instruction selection */
559         MonoBasicBlock  *cbb;        /* used by instruction selection */
560         MonoInst        *prev_ins;   /* in decompose */
561         MonoJumpInfo    *patch_info;
562         MonoJitInfo     *jit_info;
563         MonoJitDynamicMethodInfo *dynamic_info;
564         guint            num_bblocks;
565         guint            locals_start;
566         guint            num_varinfo; /* used items in varinfo */
567         guint            varinfo_count; /* total storage in varinfo */
568         gint             stack_offset;
569         gint             max_ireg;
570         MonoRegState    *rs;
571         MonoSpillInfo   *spill_info; /* machine register spills */
572         MonoSpillInfo   *spill_info_float; /* fp register spills */
573         gint             spill_count;
574         gint             spill_info_len, spill_info_float_len;
575         /* unsigned char   *cil_code; */
576         MonoMethod      *inlined_method; /* the method which is currently inlined */
577         MonoInst        *domainvar; /* a cache for the current domain */
578         MonoInst        *got_var; /* Global Offset Table variable */
579         
580         struct MonoAliasingInformation *aliasing_info;
581
582         /* A hashtable of region ID-> SP var mappings */
583         /* An SP var is a place to store the stack pointer (used by handlers)*/
584         GHashTable      *spvars;
585
586         /* A hashtable of region ID -> EX var mappings */
587         /* An EX var stores the exception object passed to catch/filter blocks */
588         GHashTable      *exvars;
589
590         GList           *ldstr_list; /* used by AOT */
591         
592         MonoDomain      *domain;
593
594         unsigned char   *native_code;
595         guint            code_size;
596         guint            code_len;
597         guint            prolog_end;
598         guint            epilog_begin;
599         regmask_t        used_int_regs;
600         guint32          opt;
601         guint32          prof_options;
602         guint32          flags;
603         guint32          comp_done;
604         guint32          verbose_level;
605         guint32          stack_usage;
606         guint32          param_area;
607         guint32          frame_reg;
608         gint32           sig_cookie;
609         guint            disable_aot : 1;
610         guint            disable_ssa : 1;
611         guint            run_cctors : 1;
612         guint            need_lmf_area : 1;
613         guint            compile_aot : 1;
614         guint            got_var_allocated : 1;
615         guint            ret_var_is_local : 1;
616         guint            dont_verify_stack_merge : 1;
617         guint            unverifiable : 1;
618         guint            skip_visibility : 1;
619         gpointer         debug_info;
620         guint32          lmf_offset;
621         guint16          *intvars;
622         MonoProfileCoverageInfo *coverage_info;
623         MonoCompileArch  arch;
624         guint32          exception_type;        /* MONO_EXCEPTION_* */
625         guint32          exception_data;
626         char*            exception_message;
627
628         /* Fields used by the local reg allocator */
629         void*            reginfo;
630         void*            reginfof;
631         void*            reverse_inst_list;
632         int              reginfo_len, reginfof_len;
633         int              reverse_inst_list_len;
634 } MonoCompile;
635
636 typedef enum {
637         MONO_CFG_HAS_ALLOCA = 1 << 0,
638         MONO_CFG_HAS_CALLS  = 1 << 1,
639         MONO_CFG_HAS_LDELEMA  = 1 << 2,
640         MONO_CFG_HAS_VARARGS  = 1 << 3,
641         MONO_CFG_HAS_TAIL     = 1 << 4,
642         MONO_CFG_HAS_FPOUT    = 1 << 5, /* there are fp values passed in int registers */
643         MONO_CFG_HAS_SPILLUP  = 1 << 6  /* spill var slots are allocated from bottom to top */
644 } MonoCompileFlags;
645
646 typedef struct {
647         gulong methods_compiled;
648         gulong methods_aot;
649         gulong methods_lookups;
650         gulong method_trampolines;
651         gulong allocate_var;
652         gulong analyze_stack_repeat;
653         gulong cil_code_size;
654         gulong native_code_size;
655         gulong code_reallocs;
656         gulong max_code_size_ratio;
657         gulong biggest_method_size;
658         gulong allocated_code_size;
659         gulong inlineable_methods;
660         gulong inlined_methods;
661         gulong basic_blocks;
662         gulong max_basic_blocks;
663         gulong cas_declsec_check;
664         gulong cas_linkdemand_icall;
665         gulong cas_linkdemand_pinvoke;
666         gulong cas_linkdemand_aptc;
667         gulong cas_linkdemand;
668         gulong cas_demand_generation;
669         MonoMethod *max_ratio_method;
670         MonoMethod *biggest_method;
671         gboolean enabled;
672 } MonoJitStats;
673
674 extern MonoJitStats mono_jit_stats;
675
676 /* values for MonoInst.ssa_op */
677 enum {
678         MONO_SSA_NOP = 0,
679         MONO_SSA_ADDRESS_TAKEN = 1,
680         MONO_SSA_LOAD = 2,
681         MONO_SSA_STORE = 4,
682         MONO_SSA_LOAD_STORE = MONO_SSA_LOAD|MONO_SSA_STORE,
683         MONO_SSA_INDIRECT_LOAD = MONO_SSA_LOAD|MONO_SSA_ADDRESS_TAKEN,
684         MONO_SSA_INDIRECT_STORE = MONO_SSA_STORE|MONO_SSA_ADDRESS_TAKEN,
685         MONO_SSA_INDIRECT_LOAD_STORE =
686         MONO_SSA_LOAD|MONO_SSA_STORE|MONO_SSA_ADDRESS_TAKEN
687 };
688
689 #define OP_CEQ    (256+CEE_CEQ)
690 #define OP_CLT    (256+CEE_CLT)
691 #define OP_CLT_UN (256+CEE_CLT_UN)
692 #define OP_CGT    (256+CEE_CGT)
693 #define OP_CGT_UN (256+CEE_CGT_UN)
694 #define OP_LOCALLOC (256+CEE_LOCALLOC)
695
696 /* opcodes: value assigned after all the CIL opcodes */
697 #ifdef MINI_OP
698 #undef MINI_OP
699 #endif
700 #define MINI_OP(a,b) a,
701 enum {
702         OP_START = MONO_CEE_LAST,
703 #include "mini-ops.h"
704         OP_LAST
705 };
706 #undef MINI_OP
707
708 #if SIZEOF_VOID_P == 8
709 #define OP_PCONST OP_I8CONST
710 #define OP_PADD OP_LADD
711 #define OP_PNEG OP_LNEG
712 #define OP_PCONV_TO_U2 OP_LCONV_TO_U2
713 #define OP_PCONV_TO_OVF_I1_UN OP_LCONV_TO_OVF_I1_UN
714 #define OP_PCONV_TO_OVF_I1 OP_LCONV_TO_OVF_I1
715 #define OP_PCEQ CEE_CEQ
716 #define OP_STOREP_MEMBASE_REG OP_STOREI8_MEMBASE_REG
717 #define OP_STOREP_MEMBASE_IMM OP_STOREI8_MEMBASE_IMM
718 #else
719 #define OP_PCONST OP_ICONST
720 #define OP_PADD CEE_ADD
721 #define OP_PNEG CEE_NEG
722 #define OP_PCONV_TO_U2 CEE_CONV_U2
723 #define OP_PCONV_TO_OVF_I1_UN CEE_CONV_OVF_I1_UN
724 #define OP_PCONV_TO_OVF_I1 CEE_CONV_OVF_I1
725 #define OP_PCEQ CEE_CEQ
726 #define OP_STOREP_MEMBASE_REG OP_STOREI4_MEMBASE_REG
727 #define OP_STOREP_MEMBASE_IMM OP_STOREI4_MEMBASE_IMM
728 #endif
729
730 typedef enum {
731         STACK_INV,
732         STACK_I4,
733         STACK_I8,
734         STACK_PTR,
735         STACK_R8,
736         STACK_MP,
737         STACK_OBJ,
738         STACK_VTYPE,
739         STACK_MAX
740 } MonoStackType;
741
742 typedef struct {
743         union {
744                 double   r8;
745                 gint32   i4;
746                 gint64   i8;
747                 gpointer p;
748                 MonoClass *klass;
749         } data;
750         int type;
751 } StackSlot;
752
753 #if HAVE_ARRAY_ELEM_INIT
754 extern const guint8 mono_burg_arity [];
755 #else
756 extern guint8 mono_burg_arity [];
757 #endif
758
759 enum {
760         MONO_COMP_DOM = 1,
761         MONO_COMP_IDOM = 2,
762         MONO_COMP_DFRONTIER = 4,
763         MONO_COMP_DOM_REV = 8,
764         MONO_COMP_LIVENESS = 16,
765         MONO_COMP_SSA = 32,
766         MONO_COMP_SSA_DEF_USE = 64,
767         MONO_COMP_REACHABILITY = 128,
768         MONO_COMP_LOOPS = 256
769 };
770
771 typedef enum {
772         MONO_GRAPH_CFG = 1,
773         MONO_GRAPH_DTREE = 2,
774         MONO_GRAPH_CFG_CODE = 4,
775         MONO_GRAPH_CFG_SSA = 8,
776         MONO_GRAPH_CFG_OPTCODE = 16
777 } MonoGraphOptions;
778
779 typedef struct {
780         guint16 size;
781         guint16 offset;
782         guint8  pad;
783 } MonoJitArgumentInfo;
784
785 typedef struct {
786         gboolean handle_sigint;
787         gboolean keep_delegates;
788         gboolean collect_pagefault_stats;
789         gboolean break_on_unverified;
790 } MonoDebugOptions;
791
792 enum {
793         BRANCH_NOT_TAKEN,
794         BRANCH_TAKEN,
795         BRANCH_UNDEF
796 };
797
798 /* Implicit exceptions */
799 enum {
800         MONO_EXC_INDEX_OUT_OF_RANGE,
801         MONO_EXC_OVERFLOW,
802         MONO_EXC_ARITHMETIC,
803         MONO_EXC_DIVIDE_BY_ZERO,
804         MONO_EXC_INVALID_CAST,
805         MONO_EXC_NULL_REF,
806         MONO_EXC_ARRAY_TYPE_MISMATCH,
807         MONO_EXC_INTRINS_NUM
808 };
809
810 typedef void (*MonoInstFunc) (MonoInst *tree, gpointer data);
811
812 /* main function */
813 int         mono_main                      (int argc, char* argv[]);
814 void        mono_set_defaults              (int verbose_level, guint32 opts);
815 MonoDomain* mini_init                      (const char *filename);
816 void        mini_cleanup                   (MonoDomain *domain);
817
818 /* helper methods */
819 MonoJumpInfoToken * mono_jump_info_token_new (MonoMemPool *mp, MonoImage *image, guint32 token);
820 MonoInst* mono_find_spvar_for_region        (MonoCompile *cfg, int region);
821 void      mono_precompile_assemblies        (void);
822 int       mono_parse_default_optimizations  (const char* p);
823 void      mono_bblock_add_inst              (MonoBasicBlock *bb, MonoInst *inst);
824 void      mono_constant_fold                (MonoCompile *cfg);
825 void      mono_constant_fold_inst           (MonoInst *inst, gpointer data);
826 int       mono_eval_cond_branch             (MonoInst *branch);
827 int       mono_is_power_of_two              (guint32 val);
828 void      mono_cprop_local                  (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **acp, int acp_size);
829 MonoInst* mono_compile_create_var           (MonoCompile *cfg, MonoType *type, int opcode);
830 void      mono_compile_make_var_load        (MonoCompile *cfg, MonoInst *dest, gssize var_index);
831 MonoInst* mono_compile_create_var_load      (MonoCompile *cfg, gssize var_index);
832 MonoInst* mono_compile_create_var_store     (MonoCompile *cfg, gssize var_index, MonoInst *value);
833 MonoType* mono_type_from_stack_type         (MonoInst *ins);
834 void      mono_blockset_print               (MonoCompile *cfg, MonoBitSet *set, const char *name, guint idom);
835 void      mono_print_tree                   (MonoInst *tree);
836 void      mono_print_tree_nl                (MonoInst *tree);
837 void      mono_print_code                   (MonoCompile *cfg);
838 void      mono_print_method_from_ip         (void *ip);
839 char     *mono_pmip                         (void *ip);
840 void      mono_select_instructions          (MonoCompile *cfg);
841 const char* mono_inst_name                  (int op);
842 void      mono_inst_foreach                 (MonoInst *tree, MonoInstFunc func, gpointer data);
843 void      mono_disassemble_code             (MonoCompile *cfg, guint8 *code, int size, char *id);
844 void      mono_add_patch_info               (MonoCompile *cfg, int ip, MonoJumpInfoType type, gconstpointer target);
845 void      mono_remove_patch_info            (MonoCompile *cfg, int ip);
846 MonoJumpInfo* mono_patch_info_dup_mp        (MonoMemPool *mp, MonoJumpInfo *patch_info);
847 guint     mono_patch_info_hash (gconstpointer data);
848 gint      mono_patch_info_equal (gconstpointer ka, gconstpointer kb);
849 gpointer  mono_resolve_patch_target         (MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *patch_info, gboolean run_cctors);
850 MonoLMF** mono_get_lmf_addr                 (void);
851 void      mono_jit_thread_attach            (MonoDomain *domain);
852 guint32   mono_get_jit_tls_key              (void);
853 gint32    mono_get_lmf_tls_offset           (void);
854 GList    *mono_varlist_insert_sorted        (MonoCompile *cfg, GList *list, MonoMethodVar *mv, gboolean sort_end);
855 GList    *mono_varlist_sort                 (MonoCompile *cfg, GList *list, int sort_type);
856 void      mono_analyze_liveness             (MonoCompile *cfg);
857 void      mono_linear_scan                  (MonoCompile *cfg, GList *vars, GList *regs, regmask_t *used_mask);
858 void      mono_create_jump_table            (MonoCompile *cfg, MonoInst *label, MonoBasicBlock **bbs, int num_blocks);
859 int       mono_compile_assembly             (MonoAssembly *ass, guint32 opts, const char *aot_options);
860 MonoCompile *mini_method_compile            (MonoMethod *method, guint32 opts, MonoDomain *domain, gboolean run_cctors, gboolean compile_aot, int parts);
861 void      mono_destroy_compile              (MonoCompile *cfg);
862 MonoJitICallInfo *mono_find_jit_opcode_emulation (int opcode);
863
864
865 void      mono_aot_init                     (void);
866 MonoJitInfo*  mono_aot_get_method           (MonoDomain *domain,
867                                                                                          MonoMethod *method);
868 gpointer  mono_aot_get_method_from_token    (MonoDomain *domain, MonoImage *image, guint32 token);
869 gboolean  mono_aot_is_got_entry             (guint8 *code, guint8 *addr);
870 guint8*   mono_aot_get_plt_entry            (guint8 *code);
871 gboolean  mono_aot_init_vtable              (MonoVTable *vtable);
872 gboolean  mono_aot_get_cached_class_info    (MonoClass *klass, MonoCachedClassInfo *res);
873 gboolean  mono_aot_get_class_from_name      (MonoImage *image, const char *name_space, const char *name, MonoClass **klass);
874 MonoJitInfo* mono_aot_find_jit_info         (MonoDomain *domain, MonoImage *image, gpointer addr);
875 void mono_aot_set_make_unreadable           (gboolean unreadable);
876 gboolean mono_aot_is_pagefault              (void *ptr);
877 void mono_aot_handle_pagefault              (void *ptr);
878 guint32 mono_aot_get_n_pagefaults           (void);
879 gpointer mono_aot_plt_resolve               (gpointer aot_module, guint32 plt_info_offset, guint8 *code);
880
881 gboolean  mono_method_blittable             (MonoMethod *method);
882 gboolean  mono_method_same_domain           (MonoJitInfo *caller, MonoJitInfo *callee);
883
884 void      mono_register_opcode_emulation    (int opcode, const char* name, const char *sigstr, gpointer func, gboolean no_throw);
885 void      mono_draw_graph                   (MonoCompile *cfg, MonoGraphOptions draw_options);
886 void      mono_add_varcopy_to_end           (MonoCompile *cfg, MonoBasicBlock *bb, int src, int dest);
887 void      mono_add_ins_to_end               (MonoBasicBlock *bb, MonoInst *inst);
888 gpointer  mono_create_ftnptr                (MonoDomain *domain, gpointer addr);
889
890 int               mono_find_method_opcode      (MonoMethod *method);
891 MonoJitICallInfo *mono_find_jit_icall_by_name  (const char *name);
892 MonoJitICallInfo *mono_find_jit_icall_by_addr  (gconstpointer addr);
893 MonoJitICallInfo *mono_register_jit_icall      (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save);
894 gconstpointer     mono_icall_get_wrapper       (MonoJitICallInfo* callinfo);
895
896 guint8 *          mono_get_trampoline_code (MonoTrampolineType tramp_type);
897 gpointer          mono_create_jump_trampoline (MonoDomain *domain, 
898                                                                                            MonoMethod *method, 
899                                                                                            gboolean add_sync_wrapper);
900 gpointer          mono_create_class_init_trampoline (MonoVTable *vtable);
901 gpointer          mono_create_jit_trampoline (MonoMethod *method);
902 gpointer          mono_create_jit_trampoline_from_token (MonoImage *image, guint32 token);
903 MonoVTable*       mono_find_class_init_trampoline_by_addr (gconstpointer addr);
904 gpointer          mono_magic_trampoline (gssize *regs, guint8 *code, MonoMethod *m, guint8* tramp);
905 gpointer          mono_delegate_trampoline (gssize *regs, guint8 *code, MonoMethod *m, guint8* tramp);
906 gpointer          mono_aot_trampoline (gssize *regs, guint8 *code, guint8 *token_info, 
907                                                                            guint8* tramp);
908 gpointer          mono_aot_plt_trampoline (gssize *regs, guint8 *code, guint8 *token_info, 
909                                                                                    guint8* tramp);
910 void              mono_class_init_trampoline (gssize *regs, guint8 *code, MonoVTable *vtable, guint8 *tramp);
911
912 gboolean          mono_running_on_valgrind (void);
913 void*             mono_global_codeman_reserve (int size);
914 const char       *mono_regname_full (int reg, gboolean fp);
915 gint32*           mono_allocate_stack_slots_full (MonoCompile *cfg, gboolean backward, guint32 *stack_size, guint32 *stack_align);
916 gint32*           mono_allocate_stack_slots (MonoCompile *cfg, guint32 *stack_size, guint32 *stack_align);
917 void              mono_local_regalloc (MonoCompile *cfg, MonoBasicBlock *bb);
918 MonoInst         *mono_branch_optimize_exception_target (MonoCompile *cfg, MonoBasicBlock *bb, const char * exname);              
919
920 /* methods that must be provided by the arch-specific port */
921 void      mono_arch_cpu_init                    (void);
922 guint32   mono_arch_cpu_optimizazions           (guint32 *exclude_mask);
923 void      mono_arch_instrument_mem_needs        (MonoMethod *method, int *stack, int *code);
924 void     *mono_arch_instrument_prolog           (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments);
925 void     *mono_arch_instrument_epilog           (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments);
926 MonoCallInst *mono_arch_call_opcode             (MonoCompile *cfg, MonoBasicBlock* bb, MonoCallInst *call, int is_virtual);
927 MonoInst *mono_arch_get_inst_for_method         (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args);
928 void      mono_codegen                          (MonoCompile *cfg);
929 void      mono_call_inst_add_outarg_reg         (MonoCompile *cfg, MonoCallInst *call, int vreg, int hreg, gboolean fp);
930 const char *mono_arch_regname                   (int reg);
931 const char *mono_arch_fregname                  (int reg);
932 gpointer  mono_arch_get_throw_exception         (void);
933 gpointer  mono_arch_get_rethrow_exception       (void);
934 gpointer  mono_arch_get_throw_exception_by_name (void);
935 gpointer  mono_arch_get_throw_corlib_exception  (void);
936 guchar*   mono_arch_create_trampoline_code      (MonoTrampolineType tramp_type);
937 gpointer  mono_arch_create_jit_trampoline       (MonoMethod *method);
938 MonoJitInfo *mono_arch_create_jump_trampoline      (MonoMethod *method);
939 gpointer  mono_arch_create_class_init_trampoline(MonoVTable *vtable);
940 GList    *mono_arch_get_allocatable_int_vars    (MonoCompile *cfg);
941 GList    *mono_arch_get_global_int_regs         (MonoCompile *cfg);
942 guint32   mono_arch_regalloc_cost               (MonoCompile *cfg, MonoMethodVar *vmv);
943 void      mono_arch_patch_code                  (MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, gboolean run_cctors);
944 void      mono_arch_flush_icache                (guint8 *code, gint size);
945 int       mono_arch_max_epilog_size             (MonoCompile *cfg);
946 guint8   *mono_arch_emit_prolog                 (MonoCompile *cfg);
947 void      mono_arch_emit_epilog                 (MonoCompile *cfg);
948 void      mono_arch_emit_exceptions             (MonoCompile *cfg);
949 void      mono_arch_local_regalloc              (MonoCompile *cfg, MonoBasicBlock *bb);
950 void      mono_arch_output_basic_block          (MonoCompile *cfg, MonoBasicBlock *bb);
951 gboolean  mono_arch_has_unwind_info             (gconstpointer addr);
952 void      mono_arch_setup_jit_tls_data          (MonoJitTlsData *tls);
953 void      mono_arch_free_jit_tls_data           (MonoJitTlsData *tls);
954 void      mono_arch_emit_this_vret_args         (MonoCompile *cfg, MonoCallInst *inst, int this_reg, int this_type, int vt_reg);
955 void      mono_arch_allocate_vars               (MonoCompile *m);
956 int       mono_arch_get_argument_info           (MonoMethodSignature *csig, int param_count, MonoJitArgumentInfo *arg_info);
957 gboolean  mono_arch_print_tree                  (MonoInst *tree, int arity);
958 MonoJitInfo *mono_arch_find_jit_info            (MonoDomain *domain, 
959                                                  MonoJitTlsData *jit_tls, 
960                                                  MonoJitInfo *res, 
961                                                  MonoJitInfo *prev_ji, 
962                                                  MonoContext *ctx, 
963                                                  MonoContext *new_ctx, 
964                                                  char **trace, 
965                                                  MonoLMF **lmf, 
966                                                  int *native_offset,
967                                                  gboolean *managed);
968 gpointer mono_arch_get_call_filter              (void);
969 gpointer mono_arch_get_restore_context          (void);
970 gboolean mono_arch_handle_exception             (void *sigctx, gpointer obj, gboolean test_only);
971 gpointer mono_arch_ip_from_context              (void *sigctx);
972 void     mono_arch_sigctx_to_monoctx            (void *sigctx, MonoContext *ctx);
973 void     mono_arch_monoctx_to_sigctx            (MonoContext *mctx, void *ctx);
974 void     mono_arch_flush_register_windows       (void);
975 gboolean mono_arch_is_inst_imm                  (gint64 imm);
976 MonoInst* mono_arch_get_domain_intrinsic        (MonoCompile* cfg);
977 MonoInst* mono_arch_get_thread_intrinsic        (MonoCompile* cfg);
978 gboolean mono_arch_is_int_overflow              (void *sigctx, void *info);
979 void     mono_arch_invalidate_method            (MonoJitInfo *ji, void *func, gpointer func_arg);
980 guint32  mono_arch_get_patch_offset             (guint8 *code);
981 gpointer*mono_arch_get_vcall_slot_addr          (guint8* code, gpointer *regs);
982 gpointer*mono_arch_get_delegate_method_ptr_addr (guint8* code, gpointer *regs);
983 void     mono_arch_create_vars                  (MonoCompile *cfg);
984 void     mono_arch_save_unwind_info             (MonoCompile *cfg);
985 void     mono_arch_register_lowlevel_calls      (void);
986 gpointer mono_arch_get_unbox_trampoline         (MonoMethod *m, gpointer addr);
987 void     mono_arch_patch_callsite               (guint8 *code, guint8 *addr);
988 void     mono_arch_patch_plt_entry              (guint8 *code, guint8 *addr);
989 void     mono_arch_nullify_class_init_trampoline(guint8 *code, gssize *regs);
990 void     mono_arch_nullify_plt_entry            (guint8 *code);
991 void     mono_arch_patch_delegate_trampoline    (guint8 *code, guint8 *tramp, gssize *regs, guint8 *addr);
992 gpointer mono_arch_create_specific_trampoline   (gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len);
993
994 /* Exception handling */
995 gboolean mono_handle_exception                  (MonoContext *ctx, gpointer obj,
996                                                  gpointer original_ip, gboolean test_only);
997 void     mono_handle_native_sigsegv             (int signal, void *sigctx);
998 void     mono_print_thread_dump                 (void *sigctx);
999 void     mono_jit_walk_stack                    (MonoStackWalk func, gboolean do_il_offset, gpointer user_data);
1000 void     mono_jit_walk_stack_from_ctx           (MonoStackWalk func, MonoContext *ctx, gboolean do_il_offset, gpointer user_data);
1001 void     mono_setup_altstack                    (MonoJitTlsData *tls);
1002 void     mono_free_altstack                     (MonoJitTlsData *tls);
1003
1004 /* the new function to do stack walks */
1005 typedef gboolean (*MonoStackFrameWalk)          (MonoDomain *domain, MonoContext *ctx, MonoJitInfo *ji, gpointer data);
1006 void      mono_walk_stack                       (MonoDomain *domain, MonoJitTlsData *jit_tls, MonoContext *start_ctx, MonoStackFrameWalk func, gpointer user_data);
1007
1008 MonoArray *ves_icall_get_trace                  (MonoException *exc, gint32 skip, MonoBoolean need_file_info);
1009 MonoBoolean ves_icall_get_frame_info            (gint32 skip, MonoBoolean need_file_info, 
1010                                                  MonoReflectionMethod **method, 
1011                                                  gint32 *iloffset, gint32 *native_offset,
1012                                                  MonoString **file, gint32 *line, gint32 *column);
1013 MonoString *ves_icall_System_Exception_get_trace (MonoException *exc);
1014
1015 /* Dominator/SSA methods */
1016 void        mono_compile_dominator_info         (MonoCompile *cfg, int dom_flags);
1017 void        mono_compute_natural_loops          (MonoCompile *cfg);
1018 MonoBitSet* mono_compile_iterated_dfrontier     (MonoCompile *cfg, MonoBitSet *set);
1019 void        mono_ssa_compute                    (MonoCompile *cfg);
1020 void        mono_ssa_remove                     (MonoCompile *cfg);
1021 void        mono_ssa_cprop                      (MonoCompile *cfg);
1022 void        mono_ssa_deadce                     (MonoCompile *cfg);
1023 void        mono_ssa_strength_reduction         (MonoCompile *cfg);
1024 void        mono_free_loop_info                 (MonoCompile *cfg);
1025
1026 /* debugging support */
1027 void      mono_debug_init_method                (MonoCompile *cfg, MonoBasicBlock *start_block,
1028                                                  guint32 breakpoint_id);
1029 void      mono_debug_open_method                (MonoCompile *cfg);
1030 void      mono_debug_close_method               (MonoCompile *cfg);
1031 void      mono_debug_open_block                 (MonoCompile *cfg, MonoBasicBlock *bb, guint32 address);
1032 void      mono_debug_record_line_number         (MonoCompile *cfg, MonoInst *ins, guint32 address);
1033 void      mono_debug_serialize_debug_info       (MonoCompile *cfg, guint8 **out_buf, guint32 *buf_len);
1034 void      mono_debug_add_aot_method             (MonoDomain *domain,
1035                                                  MonoMethod *method, guint8 *code_start, 
1036                                                  guint8 *debug_info, guint32 debug_info_len);
1037 void      mono_debug_add_icall_wrapper          (MonoMethod *method, MonoJitICallInfo* info);
1038 void      mono_debug_print_vars                 (gpointer ip, gboolean only_arguments);
1039 void      mono_debugger_run_finally             (MonoContext *start_ctx);
1040
1041 /* Mono Debugger support */
1042 void      mono_debugger_init                    (void);
1043 int       mono_debugger_main                    (MonoDomain *domain, MonoAssembly *assembly, int argc, char **argv);
1044
1045
1046 /* Tracing */
1047 MonoTraceSpec *mono_trace_parse_options         (char *options);
1048 void           mono_trace_set_assembly          (MonoAssembly *assembly);
1049 gboolean       mono_trace_eval                  (MonoMethod *method);
1050
1051 extern void
1052 mono_perform_abc_removal (MonoCompile *cfg);
1053 extern void
1054 mono_perform_ssapre (MonoCompile *cfg);
1055 extern void
1056 mono_local_cprop (MonoCompile *cfg);
1057
1058 /* CAS - stack walk */
1059 MonoSecurityFrame* ves_icall_System_Security_SecurityFrame_GetSecurityFrame (gint32 skip);
1060 MonoArray* ves_icall_System_Security_SecurityFrame_GetSecurityStack (gint32 skip);
1061
1062 #endif /* __MONO_MINI_H__ */