[runtime] Compare custom modifiers in type equality
[mono-project.git] / mono / mini / aot-runtime.c
blobcd01ee68a727f87af0be946e2d981924da72d899
1 /**
2 * \file
3 * mono Ahead of Time compiler
5 * Author:
6 * Dietmar Maurer (dietmar@ximian.com)
7 * Zoltan Varga (vargaz@gmail.com)
9 * (C) 2002 Ximian, Inc.
10 * Copyright 2003-2011 Novell, Inc.
11 * Copyright 2011 Xamarin, Inc.
12 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
15 #include "config.h"
16 #include <sys/types.h>
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
20 #include <fcntl.h>
21 #include <string.h>
22 #ifdef HAVE_SYS_MMAN_H
23 #include <sys/mman.h>
24 #endif
26 #if HOST_WIN32
27 #include <winsock2.h>
28 #include <windows.h>
29 #endif
31 #ifdef HAVE_EXECINFO_H
32 #include <execinfo.h>
33 #endif
35 #include <errno.h>
36 #include <sys/stat.h>
38 #ifdef HAVE_SYS_WAIT_H
39 #include <sys/wait.h> /* for WIFEXITED, WEXITSTATUS */
40 #endif
42 #include <mono/metadata/abi-details.h>
43 #include <mono/metadata/tabledefs.h>
44 #include <mono/metadata/class.h>
45 #include <mono/metadata/object.h>
46 #include <mono/metadata/tokentype.h>
47 #include <mono/metadata/appdomain.h>
48 #include <mono/metadata/debug-helpers.h>
49 #include <mono/metadata/assembly.h>
50 #include <mono/metadata/assembly-internals.h>
51 #include <mono/metadata/metadata-internals.h>
52 #include <mono/metadata/exception-internals.h>
53 #include <mono/metadata/marshal.h>
54 #include <mono/metadata/gc-internals.h>
55 #include <mono/metadata/threads-types.h>
56 #include <mono/metadata/mono-endian.h>
57 #include <mono/utils/mono-logger-internals.h>
58 #include <mono/utils/mono-mmap.h>
59 #include <mono/utils/mono-compiler.h>
60 #include <mono/utils/mono-counters.h>
61 #include <mono/utils/mono-digest.h>
62 #include <mono/utils/mono-threads-coop.h>
64 #include "mini.h"
65 #include "seq-points.h"
66 #include "version.h"
67 #include "debugger-agent.h"
68 #include "aot-compiler.h"
69 #include "aot-runtime.h"
70 #include "jit-icalls.h"
71 #include "mini-runtime.h"
73 #ifndef DISABLE_AOT
75 #ifdef TARGET_OSX
76 #define ENABLE_AOT_CACHE
77 #endif
79 /* Number of got entries shared between the JIT and LLVM GOT */
80 #define N_COMMON_GOT_ENTRIES 10
82 #define ROUND_DOWN(VALUE,SIZE) ((VALUE) & ~((SIZE) - 1))
84 typedef struct {
85 int method_index;
86 MonoJitInfo *jinfo;
87 } JitInfoMap;
89 typedef struct MonoAotModule {
90 char *aot_name;
91 /* Pointer to the Global Offset Table */
92 gpointer *got;
93 gpointer *llvm_got;
94 gpointer *shared_got;
95 GHashTable *name_cache;
96 GHashTable *extra_methods;
97 /* Maps methods to their code */
98 GHashTable *method_to_code;
99 /* Maps pointers into the method info to the methods themselves */
100 GHashTable *method_ref_to_method;
101 MonoAssemblyName *image_names;
102 char **image_guids;
103 MonoAssembly *assembly;
104 MonoImage **image_table;
105 guint32 image_table_len;
106 gboolean out_of_date;
107 gboolean plt_inited;
108 gboolean got_initializing;
109 guint8 *mem_begin;
110 guint8 *mem_end;
111 guint8 *jit_code_start;
112 guint8 *jit_code_end;
113 guint8 *llvm_code_start;
114 guint8 *llvm_code_end;
115 guint8 *plt;
116 guint8 *plt_end;
117 guint8 *blob;
118 gpointer weak_field_indexes;
119 /* Maps method indexes to their code */
120 gpointer *methods;
121 /* Sorted array of method addresses */
122 gpointer *sorted_methods;
123 /* Method indexes for each method in sorted_methods */
124 int *sorted_method_indexes;
125 /* The length of the two tables above */
126 int sorted_methods_len;
127 guint32 *method_info_offsets;
128 guint32 *ex_info_offsets;
129 guint32 *class_info_offsets;
130 guint32 *got_info_offsets;
131 guint32 *llvm_got_info_offsets;
132 guint32 *methods_loaded;
133 guint16 *class_name_table;
134 guint32 *extra_method_table;
135 guint32 *extra_method_info_offsets;
136 guint32 *unbox_trampolines;
137 guint32 *unbox_trampolines_end;
138 guint32 *unbox_trampoline_addresses;
139 guint8 *unwind_info;
141 /* Points to the mono EH data created by LLVM */
142 guint8 *mono_eh_frame;
144 /* Points to the data tables if MONO_AOT_FILE_FLAG_SEPARATE_DATA is set */
145 gpointer tables [MONO_AOT_TABLE_NUM];
146 /* Points to the trampolines */
147 guint8 *trampolines [MONO_AOT_TRAMP_NUM];
148 /* The first unused trampoline of each kind */
149 guint32 trampoline_index [MONO_AOT_TRAMP_NUM];
151 gboolean use_page_trampolines;
153 MonoAotFileInfo info;
155 gpointer *globals;
156 MonoDl *sofile;
158 JitInfoMap *async_jit_info_table;
159 mono_mutex_t mutex;
160 } MonoAotModule;
162 typedef struct {
163 void *next;
164 unsigned char *trampolines;
165 unsigned char *trampolines_end;
166 } TrampolinePage;
168 static GHashTable *aot_modules;
169 #define mono_aot_lock() mono_os_mutex_lock (&aot_mutex)
170 #define mono_aot_unlock() mono_os_mutex_unlock (&aot_mutex)
171 static mono_mutex_t aot_mutex;
174 * Maps assembly names to the mono_aot_module_<NAME>_info symbols in the
175 * AOT modules registered by mono_aot_register_module ().
177 static GHashTable *static_aot_modules;
179 * Same as above, but tracks module that must be loaded before others are
180 * This allows us to have a "container" module which contains resources for
181 * other modules. Since it doesn't provide methods for a managed assembly,
182 * and it needs to be fully loaded by the time the other code needs it, it
183 * must be eagerly loaded before other modules.
185 static char *container_assm_name = NULL;
186 static MonoAotModule *container_amodule = NULL;
189 * Maps MonoJitInfo* to the aot module they belong to, this can be different
190 * from ji->method->klass->image's aot module for generic instances.
192 static GHashTable *ji_to_amodule;
195 * Whenever to AOT compile loaded assemblies on demand and store them in
196 * a cache.
198 static gboolean enable_aot_cache = FALSE;
200 static gboolean mscorlib_aot_loaded;
202 /* For debugging */
203 static gint32 mono_last_aot_method = -1;
205 static gboolean make_unreadable = FALSE;
206 static guint32 name_table_accesses = 0;
207 static guint32 n_pagefaults = 0;
209 /* Used to speed-up find_aot_module () */
210 static gsize aot_code_low_addr = (gssize)-1;
211 static gsize aot_code_high_addr = 0;
213 /* Stats */
214 static gint32 async_jit_info_size;
216 static GHashTable *aot_jit_icall_hash;
218 #ifdef MONOTOUCH
219 #define USE_PAGE_TRAMPOLINES ((MonoAotModule*)mono_defaults.corlib->aot_module)->use_page_trampolines
220 #else
221 #define USE_PAGE_TRAMPOLINES 0
222 #endif
224 #define mono_aot_page_lock() mono_os_mutex_lock (&aot_page_mutex)
225 #define mono_aot_page_unlock() mono_os_mutex_unlock (&aot_page_mutex)
226 static mono_mutex_t aot_page_mutex;
228 static MonoAotModule *mscorlib_aot_module;
230 /* Embedding API hooks to load the AOT data for AOT images compiled with MONO_AOT_FILE_FLAG_SEPARATE_DATA */
231 static MonoLoadAotDataFunc aot_data_load_func;
232 static MonoFreeAotDataFunc aot_data_free_func;
233 static gpointer aot_data_func_user_data;
235 static void
236 init_plt (MonoAotModule *info);
238 static void
239 compute_llvm_code_range (MonoAotModule *amodule, guint8 **code_start, guint8 **code_end);
241 static gboolean
242 init_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context, MonoError *error);
244 static MonoJumpInfo*
245 decode_patches (MonoAotModule *amodule, MonoMemPool *mp, int n_patches, gboolean llvm, guint32 *got_offsets);
247 static inline void
248 amodule_lock (MonoAotModule *amodule)
250 mono_os_mutex_lock (&amodule->mutex);
253 static inline void
254 amodule_unlock (MonoAotModule *amodule)
256 mono_os_mutex_unlock (&amodule->mutex);
260 * load_image:
262 * Load one of the images referenced by AMODULE. Returns NULL if the image is not
263 * found, and sets @error for what happened
265 static MonoImage *
266 load_image (MonoAotModule *amodule, int index, MonoError *error)
268 MonoAssembly *assembly;
269 MonoImageOpenStatus status;
271 g_assert (index < amodule->image_table_len);
273 error_init (error);
275 if (amodule->image_table [index])
276 return amodule->image_table [index];
277 if (amodule->out_of_date) {
278 mono_error_set_bad_image_by_name (error, amodule->aot_name, "Image out of date");
279 return NULL;
282 assembly = mono_assembly_load (&amodule->image_names [index], amodule->assembly->basedir, &status);
283 if (!assembly) {
284 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable because dependency %s is not found.", amodule->aot_name, amodule->image_names [index].name);
285 mono_error_set_bad_image_by_name (error, amodule->aot_name, "module is unusable because dependency %s is not found (error %d).\n", amodule->image_names [index].name, status);
286 amodule->out_of_date = TRUE;
287 return NULL;
290 if (strcmp (assembly->image->guid, amodule->image_guids [index])) {
291 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable (GUID of dependent assembly %s doesn't match (expected '%s', got '%s').", amodule->aot_name, amodule->image_names [index].name, amodule->image_guids [index], assembly->image->guid);
292 mono_error_set_bad_image_by_name (error, amodule->aot_name, "module is unusable (GUID of dependent assembly %s doesn't match (expected '%s', got '%s').", amodule->image_names [index].name, amodule->image_guids [index], assembly->image->guid);
293 amodule->out_of_date = TRUE;
294 return NULL;
297 amodule->image_table [index] = assembly->image;
298 return assembly->image;
301 static inline gint32
302 decode_value (guint8 *ptr, guint8 **rptr)
304 guint8 b = *ptr;
305 gint32 len;
307 if ((b & 0x80) == 0){
308 len = b;
309 ++ptr;
310 } else if ((b & 0x40) == 0){
311 len = ((b & 0x3f) << 8 | ptr [1]);
312 ptr += 2;
313 } else if (b != 0xff) {
314 len = ((b & 0x1f) << 24) |
315 (ptr [1] << 16) |
316 (ptr [2] << 8) |
317 ptr [3];
318 ptr += 4;
320 else {
321 len = (ptr [1] << 24) | (ptr [2] << 16) | (ptr [3] << 8) | ptr [4];
322 ptr += 5;
324 if (rptr)
325 *rptr = ptr;
327 //printf ("DECODE: %d.\n", len);
328 return len;
332 * mono_aot_get_offset:
334 * Decode an offset table emitted by emit_offset_table (), returning the INDEXth
335 * entry.
337 static guint32
338 mono_aot_get_offset (guint32 *table, int index)
340 int i, group, ngroups, index_entry_size;
341 int start_offset, offset, group_size;
342 guint8 *data_start, *p;
343 guint32 *index32 = NULL;
344 guint16 *index16 = NULL;
346 /* noffsets = table [0]; */
347 group_size = table [1];
348 ngroups = table [2];
349 index_entry_size = table [3];
350 group = index / group_size;
352 if (index_entry_size == 2) {
353 index16 = (guint16*)&table [4];
354 data_start = (guint8*)&index16 [ngroups];
355 p = data_start + index16 [group];
356 } else {
357 index32 = (guint32*)&table [4];
358 data_start = (guint8*)&index32 [ngroups];
359 p = data_start + index32 [group];
362 /* offset will contain the value of offsets [group * group_size] */
363 offset = start_offset = decode_value (p, &p);
364 for (i = group * group_size + 1; i <= index; ++i) {
365 offset += decode_value (p, &p);
368 //printf ("Offset lookup: %d -> %d, start=%d, p=%d\n", index, offset, start_offset, table [3 + group]);
370 return offset;
373 static MonoMethod*
374 decode_resolve_method_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error);
376 static MonoClass*
377 decode_klass_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error);
379 static MonoType*
380 decode_type (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error);
382 static MonoGenericInst*
383 decode_generic_inst (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
385 int type_argc, i;
386 MonoType **type_argv;
387 MonoGenericInst *inst;
388 guint8 *p = buf;
390 error_init (error);
391 type_argc = decode_value (p, &p);
392 type_argv = g_new0 (MonoType*, type_argc);
394 for (i = 0; i < type_argc; ++i) {
395 MonoClass *pclass = decode_klass_ref (module, p, &p, error);
396 if (!pclass) {
397 g_free (type_argv);
398 return NULL;
400 type_argv [i] = m_class_get_byval_arg (pclass);
403 inst = mono_metadata_get_generic_inst (type_argc, type_argv);
404 g_free (type_argv);
406 *endbuf = p;
408 return inst;
411 static gboolean
412 decode_generic_context (MonoAotModule *module, MonoGenericContext *ctx, guint8 *buf, guint8 **endbuf, MonoError *error)
414 guint8 *p = buf;
415 guint8 *p2;
416 int argc;
417 error_init (error);
419 p2 = p;
420 argc = decode_value (p, &p);
421 if (argc) {
422 p = p2;
423 ctx->class_inst = decode_generic_inst (module, p, &p, error);
424 if (!ctx->class_inst)
425 return FALSE;
427 p2 = p;
428 argc = decode_value (p, &p);
429 if (argc) {
430 p = p2;
431 ctx->method_inst = decode_generic_inst (module, p, &p, error);
432 if (!ctx->method_inst)
433 return FALSE;
436 *endbuf = p;
437 return TRUE;
440 static MonoClass*
441 decode_klass_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
443 MonoImage *image;
444 MonoClass *klass = NULL, *eklass;
445 guint32 token, rank, idx;
446 guint8 *p = buf;
447 int reftype;
449 error_init (error);
450 reftype = decode_value (p, &p);
451 if (reftype == 0) {
452 *endbuf = p;
453 mono_error_set_bad_image_by_name (error, module->aot_name, "Decoding a null class ref");
454 return NULL;
457 switch (reftype) {
458 case MONO_AOT_TYPEREF_TYPEDEF_INDEX:
459 idx = decode_value (p, &p);
460 image = load_image (module, 0, error);
461 if (!image)
462 return NULL;
463 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF + idx, error);
464 break;
465 case MONO_AOT_TYPEREF_TYPEDEF_INDEX_IMAGE:
466 idx = decode_value (p, &p);
467 image = load_image (module, decode_value (p, &p), error);
468 if (!image)
469 return NULL;
470 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF + idx, error);
471 break;
472 case MONO_AOT_TYPEREF_TYPESPEC_TOKEN:
473 token = decode_value (p, &p);
474 image = module->assembly->image;
475 if (!image) {
476 mono_error_set_bad_image_by_name (error, module->aot_name, "No image associated with the aot module");
477 return NULL;
479 klass = mono_class_get_checked (image, token, error);
480 break;
481 case MONO_AOT_TYPEREF_GINST: {
482 MonoClass *gclass;
483 MonoGenericContext ctx;
484 MonoType *type;
486 gclass = decode_klass_ref (module, p, &p, error);
487 if (!gclass)
488 return NULL;
489 g_assert (mono_class_is_gtd (gclass));
491 memset (&ctx, 0, sizeof (ctx));
492 ctx.class_inst = decode_generic_inst (module, p, &p, error);
493 if (!ctx.class_inst)
494 return NULL;
495 type = mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass), &ctx, error);
496 if (!type)
497 return NULL;
498 klass = mono_class_from_mono_type (type);
499 mono_metadata_free_type (type);
500 break;
502 case MONO_AOT_TYPEREF_VAR: {
503 MonoType *t = NULL;
504 MonoGenericContainer *container = NULL;
505 gboolean has_constraint = decode_value (p, &p);
507 if (has_constraint) {
508 MonoClass *par_klass;
509 MonoType *gshared_constraint;
511 gshared_constraint = decode_type (module, p, &p, error);
512 if (!gshared_constraint)
513 return NULL;
515 par_klass = decode_klass_ref (module, p, &p, error);
516 if (!par_klass)
517 return NULL;
519 t = mini_get_shared_gparam (m_class_get_byval_arg (par_klass), gshared_constraint);
520 mono_metadata_free_type (gshared_constraint);
521 klass = mono_class_from_mono_type (t);
522 } else {
523 int type = decode_value (p, &p);
524 int num = decode_value (p, &p);
525 gboolean is_not_anonymous = decode_value (p, &p);
527 if (is_not_anonymous) {
528 gboolean is_method = decode_value (p, &p);
530 if (is_method) {
531 MonoMethod *method_def;
532 g_assert (type == MONO_TYPE_MVAR);
533 method_def = decode_resolve_method_ref (module, p, &p, error);
534 if (!method_def)
535 return NULL;
537 container = mono_method_get_generic_container (method_def);
538 } else {
539 MonoClass *class_def;
540 g_assert (type == MONO_TYPE_VAR);
541 class_def = decode_klass_ref (module, p, &p, error);
542 if (!class_def)
543 return NULL;
545 container = mono_class_try_get_generic_container (class_def); //FIXME is this a case for a try_get?
547 } else {
548 // We didn't decode is_method, so we have to infer it from type enum.
549 container = mono_get_anonymous_container_for_image (module->assembly->image, type == MONO_TYPE_MVAR);
552 t = g_new0 (MonoType, 1);
553 t->type = (MonoTypeEnum)type;
554 if (is_not_anonymous) {
555 t->data.generic_param = mono_generic_container_get_param (container, num);
556 } else {
557 /* Anonymous */
558 MonoGenericParam *par = mono_metadata_create_anon_gparam (module->assembly->image, num, type == MONO_TYPE_MVAR);
559 t->data.generic_param = par;
560 // FIXME: maybe do this for all anon gparams?
561 ((MonoGenericParamFull*)par)->info.name = mono_make_generic_name_string (module->assembly->image, num);
563 // FIXME: Maybe use types directly to avoid
564 // the overhead of creating MonoClass-es
565 klass = mono_class_from_mono_type (t);
567 g_free (t);
569 break;
571 case MONO_AOT_TYPEREF_ARRAY:
572 /* Array */
573 rank = decode_value (p, &p);
574 eklass = decode_klass_ref (module, p, &p, error);
575 if (!eklass)
576 return NULL;
577 klass = mono_class_create_array (eklass, rank);
578 break;
579 case MONO_AOT_TYPEREF_PTR: {
580 MonoType *t;
582 t = decode_type (module, p, &p, error);
583 if (!t)
584 return NULL;
585 klass = mono_class_from_mono_type (t);
586 g_free (t);
587 break;
589 case MONO_AOT_TYPEREF_BLOB_INDEX: {
590 guint32 offset = decode_value (p, &p);
591 guint8 *p2;
593 p2 = module->blob + offset;
594 klass = decode_klass_ref (module, p2, &p2, error);
595 break;
597 default:
598 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid klass reftype %d", reftype);
600 //g_assert (klass);
601 //printf ("BLA: %s\n", mono_type_full_name (&klass->byval_arg));
602 *endbuf = p;
603 return klass;
606 static MonoClassField*
607 decode_field_info (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
609 ERROR_DECL (error);
610 MonoClass *klass = decode_klass_ref (module, buf, &buf, error);
611 guint32 token;
612 guint8 *p = buf;
614 if (!klass) {
615 mono_error_cleanup (error); /* FIXME don't swallow the error */
616 return NULL;
619 token = MONO_TOKEN_FIELD_DEF + decode_value (p, &p);
621 *endbuf = p;
623 return mono_class_get_field (klass, token);
627 * Parse a MonoType encoded by encode_type () in aot-compiler.c. Return malloc-ed
628 * memory.
630 static MonoType*
631 decode_type (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
633 guint8 *p = buf;
634 MonoType *t;
636 // In encode_type, we have g_assert (!t->has_mods);
637 // This is the only reason we can do sizeof (MonoType)
638 t = (MonoType *) g_malloc0 (sizeof (MonoType));
639 error_init (error);
641 while (TRUE) {
642 if (*p == MONO_TYPE_PINNED) {
643 t->pinned = TRUE;
644 ++p;
645 } else if (*p == MONO_TYPE_BYREF) {
646 t->byref = TRUE;
647 ++p;
648 } else {
649 break;
653 t->type = (MonoTypeEnum)*p;
654 ++p;
656 switch (t->type) {
657 case MONO_TYPE_VOID:
658 case MONO_TYPE_BOOLEAN:
659 case MONO_TYPE_CHAR:
660 case MONO_TYPE_I1:
661 case MONO_TYPE_U1:
662 case MONO_TYPE_I2:
663 case MONO_TYPE_U2:
664 case MONO_TYPE_I4:
665 case MONO_TYPE_U4:
666 case MONO_TYPE_I8:
667 case MONO_TYPE_U8:
668 case MONO_TYPE_R4:
669 case MONO_TYPE_R8:
670 case MONO_TYPE_I:
671 case MONO_TYPE_U:
672 case MONO_TYPE_STRING:
673 case MONO_TYPE_OBJECT:
674 case MONO_TYPE_TYPEDBYREF:
675 break;
676 case MONO_TYPE_VALUETYPE:
677 case MONO_TYPE_CLASS:
678 t->data.klass = decode_klass_ref (module, p, &p, error);
679 if (!t->data.klass)
680 goto fail;
681 break;
682 case MONO_TYPE_SZARRAY:
683 t->data.klass = decode_klass_ref (module, p, &p, error);
685 if (!t->data.klass)
686 goto fail;
687 break;
688 case MONO_TYPE_PTR:
689 t->data.type = decode_type (module, p, &p, error);
690 if (!t->data.type)
691 goto fail;
692 break;
693 case MONO_TYPE_GENERICINST: {
694 MonoClass *gclass;
695 MonoGenericContext ctx;
696 MonoType *type;
697 MonoClass *klass;
699 gclass = decode_klass_ref (module, p, &p, error);
700 if (!gclass)
701 goto fail;
702 g_assert (mono_class_is_gtd (gclass));
704 memset (&ctx, 0, sizeof (ctx));
705 ctx.class_inst = decode_generic_inst (module, p, &p, error);
706 if (!ctx.class_inst)
707 goto fail;
708 type = mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass), &ctx, error);
709 if (!type)
710 goto fail;
711 klass = mono_class_from_mono_type (type);
712 t->data.generic_class = mono_class_get_generic_class (klass);
713 break;
715 case MONO_TYPE_ARRAY: {
716 MonoArrayType *array;
717 int i;
719 // FIXME: memory management
720 array = g_new0 (MonoArrayType, 1);
721 array->eklass = decode_klass_ref (module, p, &p, error);
722 if (!array->eklass)
723 goto fail;
724 array->rank = decode_value (p, &p);
725 array->numsizes = decode_value (p, &p);
727 if (array->numsizes)
728 array->sizes = (int *)g_malloc0 (sizeof (int) * array->numsizes);
729 for (i = 0; i < array->numsizes; ++i)
730 array->sizes [i] = decode_value (p, &p);
732 array->numlobounds = decode_value (p, &p);
733 if (array->numlobounds)
734 array->lobounds = (int *)g_malloc0 (sizeof (int) * array->numlobounds);
735 for (i = 0; i < array->numlobounds; ++i)
736 array->lobounds [i] = decode_value (p, &p);
737 t->data.array = array;
738 break;
740 case MONO_TYPE_VAR:
741 case MONO_TYPE_MVAR: {
742 MonoClass *klass = decode_klass_ref (module, p, &p, error);
743 if (!klass)
744 goto fail;
745 t->data.generic_param = m_class_get_byval_arg (klass)->data.generic_param;
746 break;
748 default:
749 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid encoded type %d", t->type);
750 goto fail;
753 *endbuf = p;
755 return t;
756 fail:
757 g_free (t);
758 return NULL;
761 // FIXME: Error handling, memory management
763 static MonoMethodSignature*
764 decode_signature_with_target (MonoAotModule *module, MonoMethodSignature *target, guint8 *buf, guint8 **endbuf)
766 ERROR_DECL (error);
767 MonoMethodSignature *sig;
768 guint32 flags;
769 int i, gen_param_count = 0, param_count, call_conv;
770 guint8 *p = buf;
771 gboolean hasthis, explicit_this, has_gen_params;
773 flags = *p;
774 p ++;
775 has_gen_params = (flags & 0x10) != 0;
776 hasthis = (flags & 0x20) != 0;
777 explicit_this = (flags & 0x40) != 0;
778 call_conv = flags & 0x0F;
780 if (has_gen_params)
781 gen_param_count = decode_value (p, &p);
782 param_count = decode_value (p, &p);
783 if (target && param_count != target->param_count)
784 return NULL;
785 sig = (MonoMethodSignature *)g_malloc0 (MONO_SIZEOF_METHOD_SIGNATURE + param_count * sizeof (MonoType *));
786 sig->param_count = param_count;
787 sig->sentinelpos = -1;
788 sig->hasthis = hasthis;
789 sig->explicit_this = explicit_this;
790 sig->call_convention = call_conv;
791 sig->generic_param_count = gen_param_count;
792 sig->ret = decode_type (module, p, &p, error);
793 if (!sig->ret)
794 goto fail;
795 for (i = 0; i < param_count; ++i) {
796 if (*p == MONO_TYPE_SENTINEL) {
797 g_assert (sig->call_convention == MONO_CALL_VARARG);
798 sig->sentinelpos = i;
799 p ++;
801 sig->params [i] = decode_type (module, p, &p, error);
802 if (!sig->params [i])
803 goto fail;
806 if (sig->call_convention == MONO_CALL_VARARG && sig->sentinelpos == -1)
807 sig->sentinelpos = sig->param_count;
809 *endbuf = p;
811 return sig;
812 fail:
813 mono_error_cleanup (error); /* FIXME don't swallow the error */
814 g_free (sig);
815 return NULL;
818 static MonoMethodSignature*
819 decode_signature (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
821 return decode_signature_with_target (module, NULL, buf, endbuf);
824 static gboolean
825 sig_matches_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf)
827 MonoMethodSignature *sig;
828 gboolean res;
829 guint8 *p = buf;
831 sig = decode_signature_with_target (module, mono_method_signature (target), p, &p);
832 res = sig && mono_metadata_signature_equal (mono_method_signature (target), sig);
833 g_free (sig);
834 *endbuf = p;
835 return res;
838 /* Stores information returned by decode_method_ref () */
839 typedef struct {
840 MonoImage *image;
841 guint32 token;
842 MonoMethod *method;
843 gboolean no_aot_trampoline;
844 } MethodRef;
847 * decode_method_ref_with_target:
849 * Decode a method reference, storing the image/token into a MethodRef structure.
850 * This avoids loading metadata for the method if the caller does not need it. If the method has
851 * no token, then it is loaded from metadata and ref->method is set to the method instance.
852 * If TARGET is non-NULL, abort decoding if it can be determined that the decoded method
853 * couldn't resolve to TARGET, and return FALSE.
854 * There are some kinds of method references which only support a non-null TARGET.
855 * This means that its not possible to decode this into a method, only to check
856 * that the method reference matches a given method. This is normally not a problem
857 * as these wrappers only occur in the extra_methods table, where we already have
858 * a method we want to lookup.
860 * If there was a decoding error, we return FALSE and set @error
862 static gboolean
863 decode_method_ref_with_target (MonoAotModule *module, MethodRef *ref, MonoMethod *target, guint8 *buf, guint8 **endbuf, MonoError *error)
865 guint32 image_index, value;
866 MonoImage *image = NULL;
867 guint8 *p = buf;
869 memset (ref, 0, sizeof (MethodRef));
870 error_init (error);
872 value = decode_value (p, &p);
873 image_index = value >> 24;
875 if (image_index == MONO_AOT_METHODREF_NO_AOT_TRAMPOLINE) {
876 ref->no_aot_trampoline = TRUE;
877 value = decode_value (p, &p);
878 image_index = value >> 24;
881 if (image_index < MONO_AOT_METHODREF_MIN || image_index == MONO_AOT_METHODREF_METHODSPEC || image_index == MONO_AOT_METHODREF_GINST) {
882 if (target && target->wrapper_type) {
883 return FALSE;
887 if (image_index == MONO_AOT_METHODREF_WRAPPER) {
888 WrapperInfo *info;
889 guint32 wrapper_type;
891 wrapper_type = decode_value (p, &p);
893 if (target && target->wrapper_type != wrapper_type)
894 return FALSE;
896 /* Doesn't matter */
897 image = mono_defaults.corlib;
899 switch (wrapper_type) {
900 #ifndef DISABLE_REMOTING
901 case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK: {
902 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
903 if (!m)
904 return FALSE;
905 mono_class_init (m->klass);
906 if (mono_aot_only)
907 ref->method = m;
908 else {
909 ref->method = mono_marshal_get_remoting_invoke_with_check (m, error);
910 return_val_if_nok (error, FALSE);
912 break;
914 case MONO_WRAPPER_PROXY_ISINST: {
915 MonoClass *klass = decode_klass_ref (module, p, &p, error);
916 if (!klass)
917 return FALSE;
918 ref->method = mono_marshal_get_proxy_cancast (klass);
919 break;
921 case MONO_WRAPPER_LDFLD:
922 case MONO_WRAPPER_LDFLDA:
923 case MONO_WRAPPER_STFLD: {
924 MonoClass *klass = decode_klass_ref (module, p, &p, error);
925 if (!klass)
926 return FALSE;
927 MonoType *type = m_class_get_byval_arg (klass);
928 if (wrapper_type == MONO_WRAPPER_LDFLD)
929 ref->method = mono_marshal_get_ldfld_wrapper (type);
930 else if (wrapper_type == MONO_WRAPPER_LDFLDA)
931 ref->method = mono_marshal_get_ldflda_wrapper (type);
932 else if (wrapper_type == MONO_WRAPPER_STFLD)
933 ref->method = mono_marshal_get_stfld_wrapper (type);
934 else {
935 mono_error_set_bad_image_by_name (error, module->aot_name, "Unknown AOT wrapper type %d", wrapper_type);
936 return FALSE;
938 break;
940 #endif
941 case MONO_WRAPPER_ALLOC: {
942 int atype = decode_value (p, &p);
943 ManagedAllocatorVariant variant =
944 mono_profiler_allocations_enabled () ?
945 MANAGED_ALLOCATOR_PROFILER : MANAGED_ALLOCATOR_REGULAR;
947 ref->method = mono_gc_get_managed_allocator_by_type (atype, variant);
948 /* Try to fallback to the slow path version */
949 if (!ref->method)
950 ref->method = mono_gc_get_managed_allocator_by_type (atype, MANAGED_ALLOCATOR_SLOW_PATH);
951 if (!ref->method) {
952 mono_error_set_bad_image_by_name (error, module->aot_name, "Error: No managed allocator, but we need one for AOT.\nAre you using non-standard GC options?\n");
953 return FALSE;
955 break;
957 case MONO_WRAPPER_WRITE_BARRIER: {
958 ref->method = mono_gc_get_write_barrier ();
959 break;
961 case MONO_WRAPPER_STELEMREF: {
962 int subtype = decode_value (p, &p);
964 if (subtype == WRAPPER_SUBTYPE_NONE) {
965 ref->method = mono_marshal_get_stelemref ();
966 } else if (subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF) {
967 int kind;
969 kind = decode_value (p, &p);
971 /* Can't decode this */
972 if (!target)
973 return FALSE;
974 if (target->wrapper_type == MONO_WRAPPER_STELEMREF) {
975 info = mono_marshal_get_wrapper_info (target);
977 g_assert (info);
978 if (info->subtype == subtype && info->d.virtual_stelemref.kind == kind)
979 ref->method = target;
980 else
981 return FALSE;
982 } else {
983 return FALSE;
985 } else {
986 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid STELEMREF subtype %d", subtype);
987 return FALSE;
989 break;
991 case MONO_WRAPPER_SYNCHRONIZED: {
992 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
993 if (!m)
994 return FALSE;
995 ref->method = mono_marshal_get_synchronized_wrapper (m);
996 break;
998 case MONO_WRAPPER_UNKNOWN: {
999 int subtype = decode_value (p, &p);
1001 if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE || subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR) {
1002 MonoClass *klass = decode_klass_ref (module, p, &p, error);
1003 if (!klass)
1004 return FALSE;
1006 if (!target)
1007 return FALSE;
1008 if (klass != target->klass)
1009 return FALSE;
1011 if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE) {
1012 if (strcmp (target->name, "PtrToStructure"))
1013 return FALSE;
1014 ref->method = mono_marshal_get_ptr_to_struct (klass);
1015 } else {
1016 if (strcmp (target->name, "StructureToPtr"))
1017 return FALSE;
1018 ref->method = mono_marshal_get_struct_to_ptr (klass);
1020 } else if (subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER) {
1021 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1022 if (!m)
1023 return FALSE;
1024 ref->method = mono_marshal_get_synchronized_inner_wrapper (m);
1025 } else if (subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
1026 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1027 if (!m)
1028 return FALSE;
1029 ref->method = mono_marshal_get_array_accessor_wrapper (m);
1030 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN) {
1031 ref->method = mono_marshal_get_gsharedvt_in_wrapper ();
1032 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT) {
1033 ref->method = mono_marshal_get_gsharedvt_out_wrapper ();
1034 } else if (subtype == WRAPPER_SUBTYPE_INTERP_IN) {
1035 MonoMethodSignature *sig = decode_signature (module, p, &p);
1036 if (!sig)
1037 return FALSE;
1038 ref->method = mini_get_interp_in_wrapper (sig);
1039 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG) {
1040 MonoMethodSignature *sig = decode_signature (module, p, &p);
1041 if (!sig)
1042 return FALSE;
1043 ref->method = mini_get_gsharedvt_in_sig_wrapper (sig);
1044 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG) {
1045 MonoMethodSignature *sig = decode_signature (module, p, &p);
1046 if (!sig)
1047 return FALSE;
1048 ref->method = mini_get_gsharedvt_out_sig_wrapper (sig);
1049 } else {
1050 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid UNKNOWN wrapper subtype %d", subtype);
1051 return FALSE;
1053 break;
1055 case MONO_WRAPPER_MANAGED_TO_MANAGED: {
1056 int subtype = decode_value (p, &p);
1058 if (subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
1059 int rank = decode_value (p, &p);
1060 int elem_size = decode_value (p, &p);
1062 ref->method = mono_marshal_get_array_address (rank, elem_size);
1063 } else if (subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
1064 MonoMethod *m;
1066 m = decode_resolve_method_ref (module, p, &p, error);
1067 if (!m)
1068 return FALSE;
1070 if (!target)
1071 return FALSE;
1072 g_assert (target->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED);
1074 info = mono_marshal_get_wrapper_info (target);
1075 if (info && info->subtype == subtype && info->d.string_ctor.method == m)
1076 ref->method = target;
1077 else
1078 return FALSE;
1080 break;
1082 case MONO_WRAPPER_MANAGED_TO_NATIVE: {
1083 MonoMethod *m;
1084 int subtype = decode_value (p, &p);
1085 char *name;
1087 if (subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
1088 if (!target)
1089 return FALSE;
1091 name = (char*)p;
1092 if (strcmp (target->name, name) != 0)
1093 return FALSE;
1094 ref->method = target;
1095 } else {
1096 m = decode_resolve_method_ref (module, p, &p, error);
1097 if (!m)
1098 return FALSE;
1100 /* This should only happen when looking for an extra method */
1101 if (!target)
1102 return FALSE;
1103 if (mono_marshal_method_from_wrapper (target) == m)
1104 ref->method = target;
1105 else
1106 return FALSE;
1108 break;
1110 case MONO_WRAPPER_CASTCLASS: {
1111 int subtype = decode_value (p, &p);
1113 if (subtype == WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE)
1114 ref->method = mono_marshal_get_castclass_with_cache ();
1115 else if (subtype == WRAPPER_SUBTYPE_ISINST_WITH_CACHE)
1116 ref->method = mono_marshal_get_isinst_with_cache ();
1117 else {
1118 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid CASTCLASS wrapper subtype %d", subtype);
1119 return FALSE;
1121 break;
1123 case MONO_WRAPPER_RUNTIME_INVOKE: {
1124 int subtype = decode_value (p, &p);
1126 if (!target)
1127 return FALSE;
1129 if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC) {
1130 if (strcmp (target->name, "runtime_invoke_dynamic") != 0)
1131 return FALSE;
1132 ref->method = target;
1133 } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT) {
1134 /* Direct wrapper */
1135 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1136 if (!m)
1137 return FALSE;
1138 ref->method = mono_marshal_get_runtime_invoke (m, FALSE);
1139 } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL) {
1140 /* Virtual direct wrapper */
1141 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1142 if (!m)
1143 return FALSE;
1144 ref->method = mono_marshal_get_runtime_invoke (m, TRUE);
1145 } else {
1146 MonoMethodSignature *sig;
1148 sig = decode_signature_with_target (module, NULL, p, &p);
1149 info = mono_marshal_get_wrapper_info (target);
1150 g_assert (info);
1152 if (info->subtype != subtype)
1153 return FALSE;
1154 g_assert (info->d.runtime_invoke.sig);
1155 if (mono_metadata_signature_equal (sig, info->d.runtime_invoke.sig))
1156 ref->method = target;
1157 else
1158 return FALSE;
1160 break;
1162 case MONO_WRAPPER_DELEGATE_INVOKE:
1163 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1164 case MONO_WRAPPER_DELEGATE_END_INVOKE: {
1165 gboolean is_inflated = decode_value (p, &p);
1166 WrapperSubtype subtype;
1168 if (is_inflated) {
1169 MonoClass *klass;
1170 MonoMethod *invoke, *wrapper;
1172 klass = decode_klass_ref (module, p, &p, error);
1173 if (!klass)
1174 return FALSE;
1176 switch (wrapper_type) {
1177 case MONO_WRAPPER_DELEGATE_INVOKE:
1178 invoke = mono_get_delegate_invoke (klass);
1179 wrapper = mono_marshal_get_delegate_invoke (invoke, NULL);
1180 break;
1181 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1182 invoke = mono_get_delegate_begin_invoke (klass);
1183 wrapper = mono_marshal_get_delegate_begin_invoke (invoke);
1184 break;
1185 case MONO_WRAPPER_DELEGATE_END_INVOKE:
1186 invoke = mono_get_delegate_end_invoke (klass);
1187 wrapper = mono_marshal_get_delegate_end_invoke (invoke);
1188 break;
1189 default:
1190 g_assert_not_reached ();
1191 break;
1193 if (target) {
1195 * Due to the way mini_get_shared_method_full () works, we could end up with
1196 * multiple copies of the same wrapper.
1198 if (wrapper->klass != target->klass)
1199 return FALSE;
1200 ref->method = target;
1201 } else {
1202 ref->method = wrapper;
1204 } else {
1206 * These wrappers are associated with a signature, not with a method.
1207 * Since we can't decode them into methods, they need a target method.
1209 if (!target)
1210 return FALSE;
1212 if (wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE) {
1213 subtype = (WrapperSubtype)decode_value (p, &p);
1214 info = mono_marshal_get_wrapper_info (target);
1215 if (info) {
1216 if (info->subtype != subtype)
1217 return FALSE;
1218 } else {
1219 if (subtype != WRAPPER_SUBTYPE_NONE)
1220 return FALSE;
1223 if (sig_matches_target (module, target, p, &p))
1224 ref->method = target;
1225 else
1226 return FALSE;
1228 break;
1230 case MONO_WRAPPER_NATIVE_TO_MANAGED: {
1231 MonoMethod *m;
1232 MonoClass *klass;
1234 m = decode_resolve_method_ref (module, p, &p, error);
1235 if (!m)
1236 return FALSE;
1237 klass = decode_klass_ref (module, p, &p, error);
1238 if (!klass)
1239 return FALSE;
1240 ref->method = mono_marshal_get_managed_wrapper (m, klass, 0, error);
1241 if (!mono_error_ok (error))
1242 return FALSE;
1243 break;
1245 default:
1246 g_assert_not_reached ();
1248 } else if (image_index == MONO_AOT_METHODREF_METHODSPEC) {
1249 image_index = decode_value (p, &p);
1250 ref->token = decode_value (p, &p);
1252 image = load_image (module, image_index, error);
1253 if (!image)
1254 return FALSE;
1255 } else if (image_index == MONO_AOT_METHODREF_GINST) {
1256 MonoClass *klass;
1257 MonoGenericContext ctx;
1260 * These methods do not have a token which resolves them, so we
1261 * resolve them immediately.
1263 klass = decode_klass_ref (module, p, &p, error);
1264 if (!klass)
1265 return FALSE;
1267 if (target && target->klass != klass)
1268 return FALSE;
1270 image_index = decode_value (p, &p);
1271 ref->token = decode_value (p, &p);
1273 image = load_image (module, image_index, error);
1274 if (!image)
1275 return FALSE;
1277 ref->method = mono_get_method_checked (image, ref->token, NULL, NULL, error);
1278 if (!ref->method)
1279 return FALSE;
1282 memset (&ctx, 0, sizeof (ctx));
1284 if (FALSE && mono_class_is_ginst (klass)) {
1285 ctx.class_inst = mono_class_get_generic_class (klass)->context.class_inst;
1286 ctx.method_inst = NULL;
1288 ref->method = mono_class_inflate_generic_method_full_checked (ref->method, klass, &ctx, error);
1289 if (!ref->method)
1290 return FALSE;
1293 memset (&ctx, 0, sizeof (ctx));
1295 if (!decode_generic_context (module, &ctx, p, &p, error))
1296 return FALSE;
1298 ref->method = mono_class_inflate_generic_method_full_checked (ref->method, klass, &ctx, error);
1299 if (!ref->method)
1300 return FALSE;
1302 } else if (image_index == MONO_AOT_METHODREF_ARRAY) {
1303 MonoClass *klass;
1304 int method_type;
1306 klass = decode_klass_ref (module, p, &p, error);
1307 if (!klass)
1308 return FALSE;
1309 method_type = decode_value (p, &p);
1310 switch (method_type) {
1311 case 0:
1312 ref->method = mono_class_get_method_from_name (klass, ".ctor", m_class_get_rank (klass));
1313 break;
1314 case 1:
1315 ref->method = mono_class_get_method_from_name (klass, ".ctor", m_class_get_rank (klass) * 2);
1316 break;
1317 case 2:
1318 ref->method = mono_class_get_method_from_name (klass, "Get", -1);
1319 break;
1320 case 3:
1321 ref->method = mono_class_get_method_from_name (klass, "Address", -1);
1322 break;
1323 case 4:
1324 ref->method = mono_class_get_method_from_name (klass, "Set", -1);
1325 break;
1326 default:
1327 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid METHODREF_ARRAY method type %d", method_type);
1328 return FALSE;
1330 } else {
1331 if (image_index == MONO_AOT_METHODREF_LARGE_IMAGE_INDEX) {
1332 image_index = decode_value (p, &p);
1333 value = decode_value (p, &p);
1336 ref->token = MONO_TOKEN_METHOD_DEF | (value & 0xffffff);
1338 image = load_image (module, image_index, error);
1339 if (!image)
1340 return FALSE;
1343 *endbuf = p;
1345 ref->image = image;
1347 return TRUE;
1350 static gboolean
1351 decode_method_ref (MonoAotModule *module, MethodRef *ref, guint8 *buf, guint8 **endbuf, MonoError *error)
1353 return decode_method_ref_with_target (module, ref, NULL, buf, endbuf, error);
1357 * decode_resolve_method_ref_with_target:
1359 * Similar to decode_method_ref, but resolve and return the method itself.
1361 static MonoMethod*
1362 decode_resolve_method_ref_with_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf, MonoError *error)
1364 MethodRef ref;
1366 error_init (error);
1368 if (!decode_method_ref_with_target (module, &ref, target, buf, endbuf, error))
1369 return NULL;
1370 if (ref.method)
1371 return ref.method;
1372 if (!ref.image) {
1373 mono_error_set_bad_image_by_name (error, module->aot_name, "No image found for methodref with target");
1374 return NULL;
1376 return mono_get_method_checked (ref.image, ref.token, NULL, NULL, error);
1379 static MonoMethod*
1380 decode_resolve_method_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
1382 return decode_resolve_method_ref_with_target (module, NULL, buf, endbuf, error);
1385 #ifdef ENABLE_AOT_CACHE
1387 /* AOT CACHE */
1390 * FIXME:
1391 * - Add options for controlling the cache size
1392 * - Handle full cache by deleting old assemblies lru style
1393 * - Maybe add a threshold after an assembly is AOT compiled
1394 * - Add options for enabling this for specific main assemblies
1397 /* The cache directory */
1398 static char *cache_dir;
1400 /* The number of assemblies AOTed in this run */
1401 static int cache_count;
1403 /* Whenever to AOT in-process */
1404 static gboolean in_process;
1406 static void
1407 collect_assemblies (gpointer data, gpointer user_data)
1409 MonoAssembly *ass = data;
1410 GSList **l = user_data;
1412 *l = g_slist_prepend (*l, ass);
1415 #define SHA1_DIGEST_LENGTH 20
1418 * get_aot_config_hash:
1420 * Return a hash for all the version information an AOT module depends on.
1422 static G_GNUC_UNUSED char*
1423 get_aot_config_hash (MonoAssembly *assembly)
1425 char *build_info;
1426 GSList *l, *assembly_list = NULL;
1427 GString *s;
1428 int i;
1429 guint8 digest [SHA1_DIGEST_LENGTH];
1430 char *digest_str;
1432 build_info = mono_get_runtime_build_info ();
1434 s = g_string_new (build_info);
1436 mono_assembly_foreach (collect_assemblies, &assembly_list);
1439 * The assembly list includes the current assembly as well, no need
1440 * to add it.
1442 for (l = assembly_list; l; l = l->next) {
1443 MonoAssembly *ass = l->data;
1445 g_string_append (s, "_");
1446 g_string_append (s, ass->aname.name);
1447 g_string_append (s, "_");
1448 g_string_append (s, ass->image->guid);
1451 for (i = 0; i < s->len; ++i) {
1452 if (!isalnum (s->str [i]) && s->str [i] != '-')
1453 s->str [i] = '_';
1456 mono_sha1_get_digest ((guint8*)s->str, s->len, digest);
1458 digest_str = g_malloc0 ((SHA1_DIGEST_LENGTH * 2) + 1);
1459 for (i = 0; i < SHA1_DIGEST_LENGTH; ++i)
1460 sprintf (digest_str + (i * 2), "%02x", digest [i]);
1462 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: file dependencies: %s, hash %s", s->str, digest_str);
1464 g_string_free (s, TRUE);
1466 return digest_str;
1469 static void
1470 aot_cache_init (void)
1472 if (mono_aot_only)
1473 return;
1474 enable_aot_cache = TRUE;
1475 in_process = TRUE;
1479 * aot_cache_load_module:
1481 * Load the AOT image corresponding to ASSEMBLY from the aot cache, AOTing it if neccessary.
1483 static MonoDl*
1484 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1486 MonoAotCacheConfig *config;
1487 GSList *l;
1488 char *fname, *tmp2, *aot_options, *failure_fname;
1489 const char *home;
1490 MonoDl *module;
1491 gboolean res;
1492 gint exit_status;
1493 char *hash;
1494 int pid;
1495 gboolean enabled;
1496 FILE *failure_file;
1498 *aot_name = NULL;
1500 if (image_is_dynamic (assembly->image))
1501 return NULL;
1503 /* Check in the list of assemblies enabled for aot caching */
1504 config = mono_get_aot_cache_config ();
1506 enabled = FALSE;
1507 if (config->apps) {
1508 MonoDomain *domain = mono_domain_get ();
1509 MonoAssembly *entry_assembly = domain->entry_assembly;
1511 // FIXME: This cannot be used for mscorlib during startup, since entry_assembly is not set yet
1512 for (l = config->apps; l; l = l->next) {
1513 char *n = l->data;
1515 if ((entry_assembly && !strcmp (entry_assembly->aname.name, n)) || (!entry_assembly && !strcmp (assembly->aname.name, n)))
1516 break;
1518 if (l)
1519 enabled = TRUE;
1522 if (!enabled) {
1523 for (l = config->assemblies; l; l = l->next) {
1524 char *n = l->data;
1526 if (!strcmp (assembly->aname.name, n))
1527 break;
1529 if (l)
1530 enabled = TRUE;
1532 if (!enabled)
1533 return NULL;
1535 if (!cache_dir) {
1536 home = g_get_home_dir ();
1537 if (!home)
1538 return NULL;
1539 cache_dir = g_strdup_printf ("%s/Library/Caches/mono/aot-cache", home);
1540 if (!g_file_test (cache_dir, G_FILE_TEST_EXISTS|G_FILE_TEST_IS_DIR))
1541 g_mkdir_with_parents (cache_dir, 0777);
1545 * The same assembly can be used in multiple configurations, i.e. multiple
1546 * versions of the runtime, with multiple versions of dependent assemblies etc.
1547 * To handle this, we compute a version string containing all this information, hash it,
1548 * and use the hash as a filename suffix.
1550 hash = get_aot_config_hash (assembly);
1552 tmp2 = g_strdup_printf ("%s-%s%s", assembly->image->assembly_name, hash, MONO_SOLIB_EXT);
1553 fname = g_build_filename (cache_dir, tmp2, NULL);
1554 *aot_name = fname;
1555 g_free (tmp2);
1557 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: loading from cache: '%s'.", fname);
1558 module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1560 if (module) {
1561 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: found in cache: '%s'.", fname);
1562 return module;
1565 if (!strcmp (assembly->aname.name, "mscorlib") && !mscorlib_aot_loaded)
1567 * Can't AOT this during startup, so we AOT it when called later from
1568 * mono_aot_get_method ().
1570 return NULL;
1572 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: not found.");
1574 /* Only AOT one assembly per run to avoid slowing down execution too much */
1575 if (cache_count > 0)
1576 return NULL;
1577 cache_count ++;
1579 /* Check for previous failure */
1580 failure_fname = g_strdup_printf ("%s.failure", fname);
1581 failure_file = fopen (failure_fname, "r");
1582 if (failure_file) {
1583 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: assembly '%s' previously failed to compile '%s' ('%s')... ", assembly->image->name, fname, failure_fname);
1584 g_free (failure_fname);
1585 return NULL;
1586 } else {
1587 g_free (failure_fname);
1588 fclose (failure_file);
1591 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compiling assembly '%s', logfile: '%s.log'... ", assembly->image->name, fname);
1594 * We need to invoke the AOT compiler here. There are multiple approaches:
1595 * - spawn a new runtime process. This can be hard when running with mkbundle, and
1596 * its hard to make the new process load the same set of assemblies.
1597 * - doing it in-process. This exposes the current process to bugs/leaks/side effects of
1598 * the AOT compiler.
1599 * - fork a new process and do the work there.
1601 if (in_process) {
1602 aot_options = g_strdup_printf ("outfile=%s,internal-logfile=%s.log%s%s", fname, fname, config->aot_options ? "," : "", config->aot_options ? config->aot_options : "");
1603 /* Maybe due this in another thread ? */
1604 res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options, NULL);
1605 if (res) {
1606 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation failed.");
1607 failure_fname = g_strdup_printf ("%s.failure", fname);
1608 failure_file = fopen (failure_fname, "a+");
1609 fclose (failure_file);
1610 g_free (failure_fname);
1611 } else {
1612 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation succeeded.");
1614 } else {
1616 * - Avoid waiting for the aot process to finish ?
1617 * (less overhead, but multiple processes could aot the same assembly at the same time)
1619 pid = fork ();
1620 if (pid == 0) {
1621 FILE *logfile;
1622 char *logfile_name;
1624 /* Child */
1626 logfile_name = g_strdup_printf ("%s/aot.log", cache_dir);
1627 logfile = fopen (logfile_name, "a+");
1628 g_free (logfile_name);
1630 dup2 (fileno (logfile), 1);
1631 dup2 (fileno (logfile), 2);
1633 aot_options = g_strdup_printf ("outfile=%s", fname);
1634 res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options, NULL);
1635 if (!res) {
1636 exit (1);
1637 } else {
1638 exit (0);
1640 } else {
1641 /* Parent */
1642 waitpid (pid, &exit_status, 0);
1643 if (!WIFEXITED (exit_status) && (WEXITSTATUS (exit_status) == 0))
1644 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: failed.");
1645 else
1646 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: succeeded.");
1650 module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1652 return module;
1655 #else
1657 static void
1658 aot_cache_init (void)
1662 static MonoDl*
1663 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1665 return NULL;
1668 #endif
1670 static void
1671 find_symbol (MonoDl *module, gpointer *globals, const char *name, gpointer *value)
1673 if (globals) {
1674 int global_index;
1675 guint16 *table, *entry;
1676 guint16 table_size;
1677 guint32 hash;
1678 char *symbol = (char*)name;
1680 #ifdef TARGET_MACH
1681 symbol = g_strdup_printf ("_%s", name);
1682 #endif
1684 /* The first entry points to the hash */
1685 table = (guint16 *)globals [0];
1686 globals ++;
1688 table_size = table [0];
1689 table ++;
1691 hash = mono_metadata_str_hash (symbol) % table_size;
1693 entry = &table [hash * 2];
1695 /* Search the hash for the index into the globals table */
1696 global_index = -1;
1697 while (entry [0] != 0) {
1698 guint32 index = entry [0] - 1;
1699 guint32 next = entry [1];
1701 //printf ("X: %s %s\n", (char*)globals [index * 2], name);
1703 if (!strcmp (globals [index * 2], symbol)) {
1704 global_index = index;
1705 break;
1708 if (next != 0) {
1709 entry = &table [next * 2];
1710 } else {
1711 break;
1715 if (global_index != -1)
1716 *value = globals [global_index * 2 + 1];
1717 else
1718 *value = NULL;
1720 if (symbol != name)
1721 g_free (symbol);
1722 } else {
1723 char *err = mono_dl_symbol (module, name, value);
1725 if (err)
1726 g_free (err);
1730 static void
1731 find_amodule_symbol (MonoAotModule *amodule, const char *name, gpointer *value)
1733 g_assert (!(amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_ONLY));
1735 find_symbol (amodule->sofile, amodule->globals, name, value);
1738 void
1739 mono_install_load_aot_data_hook (MonoLoadAotDataFunc load_func, MonoFreeAotDataFunc free_func, gpointer user_data)
1741 aot_data_load_func = load_func;
1742 aot_data_free_func = free_func;
1743 aot_data_func_user_data = user_data;
1746 /* Load the separate aot data file for ASSEMBLY */
1747 static guint8*
1748 open_aot_data (MonoAssembly *assembly, MonoAotFileInfo *info, void **ret_handle)
1750 MonoFileMap *map;
1751 char *filename;
1752 guint8 *data;
1754 if (aot_data_load_func) {
1755 data = aot_data_load_func (assembly, info->datafile_size, aot_data_func_user_data, ret_handle);
1756 g_assert (data);
1757 return data;
1761 * Use <assembly name>.aotdata as the default implementation if no callback is given
1763 filename = g_strdup_printf ("%s.aotdata", assembly->image->name);
1764 map = mono_file_map_open (filename);
1765 g_assert (map);
1766 data = mono_file_map (info->datafile_size, MONO_MMAP_READ, mono_file_map_fd (map), 0, ret_handle);
1767 g_assert (data);
1769 return data;
1772 static gboolean
1773 check_usable (MonoAssembly *assembly, MonoAotFileInfo *info, guint8 *blob, char **out_msg)
1775 char *build_info;
1776 char *msg = NULL;
1777 gboolean usable = TRUE;
1778 gboolean full_aot, safepoints;
1779 guint32 excluded_cpu_optimizations;
1781 if (strcmp (assembly->image->guid, info->assembly_guid)) {
1782 msg = g_strdup_printf ("doesn't match assembly");
1783 usable = FALSE;
1786 build_info = mono_get_runtime_build_info ();
1787 if (strlen ((const char *)info->runtime_version) > 0 && strcmp (info->runtime_version, build_info)) {
1788 msg = g_strdup_printf ("compiled against runtime version '%s' while this runtime has version '%s'", info->runtime_version, build_info);
1789 usable = FALSE;
1791 g_free (build_info);
1793 full_aot = info->flags & MONO_AOT_FILE_FLAG_FULL_AOT;
1795 if (mono_aot_only && !full_aot) {
1796 msg = g_strdup_printf ("not compiled with --aot=full");
1797 usable = FALSE;
1799 if (!mono_aot_only && full_aot) {
1800 msg = g_strdup_printf ("compiled with --aot=full");
1801 usable = FALSE;
1803 if (mono_llvm_only && !(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
1804 msg = g_strdup_printf ("not compiled with --aot=llvmonly");
1805 usable = FALSE;
1807 if (mini_get_debug_options ()->mdb_optimizations && !(info->flags & MONO_AOT_FILE_FLAG_DEBUG) && !full_aot) {
1808 msg = g_strdup_printf ("not compiled for debugging");
1809 usable = FALSE;
1812 mono_arch_cpu_optimizations (&excluded_cpu_optimizations);
1813 if (info->opts & excluded_cpu_optimizations) {
1814 msg = g_strdup_printf ("compiled with unsupported CPU optimizations");
1815 usable = FALSE;
1818 if (!mono_aot_only && (info->simd_opts & ~mono_arch_cpu_enumerate_simd_versions ())) {
1819 msg = g_strdup_printf ("compiled with unsupported SIMD extensions");
1820 usable = FALSE;
1823 if (info->gc_name_index != -1) {
1824 char *gc_name = (char*)&blob [info->gc_name_index];
1825 const char *current_gc_name = mono_gc_get_gc_name ();
1827 if (strcmp (current_gc_name, gc_name) != 0) {
1828 msg = g_strdup_printf ("compiled against GC %s, while the current runtime uses GC %s.\n", gc_name, current_gc_name);
1829 usable = FALSE;
1833 safepoints = info->flags & MONO_AOT_FILE_FLAG_SAFEPOINTS;
1835 if (!safepoints && mono_threads_are_safepoints_enabled ()) {
1836 msg = g_strdup_printf ("not compiled with safepoints");
1837 usable = FALSE;
1840 *out_msg = msg;
1841 return usable;
1845 * TABLE should point to a table of call instructions. Return the address called by the INDEXth entry.
1847 static void*
1848 get_call_table_entry (void *table, int index)
1850 #if defined(TARGET_ARM)
1851 guint32 *ins_addr;
1852 guint32 ins;
1853 gint32 offset;
1855 ins_addr = (guint32*)table + index;
1856 ins = *ins_addr;
1857 if ((ins >> ARMCOND_SHIFT) == ARMCOND_NV) {
1858 /* blx */
1859 offset = (((int)(((ins & 0xffffff) << 1) | ((ins >> 24) & 0x1))) << 7) >> 7;
1860 return (char*)ins_addr + (offset * 2) + 8 + 1;
1861 } else {
1862 offset = (((int)ins & 0xffffff) << 8) >> 8;
1863 return (char*)ins_addr + (offset * 4) + 8;
1865 #elif defined(TARGET_ARM64)
1866 return mono_arch_get_call_target ((guint8*)table + (index * 4) + 4);
1867 #elif defined(TARGET_X86) || defined(TARGET_AMD64)
1868 /* The callee expects an ip which points after the call */
1869 return mono_arch_get_call_target ((guint8*)table + (index * 5) + 5);
1870 #else
1871 g_assert_not_reached ();
1872 return NULL;
1873 #endif
1877 * init_amodule_got:
1879 * Initialize the shared got entries for AMODULE.
1881 static void
1882 init_amodule_got (MonoAotModule *amodule)
1884 MonoJumpInfo *ji;
1885 MonoMemPool *mp;
1886 MonoJumpInfo *patches;
1887 guint32 got_offsets [128];
1888 ERROR_DECL (error);
1889 int i, npatches;
1891 /* These can't be initialized in load_aot_module () */
1892 if (amodule->shared_got [0] || amodule->got_initializing)
1893 return;
1895 amodule->got_initializing = TRUE;
1897 mp = mono_mempool_new ();
1898 npatches = amodule->info.nshared_got_entries;
1899 for (i = 0; i < npatches; ++i)
1900 got_offsets [i] = i;
1901 patches = decode_patches (amodule, mp, npatches, FALSE, got_offsets);
1902 g_assert (patches);
1903 for (i = 0; i < npatches; ++i) {
1904 ji = &patches [i];
1906 if (ji->type == MONO_PATCH_INFO_GC_CARD_TABLE_ADDR && !mono_gc_is_moving ()) {
1907 amodule->shared_got [i] = NULL;
1908 } else if (ji->type == MONO_PATCH_INFO_GC_NURSERY_START && !mono_gc_is_moving ()) {
1909 amodule->shared_got [i] = NULL;
1910 } else if (ji->type == MONO_PATCH_INFO_GC_NURSERY_BITS && !mono_gc_is_moving ()) {
1911 amodule->shared_got [i] = NULL;
1912 } else if (ji->type == MONO_PATCH_INFO_IMAGE) {
1913 amodule->shared_got [i] = amodule->assembly->image;
1914 } else if (ji->type == MONO_PATCH_INFO_MSCORLIB_GOT_ADDR) {
1915 if (mono_defaults.corlib) {
1916 MonoAotModule *mscorlib_amodule = (MonoAotModule *)mono_defaults.corlib->aot_module;
1918 if (mscorlib_amodule)
1919 amodule->shared_got [i] = mscorlib_amodule->got;
1920 } else {
1921 amodule->shared_got [i] = amodule->got;
1923 } else if (ji->type == MONO_PATCH_INFO_AOT_MODULE) {
1924 amodule->shared_got [i] = amodule;
1925 } else {
1926 amodule->shared_got [i] = mono_resolve_patch_target (NULL, mono_get_root_domain (), NULL, ji, FALSE, error);
1927 mono_error_assert_ok (error);
1931 if (amodule->got) {
1932 for (i = 0; i < npatches; ++i)
1933 amodule->got [i] = amodule->shared_got [i];
1935 if (amodule->llvm_got) {
1936 for (i = 0; i < npatches; ++i)
1937 amodule->llvm_got [i] = amodule->shared_got [i];
1940 mono_mempool_destroy (mp);
1943 static void
1944 load_aot_module (MonoAssembly *assembly, gpointer user_data)
1946 char *aot_name, *found_aot_name;
1947 MonoAotModule *amodule;
1948 MonoDl *sofile;
1949 gboolean usable = TRUE;
1950 char *version_symbol = NULL;
1951 char *msg = NULL;
1952 gpointer *globals = NULL;
1953 MonoAotFileInfo *info = NULL;
1954 int i, version;
1955 gboolean do_load_image = TRUE;
1956 int align_double, align_int64;
1957 guint8 *aot_data = NULL;
1959 if (mono_compile_aot)
1960 return;
1962 if (assembly->image->aot_module)
1964 * Already loaded. This can happen because the assembly loading code might invoke
1965 * the assembly load hooks multiple times for the same assembly.
1967 return;
1969 if (image_is_dynamic (assembly->image) || assembly->ref_only || mono_domain_get () != mono_get_root_domain ())
1970 return;
1972 mono_aot_lock ();
1974 if (container_assm_name && !container_amodule) {
1975 char *local_ref = container_assm_name;
1976 container_assm_name = NULL;
1977 MonoImageOpenStatus status = MONO_IMAGE_OK;
1978 gchar *dll = g_strdup_printf ( "%s.dll", local_ref);
1979 MonoAssembly *assm = mono_assembly_open_a_lot (dll, &status, FALSE, FALSE);
1980 if (!assm) {
1981 gchar *exe = g_strdup_printf ("%s.exe", local_ref);
1982 assm = mono_assembly_open_a_lot (exe, &status, FALSE, FALSE);
1984 g_assert (assm);
1985 load_aot_module (assm, NULL);
1986 container_amodule = assm->image->aot_module;
1989 if (static_aot_modules)
1990 info = (MonoAotFileInfo *)g_hash_table_lookup (static_aot_modules, assembly->aname.name);
1992 mono_aot_unlock ();
1994 sofile = NULL;
1996 found_aot_name = NULL;
1998 if (info) {
1999 /* Statically linked AOT module */
2000 aot_name = g_strdup_printf ("%s", assembly->aname.name);
2001 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "Found statically linked AOT module '%s'.", aot_name);
2002 if (!(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
2003 globals = (void **)info->globals;
2004 g_assert (globals);
2006 found_aot_name = g_strdup (aot_name);
2007 } else {
2008 char *err;
2010 if (enable_aot_cache)
2011 sofile = aot_cache_load_module (assembly, &aot_name);
2012 if (!sofile) {
2013 aot_name = g_strdup_printf ("%s%s", assembly->image->name, MONO_SOLIB_EXT);
2015 sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
2016 if (sofile) {
2017 found_aot_name = g_strdup (aot_name);
2018 } else {
2019 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' not found: %s", aot_name, err);
2020 g_free (err);
2022 g_free (aot_name);
2024 if (!sofile) {
2025 char *basename = g_path_get_basename (assembly->image->name);
2026 aot_name = g_strdup_printf ("%s/mono/aot-cache/%s/%s%s", mono_assembly_getrootdir(), MONO_ARCHITECTURE, basename, MONO_SOLIB_EXT);
2027 g_free (basename);
2028 sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
2029 if (!sofile) {
2030 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' not found: %s", aot_name, err);
2031 g_free (err);
2033 g_free (aot_name);
2035 if (!sofile) {
2036 GList *l;
2038 for (l = mono_aot_paths; l; l = l->next) {
2039 char *path = l->data;
2041 char *basename = g_path_get_basename (assembly->image->name);
2042 aot_name = g_strdup_printf ("%s/%s%s", path, basename, MONO_SOLIB_EXT);
2043 sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
2044 if (sofile) {
2045 found_aot_name = g_strdup (aot_name);
2046 } else {
2047 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' not found: %s", aot_name, err);
2048 g_free (err);
2050 g_free (basename);
2051 g_free (aot_name);
2052 if (sofile)
2053 break;
2056 if (!sofile) {
2057 if (mono_aot_only && !mono_use_interpreter && assembly->image->tables [MONO_TABLE_METHOD].rows) {
2058 aot_name = g_strdup_printf ("%s%s", assembly->image->name, MONO_SOLIB_EXT);
2059 g_error ("Failed to load AOT module '%s' in aot-only mode.\n", aot_name);
2060 g_free (aot_name);
2062 return;
2066 if (!info) {
2067 find_symbol (sofile, globals, "mono_aot_version", (gpointer *) &version_symbol);
2068 find_symbol (sofile, globals, "mono_aot_file_info", (gpointer*)&info);
2071 // Copy aotid to MonoImage
2072 memcpy(&assembly->image->aotid, info->aotid, 16);
2074 if (version_symbol) {
2075 /* Old file format */
2076 version = atoi (version_symbol);
2077 } else {
2078 g_assert (info);
2079 version = info->version;
2082 if (version != MONO_AOT_FILE_VERSION) {
2083 msg = g_strdup_printf ("wrong file format version (expected %d got %d)", MONO_AOT_FILE_VERSION, version);
2084 usable = FALSE;
2085 } else {
2086 guint8 *blob;
2087 void *handle;
2089 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2090 aot_data = open_aot_data (assembly, info, &handle);
2092 blob = aot_data + info->table_offsets [MONO_AOT_TABLE_BLOB];
2093 } else {
2094 blob = (guint8 *)info->blob;
2097 usable = check_usable (assembly, info, blob, &msg);
2100 if (!usable) {
2101 if (mono_aot_only && !mono_use_interpreter) {
2102 g_error ("Failed to load AOT module '%s' while running in aot-only mode: %s.\n", found_aot_name, msg);
2103 } else {
2104 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable: %s.", found_aot_name, msg);
2106 g_free (msg);
2107 g_free (found_aot_name);
2108 if (sofile)
2109 mono_dl_close (sofile);
2110 assembly->image->aot_module = NULL;
2111 return;
2114 /* Sanity check */
2115 align_double = MONO_ABI_ALIGNOF (double);
2116 align_int64 = MONO_ABI_ALIGNOF (gint64);
2117 g_assert (info->double_align == align_double);
2118 g_assert (info->long_align == align_int64);
2119 g_assert (info->generic_tramp_num == MONO_TRAMPOLINE_NUM);
2121 amodule = g_new0 (MonoAotModule, 1);
2122 amodule->aot_name = found_aot_name;
2123 amodule->assembly = assembly;
2125 memcpy (&amodule->info, info, sizeof (*info));
2127 amodule->got = (void **)amodule->info.jit_got;
2128 amodule->llvm_got = (void **)amodule->info.llvm_got;
2129 amodule->globals = globals;
2130 amodule->sofile = sofile;
2131 amodule->method_to_code = g_hash_table_new (mono_aligned_addr_hash, NULL);
2132 amodule->extra_methods = g_hash_table_new (NULL, NULL);
2133 amodule->shared_got = g_new0 (gpointer, info->nshared_got_entries);
2135 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2136 for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
2137 amodule->tables [i] = aot_data + info->table_offsets [i];
2140 mono_os_mutex_init_recursive (&amodule->mutex);
2142 /* Read image table */
2144 guint32 table_len, i;
2145 char *table = NULL;
2147 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA)
2148 table = amodule->tables [MONO_AOT_TABLE_IMAGE_TABLE];
2149 else
2150 table = (char *)info->image_table;
2151 g_assert (table);
2153 table_len = *(guint32*)table;
2154 table += sizeof (guint32);
2155 amodule->image_table = g_new0 (MonoImage*, table_len);
2156 amodule->image_names = g_new0 (MonoAssemblyName, table_len);
2157 amodule->image_guids = g_new0 (char*, table_len);
2158 amodule->image_table_len = table_len;
2159 for (i = 0; i < table_len; ++i) {
2160 MonoAssemblyName *aname = &(amodule->image_names [i]);
2162 aname->name = g_strdup (table);
2163 table += strlen (table) + 1;
2164 amodule->image_guids [i] = g_strdup (table);
2165 table += strlen (table) + 1;
2166 if (table [0] != 0)
2167 aname->culture = g_strdup (table);
2168 table += strlen (table) + 1;
2169 memcpy (aname->public_key_token, table, strlen (table) + 1);
2170 table += strlen (table) + 1;
2172 table = (char *)ALIGN_PTR_TO (table, 8);
2173 aname->flags = *(guint32*)table;
2174 table += 4;
2175 aname->major = *(guint32*)table;
2176 table += 4;
2177 aname->minor = *(guint32*)table;
2178 table += 4;
2179 aname->build = *(guint32*)table;
2180 table += 4;
2181 aname->revision = *(guint32*)table;
2182 table += 4;
2186 amodule->jit_code_start = (guint8 *)info->jit_code_start;
2187 amodule->jit_code_end = (guint8 *)info->jit_code_end;
2188 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2189 amodule->blob = amodule->tables [MONO_AOT_TABLE_BLOB];
2190 amodule->method_info_offsets = amodule->tables [MONO_AOT_TABLE_METHOD_INFO_OFFSETS];
2191 amodule->ex_info_offsets = amodule->tables [MONO_AOT_TABLE_EX_INFO_OFFSETS];
2192 amodule->class_info_offsets = amodule->tables [MONO_AOT_TABLE_CLASS_INFO_OFFSETS];
2193 amodule->class_name_table = amodule->tables [MONO_AOT_TABLE_CLASS_NAME];
2194 amodule->extra_method_table = amodule->tables [MONO_AOT_TABLE_EXTRA_METHOD_TABLE];
2195 amodule->extra_method_info_offsets = amodule->tables [MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS];
2196 amodule->got_info_offsets = amodule->tables [MONO_AOT_TABLE_GOT_INFO_OFFSETS];
2197 amodule->llvm_got_info_offsets = amodule->tables [MONO_AOT_TABLE_LLVM_GOT_INFO_OFFSETS];
2198 amodule->weak_field_indexes = amodule->tables [MONO_AOT_TABLE_WEAK_FIELD_INDEXES];
2199 } else {
2200 amodule->blob = info->blob;
2201 amodule->method_info_offsets = (guint32 *)info->method_info_offsets;
2202 amodule->ex_info_offsets = (guint32 *)info->ex_info_offsets;
2203 amodule->class_info_offsets = (guint32 *)info->class_info_offsets;
2204 amodule->class_name_table = (guint16 *)info->class_name_table;
2205 amodule->extra_method_table = (guint32 *)info->extra_method_table;
2206 amodule->extra_method_info_offsets = (guint32 *)info->extra_method_info_offsets;
2207 amodule->got_info_offsets = info->got_info_offsets;
2208 amodule->llvm_got_info_offsets = info->llvm_got_info_offsets;
2209 amodule->weak_field_indexes = info->weak_field_indexes;
2211 amodule->unbox_trampolines = (guint32 *)info->unbox_trampolines;
2212 amodule->unbox_trampolines_end = (guint32 *)info->unbox_trampolines_end;
2213 amodule->unbox_trampoline_addresses = (guint32 *)info->unbox_trampoline_addresses;
2214 amodule->unwind_info = (guint8 *)info->unwind_info;
2215 amodule->mem_begin = amodule->jit_code_start;
2216 amodule->mem_end = (guint8 *)info->mem_end;
2217 amodule->plt = (guint8 *)info->plt;
2218 amodule->plt_end = (guint8 *)info->plt_end;
2219 amodule->mono_eh_frame = (guint8 *)info->mono_eh_frame;
2220 amodule->trampolines [MONO_AOT_TRAMP_SPECIFIC] = (guint8 *)info->specific_trampolines;
2221 amodule->trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = (guint8 *)info->static_rgctx_trampolines;
2222 amodule->trampolines [MONO_AOT_TRAMP_IMT] = (guint8 *)info->imt_trampolines;
2223 amodule->trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = (guint8 *)info->gsharedvt_arg_trampolines;
2225 if (!strcmp (assembly->aname.name, "mscorlib"))
2226 mscorlib_aot_module = amodule;
2228 /* Compute method addresses */
2229 amodule->methods = (void **)g_malloc0 (amodule->info.nmethods * sizeof (gpointer));
2230 for (i = 0; i < amodule->info.nmethods; ++i) {
2231 void *addr = NULL;
2233 if (amodule->info.llvm_get_method) {
2234 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
2236 addr = get_method (i);
2239 /* method_addresses () contains a table of branches, since the ios linker can update those correctly */
2240 if (!addr && amodule->info.method_addresses) {
2241 addr = get_call_table_entry (amodule->info.method_addresses, i);
2242 g_assert (addr);
2243 if (addr == amodule->info.method_addresses)
2244 addr = NULL;
2246 if (addr == NULL)
2247 amodule->methods [i] = GINT_TO_POINTER (-1);
2248 else
2249 amodule->methods [i] = addr;
2252 if (make_unreadable) {
2253 #ifndef TARGET_WIN32
2254 guint8 *addr;
2255 guint8 *page_start, *page_end;
2256 int err, len;
2258 addr = amodule->mem_begin;
2259 g_assert (addr);
2260 len = amodule->mem_end - amodule->mem_begin;
2262 /* Round down in both directions to avoid modifying data which is not ours */
2263 page_start = (guint8 *) (((gssize) (addr)) & ~ (mono_pagesize () - 1)) + mono_pagesize ();
2264 page_end = (guint8 *) (((gssize) (addr + len)) & ~ (mono_pagesize () - 1));
2265 if (page_end > page_start) {
2266 err = mono_mprotect (page_start, (page_end - page_start), MONO_MMAP_NONE);
2267 g_assert (err == 0);
2269 #endif
2272 /* Compute the boundaries of LLVM code */
2273 if (info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM)
2274 compute_llvm_code_range (amodule, &amodule->llvm_code_start, &amodule->llvm_code_end);
2276 mono_aot_lock ();
2278 if (amodule->jit_code_start) {
2279 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->jit_code_start);
2280 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->jit_code_end);
2282 if (amodule->llvm_code_start) {
2283 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->llvm_code_start);
2284 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->llvm_code_end);
2287 g_hash_table_insert (aot_modules, assembly, amodule);
2288 mono_aot_unlock ();
2290 if (amodule->jit_code_start)
2291 mono_jit_info_add_aot_module (assembly->image, amodule->jit_code_start, amodule->jit_code_end);
2292 if (amodule->llvm_code_start)
2293 mono_jit_info_add_aot_module (assembly->image, amodule->llvm_code_start, amodule->llvm_code_end);
2295 assembly->image->aot_module = amodule;
2297 if (mono_aot_only && !mono_llvm_only) {
2298 char *code;
2299 find_amodule_symbol (amodule, "specific_trampolines_page", (gpointer *)&code);
2300 amodule->use_page_trampolines = code != NULL;
2301 /*g_warning ("using page trampolines: %d", amodule->use_page_trampolines);*/
2305 * Register the plt region as a single trampoline so we can unwind from this code
2307 mono_aot_tramp_info_register (
2308 mono_tramp_info_create (
2309 NULL,
2310 amodule->plt,
2311 amodule->plt_end - amodule->plt,
2312 NULL,
2313 mono_unwind_get_cie_program ()
2315 NULL
2319 * Since we store methoddef and classdef tokens when referring to methods/classes in
2320 * referenced assemblies, we depend on the exact versions of the referenced assemblies.
2321 * MS calls this 'hard binding'. This means we have to load all referenced assemblies
2322 * non-lazily, since we can't handle out-of-date errors later.
2323 * The cached class info also depends on the exact assemblies.
2325 if (do_load_image) {
2326 for (i = 0; i < amodule->image_table_len; ++i) {
2327 ERROR_DECL (error);
2328 load_image (amodule, i, error);
2329 mono_error_cleanup (error); /* FIXME don't swallow the error */
2333 if (amodule->out_of_date) {
2334 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: Module %s is unusable because a dependency is out-of-date.", assembly->image->name);
2335 if (mono_aot_only)
2336 g_error ("Failed to load AOT module '%s' while running in aot-only mode because a dependency cannot be found or it is out of date.\n", found_aot_name);
2337 } else {
2338 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' found.", found_aot_name);
2343 * mono_aot_register_module:
2345 * This should be called by embedding code to register normal AOT modules statically linked
2346 * into the executable.
2348 * \param aot_info the value of the 'mono_aot_module_<ASSEMBLY_NAME>_info' global symbol from the AOT module.
2350 void
2351 mono_aot_register_module (gpointer *aot_info)
2353 gpointer *globals;
2354 char *aname;
2355 MonoAotFileInfo *info = (MonoAotFileInfo *)aot_info;
2357 g_assert (info->version == MONO_AOT_FILE_VERSION);
2359 if (!(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
2360 globals = (void **)info->globals;
2361 g_assert (globals);
2364 aname = (char *)info->assembly_name;
2366 /* This could be called before startup */
2367 if (aot_modules)
2368 mono_aot_lock ();
2370 if (!static_aot_modules)
2371 static_aot_modules = g_hash_table_new (g_str_hash, g_str_equal);
2373 g_hash_table_insert (static_aot_modules, aname, info);
2375 if (info->flags & MONO_AOT_FILE_FLAG_EAGER_LOAD) {
2376 g_assert (!container_assm_name);
2377 container_assm_name = aname;
2380 if (aot_modules)
2381 mono_aot_unlock ();
2384 void
2385 mono_aot_init (void)
2387 mono_os_mutex_init_recursive (&aot_mutex);
2388 mono_os_mutex_init_recursive (&aot_page_mutex);
2389 aot_modules = g_hash_table_new (NULL, NULL);
2391 mono_install_assembly_load_hook (load_aot_module, NULL);
2392 mono_counters_register ("Async JIT info size", MONO_COUNTER_INT|MONO_COUNTER_JIT, &async_jit_info_size);
2394 char *lastaot = g_getenv ("MONO_LASTAOT");
2395 if (lastaot) {
2396 mono_last_aot_method = atoi (lastaot);
2397 g_free (lastaot);
2399 aot_cache_init ();
2402 void
2403 mono_aot_cleanup (void)
2405 if (aot_jit_icall_hash)
2406 g_hash_table_destroy (aot_jit_icall_hash);
2407 if (aot_modules)
2408 g_hash_table_destroy (aot_modules);
2411 static gboolean
2412 decode_cached_class_info (MonoAotModule *module, MonoCachedClassInfo *info, guint8 *buf, guint8 **endbuf)
2414 ERROR_DECL (error);
2415 guint32 flags;
2416 MethodRef ref;
2417 gboolean res;
2419 info->vtable_size = decode_value (buf, &buf);
2420 if (info->vtable_size == -1)
2421 /* Generic type */
2422 return FALSE;
2423 flags = decode_value (buf, &buf);
2424 info->ghcimpl = (flags >> 0) & 0x1;
2425 info->has_finalize = (flags >> 1) & 0x1;
2426 info->has_cctor = (flags >> 2) & 0x1;
2427 info->has_nested_classes = (flags >> 3) & 0x1;
2428 info->blittable = (flags >> 4) & 0x1;
2429 info->has_references = (flags >> 5) & 0x1;
2430 info->has_static_refs = (flags >> 6) & 0x1;
2431 info->no_special_static_fields = (flags >> 7) & 0x1;
2432 info->is_generic_container = (flags >> 8) & 0x1;
2433 info->has_weak_fields = (flags >> 9) & 0x1;
2435 if (info->has_cctor) {
2436 res = decode_method_ref (module, &ref, buf, &buf, error);
2437 mono_error_assert_ok (error); /* FIXME don't swallow the error */
2438 if (!res)
2439 return FALSE;
2440 info->cctor_token = ref.token;
2442 if (info->has_finalize) {
2443 res = decode_method_ref (module, &ref, buf, &buf, error);
2444 mono_error_assert_ok (error); /* FIXME don't swallow the error */
2445 if (!res)
2446 return FALSE;
2447 info->finalize_image = ref.image;
2448 info->finalize_token = ref.token;
2451 info->instance_size = decode_value (buf, &buf);
2452 info->class_size = decode_value (buf, &buf);
2453 info->packing_size = decode_value (buf, &buf);
2454 info->min_align = decode_value (buf, &buf);
2456 *endbuf = buf;
2458 return TRUE;
2461 gpointer
2462 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot, MonoError *error)
2464 int i;
2465 MonoClass *klass = vtable->klass;
2466 MonoAotModule *amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
2467 guint8 *info, *p;
2468 MonoCachedClassInfo class_info;
2469 gboolean err;
2470 MethodRef ref;
2471 gboolean res;
2472 gpointer addr;
2473 ERROR_DECL_VALUE (inner_error);
2475 error_init (error);
2477 if (MONO_CLASS_IS_INTERFACE (klass) || m_class_get_rank (klass) || !amodule)
2478 return NULL;
2480 info = &amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (m_class_get_type_token (klass)) - 1)];
2481 p = info;
2483 err = decode_cached_class_info (amodule, &class_info, p, &p);
2484 if (!err)
2485 return NULL;
2487 for (i = 0; i < slot; ++i) {
2488 decode_method_ref (amodule, &ref, p, &p, &inner_error);
2489 mono_error_cleanup (&inner_error); /* FIXME don't swallow the error */
2492 res = decode_method_ref (amodule, &ref, p, &p, &inner_error);
2493 mono_error_cleanup (&inner_error); /* FIXME don't swallow the error */
2494 if (!res)
2495 return NULL;
2496 if (ref.no_aot_trampoline)
2497 return NULL;
2499 if (mono_metadata_token_index (ref.token) == 0 || mono_metadata_token_table (ref.token) != MONO_TABLE_METHOD)
2500 return NULL;
2502 addr = mono_aot_get_method_from_token (domain, ref.image, ref.token, error);
2503 return addr;
2506 gboolean
2507 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
2509 MonoAotModule *amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
2510 guint8 *p;
2511 gboolean err;
2513 if (m_class_get_rank (klass) || !m_class_get_type_token (klass) || !amodule)
2514 return FALSE;
2516 p = (guint8*)&amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (m_class_get_type_token (klass)) - 1)];
2518 err = decode_cached_class_info (amodule, res, p, &p);
2519 if (!err)
2520 return FALSE;
2522 return TRUE;
2526 * mono_aot_get_class_from_name:
2528 * Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
2529 * using a cache stored in the AOT file.
2530 * Stores the resulting class in *KLASS if found, stores NULL otherwise.
2532 * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was
2533 * found.
2535 gboolean
2536 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
2538 MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
2539 guint16 *table, *entry;
2540 guint16 table_size;
2541 guint32 hash;
2542 char full_name_buf [1024];
2543 char *full_name;
2544 const char *name2, *name_space2;
2545 MonoTableInfo *t;
2546 guint32 cols [MONO_TYPEDEF_SIZE];
2547 GHashTable *nspace_table;
2549 if (!amodule || !amodule->class_name_table)
2550 return FALSE;
2552 amodule_lock (amodule);
2554 *klass = NULL;
2556 /* First look in the cache */
2557 if (!amodule->name_cache)
2558 amodule->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
2559 nspace_table = (GHashTable *)g_hash_table_lookup (amodule->name_cache, name_space);
2560 if (nspace_table) {
2561 *klass = (MonoClass *)g_hash_table_lookup (nspace_table, name);
2562 if (*klass) {
2563 amodule_unlock (amodule);
2564 return TRUE;
2568 table_size = amodule->class_name_table [0];
2569 table = amodule->class_name_table + 1;
2571 if (name_space [0] == '\0')
2572 full_name = g_strdup_printf ("%s", name);
2573 else {
2574 if (strlen (name_space) + strlen (name) < 1000) {
2575 sprintf (full_name_buf, "%s.%s", name_space, name);
2576 full_name = full_name_buf;
2577 } else {
2578 full_name = g_strdup_printf ("%s.%s", name_space, name);
2581 hash = mono_metadata_str_hash (full_name) % table_size;
2582 if (full_name != full_name_buf)
2583 g_free (full_name);
2585 entry = &table [hash * 2];
2587 if (entry [0] != 0) {
2588 t = &image->tables [MONO_TABLE_TYPEDEF];
2590 while (TRUE) {
2591 guint32 index = entry [0];
2592 guint32 next = entry [1];
2593 guint32 token = mono_metadata_make_token (MONO_TABLE_TYPEDEF, index);
2595 name_table_accesses ++;
2597 mono_metadata_decode_row (t, index - 1, cols, MONO_TYPEDEF_SIZE);
2599 name2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
2600 name_space2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
2602 if (!strcmp (name, name2) && !strcmp (name_space, name_space2)) {
2603 ERROR_DECL (error);
2604 amodule_unlock (amodule);
2605 *klass = mono_class_get_checked (image, token, error);
2606 if (!mono_error_ok (error))
2607 mono_error_cleanup (error); /* FIXME don't swallow the error */
2609 /* Add to cache */
2610 if (*klass) {
2611 amodule_lock (amodule);
2612 nspace_table = (GHashTable *)g_hash_table_lookup (amodule->name_cache, name_space);
2613 if (!nspace_table) {
2614 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
2615 g_hash_table_insert (amodule->name_cache, (char*)name_space2, nspace_table);
2617 g_hash_table_insert (nspace_table, (char*)name2, *klass);
2618 amodule_unlock (amodule);
2620 return TRUE;
2623 if (next != 0) {
2624 entry = &table [next * 2];
2625 } else {
2626 break;
2631 amodule_unlock (amodule);
2633 return TRUE;
2636 GHashTable *
2637 mono_aot_get_weak_field_indexes (MonoImage *image)
2639 MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
2641 if (!amodule)
2642 return NULL;
2644 /* Initialize weak field indexes from the cached copy */
2645 guint32 *indexes = amodule->weak_field_indexes;
2646 int len = indexes [0];
2647 GHashTable *indexes_hash = g_hash_table_new (NULL, NULL);
2648 for (int i = 0; i < len; ++i)
2649 g_hash_table_insert (indexes_hash, GUINT_TO_POINTER (indexes [i + 1]), GUINT_TO_POINTER (1));
2650 return indexes_hash;
2653 /* Compute the boundaries of the LLVM code for AMODULE. */
2654 static void
2655 compute_llvm_code_range (MonoAotModule *amodule, guint8 **code_start, guint8 **code_end)
2657 guint8 *p;
2658 int version, fde_count;
2659 gint32 *table;
2661 if (amodule->info.llvm_get_method) {
2662 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
2664 *code_start = (guint8 *)get_method (-1);
2665 *code_end = (guint8 *)get_method (-2);
2667 g_assert (*code_end > *code_start);
2668 return;
2671 g_assert (amodule->mono_eh_frame);
2673 p = amodule->mono_eh_frame;
2675 /* p points to data emitted by LLVM in DwarfException::EmitMonoEHFrame () */
2677 /* Header */
2678 version = *p;
2679 g_assert (version == 3);
2680 p ++;
2681 p ++;
2682 p = (guint8 *)ALIGN_PTR_TO (p, 4);
2684 fde_count = *(guint32*)p;
2685 p += 4;
2686 table = (gint32*)p;
2688 if (fde_count > 0) {
2689 *code_start = (guint8 *)amodule->methods [table [0]];
2690 *code_end = (guint8*)amodule->methods [table [(fde_count - 1) * 2]] + table [fde_count * 2];
2691 } else {
2692 *code_start = NULL;
2693 *code_end = NULL;
2697 static gboolean
2698 is_llvm_code (MonoAotModule *amodule, guint8 *code)
2700 if ((guint8*)code >= amodule->llvm_code_start && (guint8*)code < amodule->llvm_code_end)
2701 return TRUE;
2702 else
2703 return FALSE;
2706 static gboolean
2707 is_thumb_code (MonoAotModule *amodule, guint8 *code)
2709 if (is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_THUMB))
2710 return TRUE;
2711 else
2712 return FALSE;
2716 * decode_llvm_mono_eh_frame:
2718 * Decode the EH information emitted by our modified LLVM compiler and construct a
2719 * MonoJitInfo structure from it.
2720 * If JINFO is NULL, set OUT_LLVM_CLAUSES to the number of llvm level clauses.
2721 * This function is async safe when called in async context.
2723 static void
2724 decode_llvm_mono_eh_frame (MonoAotModule *amodule, MonoDomain *domain, MonoJitInfo *jinfo,
2725 guint8 *code, guint32 code_len,
2726 MonoJitExceptionInfo *clauses, int num_clauses,
2727 GSList **nesting,
2728 int *this_reg, int *this_offset, int *out_llvm_clauses)
2730 guint8 *p, *code1, *code2;
2731 guint8 *fde, *cie, *code_start, *code_end;
2732 int version, fde_count;
2733 gint32 *table;
2734 int i, pos, left, right;
2735 MonoJitExceptionInfo *ei;
2736 guint32 fde_len, ei_len, nested_len, nindex;
2737 gpointer *type_info;
2738 MonoLLVMFDEInfo info;
2739 guint8 *unw_info;
2740 gboolean async;
2742 async = mono_thread_info_is_async_context ();
2744 if (!amodule->mono_eh_frame) {
2745 if (!jinfo) {
2746 *out_llvm_clauses = num_clauses;
2747 return;
2749 memcpy (jinfo->clauses, clauses, num_clauses * sizeof (MonoJitExceptionInfo));
2750 return;
2753 g_assert (amodule->mono_eh_frame && code);
2755 p = amodule->mono_eh_frame;
2757 /* p points to data emitted by LLVM in DwarfMonoException::EmitMonoEHFrame () */
2759 /* Header */
2760 version = *p;
2761 g_assert (version == 3);
2762 p ++;
2763 /* func_encoding = *p; */
2764 p ++;
2765 p = (guint8 *)ALIGN_PTR_TO (p, 4);
2767 fde_count = *(guint32*)p;
2768 p += 4;
2769 table = (gint32*)p;
2771 /* There is +1 entry in the table */
2772 cie = p + ((fde_count + 1) * 8);
2774 /* Binary search in the table to find the entry for code */
2775 left = 0;
2776 right = fde_count;
2777 while (TRUE) {
2778 pos = (left + right) / 2;
2780 /* The table contains method index/fde offset pairs */
2781 g_assert (table [(pos * 2)] != -1);
2782 code1 = (guint8 *)amodule->methods [table [(pos * 2)]];
2783 if (pos + 1 == fde_count) {
2784 code2 = amodule->llvm_code_end;
2785 } else {
2786 g_assert (table [(pos + 1) * 2] != -1);
2787 code2 = (guint8 *)amodule->methods [table [(pos + 1) * 2]];
2790 if (code < code1)
2791 right = pos;
2792 else if (code >= code2)
2793 left = pos + 1;
2794 else
2795 break;
2798 code_start = (guint8 *)amodule->methods [table [(pos * 2)]];
2799 if (pos + 1 == fde_count) {
2800 /* The +1 entry in the table contains the length of the last method */
2801 int len = table [(pos + 1) * 2];
2802 code_end = code_start + len;
2803 } else {
2804 code_end = (guint8 *)amodule->methods [table [(pos + 1) * 2]];
2806 if (!code_len)
2807 code_len = code_end - code_start;
2809 g_assert (code >= code_start && code < code_end);
2811 if (is_thumb_code (amodule, code_start))
2812 /* Clear thumb flag */
2813 code_start = (guint8*)(((mgreg_t)code_start) & ~1);
2815 fde = amodule->mono_eh_frame + table [(pos * 2) + 1];
2816 /* This won't overflow because there is +1 entry in the table */
2817 fde_len = table [(pos * 2) + 2 + 1] - table [(pos * 2) + 1];
2819 /* Compute lengths */
2820 mono_unwind_decode_llvm_mono_fde (fde, fde_len, cie, code_start, &info, NULL, NULL, NULL);
2822 if (async) {
2823 /* These are leaked, but the leak is bounded */
2824 ei = mono_domain_alloc0_lock_free (domain, info.ex_info_len * sizeof (MonoJitExceptionInfo));
2825 type_info = mono_domain_alloc0_lock_free (domain, info.ex_info_len * sizeof (gpointer));
2826 unw_info = mono_domain_alloc0_lock_free (domain, info.unw_info_len);
2827 } else {
2828 ei = (MonoJitExceptionInfo *)g_malloc0 (info.ex_info_len * sizeof (MonoJitExceptionInfo));
2829 type_info = (gpointer *)g_malloc0 (info.ex_info_len * sizeof (gpointer));
2830 unw_info = (guint8*)g_malloc0 (info.unw_info_len);
2832 mono_unwind_decode_llvm_mono_fde (fde, fde_len, cie, code_start, &info, ei, type_info, unw_info);
2834 ei_len = info.ex_info_len;
2835 *this_reg = info.this_reg;
2836 *this_offset = info.this_offset;
2839 * LLVM might represent one IL region with multiple regions.
2842 /* Count number of nested clauses */
2843 nested_len = 0;
2844 for (i = 0; i < ei_len; ++i) {
2845 /* This might be unaligned */
2846 gint32 cindex1 = read32 (type_info [i]);
2847 GSList *l;
2849 for (l = nesting [cindex1]; l; l = l->next)
2850 nested_len ++;
2853 if (!jinfo) {
2854 *out_llvm_clauses = ei_len + nested_len;
2855 return;
2858 /* Store the unwind info addr/length in the MonoJitInfo structure itself so its async safe */
2859 MonoUnwindJitInfo *jinfo_unwind = mono_jit_info_get_unwind_info (jinfo);
2860 g_assert (jinfo_unwind);
2861 jinfo_unwind->unw_info = unw_info;
2862 jinfo_unwind->unw_info_len = info.unw_info_len;
2864 for (i = 0; i < ei_len; ++i) {
2866 * clauses contains the original IL exception info saved by the AOT
2867 * compiler, we have to combine that with the information produced by LLVM
2869 /* The type_info entries contain IL clause indexes */
2870 int clause_index = read32 (type_info [i]);
2871 MonoJitExceptionInfo *jei = &jinfo->clauses [i];
2872 MonoJitExceptionInfo *orig_jei = &clauses [clause_index];
2874 g_assert (clause_index < num_clauses);
2875 jei->flags = orig_jei->flags;
2876 jei->data.catch_class = orig_jei->data.catch_class;
2878 jei->try_start = ei [i].try_start;
2879 jei->try_end = ei [i].try_end;
2880 jei->handler_start = ei [i].handler_start;
2881 jei->clause_index = clause_index;
2883 if (is_thumb_code (amodule, (guint8 *)jei->try_start)) {
2884 jei->try_start = (void*)((mgreg_t)jei->try_start & ~1);
2885 jei->try_end = (void*)((mgreg_t)jei->try_end & ~1);
2886 /* Make sure we transition to thumb when a handler starts */
2887 jei->handler_start = (void*)((mgreg_t)jei->handler_start + 1);
2891 /* See exception_cb () in mini-llvm.c as to why this is needed */
2892 nindex = ei_len;
2893 for (i = 0; i < ei_len; ++i) {
2894 gint32 cindex1 = read32 (type_info [i]);
2895 GSList *l;
2897 for (l = nesting [cindex1]; l; l = l->next) {
2898 gint32 nesting_cindex = GPOINTER_TO_INT (l->data);
2899 MonoJitExceptionInfo *nesting_ei;
2900 MonoJitExceptionInfo *nesting_clause = &clauses [nesting_cindex];
2902 nesting_ei = &jinfo->clauses [nindex];
2903 nindex ++;
2905 memcpy (nesting_ei, &jinfo->clauses [i], sizeof (MonoJitExceptionInfo));
2906 nesting_ei->flags = nesting_clause->flags;
2907 nesting_ei->data.catch_class = nesting_clause->data.catch_class;
2908 nesting_ei->clause_index = nesting_cindex;
2911 g_assert (nindex == ei_len + nested_len);
2914 static gpointer
2915 alloc0_jit_info_data (MonoDomain *domain, int size, gboolean async_context)
2917 gpointer res;
2919 if (async_context) {
2920 res = mono_domain_alloc0_lock_free (domain, size);
2921 mono_atomic_fetch_add_i32 (&async_jit_info_size, size);
2922 } else {
2923 res = mono_domain_alloc0 (domain, size);
2925 return res;
2929 * LOCKING: Acquires the domain lock.
2930 * In async context, this is async safe.
2932 static MonoJitInfo*
2933 decode_exception_debug_info (MonoAotModule *amodule, MonoDomain *domain,
2934 MonoMethod *method, guint8* ex_info,
2935 guint8 *code, guint32 code_len)
2937 ERROR_DECL (error);
2938 int i, buf_len, num_clauses, len;
2939 MonoJitInfo *jinfo;
2940 MonoJitInfoFlags flags = JIT_INFO_NONE;
2941 guint unwind_info, eflags;
2942 gboolean has_generic_jit_info, has_dwarf_unwind_info, has_clauses, has_seq_points, has_try_block_holes, has_arch_eh_jit_info;
2943 gboolean from_llvm, has_gc_map;
2944 guint8 *p;
2945 int try_holes_info_size, num_holes;
2946 int this_reg = 0, this_offset = 0;
2947 gboolean async;
2949 /* Load the method info from the AOT file */
2950 async = mono_thread_info_is_async_context ();
2952 p = ex_info;
2953 eflags = decode_value (p, &p);
2954 has_generic_jit_info = (eflags & 1) != 0;
2955 has_dwarf_unwind_info = (eflags & 2) != 0;
2956 has_clauses = (eflags & 4) != 0;
2957 has_seq_points = (eflags & 8) != 0;
2958 from_llvm = (eflags & 16) != 0;
2959 has_try_block_holes = (eflags & 32) != 0;
2960 has_gc_map = (eflags & 64) != 0;
2961 has_arch_eh_jit_info = (eflags & 128) != 0;
2963 if (has_dwarf_unwind_info) {
2964 unwind_info = decode_value (p, &p);
2965 g_assert (unwind_info < (1 << 30));
2966 } else {
2967 unwind_info = decode_value (p, &p);
2969 if (has_generic_jit_info)
2970 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_GENERIC_JIT_INFO);
2972 if (has_try_block_holes) {
2973 num_holes = decode_value (p, &p);
2974 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_TRY_BLOCK_HOLES);
2975 try_holes_info_size = sizeof (MonoTryBlockHoleTableJitInfo) + num_holes * sizeof (MonoTryBlockHoleJitInfo);
2976 } else {
2977 num_holes = try_holes_info_size = 0;
2980 if (has_arch_eh_jit_info) {
2981 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_ARCH_EH_INFO);
2982 /* Overwrite the original code_len which includes alignment padding */
2983 code_len = decode_value (p, &p);
2986 /* Exception table */
2987 if (has_clauses)
2988 num_clauses = decode_value (p, &p);
2989 else
2990 num_clauses = 0;
2992 if (from_llvm) {
2993 MonoJitExceptionInfo *clauses;
2994 GSList **nesting;
2997 * Part of the info is encoded by the AOT compiler, the rest is in the .eh_frame
2998 * section.
3000 if (async) {
3001 if (num_clauses < 16) {
3002 clauses = g_newa (MonoJitExceptionInfo, num_clauses);
3003 nesting = g_newa (GSList*, num_clauses);
3004 } else {
3005 clauses = alloc0_jit_info_data (domain, sizeof (MonoJitExceptionInfo) * num_clauses, TRUE);
3006 nesting = alloc0_jit_info_data (domain, sizeof (GSList*) * num_clauses, TRUE);
3008 memset (clauses, 0, sizeof (MonoJitExceptionInfo) * num_clauses);
3009 memset (nesting, 0, sizeof (GSList*) * num_clauses);
3010 } else {
3011 clauses = g_new0 (MonoJitExceptionInfo, num_clauses);
3012 nesting = g_new0 (GSList*, num_clauses);
3015 for (i = 0; i < num_clauses; ++i) {
3016 MonoJitExceptionInfo *ei = &clauses [i];
3018 ei->flags = decode_value (p, &p);
3020 if (!(ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)) {
3021 int len = decode_value (p, &p);
3023 if (len > 0) {
3024 if (async) {
3025 p += len;
3026 } else {
3027 ei->data.catch_class = decode_klass_ref (amodule, p, &p, error);
3028 mono_error_cleanup (error); /* FIXME don't swallow the error */
3033 ei->clause_index = i;
3035 ei->try_offset = decode_value (p, &p);
3036 ei->try_len = decode_value (p, &p);
3037 ei->handler_offset = decode_value (p, &p);
3038 ei->handler_len = decode_value (p, &p);
3040 /* Read the list of nesting clauses */
3041 while (TRUE) {
3042 int nesting_index = decode_value (p, &p);
3043 if (nesting_index == -1)
3044 break;
3045 // FIXME: async
3046 g_assert (!async);
3047 nesting [i] = g_slist_prepend (nesting [i], GINT_TO_POINTER (nesting_index));
3051 flags |= JIT_INFO_HAS_UNWIND_INFO;
3053 int num_llvm_clauses;
3054 /* Get the length first */
3055 decode_llvm_mono_eh_frame (amodule, domain, NULL, code, code_len, clauses, num_clauses, nesting, &this_reg, &this_offset, &num_llvm_clauses);
3056 len = mono_jit_info_size (flags, num_llvm_clauses, num_holes);
3057 jinfo = (MonoJitInfo *)alloc0_jit_info_data (domain, len, async);
3058 mono_jit_info_init (jinfo, method, code, code_len, flags, num_llvm_clauses, num_holes);
3060 decode_llvm_mono_eh_frame (amodule, domain, jinfo, code, code_len, clauses, num_clauses, nesting, &this_reg, &this_offset, NULL);
3062 if (!async) {
3063 g_free (clauses);
3064 for (i = 0; i < num_clauses; ++i)
3065 g_slist_free (nesting [i]);
3066 g_free (nesting);
3068 jinfo->from_llvm = 1;
3069 } else {
3070 len = mono_jit_info_size (flags, num_clauses, num_holes);
3071 jinfo = (MonoJitInfo *)alloc0_jit_info_data (domain, len, async);
3072 mono_jit_info_init (jinfo, method, code, code_len, flags, num_clauses, num_holes);
3074 for (i = 0; i < jinfo->num_clauses; ++i) {
3075 MonoJitExceptionInfo *ei = &jinfo->clauses [i];
3077 ei->flags = decode_value (p, &p);
3079 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
3080 /* Not used for catch clauses */
3081 if (ei->flags != MONO_EXCEPTION_CLAUSE_NONE)
3082 ei->exvar_offset = decode_value (p, &p);
3083 #else
3084 ei->exvar_offset = decode_value (p, &p);
3085 #endif
3087 if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
3088 ei->data.filter = code + decode_value (p, &p);
3089 else {
3090 int len = decode_value (p, &p);
3092 if (len > 0) {
3093 if (async) {
3094 p += len;
3095 } else {
3096 ei->data.catch_class = decode_klass_ref (amodule, p, &p, error);
3097 mono_error_cleanup (error); /* FIXME don't swallow the error */
3102 ei->try_start = code + decode_value (p, &p);
3103 ei->try_end = code + decode_value (p, &p);
3104 ei->handler_start = code + decode_value (p, &p);
3107 jinfo->unwind_info = unwind_info;
3108 jinfo->domain_neutral = 0;
3109 jinfo->from_aot = 1;
3112 if (has_try_block_holes) {
3113 MonoTryBlockHoleTableJitInfo *table;
3115 g_assert (jinfo->has_try_block_holes);
3117 table = mono_jit_info_get_try_block_hole_table_info (jinfo);
3118 g_assert (table);
3120 table->num_holes = (guint16)num_holes;
3121 for (i = 0; i < num_holes; ++i) {
3122 MonoTryBlockHoleJitInfo *hole = &table->holes [i];
3123 hole->clause = decode_value (p, &p);
3124 hole->length = decode_value (p, &p);
3125 hole->offset = decode_value (p, &p);
3129 if (has_arch_eh_jit_info) {
3130 MonoArchEHJitInfo *eh_info;
3132 g_assert (jinfo->has_arch_eh_info);
3134 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
3135 eh_info->stack_size = decode_value (p, &p);
3136 eh_info->epilog_size = decode_value (p, &p);
3139 if (async) {
3140 /* The rest is not needed in async mode */
3141 jinfo->async = TRUE;
3142 jinfo->d.aot_info = amodule;
3143 // FIXME: Cache
3144 return jinfo;
3147 if (has_generic_jit_info) {
3148 MonoGenericJitInfo *gi;
3149 int len;
3151 g_assert (jinfo->has_generic_jit_info);
3153 gi = mono_jit_info_get_generic_jit_info (jinfo);
3154 g_assert (gi);
3156 gi->nlocs = decode_value (p, &p);
3157 if (gi->nlocs) {
3158 gi->locations = (MonoDwarfLocListEntry *)alloc0_jit_info_data (domain, gi->nlocs * sizeof (MonoDwarfLocListEntry), async);
3159 for (i = 0; i < gi->nlocs; ++i) {
3160 MonoDwarfLocListEntry *entry = &gi->locations [i];
3162 entry->is_reg = decode_value (p, &p);
3163 entry->reg = decode_value (p, &p);
3164 if (!entry->is_reg)
3165 entry->offset = decode_value (p, &p);
3166 if (i > 0)
3167 entry->from = decode_value (p, &p);
3168 entry->to = decode_value (p, &p);
3170 gi->has_this = 1;
3171 } else {
3172 if (from_llvm) {
3173 gi->has_this = this_reg != -1;
3174 gi->this_reg = this_reg;
3175 gi->this_offset = this_offset;
3176 } else {
3177 gi->has_this = decode_value (p, &p);
3178 gi->this_reg = decode_value (p, &p);
3179 gi->this_offset = decode_value (p, &p);
3183 len = decode_value (p, &p);
3184 if (async) {
3185 p += len;
3186 } else {
3187 jinfo->d.method = decode_resolve_method_ref (amodule, p, &p, error);
3188 mono_error_cleanup (error); /* FIXME don't swallow the error */
3191 gi->generic_sharing_context = alloc0_jit_info_data (domain, sizeof (MonoGenericSharingContext), async);
3192 if (decode_value (p, &p)) {
3193 /* gsharedvt */
3194 MonoGenericSharingContext *gsctx = gi->generic_sharing_context;
3196 gsctx->is_gsharedvt = TRUE;
3200 if (method && has_seq_points) {
3201 MonoSeqPointInfo *seq_points;
3203 p += mono_seq_point_info_read (&seq_points, p, FALSE);
3205 mono_domain_lock (domain);
3206 /* This could be set already since this function can be called more than once for the same method */
3207 if (!g_hash_table_lookup (domain_jit_info (domain)->seq_points, method))
3208 g_hash_table_insert (domain_jit_info (domain)->seq_points, method, seq_points);
3209 else
3210 mono_seq_point_info_free (seq_points);
3211 mono_domain_unlock (domain);
3214 /* Load debug info */
3215 buf_len = decode_value (p, &p);
3216 if (!async)
3217 mono_debug_add_aot_method (domain, method, code, p, buf_len);
3218 p += buf_len;
3220 if (has_gc_map) {
3221 int map_size = decode_value (p, &p);
3222 /* The GC map requires 4 bytes of alignment */
3223 while ((guint64)(gsize)p % 4)
3224 p ++;
3225 jinfo->gc_info = p;
3226 p += map_size;
3229 if (amodule != m_class_get_image (jinfo->d.method->klass)->aot_module) {
3230 mono_aot_lock ();
3231 if (!ji_to_amodule)
3232 ji_to_amodule = g_hash_table_new (NULL, NULL);
3233 g_hash_table_insert (ji_to_amodule, jinfo, amodule);
3234 mono_aot_unlock ();
3237 return jinfo;
3240 static gboolean
3241 amodule_contains_code_addr (MonoAotModule *amodule, guint8 *code)
3243 return (code >= amodule->jit_code_start && code <= amodule->jit_code_end) ||
3244 (code >= amodule->llvm_code_start && code <= amodule->llvm_code_end);
3248 * mono_aot_get_unwind_info:
3250 * Return a pointer to the DWARF unwind info belonging to JI.
3252 guint8*
3253 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
3255 MonoAotModule *amodule;
3256 guint8 *p;
3257 guint8 *code = (guint8 *)ji->code_start;
3259 if (ji->async)
3260 amodule = (MonoAotModule *)ji->d.aot_info;
3261 else
3262 amodule = (MonoAotModule *)m_class_get_image (jinfo_get_method (ji)->klass)->aot_module;
3263 g_assert (amodule);
3264 g_assert (ji->from_aot);
3266 if (!amodule_contains_code_addr (amodule, code)) {
3267 /* ji belongs to a different aot module than amodule */
3268 mono_aot_lock ();
3269 g_assert (ji_to_amodule);
3270 amodule = (MonoAotModule *)g_hash_table_lookup (ji_to_amodule, ji);
3271 g_assert (amodule);
3272 g_assert (amodule_contains_code_addr (amodule, code));
3273 mono_aot_unlock ();
3276 p = amodule->unwind_info + ji->unwind_info;
3277 *unwind_info_len = decode_value (p, &p);
3278 return p;
3281 static void
3282 msort_method_addresses_internal (gpointer *array, int *indexes, int lo, int hi, gpointer *scratch, int *scratch_indexes)
3284 int mid = (lo + hi) / 2;
3285 int i, t_lo, t_hi;
3287 if (lo >= hi)
3288 return;
3290 if (hi - lo < 32) {
3291 for (i = lo; i < hi; ++i)
3292 if (array [i] > array [i + 1])
3293 break;
3294 if (i == hi)
3295 /* Already sorted */
3296 return;
3299 msort_method_addresses_internal (array, indexes, lo, mid, scratch, scratch_indexes);
3300 msort_method_addresses_internal (array, indexes, mid + 1, hi, scratch, scratch_indexes);
3302 if (array [mid] < array [mid + 1])
3303 return;
3305 /* Merge */
3306 t_lo = lo;
3307 t_hi = mid + 1;
3308 for (i = lo; i <= hi; i ++) {
3309 if (t_lo <= mid && ((t_hi > hi) || array [t_lo] < array [t_hi])) {
3310 scratch [i] = array [t_lo];
3311 scratch_indexes [i] = indexes [t_lo];
3312 t_lo ++;
3313 } else {
3314 scratch [i] = array [t_hi];
3315 scratch_indexes [i] = indexes [t_hi];
3316 t_hi ++;
3319 for (i = lo; i <= hi; ++i) {
3320 array [i] = scratch [i];
3321 indexes [i] = scratch_indexes [i];
3325 static void
3326 msort_method_addresses (gpointer *array, int *indexes, int len)
3328 gpointer *scratch;
3329 int *scratch_indexes;
3331 scratch = g_new (gpointer, len);
3332 scratch_indexes = g_new (int, len);
3333 msort_method_addresses_internal (array, indexes, 0, len - 1, scratch, scratch_indexes);
3334 g_free (scratch);
3335 g_free (scratch_indexes);
3339 * mono_aot_find_jit_info:
3341 * In async context, the resulting MonoJitInfo will not have its method field set, and it will not be added
3342 * to the jit info tables.
3343 * FIXME: Large sizes in the lock free allocator
3345 MonoJitInfo *
3346 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
3348 ERROR_DECL (error);
3349 int pos, left, right, code_len;
3350 int method_index, table_len;
3351 guint32 token;
3352 MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
3353 MonoMethod *method = NULL;
3354 MonoJitInfo *jinfo;
3355 guint8 *code, *ex_info, *p;
3356 guint32 *table;
3357 int nmethods;
3358 gpointer *methods;
3359 guint8 *code1, *code2;
3360 int methods_len, i;
3361 gboolean async;
3363 if (!amodule)
3364 return NULL;
3366 nmethods = amodule->info.nmethods;
3368 if (domain != mono_get_root_domain ())
3369 /* FIXME: */
3370 return NULL;
3372 if (!amodule_contains_code_addr (amodule, (guint8 *)addr))
3373 return NULL;
3375 async = mono_thread_info_is_async_context ();
3377 /* Compute a sorted table mapping code to method indexes. */
3378 if (!amodule->sorted_methods) {
3379 // FIXME: async
3380 gpointer *methods = g_new0 (gpointer, nmethods);
3381 int *method_indexes = g_new0 (int, nmethods);
3382 int methods_len = 0;
3384 for (i = 0; i < nmethods; ++i) {
3385 /* Skip the -1 entries to speed up sorting */
3386 if (amodule->methods [i] == GINT_TO_POINTER (-1))
3387 continue;
3388 methods [methods_len] = amodule->methods [i];
3389 method_indexes [methods_len] = i;
3390 methods_len ++;
3392 /* Use a merge sort as this is mostly sorted */
3393 msort_method_addresses (methods, method_indexes, methods_len);
3394 for (i = 0; i < methods_len -1; ++i)
3395 g_assert (methods [i] <= methods [i + 1]);
3396 amodule->sorted_methods_len = methods_len;
3397 if (mono_atomic_cas_ptr ((gpointer*)&amodule->sorted_methods, methods, NULL) != NULL)
3398 /* Somebody got in before us */
3399 g_free (methods);
3400 if (mono_atomic_cas_ptr ((gpointer*)&amodule->sorted_method_indexes, method_indexes, NULL) != NULL)
3401 /* Somebody got in before us */
3402 g_free (method_indexes);
3405 /* Binary search in the sorted_methods table */
3406 methods = amodule->sorted_methods;
3407 methods_len = amodule->sorted_methods_len;
3408 code = (guint8 *)addr;
3409 left = 0;
3410 right = methods_len;
3411 while (TRUE) {
3412 pos = (left + right) / 2;
3414 code1 = (guint8 *)methods [pos];
3415 if (pos + 1 == methods_len) {
3416 if (code1 >= amodule->jit_code_start && code1 < amodule->jit_code_end)
3417 code2 = amodule->jit_code_end;
3418 else
3419 code2 = amodule->llvm_code_end;
3420 } else {
3421 code2 = (guint8 *)methods [pos + 1];
3424 if (code < code1)
3425 right = pos;
3426 else if (code >= code2)
3427 left = pos + 1;
3428 else
3429 break;
3432 g_assert (addr >= methods [pos]);
3433 if (pos + 1 < methods_len)
3434 g_assert (addr < methods [pos + 1]);
3435 method_index = amodule->sorted_method_indexes [pos];
3437 /* In async mode, jinfo is not added to the normal jit info table, so have to cache it ourselves */
3438 if (async) {
3439 JitInfoMap *table = amodule->async_jit_info_table;
3440 int len;
3442 if (table) {
3443 len = table [0].method_index;
3444 for (i = 1; i < len; ++i) {
3445 if (table [i].method_index == method_index)
3446 return table [i].jinfo;
3451 code = (guint8 *)amodule->methods [method_index];
3452 ex_info = &amodule->blob [mono_aot_get_offset (amodule->ex_info_offsets, method_index)];
3454 if (pos == methods_len - 1) {
3455 if (code >= amodule->jit_code_start && code < amodule->jit_code_end)
3456 code_len = amodule->jit_code_end - code;
3457 else
3458 code_len = amodule->llvm_code_end - code;
3459 } else {
3460 code_len = (guint8*)methods [pos + 1] - (guint8*)methods [pos];
3463 g_assert ((guint8*)code <= (guint8*)addr && (guint8*)addr < (guint8*)code + code_len);
3465 /* Might be a wrapper/extra method */
3466 if (!async) {
3467 if (amodule->extra_methods) {
3468 amodule_lock (amodule);
3469 method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
3470 amodule_unlock (amodule);
3471 } else {
3472 method = NULL;
3475 if (!method) {
3476 if (method_index >= image->tables [MONO_TABLE_METHOD].rows) {
3478 * This is hit for extra methods which are called directly, so they are
3479 * not in amodule->extra_methods.
3481 table_len = amodule->extra_method_info_offsets [0];
3482 table = amodule->extra_method_info_offsets + 1;
3483 left = 0;
3484 right = table_len;
3485 pos = 0;
3487 /* Binary search */
3488 while (TRUE) {
3489 pos = ((left + right) / 2);
3491 g_assert (pos < table_len);
3493 if (table [pos * 2] < method_index)
3494 left = pos + 1;
3495 else if (table [pos * 2] > method_index)
3496 right = pos;
3497 else
3498 break;
3501 p = amodule->blob + table [(pos * 2) + 1];
3502 method = decode_resolve_method_ref (amodule, p, &p, error);
3503 mono_error_cleanup (error); /* FIXME don't swallow the error */
3504 if (!method)
3505 /* Happens when a random address is passed in which matches a not-yey called wrapper encoded using its name */
3506 return NULL;
3507 } else {
3508 ERROR_DECL (error);
3509 token = mono_metadata_make_token (MONO_TABLE_METHOD, method_index + 1);
3510 method = mono_get_method_checked (image, token, NULL, NULL, error);
3511 if (!method)
3512 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
3515 /* FIXME: */
3516 g_assert (method);
3519 //printf ("F: %s\n", mono_method_full_name (method, TRUE));
3521 jinfo = decode_exception_debug_info (amodule, domain, method, ex_info, code, code_len);
3523 g_assert ((guint8*)addr >= (guint8*)jinfo->code_start);
3525 /* Add it to the normal JitInfo tables */
3526 if (async) {
3527 JitInfoMap *old_table, *new_table;
3528 int len;
3531 * Use a simple inmutable table with linear search to cache async jit info entries.
3532 * This assumes that the number of entries is small.
3534 while (TRUE) {
3535 /* Copy the table, adding a new entry at the end */
3536 old_table = amodule->async_jit_info_table;
3537 if (old_table)
3538 len = old_table[0].method_index;
3539 else
3540 len = 1;
3541 new_table = (JitInfoMap *)alloc0_jit_info_data (domain, (len + 1) * sizeof (JitInfoMap), async);
3542 if (old_table)
3543 memcpy (new_table, old_table, len * sizeof (JitInfoMap));
3544 new_table [0].method_index = len + 1;
3545 new_table [len].method_index = method_index;
3546 new_table [len].jinfo = jinfo;
3547 /* Publish it */
3548 mono_memory_barrier ();
3549 if (mono_atomic_cas_ptr ((volatile gpointer *)&amodule->async_jit_info_table, new_table, old_table) == old_table)
3550 break;
3552 } else {
3553 mono_jit_info_table_add (domain, jinfo);
3556 if ((guint8*)addr >= (guint8*)jinfo->code_start + jinfo->code_size)
3557 /* addr is in the padding between methods, see the adjustment of code_size in decode_exception_debug_info () */
3558 return NULL;
3560 return jinfo;
3563 static gboolean
3564 decode_patch (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji, guint8 *buf, guint8 **endbuf)
3566 ERROR_DECL (error);
3567 guint8 *p = buf;
3568 gpointer *table;
3569 MonoImage *image;
3570 int i;
3572 switch (ji->type) {
3573 case MONO_PATCH_INFO_METHOD:
3574 case MONO_PATCH_INFO_METHOD_JUMP:
3575 case MONO_PATCH_INFO_ICALL_ADDR:
3576 case MONO_PATCH_INFO_ICALL_ADDR_CALL:
3577 case MONO_PATCH_INFO_METHOD_RGCTX:
3578 case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
3579 MethodRef ref;
3580 gboolean res;
3582 res = decode_method_ref (aot_module, &ref, p, &p, error);
3583 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3584 if (!res)
3585 goto cleanup;
3587 if (!ref.method && !mono_aot_only && !ref.no_aot_trampoline && (ji->type == MONO_PATCH_INFO_METHOD) && (mono_metadata_token_table (ref.token) == MONO_TABLE_METHOD)) {
3588 ji->data.target = mono_create_ftnptr (mono_domain_get (), mono_create_jit_trampoline_from_token (ref.image, ref.token));
3589 ji->type = MONO_PATCH_INFO_ABS;
3591 else {
3592 if (ref.method) {
3593 ji->data.method = ref.method;
3594 }else {
3595 ERROR_DECL (error);
3596 ji->data.method = mono_get_method_checked (ref.image, ref.token, NULL, NULL, error);
3597 if (!ji->data.method)
3598 g_error ("AOT Runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
3600 g_assert (ji->data.method);
3601 mono_class_init (ji->data.method->klass);
3603 break;
3605 case MONO_PATCH_INFO_INTERNAL_METHOD:
3606 case MONO_PATCH_INFO_JIT_ICALL_ADDR:
3607 case MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL: {
3608 guint32 len = decode_value (p, &p);
3610 ji->data.name = (char*)p;
3611 p += len + 1;
3612 break;
3614 case MONO_PATCH_INFO_METHODCONST:
3615 /* Shared */
3616 ji->data.method = decode_resolve_method_ref (aot_module, p, &p, error);
3617 mono_error_cleanup (error); /* FIXME don't swallow the error */
3618 if (!ji->data.method)
3619 goto cleanup;
3620 break;
3621 case MONO_PATCH_INFO_VTABLE:
3622 case MONO_PATCH_INFO_CLASS:
3623 case MONO_PATCH_INFO_IID:
3624 case MONO_PATCH_INFO_ADJUSTED_IID:
3625 /* Shared */
3626 ji->data.klass = decode_klass_ref (aot_module, p, &p, error);
3627 mono_error_cleanup (error); /* FIXME don't swallow the error */
3628 if (!ji->data.klass)
3629 goto cleanup;
3630 break;
3631 case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
3632 ji->data.del_tramp = (MonoDelegateClassMethodPair *)mono_mempool_alloc0 (mp, sizeof (MonoDelegateClassMethodPair));
3633 ji->data.del_tramp->klass = decode_klass_ref (aot_module, p, &p, error);
3634 mono_error_cleanup (error); /* FIXME don't swallow the error */
3635 if (!ji->data.del_tramp->klass)
3636 goto cleanup;
3637 if (decode_value (p, &p)) {
3638 ji->data.del_tramp->method = decode_resolve_method_ref (aot_module, p, &p, error);
3639 mono_error_cleanup (error); /* FIXME don't swallow the error */
3640 if (!ji->data.del_tramp->method)
3641 goto cleanup;
3643 ji->data.del_tramp->is_virtual = decode_value (p, &p) ? TRUE : FALSE;
3644 break;
3645 case MONO_PATCH_INFO_IMAGE:
3646 ji->data.image = load_image (aot_module, decode_value (p, &p), error);
3647 mono_error_cleanup (error); /* FIXME don't swallow the error */
3648 if (!ji->data.image)
3649 goto cleanup;
3650 break;
3651 case MONO_PATCH_INFO_FIELD:
3652 case MONO_PATCH_INFO_SFLDA:
3653 /* Shared */
3654 ji->data.field = decode_field_info (aot_module, p, &p);
3655 if (!ji->data.field)
3656 goto cleanup;
3657 break;
3658 case MONO_PATCH_INFO_SWITCH:
3659 ji->data.table = (MonoJumpInfoBBTable *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoBBTable));
3660 ji->data.table->table_size = decode_value (p, &p);
3661 table = (void **)mono_domain_alloc (mono_domain_get (), sizeof (gpointer) * ji->data.table->table_size);
3662 ji->data.table->table = (MonoBasicBlock**)table;
3663 for (i = 0; i < ji->data.table->table_size; i++)
3664 table [i] = (gpointer)(gssize)decode_value (p, &p);
3665 break;
3666 case MONO_PATCH_INFO_R4: {
3667 guint32 val;
3669 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (float));
3670 val = decode_value (p, &p);
3671 *(float*)ji->data.target = *(float*)&val;
3672 break;
3674 case MONO_PATCH_INFO_R8: {
3675 guint32 val [2];
3676 guint64 v;
3678 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (double));
3680 val [0] = decode_value (p, &p);
3681 val [1] = decode_value (p, &p);
3682 v = ((guint64)val [1] << 32) | ((guint64)val [0]);
3683 *(double*)ji->data.target = *(double*)&v;
3684 break;
3686 case MONO_PATCH_INFO_LDSTR:
3687 image = load_image (aot_module, decode_value (p, &p), error);
3688 mono_error_cleanup (error); /* FIXME don't swallow the error */
3689 if (!image)
3690 goto cleanup;
3691 ji->data.token = mono_jump_info_token_new (mp, image, MONO_TOKEN_STRING + decode_value (p, &p));
3692 break;
3693 case MONO_PATCH_INFO_RVA:
3694 case MONO_PATCH_INFO_DECLSEC:
3695 case MONO_PATCH_INFO_LDTOKEN:
3696 case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
3697 /* Shared */
3698 image = load_image (aot_module, decode_value (p, &p), error);
3699 mono_error_cleanup (error); /* FIXME don't swallow the error */
3700 if (!image)
3701 goto cleanup;
3702 ji->data.token = mono_jump_info_token_new (mp, image, decode_value (p, &p));
3704 ji->data.token->has_context = decode_value (p, &p);
3705 if (ji->data.token->has_context) {
3706 gboolean res = decode_generic_context (aot_module, &ji->data.token->context, p, &p, error);
3707 mono_error_cleanup (error); /* FIXME don't swallow the error */
3708 if (!res)
3709 goto cleanup;
3711 break;
3712 case MONO_PATCH_INFO_EXC_NAME:
3713 ji->data.klass = decode_klass_ref (aot_module, p, &p, error);
3714 mono_error_cleanup (error); /* FIXME don't swallow the error */
3715 if (!ji->data.klass)
3716 goto cleanup;
3717 ji->data.name = m_class_get_name (ji->data.klass);
3718 break;
3719 case MONO_PATCH_INFO_METHOD_REL:
3720 ji->data.offset = decode_value (p, &p);
3721 break;
3722 case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
3723 case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
3724 case MONO_PATCH_INFO_GC_NURSERY_START:
3725 case MONO_PATCH_INFO_GC_NURSERY_BITS:
3726 case MONO_PATCH_INFO_PROFILER_ALLOCATION_COUNT:
3727 case MONO_PATCH_INFO_PROFILER_CLAUSE_COUNT:
3728 break;
3729 case MONO_PATCH_INFO_CASTCLASS_CACHE:
3730 ji->data.index = decode_value (p, &p);
3731 break;
3732 case MONO_PATCH_INFO_RGCTX_FETCH:
3733 case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
3734 gboolean res;
3735 MonoJumpInfoRgctxEntry *entry;
3736 guint32 offset, val;
3737 guint8 *p2;
3739 offset = decode_value (p, &p);
3740 val = decode_value (p, &p);
3742 entry = (MonoJumpInfoRgctxEntry *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoRgctxEntry));
3743 p2 = aot_module->blob + offset;
3744 entry->method = decode_resolve_method_ref (aot_module, p2, &p2, error);
3745 entry->in_mrgctx = ((val & 1) > 0) ? TRUE : FALSE;
3746 entry->info_type = (MonoRgctxInfoType)((val >> 1) & 0xff);
3747 entry->data = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo));
3748 entry->data->type = (MonoJumpInfoType)((val >> 9) & 0xff);
3749 mono_error_cleanup (error); /* FIXME don't swallow the error */
3751 res = decode_patch (aot_module, mp, entry->data, p, &p);
3752 if (!res)
3753 goto cleanup;
3754 ji->data.rgctx_entry = entry;
3755 break;
3757 case MONO_PATCH_INFO_SEQ_POINT_INFO:
3758 case MONO_PATCH_INFO_AOT_MODULE:
3759 case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR:
3760 break;
3761 case MONO_PATCH_INFO_SIGNATURE:
3762 case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER:
3763 ji->data.target = decode_signature (aot_module, p, &p);
3764 break;
3765 case MONO_PATCH_INFO_GSHAREDVT_CALL: {
3766 MonoJumpInfoGSharedVtCall *info = (MonoJumpInfoGSharedVtCall *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoGSharedVtCall));
3767 info->sig = decode_signature (aot_module, p, &p);
3768 g_assert (info->sig);
3769 info->method = decode_resolve_method_ref (aot_module, p, &p, error);
3770 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3772 ji->data.target = info;
3773 break;
3775 case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
3776 MonoGSharedVtMethodInfo *info = (MonoGSharedVtMethodInfo *)mono_mempool_alloc0 (mp, sizeof (MonoGSharedVtMethodInfo));
3777 int i;
3779 info->method = decode_resolve_method_ref (aot_module, p, &p, error);
3780 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3782 info->num_entries = decode_value (p, &p);
3783 info->count_entries = info->num_entries;
3784 info->entries = (MonoRuntimeGenericContextInfoTemplate *)mono_mempool_alloc0 (mp, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->num_entries);
3785 for (i = 0; i < info->num_entries; ++i) {
3786 MonoRuntimeGenericContextInfoTemplate *template_ = &info->entries [i];
3788 template_->info_type = (MonoRgctxInfoType)decode_value (p, &p);
3789 switch (mini_rgctx_info_type_to_patch_info_type (template_->info_type)) {
3790 case MONO_PATCH_INFO_CLASS: {
3791 MonoClass *klass = decode_klass_ref (aot_module, p, &p, error);
3792 mono_error_cleanup (error); /* FIXME don't swallow the error */
3793 if (!klass)
3794 goto cleanup;
3795 template_->data = m_class_get_byval_arg (klass);
3796 break;
3798 case MONO_PATCH_INFO_FIELD:
3799 template_->data = decode_field_info (aot_module, p, &p);
3800 if (!template_->data)
3801 goto cleanup;
3802 break;
3803 default:
3804 g_assert_not_reached ();
3805 break;
3808 ji->data.target = info;
3809 break;
3811 case MONO_PATCH_INFO_LDSTR_LIT: {
3812 int len = decode_value (p, &p);
3813 char *s;
3815 s = (char *)mono_mempool_alloc0 (mp, len + 1);
3816 memcpy (s, p, len + 1);
3817 p += len + 1;
3819 ji->data.target = s;
3820 break;
3822 case MONO_PATCH_INFO_VIRT_METHOD: {
3823 MonoJumpInfoVirtMethod *info = (MonoJumpInfoVirtMethod *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoVirtMethod));
3825 info->klass = decode_klass_ref (aot_module, p, &p, error);
3826 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3828 info->method = decode_resolve_method_ref (aot_module, p, &p, error);
3829 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3831 ji->data.target = info;
3832 break;
3834 case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
3835 case MONO_PATCH_INFO_JIT_THREAD_ATTACH:
3836 break;
3837 case MONO_PATCH_INFO_GET_TLS_TRAMP:
3838 case MONO_PATCH_INFO_SET_TLS_TRAMP:
3839 case MONO_PATCH_INFO_AOT_JIT_INFO:
3840 ji->data.index = decode_value (p, &p);
3841 break;
3842 default:
3843 g_warning ("unhandled type %d", ji->type);
3844 g_assert_not_reached ();
3847 *endbuf = p;
3849 return TRUE;
3851 cleanup:
3852 return FALSE;
3856 * decode_patches:
3858 * Decode a list of patches identified by the got offsets in GOT_OFFSETS. Return an array of
3859 * MonoJumpInfo structures allocated from MP.
3861 static MonoJumpInfo*
3862 decode_patches (MonoAotModule *amodule, MonoMemPool *mp, int n_patches, gboolean llvm, guint32 *got_offsets)
3864 MonoJumpInfo *patches;
3865 MonoJumpInfo *ji;
3866 gpointer *got;
3867 guint32 *got_info_offsets;
3868 int i;
3869 gboolean res;
3871 if (llvm) {
3872 got = amodule->llvm_got;
3873 got_info_offsets = (guint32 *)amodule->llvm_got_info_offsets;
3874 } else {
3875 got = amodule->got;
3876 got_info_offsets = (guint32 *)amodule->got_info_offsets;
3879 patches = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo) * n_patches);
3880 for (i = 0; i < n_patches; ++i) {
3881 guint8 *p = amodule->blob + mono_aot_get_offset (got_info_offsets, got_offsets [i]);
3883 ji = &patches [i];
3884 ji->type = (MonoJumpInfoType)decode_value (p, &p);
3886 /* See load_method () for SFLDA */
3887 if (got && got [got_offsets [i]] && ji->type != MONO_PATCH_INFO_SFLDA) {
3888 /* Already loaded */
3889 } else {
3890 res = decode_patch (amodule, mp, ji, p, &p);
3891 if (!res)
3892 return NULL;
3896 return patches;
3899 static MonoJumpInfo*
3900 load_patch_info (MonoAotModule *amodule, MonoMemPool *mp, int n_patches,
3901 gboolean llvm, guint32 **got_slots,
3902 guint8 *buf, guint8 **endbuf)
3904 MonoJumpInfo *patches;
3905 int pindex;
3906 guint8 *p;
3908 p = buf;
3910 *got_slots = (guint32 *)g_malloc (sizeof (guint32) * n_patches);
3911 for (pindex = 0; pindex < n_patches; ++pindex) {
3912 (*got_slots)[pindex] = decode_value (p, &p);
3915 patches = decode_patches (amodule, mp, n_patches, llvm, *got_slots);
3916 if (!patches) {
3917 g_free (*got_slots);
3918 *got_slots = NULL;
3919 return NULL;
3922 *endbuf = p;
3923 return patches;
3926 static void
3927 register_jump_target_got_slot (MonoDomain *domain, MonoMethod *method, gpointer *got_slot)
3930 * Jump addresses cannot be patched by the trampoline code since it
3931 * does not have access to the caller's address. Instead, we collect
3932 * the addresses of the GOT slots pointing to a method, and patch
3933 * them after the method has been compiled.
3935 MonoJitDomainInfo *info = domain_jit_info (domain);
3936 GSList *list;
3938 mono_domain_lock (domain);
3939 if (!info->jump_target_got_slot_hash)
3940 info->jump_target_got_slot_hash = g_hash_table_new (NULL, NULL);
3941 list = (GSList *)g_hash_table_lookup (info->jump_target_got_slot_hash, method);
3942 list = g_slist_prepend (list, got_slot);
3943 g_hash_table_insert (info->jump_target_got_slot_hash, method, list);
3944 mono_domain_unlock (domain);
3948 * load_method:
3950 * Load the method identified by METHOD_INDEX from the AOT image. Return a
3951 * pointer to the native code of the method, or NULL if not found.
3952 * METHOD might not be set if the caller only has the image/token info.
3954 static gpointer
3955 load_method (MonoDomain *domain, MonoAotModule *amodule, MonoImage *image, MonoMethod *method, guint32 token, int method_index,
3956 MonoError *error)
3958 MonoJitInfo *jinfo = NULL;
3959 guint8 *code = NULL, *info;
3960 gboolean res;
3962 error_init (error);
3964 init_amodule_got (amodule);
3966 if (domain != mono_get_root_domain ())
3967 /* Non shared AOT code can't be used in other appdomains */
3968 return NULL;
3970 if (amodule->out_of_date)
3971 return NULL;
3973 if (amodule->info.llvm_get_method) {
3975 * Obtain the method address by calling a generated function in the LLVM module.
3977 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
3978 code = (guint8 *)get_method (method_index);
3981 if (!code) {
3982 /* JITted method */
3983 if (amodule->methods [method_index] == GINT_TO_POINTER (-1)) {
3984 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
3985 char *full_name;
3987 if (!method) {
3988 method = mono_get_method_checked (image, token, NULL, NULL, error);
3989 if (!method)
3990 return NULL;
3992 if (!(method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
3993 full_name = mono_method_full_name (method, TRUE);
3994 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: NOT FOUND: %s.", full_name);
3995 g_free (full_name);
3998 return NULL;
4000 code = (guint8 *)amodule->methods [method_index];
4003 info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
4005 if (!amodule->methods_loaded) {
4006 amodule_lock (amodule);
4007 if (!amodule->methods_loaded) {
4008 guint32 *loaded;
4010 loaded = g_new0 (guint32, amodule->info.nmethods / 32 + 1);
4011 mono_memory_barrier ();
4012 amodule->methods_loaded = loaded;
4014 amodule_unlock (amodule);
4017 if ((amodule->methods_loaded [method_index / 32] >> (method_index % 32)) & 0x1)
4018 return code;
4020 if (mono_last_aot_method != -1) {
4021 gint32 methods_aot = mono_atomic_load_i32 (&mono_jit_stats.methods_aot);
4022 if (methods_aot >= mono_last_aot_method)
4023 return NULL;
4024 else if (methods_aot == mono_last_aot_method - 1) {
4025 if (!method) {
4026 method = mono_get_method_checked (image, token, NULL, NULL, error);
4027 if (!method)
4028 return NULL;
4030 if (method) {
4031 char *name = mono_method_full_name (method, TRUE);
4032 g_print ("LAST AOT METHOD: %s.\n", name);
4033 g_free (name);
4034 } else {
4035 g_print ("LAST AOT METHOD: %p %d\n", code, method_index);
4040 if (!(is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) ||
4041 (mono_llvm_only && method && method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED)) {
4042 res = init_method (amodule, method_index, method, NULL, NULL, error);
4043 if (!res)
4044 goto cleanup;
4047 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
4048 char *full_name;
4050 if (!method) {
4051 method = mono_get_method_checked (image, token, NULL, NULL, error);
4052 if (!method)
4053 return NULL;
4056 full_name = mono_method_full_name (method, TRUE);
4058 if (!jinfo)
4059 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4061 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND method %s [%p - %p %p]", full_name, code, code + jinfo->code_size, info);
4062 g_free (full_name);
4065 amodule_lock (amodule);
4067 init_plt (amodule);
4069 mono_atomic_inc_i32 (&mono_jit_stats.methods_aot);
4071 if (method && method->wrapper_type)
4072 g_hash_table_insert (amodule->method_to_code, method, code);
4074 /* Commit changes since methods_loaded is accessed outside the lock */
4075 mono_memory_barrier ();
4077 amodule->methods_loaded [method_index / 32] |= 1 << (method_index % 32);
4079 amodule_unlock (amodule);
4081 if (MONO_PROFILER_ENABLED (jit_begin) || MONO_PROFILER_ENABLED (jit_done)) {
4082 MonoJitInfo *jinfo;
4084 if (!method) {
4085 method = mono_get_method_checked (amodule->assembly->image, token, NULL, NULL, error);
4086 if (!method)
4087 return NULL;
4089 MONO_PROFILER_RAISE (jit_begin, (method));
4090 jinfo = mono_jit_info_table_find (domain, code);
4091 g_assert (jinfo);
4092 MONO_PROFILER_RAISE (jit_done, (method, jinfo));
4095 return code;
4097 cleanup:
4098 if (jinfo)
4099 g_free (jinfo);
4101 return NULL;
4104 /** find_aot_method_in_amodule
4106 * \param code_amodule The AOT module containing the code pointer
4107 * \param method The method to find the code index for
4108 * \param hash_full The hash for the method
4110 static guint32
4111 find_aot_method_in_amodule (MonoAotModule *code_amodule, MonoMethod *method, guint32 hash_full)
4113 ERROR_DECL (error);
4114 guint32 table_size, entry_size, hash;
4115 guint32 *table, *entry;
4116 guint32 index;
4117 static guint32 n_extra_decodes;
4119 // The AOT module containing the MonoMethod
4120 // The reference to the metadata amodule will differ among multiple dedup methods
4121 // which mangle to the same name but live in different assemblies. This leads to
4122 // the caching breaking. The solution seems to be to cache using the "metadata" amodule.
4123 MonoAotModule *metadata_amodule = (MonoAotModule *)m_class_get_image (method->klass)->aot_module;
4125 if (!metadata_amodule || metadata_amodule->out_of_date || !code_amodule || code_amodule->out_of_date)
4126 return 0xffffff;
4128 table_size = code_amodule->extra_method_table [0];
4129 hash = hash_full % table_size;
4130 table = code_amodule->extra_method_table + 1;
4131 entry_size = 3;
4133 entry = &table [hash * entry_size];
4135 if (entry [0] == 0)
4136 return 0xffffff;
4138 index = 0xffffff;
4139 while (TRUE) {
4140 guint32 key = entry [0];
4141 guint32 value = entry [1];
4142 guint32 next = entry [entry_size - 1];
4143 MonoMethod *m;
4144 guint8 *p, *orig_p;
4146 p = code_amodule->blob + key;
4147 orig_p = p;
4149 amodule_lock (metadata_amodule);
4150 if (!metadata_amodule->method_ref_to_method)
4151 metadata_amodule->method_ref_to_method = g_hash_table_new (NULL, NULL);
4152 m = (MonoMethod *)g_hash_table_lookup (metadata_amodule->method_ref_to_method, p);
4153 amodule_unlock (metadata_amodule);
4154 if (!m) {
4155 m = decode_resolve_method_ref_with_target (code_amodule, method, p, &p, error);
4156 mono_error_cleanup (error); /* FIXME don't swallow the error */
4158 * Can't catche runtime invoke wrappers since it would break
4159 * the check in decode_method_ref_with_target ().
4161 if (m && m->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE) {
4162 amodule_lock (metadata_amodule);
4163 g_hash_table_insert (metadata_amodule->method_ref_to_method, orig_p, m);
4164 amodule_unlock (metadata_amodule);
4167 if (m == method) {
4168 index = value;
4169 break;
4172 /* Methods decoded needlessly */
4173 if (m) {
4174 //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
4175 n_extra_decodes ++;
4178 if (next != 0)
4179 entry = &table [next * entry_size];
4180 else
4181 break;
4184 if (index != 0xffffff)
4185 g_assert (index < code_amodule->info.nmethods);
4187 return index;
4190 static void
4191 add_module_cb (gpointer key, gpointer value, gpointer user_data)
4193 g_ptr_array_add ((GPtrArray*)user_data, value);
4196 gboolean
4197 mono_aot_can_dedup (MonoMethod *method)
4199 gboolean not_normal_gshared = method->is_inflated && !mono_method_is_generic_sharable_full (method, TRUE, FALSE, FALSE);
4200 gboolean extra_method = (method->wrapper_type != MONO_WRAPPER_NONE) || not_normal_gshared;
4202 return extra_method;
4207 * find_aot_method:
4209 * Try finding METHOD in the extra_method table in all AOT images.
4210 * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
4211 * module where the method was found.
4213 static guint32
4214 find_aot_method (MonoMethod *method, MonoAotModule **out_amodule)
4216 guint32 index;
4217 GPtrArray *modules;
4218 int i;
4219 guint32 hash = mono_aot_method_hash (method);
4221 /* Try the place we expect to have moved the method only
4222 * We don't probe, as that causes hard-to-debug issues when we fail
4223 * to find the method */
4224 if (container_amodule && mono_aot_can_dedup (method)) {
4225 *out_amodule = container_amodule;
4226 index = find_aot_method_in_amodule (container_amodule, method, hash);
4227 return index;
4230 /* Try the method's module first */
4231 *out_amodule = (MonoAotModule *)m_class_get_image (method->klass)->aot_module;
4232 index = find_aot_method_in_amodule ((MonoAotModule *)m_class_get_image (method->klass)->aot_module, method, hash);
4233 if (index != 0xffffff)
4234 return index;
4237 * Try all other modules.
4238 * This is needed because generic instances klass->image points to the image
4239 * containing the generic definition, but the native code is generated to the
4240 * AOT image which contains the reference.
4243 /* Make a copy to avoid doing the search inside the aot lock */
4244 modules = g_ptr_array_new ();
4245 mono_aot_lock ();
4246 g_hash_table_foreach (aot_modules, add_module_cb, modules);
4247 mono_aot_unlock ();
4249 index = 0xffffff;
4250 for (i = 0; i < modules->len; ++i) {
4251 MonoAotModule *amodule = (MonoAotModule *)g_ptr_array_index (modules, i);
4253 if (amodule != m_class_get_image (method->klass)->aot_module)
4254 index = find_aot_method_in_amodule (amodule, method, hash);
4255 if (index != 0xffffff) {
4256 *out_amodule = amodule;
4257 break;
4261 g_ptr_array_free (modules, TRUE);
4263 return index;
4266 guint32
4267 mono_aot_find_method_index (MonoMethod *method)
4269 MonoAotModule *out_amodule;
4270 return find_aot_method (method, &out_amodule);
4273 static gboolean
4274 init_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context, MonoError *error)
4276 MonoDomain *domain = mono_domain_get ();
4277 MonoMemPool *mp;
4278 MonoClass *klass_to_run_ctor = NULL;
4279 gboolean from_plt = method == NULL;
4280 int pindex, n_patches;
4281 guint8 *p;
4282 MonoJitInfo *jinfo = NULL;
4283 guint8 *code, *info;
4285 error_init (error);
4287 code = (guint8 *)amodule->methods [method_index];
4288 info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
4290 p = info;
4292 //does the method's class has a cctor?
4293 if (decode_value (p, &p) == 1)
4294 klass_to_run_ctor = decode_klass_ref (amodule, p, &p, error);
4295 if (!is_ok (error))
4296 return FALSE;
4298 //FIXME old code would use the class from @method if not null and ignore the one encoded. I don't know if we need to honor that -- @kumpera
4299 if (method)
4300 klass_to_run_ctor = method->klass;
4302 n_patches = decode_value (p, &p);
4304 if (n_patches) {
4305 MonoJumpInfo *patches;
4306 guint32 *got_slots;
4307 gboolean llvm;
4308 gpointer *got;
4310 mp = mono_mempool_new ();
4312 if ((gpointer)code >= amodule->info.jit_code_start && (gpointer)code <= amodule->info.jit_code_end) {
4313 llvm = FALSE;
4314 got = amodule->got;
4315 } else {
4316 llvm = TRUE;
4317 got = amodule->llvm_got;
4318 g_assert (got);
4321 patches = load_patch_info (amodule, mp, n_patches, llvm, &got_slots, p, &p);
4322 if (patches == NULL) {
4323 mono_mempool_destroy (mp);
4324 goto cleanup;
4327 for (pindex = 0; pindex < n_patches; ++pindex) {
4328 MonoJumpInfo *ji = &patches [pindex];
4329 gpointer addr;
4332 * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
4333 * been initialized by load_method () for a static cctor before the cctor has
4334 * finished executing (#23242).
4336 if (!got [got_slots [pindex]] || ji->type == MONO_PATCH_INFO_SFLDA) {
4337 /* In llvm-only made, we might encounter shared methods */
4338 if (mono_llvm_only && ji->type == MONO_PATCH_INFO_METHOD && mono_method_check_context_used (ji->data.method)) {
4339 g_assert (context);
4340 ji->data.method = mono_class_inflate_generic_method_checked (ji->data.method, context, error);
4341 if (!mono_error_ok (error)) {
4342 g_free (got_slots);
4343 mono_mempool_destroy (mp);
4344 return FALSE;
4347 /* This cannot be resolved in mono_resolve_patch_target () */
4348 if (ji->type == MONO_PATCH_INFO_AOT_JIT_INFO) {
4349 // FIXME: Lookup using the index
4350 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4351 ji->type = MONO_PATCH_INFO_ABS;
4352 ji->data.target = jinfo;
4354 addr = mono_resolve_patch_target (method, domain, code, ji, TRUE, error);
4355 if (!mono_error_ok (error)) {
4356 g_free (got_slots);
4357 mono_mempool_destroy (mp);
4358 return FALSE;
4360 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4361 addr = mono_create_ftnptr (domain, addr);
4362 mono_memory_barrier ();
4363 got [got_slots [pindex]] = addr;
4364 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4365 register_jump_target_got_slot (domain, ji->data.method, &(got [got_slots [pindex]]));
4367 ji->type = MONO_PATCH_INFO_NONE;
4370 g_free (got_slots);
4372 mono_mempool_destroy (mp);
4375 if (mini_get_debug_options ()->load_aot_jit_info_eagerly)
4376 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4378 gboolean inited_ok = TRUE;
4379 if (init_class) {
4380 MonoVTable *vt = mono_class_vtable_checked (domain, init_class, error);
4381 if (!is_ok (error))
4382 inited_ok = FALSE;
4383 else
4384 inited_ok = mono_runtime_class_init_full (vt, error);
4385 } else if (from_plt && klass_to_run_ctor && !mono_class_is_gtd (klass_to_run_ctor)) {
4386 MonoVTable *vt = mono_class_vtable_checked (domain, klass_to_run_ctor, error);
4387 if (!is_ok (error))
4388 inited_ok = FALSE;
4389 else
4390 inited_ok = mono_runtime_class_init_full (vt, error);
4392 if (!inited_ok)
4393 return FALSE;
4395 return TRUE;
4397 cleanup:
4398 if (jinfo)
4399 g_free (jinfo);
4401 return FALSE;
4404 static void
4405 init_llvmonly_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context)
4407 gboolean res;
4408 ERROR_DECL (error);
4410 res = init_method (amodule, method_index, method, init_class, context, error);
4411 if (!is_ok (error)) {
4412 MonoException *ex = mono_error_convert_to_exception (error);
4413 /* Its okay to raise in llvmonly mode */
4414 if (ex)
4415 mono_llvm_throw_exception ((MonoObject*)ex);
4419 void
4420 mono_aot_init_llvm_method (gpointer aot_module, guint32 method_index)
4422 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4424 init_llvmonly_method (amodule, method_index, NULL, NULL, NULL);
4427 void
4428 mono_aot_init_gshared_method_this (gpointer aot_module, guint32 method_index, MonoObject *this_obj)
4430 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4431 MonoClass *klass;
4432 MonoGenericContext *context;
4433 MonoMethod *method;
4435 // FIXME:
4436 g_assert (this_obj);
4437 klass = this_obj->vtable->klass;
4439 amodule_lock (amodule);
4440 method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4441 amodule_unlock (amodule);
4443 g_assert (method);
4444 context = mono_method_get_context (method);
4445 g_assert (context);
4447 init_llvmonly_method (amodule, method_index, NULL, klass, context);
4450 void
4451 mono_aot_init_gshared_method_mrgctx (gpointer aot_module, guint32 method_index, MonoMethodRuntimeGenericContext *rgctx)
4453 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4454 MonoGenericContext context = { NULL, NULL };
4455 MonoClass *klass = rgctx->class_vtable->klass;
4457 if (mono_class_is_ginst (klass))
4458 context.class_inst = mono_class_get_generic_class (klass)->context.class_inst;
4459 else if (mono_class_is_gtd (klass))
4460 context.class_inst = mono_class_get_generic_container (klass)->context.class_inst;
4461 context.method_inst = rgctx->method_inst;
4463 init_llvmonly_method (amodule, method_index, NULL, rgctx->class_vtable->klass, &context);
4466 void
4467 mono_aot_init_gshared_method_vtable (gpointer aot_module, guint32 method_index, MonoVTable *vtable)
4469 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4470 MonoClass *klass;
4471 MonoGenericContext *context;
4472 MonoMethod *method;
4474 klass = vtable->klass;
4476 amodule_lock (amodule);
4477 method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4478 amodule_unlock (amodule);
4480 g_assert (method);
4481 context = mono_method_get_context (method);
4482 g_assert (context);
4484 init_llvmonly_method (amodule, method_index, NULL, klass, context);
4488 * mono_aot_get_method:
4490 * Return a pointer to the AOTed native code for METHOD if it can be found,
4491 * NULL otherwise.
4492 * On platforms with function pointers, this doesn't return a function pointer.
4494 gpointer
4495 mono_aot_get_method (MonoDomain *domain, MonoMethod *method, MonoError *error)
4497 MonoClass *klass = method->klass;
4498 MonoMethod *orig_method = method;
4499 guint32 method_index;
4500 MonoAotModule *amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
4501 guint8 *code;
4502 gboolean cache_result = FALSE;
4503 ERROR_DECL_VALUE (inner_error);
4505 error_init (error);
4507 if (domain != mono_get_root_domain ())
4508 /* Non shared AOT code can't be used in other appdomains */
4509 return NULL;
4511 if (enable_aot_cache && !amodule && domain->entry_assembly && m_class_get_image (klass) == mono_defaults.corlib) {
4512 /* This cannot be AOTed during startup, so do it now */
4513 if (!mscorlib_aot_loaded) {
4514 mscorlib_aot_loaded = TRUE;
4515 load_aot_module (m_class_get_image (klass)->assembly, NULL);
4516 amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
4520 if (!amodule)
4521 return NULL;
4523 if (amodule->out_of_date)
4524 return NULL;
4526 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
4527 (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4528 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
4529 (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
4530 return NULL;
4533 * Use the original method instead of its invoke-with-check wrapper.
4534 * This is not a problem when using full-aot, since it doesn't support
4535 * remoting.
4537 if (mono_aot_only && method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
4538 return mono_aot_get_method (domain, mono_marshal_method_from_wrapper (method), error);
4540 g_assert (m_class_is_inited (klass));
4542 /* Find method index */
4543 method_index = 0xffffff;
4545 gboolean dedupable = mono_aot_can_dedup (method);
4547 if (method->is_inflated && !method->wrapper_type && mono_method_is_generic_sharable_full (method, TRUE, FALSE, FALSE) && !dedupable) {
4548 MonoMethod *orig_method = method;
4550 * For generic methods, we store the fully shared instance in place of the
4551 * original method.
4553 method = mono_method_get_declaring_generic_method (method);
4554 method_index = mono_metadata_token_index (method->token) - 1;
4556 if (mono_llvm_only) {
4557 /* Needed by mono_aot_init_gshared_method_this () */
4558 /* orig_method is a random instance but it is enough to make init_method () work */
4559 amodule_lock (amodule);
4560 g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), orig_method);
4561 amodule_unlock (amodule);
4565 if (method_index == 0xffffff && (method->is_inflated || !method->token)) {
4566 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
4567 amodule_lock (amodule);
4568 code = (guint8 *)g_hash_table_lookup (amodule->method_to_code, method);
4569 amodule_unlock (amodule);
4570 if (code)
4571 return code;
4573 cache_result = TRUE;
4574 if (method_index == 0xffffff)
4575 method_index = find_aot_method (method, &amodule);
4578 * Special case the ICollection<T> wrappers for arrays, as they cannot
4579 * be statically enumerated, and each wrapper ends up calling the same
4580 * method in Array.
4582 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED && m_class_get_rank (method->klass) && strstr (method->name, "System.Collections.Generic")) {
4583 MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
4585 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4586 mono_error_cleanup (&inner_error);
4587 if (code)
4588 return code;
4592 * Special case Array.GetGenericValueImpl which is a generic icall.
4593 * Generic sharing currently can't handle it, but the icall returns data using
4594 * an out parameter, so the managed-to-native wrappers can share the same code.
4596 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass == mono_defaults.array_class && !strcmp (method->name, "GetGenericValueImpl")) {
4597 MonoMethod *m;
4598 MonoGenericContext ctx;
4599 MonoType *args [16];
4601 if (mono_method_signature (method)->params [1]->type == MONO_TYPE_OBJECT)
4602 /* Avoid recursion */
4603 return NULL;
4605 m = mono_class_get_method_from_name (mono_defaults.array_class, "GetGenericValueImpl", 2);
4606 g_assert (m);
4608 memset (&ctx, 0, sizeof (ctx));
4609 args [0] = m_class_get_byval_arg (mono_defaults.object_class);
4610 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4612 m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4613 if (!m)
4614 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4617 * Get the code for the <object> instantiation which should be emitted into
4618 * the mscorlib aot image by the AOT compiler.
4620 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4621 mono_error_cleanup (&inner_error);
4622 if (code)
4623 return code;
4626 const char *klass_name_space = m_class_get_name_space (method->klass);
4627 const char *klass_name = m_class_get_name (method->klass);
4628 /* Same for CompareExchange<T> and Exchange<T> */
4629 /* Same for Volatile.Read<T>/Write<T> */
4630 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && m_class_get_image (method->klass) == mono_defaults.corlib &&
4631 ((!strcmp (klass_name_space, "System.Threading") && !strcmp (klass_name, "Interlocked") && (!strcmp (method->name, "CompareExchange") || !strcmp (method->name, "Exchange")) && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (mono_method_signature (method)->params [1]))) ||
4632 (!strcmp (klass_name_space, "System.Threading") && !strcmp (klass_name, "Volatile") && (!strcmp (method->name, "Read") && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (mono_method_signature (method)->ret)))) ||
4633 (!strcmp (klass_name_space, "System.Threading") && !strcmp (klass_name, "Volatile") && (!strcmp (method->name, "Write") && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (mono_method_signature (method)->params [1])))))) {
4634 MonoMethod *m;
4635 MonoGenericContext ctx;
4636 MonoType *args [16];
4637 gpointer iter = NULL;
4639 while ((m = mono_class_get_methods (method->klass, &iter))) {
4640 if (mono_method_signature (m)->generic_param_count && !strcmp (m->name, method->name))
4641 break;
4643 g_assert (m);
4645 memset (&ctx, 0, sizeof (ctx));
4646 args [0] = m_class_get_byval_arg (mono_defaults.object_class);
4647 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4649 m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4650 if (!m)
4651 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4653 /* Avoid recursion */
4654 if (method == m)
4655 return NULL;
4658 * Get the code for the <object> instantiation which should be emitted into
4659 * the mscorlib aot image by the AOT compiler.
4661 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4662 mono_error_cleanup (&inner_error);
4663 if (code)
4664 return code;
4667 /* For ARRAY_ACCESSOR wrappers with reference types, use the <object> instantiation saved in corlib */
4668 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_UNKNOWN) {
4669 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
4671 if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
4672 MonoMethod *array_method = info->d.array_accessor.method;
4673 if (MONO_TYPE_IS_REFERENCE (m_class_get_byval_arg (m_class_get_element_class (array_method->klass)))) {
4674 int rank;
4676 if (!strcmp (array_method->name, "Set"))
4677 rank = mono_method_signature (array_method)->param_count - 1;
4678 else if (!strcmp (array_method->name, "Get") || !strcmp (array_method->name, "Address"))
4679 rank = mono_method_signature (array_method)->param_count;
4680 else
4681 g_assert_not_reached ();
4682 MonoClass *obj_array_class = mono_class_create_array (mono_defaults.object_class, rank);
4683 MonoMethod *m = mono_class_get_method_from_name (obj_array_class, array_method->name, mono_method_signature (array_method)->param_count);
4684 g_assert (m);
4686 m = mono_marshal_get_array_accessor_wrapper (m);
4687 if (m != method) {
4688 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4689 mono_error_cleanup (&inner_error);
4690 if (code)
4691 return code;
4697 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
4698 /* Partial sharing */
4699 MonoMethod *shared;
4701 shared = mini_get_shared_method_full (method, SHARE_MODE_NONE, error);
4702 return_val_if_nok (error, NULL);
4704 method_index = find_aot_method (shared, &amodule);
4705 if (method_index != 0xffffff)
4706 method = shared;
4709 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, FALSE, TRUE)) {
4710 MonoMethod *shared;
4711 /* gsharedvt */
4712 /* Use the all-vt shared method since this is what was AOTed */
4713 shared = mini_get_shared_method_full (method, SHARE_MODE_GSHAREDVT, error);
4714 if (!shared)
4715 return NULL;
4717 method_index = find_aot_method (shared, &amodule);
4718 if (method_index != 0xffffff) {
4719 method = mini_get_shared_method_full (method, SHARE_MODE_GSHAREDVT, error);
4720 if (!method)
4721 return NULL;
4725 if (method_index == 0xffffff) {
4726 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
4727 char *full_name;
4729 full_name = mono_method_full_name (method, TRUE);
4730 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT NOT FOUND: %s.", full_name);
4731 g_free (full_name);
4733 return NULL;
4736 if (method_index == 0xffffff)
4737 return NULL;
4739 /* Needed by find_jit_info */
4740 amodule_lock (amodule);
4741 g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), method);
4742 amodule_unlock (amodule);
4743 } else {
4744 /* Common case */
4745 method_index = mono_metadata_token_index (method->token) - 1;
4748 code = (guint8 *)load_method (domain, amodule, m_class_get_image (klass), method, method->token, method_index, error);
4749 if (!is_ok (error))
4750 return NULL;
4751 if (code && cache_result) {
4752 amodule_lock (amodule);
4753 g_hash_table_insert (amodule->method_to_code, orig_method, code);
4754 amodule_unlock (amodule);
4756 return code;
4760 * Same as mono_aot_get_method, but we try to avoid loading any metadata from the
4761 * method.
4763 gpointer
4764 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token, MonoError *error)
4766 MonoAotModule *aot_module = (MonoAotModule *)image->aot_module;
4767 int method_index;
4768 gpointer res;
4770 error_init (error);
4772 if (!aot_module)
4773 return NULL;
4775 method_index = mono_metadata_token_index (token) - 1;
4777 res = load_method (domain, aot_module, image, NULL, token, method_index, error);
4778 return res;
4781 typedef struct {
4782 guint8 *addr;
4783 gboolean res;
4784 } IsGotEntryUserData;
4786 static void
4787 check_is_got_entry (gpointer key, gpointer value, gpointer user_data)
4789 IsGotEntryUserData *data = (IsGotEntryUserData*)user_data;
4790 MonoAotModule *aot_module = (MonoAotModule*)value;
4792 if (aot_module->got && (data->addr >= (guint8*)(aot_module->got)) && (data->addr < (guint8*)(aot_module->got + aot_module->info.got_size)))
4793 data->res = TRUE;
4796 gboolean
4797 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
4799 IsGotEntryUserData user_data;
4801 if (!aot_modules)
4802 return FALSE;
4804 user_data.addr = addr;
4805 user_data.res = FALSE;
4806 mono_aot_lock ();
4807 g_hash_table_foreach (aot_modules, check_is_got_entry, &user_data);
4808 mono_aot_unlock ();
4810 return user_data.res;
4813 typedef struct {
4814 guint8 *addr;
4815 MonoAotModule *module;
4816 } FindAotModuleUserData;
4818 static void
4819 find_aot_module_cb (gpointer key, gpointer value, gpointer user_data)
4821 FindAotModuleUserData *data = (FindAotModuleUserData*)user_data;
4822 MonoAotModule *aot_module = (MonoAotModule*)value;
4824 if (amodule_contains_code_addr (aot_module, data->addr))
4825 data->module = aot_module;
4828 static inline MonoAotModule*
4829 find_aot_module (guint8 *code)
4831 FindAotModuleUserData user_data;
4833 if (!aot_modules)
4834 return NULL;
4836 /* Reading these need no locking */
4837 if (((gsize)code < aot_code_low_addr) || ((gsize)code > aot_code_high_addr))
4838 return NULL;
4840 user_data.addr = code;
4841 user_data.module = NULL;
4843 mono_aot_lock ();
4844 g_hash_table_foreach (aot_modules, find_aot_module_cb, &user_data);
4845 mono_aot_unlock ();
4847 return user_data.module;
4850 void
4851 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
4853 MonoAotModule *amodule;
4856 * Since AOT code is only used in the root domain,
4857 * mono_domain_get () != mono_get_root_domain () means the calling method
4858 * is AppDomain:InvokeInDomain, so this is the same check as in
4859 * mono_method_same_domain () but without loading the metadata for the method.
4861 if (mono_domain_get () == mono_get_root_domain ()) {
4862 if (!got) {
4863 amodule = find_aot_module (code);
4864 if (amodule)
4865 got = amodule->got;
4867 mono_arch_patch_plt_entry (plt_entry, got, regs, addr);
4872 * mono_aot_plt_resolve:
4874 * This function is called by the entries in the PLT to resolve the actual method that
4875 * needs to be called. It returns a trampoline to the method and patches the PLT entry.
4876 * Returns NULL if the something cannot be loaded.
4878 gpointer
4879 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code, MonoError *error)
4881 #ifdef MONO_ARCH_AOT_SUPPORTED
4882 guint8 *p, *target, *plt_entry;
4883 MonoJumpInfo ji;
4884 MonoAotModule *module = (MonoAotModule*)aot_module;
4885 gboolean res, no_ftnptr = FALSE;
4886 MonoMemPool *mp;
4887 gboolean using_gsharedvt = FALSE;
4889 error_init (error);
4891 //printf ("DYN: %p %d\n", aot_module, plt_info_offset);
4893 p = &module->blob [plt_info_offset];
4895 ji.type = (MonoJumpInfoType)decode_value (p, &p);
4897 mp = mono_mempool_new ();
4898 res = decode_patch (module, mp, &ji, p, &p);
4900 if (!res) {
4901 mono_mempool_destroy (mp);
4902 return NULL;
4905 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
4906 using_gsharedvt = TRUE;
4907 #endif
4910 * Avoid calling resolve_patch_target in the full-aot case if possible, since
4911 * it would create a trampoline, and we don't need that.
4912 * We could do this only if the method does not need the special handling
4913 * in mono_magic_trampoline ().
4915 if (mono_aot_only && ji.type == MONO_PATCH_INFO_METHOD && !ji.data.method->is_generic && !mono_method_check_context_used (ji.data.method) && !(ji.data.method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) &&
4916 !mono_method_needs_static_rgctx_invoke (ji.data.method, FALSE) && !using_gsharedvt) {
4917 target = (guint8 *)mono_jit_compile_method (ji.data.method, error);
4918 if (!mono_error_ok (error)) {
4919 mono_mempool_destroy (mp);
4920 return NULL;
4922 no_ftnptr = TRUE;
4923 } else {
4924 target = (guint8 *)mono_resolve_patch_target (NULL, mono_domain_get (), NULL, &ji, TRUE, error);
4925 if (!mono_error_ok (error)) {
4926 mono_mempool_destroy (mp);
4927 return NULL;
4932 * The trampoline expects us to return a function descriptor on platforms which use
4933 * it, but resolve_patch_target returns a direct function pointer for some type of
4934 * patches, so have to translate between the two.
4935 * FIXME: Clean this up, but how ?
4937 if (ji.type == MONO_PATCH_INFO_ABS || ji.type == MONO_PATCH_INFO_INTERNAL_METHOD || ji.type == MONO_PATCH_INFO_ICALL_ADDR || ji.type == MONO_PATCH_INFO_JIT_ICALL_ADDR || ji.type == MONO_PATCH_INFO_RGCTX_FETCH) {
4938 /* These should already have a function descriptor */
4939 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4940 /* Our function descriptors have a 0 environment, gcc created ones don't */
4941 if (ji.type != MONO_PATCH_INFO_INTERNAL_METHOD && ji.type != MONO_PATCH_INFO_JIT_ICALL_ADDR && ji.type != MONO_PATCH_INFO_ICALL_ADDR)
4942 g_assert (((gpointer*)target) [2] == 0);
4943 #endif
4944 /* Empty */
4945 } else if (!no_ftnptr) {
4946 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4947 g_assert (((gpointer*)target) [2] != 0);
4948 #endif
4949 target = (guint8 *)mono_create_ftnptr (mono_domain_get (), target);
4952 mono_mempool_destroy (mp);
4954 /* Patch the PLT entry with target which might be the actual method not a trampoline */
4955 plt_entry = mono_aot_get_plt_entry (code);
4956 g_assert (plt_entry);
4957 mono_aot_patch_plt_entry (code, plt_entry, module->got, NULL, target);
4959 return target;
4960 #else
4961 g_assert_not_reached ();
4962 return NULL;
4963 #endif
4967 * init_plt:
4969 * Initialize the PLT table of the AOT module. Called lazily when the first AOT
4970 * method in the module is loaded to avoid committing memory by writing to it.
4971 * LOCKING: Assumes the AMODULE lock is held.
4973 static void
4974 init_plt (MonoAotModule *amodule)
4976 int i;
4977 gpointer tramp;
4979 if (amodule->plt_inited)
4980 return;
4982 if (amodule->info.plt_size <= 1) {
4983 amodule->plt_inited = TRUE;
4984 return;
4987 tramp = mono_create_specific_trampoline (amodule, MONO_TRAMPOLINE_AOT_PLT, mono_get_root_domain (), NULL);
4990 * Initialize the PLT entries in the GOT to point to the default targets.
4993 tramp = mono_create_ftnptr (mono_domain_get (), tramp);
4994 for (i = 1; i < amodule->info.plt_size; ++i)
4995 /* All the default entries point to the AOT trampoline */
4996 ((gpointer*)amodule->got)[amodule->info.plt_got_offset_base + i] = tramp;
4998 amodule->plt_inited = TRUE;
5002 * mono_aot_get_plt_entry:
5004 * Return the address of the PLT entry called by the code at CODE if exists.
5006 guint8*
5007 mono_aot_get_plt_entry (guint8 *code)
5009 MonoAotModule *amodule = find_aot_module (code);
5010 guint8 *target = NULL;
5012 if (!amodule)
5013 return NULL;
5015 #ifdef TARGET_ARM
5016 if (is_thumb_code (amodule, code - 4))
5017 return mono_arm_get_thumb_plt_entry (code);
5018 #endif
5020 #ifdef MONO_ARCH_AOT_SUPPORTED
5021 target = mono_arch_get_call_target (code);
5022 #else
5023 g_assert_not_reached ();
5024 #endif
5026 #ifdef MONOTOUCH
5027 while (target != NULL) {
5028 if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
5029 return target;
5031 // Add 4 since mono_arch_get_call_target assumes we're passing
5032 // the instruction after the actual branch instruction.
5033 target = mono_arch_get_call_target (target + 4);
5036 return NULL;
5037 #else
5038 if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
5039 return target;
5040 else
5041 return NULL;
5042 #endif
5046 * mono_aot_get_plt_info_offset:
5048 * Return the PLT info offset belonging to the plt entry called by CODE.
5050 guint32
5051 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
5053 guint8 *plt_entry = mono_aot_get_plt_entry (code);
5055 g_assert (plt_entry);
5057 /* The offset is embedded inside the code after the plt entry */
5058 #ifdef MONO_ARCH_AOT_SUPPORTED
5059 return mono_arch_get_plt_info_offset (plt_entry, regs, code);
5060 #else
5061 g_assert_not_reached ();
5062 return 0;
5063 #endif
5066 static gpointer
5067 mono_create_ftnptr_malloc (guint8 *code)
5069 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
5070 MonoPPCFunctionDescriptor *ftnptr = g_malloc0 (sizeof (MonoPPCFunctionDescriptor));
5072 ftnptr->code = code;
5073 ftnptr->toc = NULL;
5074 ftnptr->env = NULL;
5076 return ftnptr;
5077 #else
5078 return code;
5079 #endif
5083 * mono_aot_register_jit_icall:
5085 * Register a JIT icall which is called by trampolines in full-aot mode. This should
5086 * be called from mono_arch_init () during startup.
5088 void
5089 mono_aot_register_jit_icall (const char *name, gpointer addr)
5091 /* No need for locking */
5092 if (!aot_jit_icall_hash)
5093 aot_jit_icall_hash = g_hash_table_new (g_str_hash, g_str_equal);
5094 g_hash_table_insert (aot_jit_icall_hash, (char*)name, addr);
5098 * load_function_full:
5100 * Load the function named NAME from the aot image.
5102 static gpointer
5103 load_function_full (MonoAotModule *amodule, const char *name, MonoTrampInfo **out_tinfo)
5105 char *symbol;
5106 guint8 *p;
5107 int n_patches, pindex;
5108 MonoMemPool *mp;
5109 gpointer code;
5110 guint32 info_offset;
5112 /* Load the code */
5114 symbol = g_strdup_printf ("%s", name);
5115 find_amodule_symbol (amodule, symbol, (gpointer *)&code);
5116 g_free (symbol);
5117 if (!code)
5118 g_error ("Symbol '%s' not found in AOT file '%s'.\n", name, amodule->aot_name);
5120 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND function '%s' in AOT file '%s'.", name, amodule->aot_name);
5122 /* Load info */
5124 symbol = g_strdup_printf ("%s_p", name);
5125 find_amodule_symbol (amodule, symbol, (gpointer *)&p);
5126 g_free (symbol);
5127 if (!p)
5128 /* Nothing to patch */
5129 return code;
5131 info_offset = *(guint32*)p;
5132 if (out_tinfo) {
5133 MonoTrampInfo *tinfo;
5134 guint32 code_size, uw_info_len, uw_offset;
5135 guint8 *uw_info;
5136 /* Construct a MonoTrampInfo from the data in the AOT image */
5138 p += sizeof (guint32);
5139 code_size = *(guint32*)p;
5140 p += sizeof (guint32);
5141 uw_offset = *(guint32*)p;
5142 uw_info = amodule->unwind_info + uw_offset;
5143 uw_info_len = decode_value (uw_info, &uw_info);
5145 tinfo = g_new0 (MonoTrampInfo, 1);
5146 tinfo->code = (guint8 *)code;
5147 tinfo->code_size = code_size;
5148 tinfo->uw_info_len = uw_info_len;
5149 if (uw_info_len)
5150 tinfo->uw_info = uw_info;
5152 *out_tinfo = tinfo;
5155 p = amodule->blob + info_offset;
5157 /* Similar to mono_aot_load_method () */
5159 n_patches = decode_value (p, &p);
5161 if (n_patches) {
5162 MonoJumpInfo *patches;
5163 guint32 *got_slots;
5165 mp = mono_mempool_new ();
5167 patches = load_patch_info (amodule, mp, n_patches, FALSE, &got_slots, p, &p);
5168 g_assert (patches);
5170 for (pindex = 0; pindex < n_patches; ++pindex) {
5171 MonoJumpInfo *ji = &patches [pindex];
5172 ERROR_DECL (error);
5173 gpointer target;
5175 if (amodule->got [got_slots [pindex]])
5176 continue;
5179 * When this code is executed, the runtime may not be initalized yet, so
5180 * resolve the patch info by hand.
5182 if (ji->type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
5183 if (!strcmp (ji->data.name, "mono_get_lmf_addr")) {
5184 target = mono_get_lmf_addr;
5185 } else if (!strcmp (ji->data.name, "mono_thread_force_interruption_checkpoint_noraise")) {
5186 target = mono_thread_force_interruption_checkpoint_noraise;
5187 } else if (!strcmp (ji->data.name, "mono_exception_from_token")) {
5188 target = mono_exception_from_token;
5189 } else if (!strcmp (ji->data.name, "mono_throw_exception")) {
5190 target = mono_get_throw_exception ();
5191 } else if (strstr (ji->data.name, "trampoline_func_") == ji->data.name) {
5192 MonoTrampolineType tramp_type2 = (MonoTrampolineType)atoi (ji->data.name + strlen ("trampoline_func_"));
5193 target = (gpointer)mono_get_trampoline_func (tramp_type2);
5194 } else if (strstr (ji->data.name, "specific_trampoline_lazy_fetch_") == ji->data.name) {
5195 /* atoll is needed because the the offset is unsigned */
5196 guint32 slot;
5197 int res;
5199 res = sscanf (ji->data.name, "specific_trampoline_lazy_fetch_%u", &slot);
5200 g_assert (res == 1);
5201 target = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
5202 target = mono_create_ftnptr_malloc ((guint8 *)target);
5203 } else if (!strcmp (ji->data.name, "debugger_agent_single_step_from_context")) {
5204 target = mono_debugger_agent_single_step_from_context;
5205 } else if (!strcmp (ji->data.name, "debugger_agent_breakpoint_from_context")) {
5206 target = mono_debugger_agent_breakpoint_from_context;
5207 } else if (!strcmp (ji->data.name, "throw_exception_addr")) {
5208 target = mono_get_throw_exception_addr ();
5209 } else if (strstr (ji->data.name, "generic_trampoline_")) {
5210 target = mono_aot_get_trampoline (ji->data.name);
5211 } else if (aot_jit_icall_hash && g_hash_table_lookup (aot_jit_icall_hash, ji->data.name)) {
5212 /* Registered by mono_arch_init () */
5213 target = g_hash_table_lookup (aot_jit_icall_hash, ji->data.name);
5214 } else {
5215 fprintf (stderr, "Unknown relocation '%s'\n", ji->data.name);
5216 g_assert_not_reached ();
5217 target = NULL;
5219 } else {
5220 /* Hopefully the code doesn't have patches which need method or
5221 * domain to be set.
5223 target = mono_resolve_patch_target (NULL, NULL, (guint8 *)code, ji, FALSE, error);
5224 mono_error_assert_ok (error);
5225 g_assert (target);
5228 amodule->got [got_slots [pindex]] = target;
5231 g_free (got_slots);
5233 mono_mempool_destroy (mp);
5236 return code;
5239 static gpointer
5240 load_function (MonoAotModule *amodule, const char *name)
5242 return load_function_full (amodule, name, NULL);
5245 static MonoAotModule*
5246 get_mscorlib_aot_module (void)
5248 MonoImage *image;
5249 MonoAotModule *amodule;
5251 image = mono_defaults.corlib;
5252 if (image)
5253 amodule = (MonoAotModule *)image->aot_module;
5254 else
5255 amodule = mscorlib_aot_module;
5256 g_assert (amodule);
5257 return amodule;
5260 static void
5261 no_trampolines (void)
5263 g_assert_not_reached ();
5267 * Return the trampoline identified by NAME from the mscorlib AOT file.
5268 * On ppc64, this returns a function descriptor.
5270 gpointer
5271 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
5273 MonoAotModule *amodule = get_mscorlib_aot_module ();
5275 if (mono_llvm_only) {
5276 *out_tinfo = NULL;
5277 return no_trampolines;
5280 return mono_create_ftnptr_malloc ((guint8 *)load_function_full (amodule, name, out_tinfo));
5283 gpointer
5284 mono_aot_get_trampoline (const char *name)
5286 MonoTrampInfo *out_tinfo;
5287 gpointer code;
5289 code = mono_aot_get_trampoline_full (name, &out_tinfo);
5290 mono_aot_tramp_info_register (out_tinfo, NULL);
5292 return code;
5295 static gpointer
5296 read_unwind_info (MonoAotModule *amodule, MonoTrampInfo *info, const char *symbol_name)
5298 gpointer symbol_addr;
5299 guint32 uw_offset, uw_info_len;
5300 guint8 *uw_info;
5302 find_amodule_symbol (amodule, symbol_name, &symbol_addr);
5304 if (!symbol_addr)
5305 return NULL;
5307 uw_offset = *(guint32*)symbol_addr;
5308 uw_info = amodule->unwind_info + uw_offset;
5309 uw_info_len = decode_value (uw_info, &uw_info);
5311 info->uw_info_len = uw_info_len;
5312 if (uw_info_len)
5313 info->uw_info = uw_info;
5314 else
5315 info->uw_info = NULL;
5317 /* If successful return the address of the following data */
5318 return (guint32*)symbol_addr + 1;
5321 #ifdef MONOTOUCH
5322 #include <mach/mach.h>
5324 static TrampolinePage* trampoline_pages [MONO_AOT_TRAMP_NUM];
5326 static void
5327 read_page_trampoline_uwinfo (MonoTrampInfo *info, int tramp_type, gboolean is_generic)
5329 char symbol_name [128];
5331 if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
5332 sprintf (symbol_name, "specific_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5333 else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
5334 sprintf (symbol_name, "rgctx_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5335 else if (tramp_type == MONO_AOT_TRAMP_IMT)
5336 sprintf (symbol_name, "imt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5337 else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
5338 sprintf (symbol_name, "gsharedvt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5339 else
5340 g_assert_not_reached ();
5342 read_unwind_info (mono_defaults.corlib->aot_module, info, symbol_name);
5345 static unsigned char*
5346 get_new_trampoline_from_page (int tramp_type)
5348 MonoAotModule *amodule;
5349 MonoImage *image;
5350 TrampolinePage *page;
5351 int count;
5352 void *tpage;
5353 vm_address_t addr, taddr;
5354 kern_return_t ret;
5355 vm_prot_t prot, max_prot;
5356 int psize, specific_trampoline_size;
5357 unsigned char *code;
5359 specific_trampoline_size = 2 * sizeof (gpointer);
5361 mono_aot_page_lock ();
5362 page = trampoline_pages [tramp_type];
5363 if (page && page->trampolines < page->trampolines_end) {
5364 code = page->trampolines;
5365 page->trampolines += specific_trampoline_size;
5366 mono_aot_page_unlock ();
5367 return code;
5369 mono_aot_page_unlock ();
5370 /* the trampoline template page is in the mscorlib module */
5371 image = mono_defaults.corlib;
5372 g_assert (image);
5374 psize = MONO_AOT_TRAMP_PAGE_SIZE;
5376 amodule = image->aot_module;
5377 g_assert (amodule);
5379 if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
5380 tpage = load_function (amodule, "specific_trampolines_page");
5381 else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
5382 tpage = load_function (amodule, "rgctx_trampolines_page");
5383 else if (tramp_type == MONO_AOT_TRAMP_IMT)
5384 tpage = load_function (amodule, "imt_trampolines_page");
5385 else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
5386 tpage = load_function (amodule, "gsharedvt_arg_trampolines_page");
5387 else
5388 g_error ("Incorrect tramp type for trampolines page");
5389 g_assert (tpage);
5390 /*g_warning ("loaded trampolines page at %x", tpage);*/
5392 /* avoid the unlikely case of looping forever */
5393 count = 40;
5394 page = NULL;
5395 while (page == NULL && count-- > 0) {
5396 MonoTrampInfo *gen_info, *sp_info;
5398 addr = 0;
5399 /* allocate two contiguous pages of memory: the first page will contain the data (like a local constant pool)
5400 * while the second will contain the trampolines.
5402 do {
5403 ret = vm_allocate (mach_task_self (), &addr, psize * 2, VM_FLAGS_ANYWHERE);
5404 } while (ret == KERN_ABORTED);
5405 if (ret != KERN_SUCCESS) {
5406 g_error ("Cannot allocate memory for trampolines: %d", ret);
5407 break;
5409 /*g_warning ("allocated trampoline double page at %x", addr);*/
5410 /* replace the second page with a remapped trampoline page */
5411 taddr = addr + psize;
5412 vm_deallocate (mach_task_self (), taddr, psize);
5413 ret = vm_remap (mach_task_self (), &taddr, psize, 0, FALSE, mach_task_self(), (vm_address_t)tpage, FALSE, &prot, &max_prot, VM_INHERIT_SHARE);
5414 if (ret != KERN_SUCCESS) {
5415 /* someone else got the page, try again */
5416 vm_deallocate (mach_task_self (), addr, psize);
5417 continue;
5419 /*g_warning ("remapped trampoline page at %x", taddr);*/
5421 mono_aot_page_lock ();
5422 page = trampoline_pages [tramp_type];
5423 /* some other thread already allocated, so use that to avoid wasting memory */
5424 if (page && page->trampolines < page->trampolines_end) {
5425 code = page->trampolines;
5426 page->trampolines += specific_trampoline_size;
5427 mono_aot_page_unlock ();
5428 vm_deallocate (mach_task_self (), addr, psize);
5429 vm_deallocate (mach_task_self (), taddr, psize);
5430 return code;
5432 page = (TrampolinePage*)addr;
5433 page->next = trampoline_pages [tramp_type];
5434 trampoline_pages [tramp_type] = page;
5435 page->trampolines = (void*)(taddr + amodule->info.tramp_page_code_offsets [tramp_type]);
5436 page->trampolines_end = (void*)(taddr + psize - 64);
5437 code = page->trampolines;
5438 page->trampolines += specific_trampoline_size;
5439 mono_aot_page_unlock ();
5441 /* Register the generic part at the beggining of the trampoline page */
5442 gen_info = mono_tramp_info_create (NULL, (guint8*)taddr, amodule->info.tramp_page_code_offsets [tramp_type], NULL, NULL);
5443 read_page_trampoline_uwinfo (gen_info, tramp_type, TRUE);
5444 mono_aot_tramp_info_register (gen_info, NULL);
5446 * FIXME
5447 * Registering each specific trampoline produces a lot of
5448 * MonoJitInfo structures. Jump trampolines are also registered
5449 * separately.
5451 if (tramp_type != MONO_AOT_TRAMP_SPECIFIC) {
5452 /* Register the rest of the page as a single trampoline */
5453 sp_info = mono_tramp_info_create (NULL, code, page->trampolines_end - code, NULL, NULL);
5454 read_page_trampoline_uwinfo (sp_info, tramp_type, FALSE);
5455 mono_aot_tramp_info_register (sp_info, NULL);
5457 return code;
5459 g_error ("Cannot allocate more trampoline pages: %d", ret);
5460 return NULL;
5463 #else
5464 static unsigned char*
5465 get_new_trampoline_from_page (int tramp_type)
5467 g_error ("Page trampolines not supported.");
5468 return NULL;
5470 #endif
5473 static gpointer
5474 get_new_specific_trampoline_from_page (gpointer tramp, gpointer arg)
5476 void *code;
5477 gpointer *data;
5479 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_SPECIFIC);
5481 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5482 data [0] = arg;
5483 data [1] = tramp;
5484 /*g_warning ("new trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5485 return code;
5489 static gpointer
5490 get_new_rgctx_trampoline_from_page (gpointer tramp, gpointer arg)
5492 void *code;
5493 gpointer *data;
5495 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_STATIC_RGCTX);
5497 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5498 data [0] = arg;
5499 data [1] = tramp;
5500 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5501 return code;
5505 static gpointer
5506 get_new_imt_trampoline_from_page (gpointer arg)
5508 void *code;
5509 gpointer *data;
5511 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_IMT);
5513 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5514 data [0] = arg;
5515 /*g_warning ("new imt trampoline at %p for data %p, (stored at %p)", code, arg, data);*/
5516 return code;
5520 static gpointer
5521 get_new_gsharedvt_arg_trampoline_from_page (gpointer tramp, gpointer arg)
5523 void *code;
5524 gpointer *data;
5526 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_GSHAREDVT_ARG);
5528 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5529 data [0] = arg;
5530 data [1] = tramp;
5531 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5532 return code;
5535 /* Return a given kind of trampoline */
5536 /* FIXME set unwind info for these trampolines */
5537 static gpointer
5538 get_numerous_trampoline (MonoAotTrampoline tramp_type, int n_got_slots, MonoAotModule **out_amodule, guint32 *got_offset, guint32 *out_tramp_size)
5540 MonoImage *image;
5541 MonoAotModule *amodule = get_mscorlib_aot_module ();
5542 int index, tramp_size;
5544 /* Currently, we keep all trampolines in the mscorlib AOT image */
5545 image = mono_defaults.corlib;
5547 *out_amodule = amodule;
5549 mono_aot_lock ();
5551 #ifdef MONOTOUCH
5552 #define MONOTOUCH_TRAMPOLINES_ERROR ". See http://docs.xamarin.com/ios/troubleshooting for instructions on how to fix this condition."
5553 #else
5554 #define MONOTOUCH_TRAMPOLINES_ERROR ""
5555 #endif
5556 if (amodule->trampoline_index [tramp_type] == amodule->info.num_trampolines [tramp_type]) {
5557 g_error ("Ran out of trampolines of type %d in '%s' (limit %d)%s\n",
5558 tramp_type, image ? image->name : "mscorlib", amodule->info.num_trampolines [tramp_type], MONOTOUCH_TRAMPOLINES_ERROR);
5560 index = amodule->trampoline_index [tramp_type] ++;
5562 mono_aot_unlock ();
5564 *got_offset = amodule->info.trampoline_got_offset_base [tramp_type] + (index * n_got_slots);
5566 tramp_size = amodule->info.trampoline_size [tramp_type];
5568 if (out_tramp_size)
5569 *out_tramp_size = tramp_size;
5571 return amodule->trampolines [tramp_type] + (index * tramp_size);
5574 static void
5575 no_specific_trampoline (void)
5577 g_assert_not_reached ();
5581 * Return a specific trampoline from the AOT file.
5583 gpointer
5584 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
5586 MonoAotModule *amodule;
5587 guint32 got_offset, tramp_size;
5588 guint8 *code, *tramp;
5589 static gpointer generic_trampolines [MONO_TRAMPOLINE_NUM];
5590 static gboolean inited;
5591 static guint32 num_trampolines;
5593 if (mono_llvm_only) {
5594 *code_len = 1;
5595 return no_specific_trampoline;
5598 if (!inited) {
5599 mono_aot_lock ();
5601 if (!inited) {
5602 mono_counters_register ("Specific trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &num_trampolines);
5603 inited = TRUE;
5606 mono_aot_unlock ();
5609 num_trampolines ++;
5611 if (!generic_trampolines [tramp_type]) {
5612 char *symbol;
5614 symbol = mono_get_generic_trampoline_name (tramp_type);
5615 generic_trampolines [tramp_type] = mono_aot_get_trampoline (symbol);
5616 g_free (symbol);
5619 tramp = (guint8 *)generic_trampolines [tramp_type];
5620 g_assert (tramp);
5622 if (USE_PAGE_TRAMPOLINES) {
5623 code = (guint8 *)get_new_specific_trampoline_from_page (tramp, arg1);
5624 tramp_size = 8;
5625 } else {
5626 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_SPECIFIC, 2, &amodule, &got_offset, &tramp_size);
5628 amodule->got [got_offset] = tramp;
5629 amodule->got [got_offset + 1] = arg1;
5632 if (code_len)
5633 *code_len = tramp_size;
5635 return code;
5638 gpointer
5639 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
5641 MonoAotModule *amodule;
5642 guint8 *code;
5643 guint32 got_offset;
5645 if (USE_PAGE_TRAMPOLINES) {
5646 code = (guint8 *)get_new_rgctx_trampoline_from_page (addr, ctx);
5647 } else {
5648 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_STATIC_RGCTX, 2, &amodule, &got_offset, NULL);
5650 amodule->got [got_offset] = ctx;
5651 amodule->got [got_offset + 1] = addr;
5654 /* The caller expects an ftnptr */
5655 return mono_create_ftnptr (mono_domain_get (), code);
5658 gpointer
5659 mono_aot_get_unbox_trampoline (MonoMethod *method)
5661 ERROR_DECL (error);
5662 guint32 method_index = mono_metadata_token_index (method->token) - 1;
5663 MonoAotModule *amodule;
5664 gpointer code;
5665 guint32 *ut, *ut_end, *entry;
5666 int low, high, entry_index = 0;
5667 gpointer symbol_addr;
5668 MonoTrampInfo *tinfo;
5670 if (method->is_inflated && !mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE)) {
5671 method_index = find_aot_method (method, &amodule);
5672 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
5673 MonoMethod *shared = mini_get_shared_method_full (method, SHARE_MODE_NONE, error);
5674 mono_error_assert_ok (error);
5675 method_index = find_aot_method (shared, &amodule);
5677 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, TRUE)) {
5678 MonoMethod *shared = mini_get_shared_method_full (method, SHARE_MODE_GSHAREDVT, error);
5679 mono_error_assert_ok (error);
5681 method_index = find_aot_method (shared, &amodule);
5683 g_assert (method_index != 0xffffff);
5684 } else {
5685 amodule = (MonoAotModule *)m_class_get_image (method->klass)->aot_module;
5686 g_assert (amodule);
5689 if (amodule->info.llvm_get_unbox_tramp) {
5690 gpointer (*get_tramp) (int) = (gpointer (*)(int))amodule->info.llvm_get_unbox_tramp;
5691 code = get_tramp (method_index);
5693 if (code)
5694 return code;
5697 ut = amodule->unbox_trampolines;
5698 ut_end = amodule->unbox_trampolines_end;
5700 /* Do a binary search in the sorted table */
5701 code = NULL;
5702 low = 0;
5703 high = (ut_end - ut);
5704 while (low < high) {
5705 entry_index = (low + high) / 2;
5706 entry = &ut [entry_index];
5707 if (entry [0] < method_index) {
5708 low = entry_index + 1;
5709 } else if (entry [0] > method_index) {
5710 high = entry_index;
5711 } else {
5712 break;
5716 code = get_call_table_entry (amodule->unbox_trampoline_addresses, entry_index);
5717 g_assert (code);
5719 tinfo = mono_tramp_info_create (NULL, (guint8 *)code, 0, NULL, NULL);
5721 symbol_addr = read_unwind_info (amodule, tinfo, "unbox_trampoline_p");
5722 if (!symbol_addr) {
5723 mono_tramp_info_free (tinfo);
5724 return FALSE;
5727 tinfo->code_size = *(guint32*)symbol_addr;
5728 mono_aot_tramp_info_register (tinfo, NULL);
5730 /* The caller expects an ftnptr */
5731 return mono_create_ftnptr (mono_domain_get (), code);
5734 gpointer
5735 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
5737 char *symbol;
5738 gpointer code;
5739 MonoAotModule *amodule = (MonoAotModule *)mono_defaults.corlib->aot_module;
5740 guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
5741 static int count = 0;
5743 count ++;
5744 if (index >= amodule->info.num_rgctx_fetch_trampolines) {
5745 static gpointer addr;
5746 gpointer *info;
5749 * Use the general version of the rgctx fetch trampoline. It receives a pair of <slot, trampoline> in the rgctx arg reg.
5751 if (!addr)
5752 addr = load_function (amodule, "rgctx_fetch_trampoline_general");
5753 info = (void **)mono_domain_alloc0 (mono_get_root_domain (), sizeof (gpointer) * 2);
5754 info [0] = GUINT_TO_POINTER (slot);
5755 info [1] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
5756 code = mono_aot_get_static_rgctx_trampoline (info, addr);
5757 return mono_create_ftnptr (mono_domain_get (), code);
5760 symbol = mono_get_rgctx_fetch_trampoline_name (slot);
5761 code = load_function ((MonoAotModule *)mono_defaults.corlib->aot_module, symbol);
5762 g_free (symbol);
5763 /* The caller expects an ftnptr */
5764 return mono_create_ftnptr (mono_domain_get (), code);
5767 static void
5768 no_imt_trampoline (void)
5770 g_assert_not_reached ();
5773 gpointer
5774 mono_aot_get_imt_trampoline (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
5776 guint32 got_offset;
5777 gpointer code;
5778 gpointer *buf;
5779 int i, index, real_count;
5780 MonoAotModule *amodule;
5782 if (mono_llvm_only)
5783 return no_imt_trampoline;
5785 real_count = 0;
5786 for (i = 0; i < count; ++i) {
5787 MonoIMTCheckItem *item = imt_entries [i];
5789 if (item->is_equals)
5790 real_count ++;
5793 /* Save the entries into an array */
5794 buf = (void **)mono_domain_alloc (domain, (real_count + 1) * 2 * sizeof (gpointer));
5795 index = 0;
5796 for (i = 0; i < count; ++i) {
5797 MonoIMTCheckItem *item = imt_entries [i];
5799 if (!item->is_equals)
5800 continue;
5802 g_assert (item->key);
5804 buf [(index * 2)] = item->key;
5805 if (item->has_target_code) {
5806 gpointer *p = (gpointer *)mono_domain_alloc (domain, sizeof (gpointer));
5807 *p = item->value.target_code;
5808 buf [(index * 2) + 1] = p;
5809 } else {
5810 buf [(index * 2) + 1] = &(vtable->vtable [item->value.vtable_slot]);
5812 index ++;
5814 buf [(index * 2)] = NULL;
5815 buf [(index * 2) + 1] = fail_tramp;
5817 if (USE_PAGE_TRAMPOLINES) {
5818 code = get_new_imt_trampoline_from_page (buf);
5819 } else {
5820 code = get_numerous_trampoline (MONO_AOT_TRAMP_IMT, 1, &amodule, &got_offset, NULL);
5822 amodule->got [got_offset] = buf;
5825 return code;
5828 gpointer
5829 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
5831 MonoAotModule *amodule;
5832 guint8 *code;
5833 guint32 got_offset;
5835 if (USE_PAGE_TRAMPOLINES) {
5836 code = (guint8 *)get_new_gsharedvt_arg_trampoline_from_page (addr, arg);
5837 } else {
5838 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_GSHAREDVT_ARG, 2, &amodule, &got_offset, NULL);
5840 amodule->got [got_offset] = arg;
5841 amodule->got [got_offset + 1] = addr;
5844 /* The caller expects an ftnptr */
5845 return mono_create_ftnptr (mono_domain_get (), code);
5849 * mono_aot_set_make_unreadable:
5851 * Set whenever to make all mmaped memory unreadable. In conjuction with a
5852 * SIGSEGV handler, this is useful to find out which pages the runtime tries to read.
5854 void
5855 mono_aot_set_make_unreadable (gboolean unreadable)
5857 static int inited;
5859 make_unreadable = unreadable;
5861 if (make_unreadable && !inited) {
5862 mono_counters_register ("AOT: pagefaults", MONO_COUNTER_JIT | MONO_COUNTER_INT, &n_pagefaults);
5866 typedef struct {
5867 MonoAotModule *module;
5868 guint8 *ptr;
5869 } FindMapUserData;
5871 static void
5872 find_map (gpointer key, gpointer value, gpointer user_data)
5874 MonoAotModule *module = (MonoAotModule*)value;
5875 FindMapUserData *data = (FindMapUserData*)user_data;
5877 if (!data->module)
5878 if ((data->ptr >= module->mem_begin) && (data->ptr < module->mem_end))
5879 data->module = module;
5882 static MonoAotModule*
5883 find_module_for_addr (void *ptr)
5885 FindMapUserData data;
5887 if (!make_unreadable)
5888 return NULL;
5890 data.module = NULL;
5891 data.ptr = (guint8*)ptr;
5893 mono_aot_lock ();
5894 g_hash_table_foreach (aot_modules, (GHFunc)find_map, &data);
5895 mono_aot_unlock ();
5897 return data.module;
5901 * mono_aot_is_pagefault:
5903 * Should be called from a SIGSEGV signal handler to find out whenever @ptr is
5904 * within memory allocated by this module.
5906 gboolean
5907 mono_aot_is_pagefault (void *ptr)
5909 if (!make_unreadable)
5910 return FALSE;
5913 * Not signal safe, but SIGSEGV's are synchronous, and
5914 * this is only turned on by a MONO_DEBUG option.
5916 return find_module_for_addr (ptr) != NULL;
5920 * mono_aot_handle_pagefault:
5922 * Handle a pagefault caused by an unreadable page by making it readable again.
5924 void
5925 mono_aot_handle_pagefault (void *ptr)
5927 #ifndef HOST_WIN32
5928 guint8* start = (guint8*)ROUND_DOWN (((gssize)ptr), mono_pagesize ());
5929 int res;
5931 mono_aot_lock ();
5932 res = mono_mprotect (start, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_WRITE|MONO_MMAP_EXEC);
5933 g_assert (res == 0);
5935 n_pagefaults ++;
5936 mono_aot_unlock ();
5937 #endif
5940 #else
5941 /* AOT disabled */
5943 void
5944 mono_aot_init (void)
5948 void
5949 mono_aot_cleanup (void)
5953 guint32
5954 mono_aot_find_method_index (MonoMethod *method)
5956 g_assert_not_reached ();
5957 return 0;
5960 void
5961 mono_aot_init_llvm_method (gpointer aot_module, guint32 method_index)
5965 void
5966 mono_aot_init_gshared_method_this (gpointer aot_module, guint32 method_index, MonoObject *this)
5970 void
5971 mono_aot_init_gshared_method_mrgctx (gpointer aot_module, guint32 method_index, MonoMethodRuntimeGenericContext *rgctx)
5975 void
5976 mono_aot_init_gshared_method_vtable (gpointer aot_module, guint32 method_index, MonoVTable *vtable)
5980 gpointer
5981 mono_aot_get_method (MonoDomain *domain,
5982 MonoMethod *method, MonoError *error)
5984 error_init (error);
5985 return NULL;
5988 gboolean
5989 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
5991 return FALSE;
5994 gboolean
5995 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
5997 return FALSE;
6000 gboolean
6001 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
6003 return FALSE;
6006 MonoJitInfo *
6007 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
6009 return NULL;
6012 gpointer
6013 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token, MonoError *error)
6015 error_init (error);
6016 return NULL;
6019 guint8*
6020 mono_aot_get_plt_entry (guint8 *code)
6022 return NULL;
6025 gpointer
6026 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code, MonoError *error)
6028 return NULL;
6031 void
6032 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
6036 gpointer
6037 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot, MonoError *error)
6039 error_init (error);
6041 return NULL;
6044 guint32
6045 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
6047 g_assert_not_reached ();
6049 return 0;
6052 gpointer
6053 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
6055 g_assert_not_reached ();
6056 return NULL;
6059 gpointer
6060 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
6062 g_assert_not_reached ();
6063 return NULL;
6066 gpointer
6067 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
6069 g_assert_not_reached ();
6070 return NULL;
6073 gpointer
6074 mono_aot_get_trampoline (const char *name)
6076 g_assert_not_reached ();
6077 return NULL;
6080 gpointer
6081 mono_aot_get_unbox_trampoline (MonoMethod *method)
6083 g_assert_not_reached ();
6084 return NULL;
6087 gpointer
6088 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
6090 g_assert_not_reached ();
6091 return NULL;
6094 gpointer
6095 mono_aot_get_imt_trampoline (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
6097 g_assert_not_reached ();
6098 return NULL;
6101 gpointer
6102 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
6104 g_assert_not_reached ();
6105 return NULL;
6108 void
6109 mono_aot_set_make_unreadable (gboolean unreadable)
6113 gboolean
6114 mono_aot_is_pagefault (void *ptr)
6116 return FALSE;
6119 void
6120 mono_aot_handle_pagefault (void *ptr)
6124 guint8*
6125 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
6127 g_assert_not_reached ();
6128 return NULL;
6131 void
6132 mono_aot_register_jit_icall (const char *name, gpointer addr)
6136 #endif