[build] Skips RemoteExecuted bases tests on monodroid
[mono-project.git] / mono / mini / aot-runtime.c
blob3039554ee745e3787d5c7acda1ea0aa0869dfc93
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 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: module %s wants to load image %d: %s", amodule->aot_name, index, amodule->image_names[index].name);
278 if (amodule->out_of_date) {
279 mono_error_set_bad_image_by_name (error, amodule->aot_name, "Image out of date");
280 return NULL;
284 * LoadFile allows loading more than one assembly with the same name.
285 * That means that just calling mono_assembly_load is unlikely to find
286 * the correct assembly (it'll just return the first one loaded). But
287 * we shouldn't hardcode the full assembly filepath into the AOT image,
288 * so it's not obvious that we can call mono_assembly_open_predicate.
290 * In the JIT, an assembly opened with LoadFile is supposed to only
291 * refer to already-loaded assemblies (or to GAC & MONO_PATH)
292 * assemblies - so nothing new should be loading. And for the
293 * LoadFile'd assembly itself, we can check if the name and guid of the
294 * current AOT module matches the wanted name and guid and just return
295 * the AOT module's assembly.
297 if (mono_asmctx_get_kind (&amodule->assembly->context) == MONO_ASMCTX_INDIVIDUAL &&
298 !strcmp (amodule->assembly->image->guid, amodule->image_guids [index]) &&
299 mono_assembly_names_equal (&amodule->image_names [index], &amodule->assembly->aname))
300 assembly = amodule->assembly;
301 else
302 assembly = mono_assembly_load (&amodule->image_names [index], amodule->assembly->basedir, &status);
303 if (!assembly) {
304 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);
305 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);
306 amodule->out_of_date = TRUE;
307 return NULL;
310 if (strcmp (assembly->image->guid, amodule->image_guids [index])) {
311 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);
312 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);
313 amodule->out_of_date = TRUE;
314 return NULL;
317 amodule->image_table [index] = assembly->image;
318 return assembly->image;
321 static inline gint32
322 decode_value (guint8 *ptr, guint8 **rptr)
324 guint8 b = *ptr;
325 gint32 len;
327 if ((b & 0x80) == 0){
328 len = b;
329 ++ptr;
330 } else if ((b & 0x40) == 0){
331 len = ((b & 0x3f) << 8 | ptr [1]);
332 ptr += 2;
333 } else if (b != 0xff) {
334 len = ((b & 0x1f) << 24) |
335 (ptr [1] << 16) |
336 (ptr [2] << 8) |
337 ptr [3];
338 ptr += 4;
340 else {
341 len = (ptr [1] << 24) | (ptr [2] << 16) | (ptr [3] << 8) | ptr [4];
342 ptr += 5;
344 if (rptr)
345 *rptr = ptr;
347 //printf ("DECODE: %d.\n", len);
348 return len;
352 * mono_aot_get_offset:
354 * Decode an offset table emitted by emit_offset_table (), returning the INDEXth
355 * entry.
357 static guint32
358 mono_aot_get_offset (guint32 *table, int index)
360 int i, group, ngroups, index_entry_size;
361 int start_offset, offset, group_size;
362 guint8 *data_start, *p;
363 guint32 *index32 = NULL;
364 guint16 *index16 = NULL;
366 /* noffsets = table [0]; */
367 group_size = table [1];
368 ngroups = table [2];
369 index_entry_size = table [3];
370 group = index / group_size;
372 if (index_entry_size == 2) {
373 index16 = (guint16*)&table [4];
374 data_start = (guint8*)&index16 [ngroups];
375 p = data_start + index16 [group];
376 } else {
377 index32 = (guint32*)&table [4];
378 data_start = (guint8*)&index32 [ngroups];
379 p = data_start + index32 [group];
382 /* offset will contain the value of offsets [group * group_size] */
383 offset = start_offset = decode_value (p, &p);
384 for (i = group * group_size + 1; i <= index; ++i) {
385 offset += decode_value (p, &p);
388 //printf ("Offset lookup: %d -> %d, start=%d, p=%d\n", index, offset, start_offset, table [3 + group]);
390 return offset;
393 static MonoMethod*
394 decode_resolve_method_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error);
396 static MonoClass*
397 decode_klass_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error);
399 static MonoType*
400 decode_type (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error);
402 static MonoGenericInst*
403 decode_generic_inst (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
405 int type_argc, i;
406 MonoType **type_argv;
407 MonoGenericInst *inst;
408 guint8 *p = buf;
410 error_init (error);
411 type_argc = decode_value (p, &p);
412 type_argv = g_new0 (MonoType*, type_argc);
414 for (i = 0; i < type_argc; ++i) {
415 MonoClass *pclass = decode_klass_ref (module, p, &p, error);
416 if (!pclass) {
417 g_free (type_argv);
418 return NULL;
420 type_argv [i] = m_class_get_byval_arg (pclass);
423 inst = mono_metadata_get_generic_inst (type_argc, type_argv);
424 g_free (type_argv);
426 *endbuf = p;
428 return inst;
431 static gboolean
432 decode_generic_context (MonoAotModule *module, MonoGenericContext *ctx, guint8 *buf, guint8 **endbuf, MonoError *error)
434 guint8 *p = buf;
435 guint8 *p2;
436 int argc;
437 error_init (error);
439 p2 = p;
440 argc = decode_value (p, &p);
441 if (argc) {
442 p = p2;
443 ctx->class_inst = decode_generic_inst (module, p, &p, error);
444 if (!ctx->class_inst)
445 return FALSE;
447 p2 = p;
448 argc = decode_value (p, &p);
449 if (argc) {
450 p = p2;
451 ctx->method_inst = decode_generic_inst (module, p, &p, error);
452 if (!ctx->method_inst)
453 return FALSE;
456 *endbuf = p;
457 return TRUE;
460 static MonoClass*
461 decode_klass_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
463 MonoImage *image;
464 MonoClass *klass = NULL, *eklass;
465 guint32 token, rank, idx;
466 guint8 *p = buf;
467 int reftype;
469 error_init (error);
470 reftype = decode_value (p, &p);
471 if (reftype == 0) {
472 *endbuf = p;
473 mono_error_set_bad_image_by_name (error, module->aot_name, "Decoding a null class ref");
474 return NULL;
477 switch (reftype) {
478 case MONO_AOT_TYPEREF_TYPEDEF_INDEX:
479 idx = decode_value (p, &p);
480 image = load_image (module, 0, error);
481 if (!image)
482 return NULL;
483 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF + idx, error);
484 break;
485 case MONO_AOT_TYPEREF_TYPEDEF_INDEX_IMAGE:
486 idx = decode_value (p, &p);
487 image = load_image (module, decode_value (p, &p), error);
488 if (!image)
489 return NULL;
490 klass = mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF + idx, error);
491 break;
492 case MONO_AOT_TYPEREF_TYPESPEC_TOKEN:
493 token = decode_value (p, &p);
494 image = module->assembly->image;
495 if (!image) {
496 mono_error_set_bad_image_by_name (error, module->aot_name, "No image associated with the aot module");
497 return NULL;
499 klass = mono_class_get_checked (image, token, error);
500 break;
501 case MONO_AOT_TYPEREF_GINST: {
502 MonoClass *gclass;
503 MonoGenericContext ctx;
504 MonoType *type;
506 gclass = decode_klass_ref (module, p, &p, error);
507 if (!gclass)
508 return NULL;
509 g_assert (mono_class_is_gtd (gclass));
511 memset (&ctx, 0, sizeof (ctx));
512 ctx.class_inst = decode_generic_inst (module, p, &p, error);
513 if (!ctx.class_inst)
514 return NULL;
515 type = mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass), &ctx, error);
516 if (!type)
517 return NULL;
518 klass = mono_class_from_mono_type (type);
519 mono_metadata_free_type (type);
520 break;
522 case MONO_AOT_TYPEREF_VAR: {
523 MonoType *t = NULL;
524 MonoGenericContainer *container = NULL;
525 gboolean has_constraint = decode_value (p, &p);
527 if (has_constraint) {
528 MonoClass *par_klass;
529 MonoType *gshared_constraint;
531 gshared_constraint = decode_type (module, p, &p, error);
532 if (!gshared_constraint)
533 return NULL;
535 par_klass = decode_klass_ref (module, p, &p, error);
536 if (!par_klass)
537 return NULL;
539 t = mini_get_shared_gparam (m_class_get_byval_arg (par_klass), gshared_constraint);
540 mono_metadata_free_type (gshared_constraint);
541 klass = mono_class_from_mono_type (t);
542 } else {
543 int type = decode_value (p, &p);
544 int num = decode_value (p, &p);
545 gboolean is_not_anonymous = decode_value (p, &p);
547 if (is_not_anonymous) {
548 gboolean is_method = decode_value (p, &p);
550 if (is_method) {
551 MonoMethod *method_def;
552 g_assert (type == MONO_TYPE_MVAR);
553 method_def = decode_resolve_method_ref (module, p, &p, error);
554 if (!method_def)
555 return NULL;
557 container = mono_method_get_generic_container (method_def);
558 } else {
559 MonoClass *class_def;
560 g_assert (type == MONO_TYPE_VAR);
561 class_def = decode_klass_ref (module, p, &p, error);
562 if (!class_def)
563 return NULL;
565 container = mono_class_try_get_generic_container (class_def); //FIXME is this a case for a try_get?
567 } else {
568 // We didn't decode is_method, so we have to infer it from type enum.
569 container = mono_get_anonymous_container_for_image (module->assembly->image, type == MONO_TYPE_MVAR);
572 t = g_new0 (MonoType, 1);
573 t->type = (MonoTypeEnum)type;
574 if (is_not_anonymous) {
575 t->data.generic_param = mono_generic_container_get_param (container, num);
576 } else {
577 /* Anonymous */
578 MonoGenericParam *par = mono_metadata_create_anon_gparam (module->assembly->image, num, type == MONO_TYPE_MVAR);
579 t->data.generic_param = par;
580 // FIXME: maybe do this for all anon gparams?
581 ((MonoGenericParamFull*)par)->info.name = mono_make_generic_name_string (module->assembly->image, num);
583 // FIXME: Maybe use types directly to avoid
584 // the overhead of creating MonoClass-es
585 klass = mono_class_from_mono_type (t);
587 g_free (t);
589 break;
591 case MONO_AOT_TYPEREF_ARRAY:
592 /* Array */
593 rank = decode_value (p, &p);
594 eklass = decode_klass_ref (module, p, &p, error);
595 if (!eklass)
596 return NULL;
597 klass = mono_class_create_array (eklass, rank);
598 break;
599 case MONO_AOT_TYPEREF_PTR: {
600 MonoType *t;
602 t = decode_type (module, p, &p, error);
603 if (!t)
604 return NULL;
605 klass = mono_class_from_mono_type (t);
606 g_free (t);
607 break;
609 case MONO_AOT_TYPEREF_BLOB_INDEX: {
610 guint32 offset = decode_value (p, &p);
611 guint8 *p2;
613 p2 = module->blob + offset;
614 klass = decode_klass_ref (module, p2, &p2, error);
615 break;
617 default:
618 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid klass reftype %d", reftype);
620 //g_assert (klass);
621 //printf ("BLA: %s\n", mono_type_full_name (m_class_get_byval_arg (klass)));
622 *endbuf = p;
623 return klass;
626 static MonoClassField*
627 decode_field_info (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
629 ERROR_DECL (error);
630 MonoClass *klass = decode_klass_ref (module, buf, &buf, error);
631 guint32 token;
632 guint8 *p = buf;
634 if (!klass) {
635 mono_error_cleanup (error); /* FIXME don't swallow the error */
636 return NULL;
639 token = MONO_TOKEN_FIELD_DEF + decode_value (p, &p);
641 *endbuf = p;
643 return mono_class_get_field (klass, token);
647 * Parse a MonoType encoded by encode_type () in aot-compiler.c. Return malloc-ed
648 * memory.
650 static MonoType*
651 decode_type (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
653 guint8 *p = buf;
654 MonoType *t;
656 if (*p == MONO_TYPE_CMOD_REQD) {
657 ++p;
659 int count = decode_value (p, &p);
661 t = (MonoType*)g_malloc0 (mono_sizeof_type_with_mods (count));
662 t->has_cmods = TRUE;
664 MonoCustomModContainer *cm = mono_type_get_cmods (t);
665 int iindex = decode_value (p, &p);
666 cm->image = load_image (module, iindex, error);
667 if (!cm->image) {
668 g_free (t);
669 return NULL;
671 cm->count = count;
672 for (int i = 0; i < cm->count; ++i) {
673 cm->modifiers [i].required = decode_value (p, &p);
674 cm->modifiers [i].token = decode_value (p, &p);
676 } else {
677 t = (MonoType *) g_malloc0 (sizeof (MonoType));
680 while (TRUE) {
681 if (*p == MONO_TYPE_PINNED) {
682 t->pinned = TRUE;
683 ++p;
684 } else if (*p == MONO_TYPE_BYREF) {
685 t->byref = TRUE;
686 ++p;
687 } else {
688 break;
692 t->type = (MonoTypeEnum)*p;
693 ++p;
695 switch (t->type) {
696 case MONO_TYPE_VOID:
697 case MONO_TYPE_BOOLEAN:
698 case MONO_TYPE_CHAR:
699 case MONO_TYPE_I1:
700 case MONO_TYPE_U1:
701 case MONO_TYPE_I2:
702 case MONO_TYPE_U2:
703 case MONO_TYPE_I4:
704 case MONO_TYPE_U4:
705 case MONO_TYPE_I8:
706 case MONO_TYPE_U8:
707 case MONO_TYPE_R4:
708 case MONO_TYPE_R8:
709 case MONO_TYPE_I:
710 case MONO_TYPE_U:
711 case MONO_TYPE_STRING:
712 case MONO_TYPE_OBJECT:
713 case MONO_TYPE_TYPEDBYREF:
714 break;
715 case MONO_TYPE_VALUETYPE:
716 case MONO_TYPE_CLASS:
717 t->data.klass = decode_klass_ref (module, p, &p, error);
718 if (!t->data.klass)
719 goto fail;
720 break;
721 case MONO_TYPE_SZARRAY:
722 t->data.klass = decode_klass_ref (module, p, &p, error);
724 if (!t->data.klass)
725 goto fail;
726 break;
727 case MONO_TYPE_PTR:
728 t->data.type = decode_type (module, p, &p, error);
729 if (!t->data.type)
730 goto fail;
731 break;
732 case MONO_TYPE_GENERICINST: {
733 MonoClass *gclass;
734 MonoGenericContext ctx;
735 MonoType *type;
736 MonoClass *klass;
738 gclass = decode_klass_ref (module, p, &p, error);
739 if (!gclass)
740 goto fail;
741 g_assert (mono_class_is_gtd (gclass));
743 memset (&ctx, 0, sizeof (ctx));
744 ctx.class_inst = decode_generic_inst (module, p, &p, error);
745 if (!ctx.class_inst)
746 goto fail;
747 type = mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass), &ctx, error);
748 if (!type)
749 goto fail;
750 klass = mono_class_from_mono_type (type);
751 t->data.generic_class = mono_class_get_generic_class (klass);
752 break;
754 case MONO_TYPE_ARRAY: {
755 MonoArrayType *array;
756 int i;
758 // FIXME: memory management
759 array = g_new0 (MonoArrayType, 1);
760 array->eklass = decode_klass_ref (module, p, &p, error);
761 if (!array->eklass)
762 goto fail;
763 array->rank = decode_value (p, &p);
764 array->numsizes = decode_value (p, &p);
766 if (array->numsizes)
767 array->sizes = (int *)g_malloc0 (sizeof (int) * array->numsizes);
768 for (i = 0; i < array->numsizes; ++i)
769 array->sizes [i] = decode_value (p, &p);
771 array->numlobounds = decode_value (p, &p);
772 if (array->numlobounds)
773 array->lobounds = (int *)g_malloc0 (sizeof (int) * array->numlobounds);
774 for (i = 0; i < array->numlobounds; ++i)
775 array->lobounds [i] = decode_value (p, &p);
776 t->data.array = array;
777 break;
779 case MONO_TYPE_VAR:
780 case MONO_TYPE_MVAR: {
781 MonoClass *klass = decode_klass_ref (module, p, &p, error);
782 if (!klass)
783 goto fail;
784 t->data.generic_param = m_class_get_byval_arg (klass)->data.generic_param;
785 break;
787 default:
788 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid encoded type %d", t->type);
789 goto fail;
792 *endbuf = p;
794 return t;
795 fail:
796 g_free (t);
797 return NULL;
800 // FIXME: Error handling, memory management
802 static MonoMethodSignature*
803 decode_signature_with_target (MonoAotModule *module, MonoMethodSignature *target, guint8 *buf, guint8 **endbuf)
805 ERROR_DECL (error);
806 MonoMethodSignature *sig;
807 guint32 flags;
808 int i, gen_param_count = 0, param_count, call_conv;
809 guint8 *p = buf;
810 gboolean hasthis, explicit_this, has_gen_params;
812 flags = *p;
813 p ++;
814 has_gen_params = (flags & 0x10) != 0;
815 hasthis = (flags & 0x20) != 0;
816 explicit_this = (flags & 0x40) != 0;
817 call_conv = flags & 0x0F;
819 if (has_gen_params)
820 gen_param_count = decode_value (p, &p);
821 param_count = decode_value (p, &p);
822 if (target && param_count != target->param_count)
823 return NULL;
824 sig = (MonoMethodSignature *)g_malloc0 (MONO_SIZEOF_METHOD_SIGNATURE + param_count * sizeof (MonoType *));
825 sig->param_count = param_count;
826 sig->sentinelpos = -1;
827 sig->hasthis = hasthis;
828 sig->explicit_this = explicit_this;
829 sig->call_convention = call_conv;
830 sig->generic_param_count = gen_param_count;
831 sig->ret = decode_type (module, p, &p, error);
832 if (!sig->ret)
833 goto fail;
834 for (i = 0; i < param_count; ++i) {
835 if (*p == MONO_TYPE_SENTINEL) {
836 g_assert (sig->call_convention == MONO_CALL_VARARG);
837 sig->sentinelpos = i;
838 p ++;
840 sig->params [i] = decode_type (module, p, &p, error);
841 if (!sig->params [i])
842 goto fail;
845 if (sig->call_convention == MONO_CALL_VARARG && sig->sentinelpos == -1)
846 sig->sentinelpos = sig->param_count;
848 *endbuf = p;
850 return sig;
851 fail:
852 mono_error_cleanup (error); /* FIXME don't swallow the error */
853 g_free (sig);
854 return NULL;
857 static MonoMethodSignature*
858 decode_signature (MonoAotModule *module, guint8 *buf, guint8 **endbuf)
860 return decode_signature_with_target (module, NULL, buf, endbuf);
863 static gboolean
864 sig_matches_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf)
866 MonoMethodSignature *sig;
867 gboolean res;
868 guint8 *p = buf;
870 sig = decode_signature_with_target (module, mono_method_signature (target), p, &p);
871 res = sig && mono_metadata_signature_equal (mono_method_signature (target), sig);
872 g_free (sig);
873 *endbuf = p;
874 return res;
877 /* Stores information returned by decode_method_ref () */
878 typedef struct {
879 MonoImage *image;
880 guint32 token;
881 MonoMethod *method;
882 gboolean no_aot_trampoline;
883 } MethodRef;
886 * decode_method_ref_with_target:
888 * Decode a method reference, storing the image/token into a MethodRef structure.
889 * This avoids loading metadata for the method if the caller does not need it. If the method has
890 * no token, then it is loaded from metadata and ref->method is set to the method instance.
891 * If TARGET is non-NULL, abort decoding if it can be determined that the decoded method
892 * couldn't resolve to TARGET, and return FALSE.
893 * There are some kinds of method references which only support a non-null TARGET.
894 * This means that its not possible to decode this into a method, only to check
895 * that the method reference matches a given method. This is normally not a problem
896 * as these wrappers only occur in the extra_methods table, where we already have
897 * a method we want to lookup.
899 * If there was a decoding error, we return FALSE and set @error
901 static gboolean
902 decode_method_ref_with_target (MonoAotModule *module, MethodRef *ref, MonoMethod *target, guint8 *buf, guint8 **endbuf, MonoError *error)
904 guint32 image_index, value;
905 MonoImage *image = NULL;
906 guint8 *p = buf;
908 memset (ref, 0, sizeof (MethodRef));
909 error_init (error);
911 value = decode_value (p, &p);
912 image_index = value >> 24;
914 if (image_index == MONO_AOT_METHODREF_NO_AOT_TRAMPOLINE) {
915 ref->no_aot_trampoline = TRUE;
916 value = decode_value (p, &p);
917 image_index = value >> 24;
920 if (image_index < MONO_AOT_METHODREF_MIN || image_index == MONO_AOT_METHODREF_METHODSPEC || image_index == MONO_AOT_METHODREF_GINST) {
921 if (target && target->wrapper_type) {
922 return FALSE;
926 if (image_index == MONO_AOT_METHODREF_WRAPPER) {
927 WrapperInfo *info;
928 guint32 wrapper_type;
930 wrapper_type = decode_value (p, &p);
932 if (target && target->wrapper_type != wrapper_type)
933 return FALSE;
935 /* Doesn't matter */
936 image = mono_defaults.corlib;
938 switch (wrapper_type) {
939 #ifndef DISABLE_REMOTING
940 case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK: {
941 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
942 if (!m)
943 return FALSE;
944 mono_class_init (m->klass);
945 if (mono_aot_only)
946 ref->method = m;
947 else {
948 ref->method = mono_marshal_get_remoting_invoke_with_check (m, error);
949 return_val_if_nok (error, FALSE);
951 break;
953 case MONO_WRAPPER_PROXY_ISINST: {
954 MonoClass *klass = decode_klass_ref (module, p, &p, error);
955 if (!klass)
956 return FALSE;
957 ref->method = mono_marshal_get_proxy_cancast (klass);
958 break;
960 case MONO_WRAPPER_LDFLD:
961 case MONO_WRAPPER_LDFLDA:
962 case MONO_WRAPPER_STFLD: {
963 MonoClass *klass = decode_klass_ref (module, p, &p, error);
964 if (!klass)
965 return FALSE;
966 MonoType *type = m_class_get_byval_arg (klass);
967 if (wrapper_type == MONO_WRAPPER_LDFLD)
968 ref->method = mono_marshal_get_ldfld_wrapper (type);
969 else if (wrapper_type == MONO_WRAPPER_LDFLDA)
970 ref->method = mono_marshal_get_ldflda_wrapper (type);
971 else if (wrapper_type == MONO_WRAPPER_STFLD)
972 ref->method = mono_marshal_get_stfld_wrapper (type);
973 else {
974 mono_error_set_bad_image_by_name (error, module->aot_name, "Unknown AOT wrapper type %d", wrapper_type);
975 return FALSE;
977 break;
979 #endif
980 case MONO_WRAPPER_ALLOC: {
981 int atype = decode_value (p, &p);
982 ManagedAllocatorVariant variant =
983 mono_profiler_allocations_enabled () ?
984 MANAGED_ALLOCATOR_PROFILER : MANAGED_ALLOCATOR_REGULAR;
986 ref->method = mono_gc_get_managed_allocator_by_type (atype, variant);
987 /* Try to fallback to the slow path version */
988 if (!ref->method)
989 ref->method = mono_gc_get_managed_allocator_by_type (atype, MANAGED_ALLOCATOR_SLOW_PATH);
990 if (!ref->method) {
991 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");
992 return FALSE;
994 break;
996 case MONO_WRAPPER_WRITE_BARRIER: {
997 ref->method = mono_gc_get_write_barrier ();
998 break;
1000 case MONO_WRAPPER_STELEMREF: {
1001 int subtype = decode_value (p, &p);
1003 if (subtype == WRAPPER_SUBTYPE_NONE) {
1004 ref->method = mono_marshal_get_stelemref ();
1005 } else if (subtype == WRAPPER_SUBTYPE_VIRTUAL_STELEMREF) {
1006 int kind;
1008 kind = decode_value (p, &p);
1010 /* Can't decode this */
1011 if (!target)
1012 return FALSE;
1013 if (target->wrapper_type == MONO_WRAPPER_STELEMREF) {
1014 info = mono_marshal_get_wrapper_info (target);
1016 g_assert (info);
1017 if (info->subtype == subtype && info->d.virtual_stelemref.kind == kind)
1018 ref->method = target;
1019 else
1020 return FALSE;
1021 } else {
1022 return FALSE;
1024 } else {
1025 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid STELEMREF subtype %d", subtype);
1026 return FALSE;
1028 break;
1030 case MONO_WRAPPER_SYNCHRONIZED: {
1031 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1032 if (!m)
1033 return FALSE;
1034 ref->method = mono_marshal_get_synchronized_wrapper (m);
1035 break;
1037 case MONO_WRAPPER_UNKNOWN: {
1038 int subtype = decode_value (p, &p);
1040 if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE || subtype == WRAPPER_SUBTYPE_STRUCTURE_TO_PTR) {
1041 MonoClass *klass = decode_klass_ref (module, p, &p, error);
1042 if (!klass)
1043 return FALSE;
1045 if (!target)
1046 return FALSE;
1047 if (klass != target->klass)
1048 return FALSE;
1050 if (subtype == WRAPPER_SUBTYPE_PTR_TO_STRUCTURE) {
1051 if (strcmp (target->name, "PtrToStructure"))
1052 return FALSE;
1053 ref->method = mono_marshal_get_ptr_to_struct (klass);
1054 } else {
1055 if (strcmp (target->name, "StructureToPtr"))
1056 return FALSE;
1057 ref->method = mono_marshal_get_struct_to_ptr (klass);
1059 } else if (subtype == WRAPPER_SUBTYPE_SYNCHRONIZED_INNER) {
1060 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1061 if (!m)
1062 return FALSE;
1063 ref->method = mono_marshal_get_synchronized_inner_wrapper (m);
1064 } else if (subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
1065 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1066 if (!m)
1067 return FALSE;
1068 ref->method = mono_marshal_get_array_accessor_wrapper (m);
1069 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN) {
1070 ref->method = mono_marshal_get_gsharedvt_in_wrapper ();
1071 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT) {
1072 ref->method = mono_marshal_get_gsharedvt_out_wrapper ();
1073 } else if (subtype == WRAPPER_SUBTYPE_INTERP_IN) {
1074 MonoMethodSignature *sig = decode_signature (module, p, &p);
1075 if (!sig)
1076 return FALSE;
1077 ref->method = mini_get_interp_in_wrapper (sig);
1078 } else if (subtype == WRAPPER_SUBTYPE_INTERP_LMF) {
1079 ref->method = mini_get_interp_lmf_wrapper ();
1080 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG) {
1081 MonoMethodSignature *sig = decode_signature (module, p, &p);
1082 if (!sig)
1083 return FALSE;
1084 ref->method = mini_get_gsharedvt_in_sig_wrapper (sig);
1085 } else if (subtype == WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG) {
1086 MonoMethodSignature *sig = decode_signature (module, p, &p);
1087 if (!sig)
1088 return FALSE;
1089 ref->method = mini_get_gsharedvt_out_sig_wrapper (sig);
1090 } else {
1091 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid UNKNOWN wrapper subtype %d", subtype);
1092 return FALSE;
1094 break;
1096 case MONO_WRAPPER_MANAGED_TO_MANAGED: {
1097 int subtype = decode_value (p, &p);
1099 if (subtype == WRAPPER_SUBTYPE_ELEMENT_ADDR) {
1100 int rank = decode_value (p, &p);
1101 int elem_size = decode_value (p, &p);
1103 ref->method = mono_marshal_get_array_address (rank, elem_size);
1104 } else if (subtype == WRAPPER_SUBTYPE_STRING_CTOR) {
1105 MonoMethod *m;
1107 m = decode_resolve_method_ref (module, p, &p, error);
1108 if (!m)
1109 return FALSE;
1111 if (!target)
1112 return FALSE;
1113 g_assert (target->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED);
1115 info = mono_marshal_get_wrapper_info (target);
1116 if (info && info->subtype == subtype && info->d.string_ctor.method == m)
1117 ref->method = target;
1118 else
1119 return FALSE;
1121 break;
1123 case MONO_WRAPPER_MANAGED_TO_NATIVE: {
1124 MonoMethod *m;
1125 int subtype = decode_value (p, &p);
1126 char *name;
1128 if (subtype == WRAPPER_SUBTYPE_ICALL_WRAPPER) {
1129 if (!target)
1130 return FALSE;
1132 name = (char*)p;
1133 if (strcmp (target->name, name) != 0)
1134 return FALSE;
1135 ref->method = target;
1136 } else {
1137 m = decode_resolve_method_ref (module, p, &p, error);
1138 if (!m)
1139 return FALSE;
1141 /* This should only happen when looking for an extra method */
1142 if (!target)
1143 return FALSE;
1144 if (mono_marshal_method_from_wrapper (target) == m)
1145 ref->method = target;
1146 else
1147 return FALSE;
1149 break;
1151 case MONO_WRAPPER_CASTCLASS: {
1152 int subtype = decode_value (p, &p);
1154 if (subtype == WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE)
1155 ref->method = mono_marshal_get_castclass_with_cache ();
1156 else if (subtype == WRAPPER_SUBTYPE_ISINST_WITH_CACHE)
1157 ref->method = mono_marshal_get_isinst_with_cache ();
1158 else {
1159 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid CASTCLASS wrapper subtype %d", subtype);
1160 return FALSE;
1162 break;
1164 case MONO_WRAPPER_RUNTIME_INVOKE: {
1165 int subtype = decode_value (p, &p);
1167 if (!target)
1168 return FALSE;
1170 if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC) {
1171 if (strcmp (target->name, "runtime_invoke_dynamic") != 0)
1172 return FALSE;
1173 ref->method = target;
1174 } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT) {
1175 /* Direct wrapper */
1176 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1177 if (!m)
1178 return FALSE;
1179 ref->method = mono_marshal_get_runtime_invoke (m, FALSE);
1180 } else if (subtype == WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL) {
1181 /* Virtual direct wrapper */
1182 MonoMethod *m = decode_resolve_method_ref (module, p, &p, error);
1183 if (!m)
1184 return FALSE;
1185 ref->method = mono_marshal_get_runtime_invoke (m, TRUE);
1186 } else {
1187 MonoMethodSignature *sig;
1189 sig = decode_signature_with_target (module, NULL, p, &p);
1190 info = mono_marshal_get_wrapper_info (target);
1191 g_assert (info);
1193 if (info->subtype != subtype)
1194 return FALSE;
1195 g_assert (info->d.runtime_invoke.sig);
1196 if (mono_metadata_signature_equal (sig, info->d.runtime_invoke.sig))
1197 ref->method = target;
1198 else
1199 return FALSE;
1201 break;
1203 case MONO_WRAPPER_DELEGATE_INVOKE:
1204 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1205 case MONO_WRAPPER_DELEGATE_END_INVOKE: {
1206 gboolean is_inflated = decode_value (p, &p);
1207 WrapperSubtype subtype;
1209 if (is_inflated) {
1210 MonoClass *klass;
1211 MonoMethod *invoke, *wrapper;
1213 klass = decode_klass_ref (module, p, &p, error);
1214 if (!klass)
1215 return FALSE;
1217 switch (wrapper_type) {
1218 case MONO_WRAPPER_DELEGATE_INVOKE:
1219 invoke = mono_get_delegate_invoke (klass);
1220 wrapper = mono_marshal_get_delegate_invoke (invoke, NULL);
1221 break;
1222 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE:
1223 invoke = mono_get_delegate_begin_invoke (klass);
1224 wrapper = mono_marshal_get_delegate_begin_invoke (invoke);
1225 break;
1226 case MONO_WRAPPER_DELEGATE_END_INVOKE:
1227 invoke = mono_get_delegate_end_invoke (klass);
1228 wrapper = mono_marshal_get_delegate_end_invoke (invoke);
1229 break;
1230 default:
1231 g_assert_not_reached ();
1232 break;
1234 if (target) {
1236 * Due to the way mini_get_shared_method_full () works, we could end up with
1237 * multiple copies of the same wrapper.
1239 if (wrapper->klass != target->klass)
1240 return FALSE;
1241 ref->method = target;
1242 } else {
1243 ref->method = wrapper;
1245 } else {
1247 * These wrappers are associated with a signature, not with a method.
1248 * Since we can't decode them into methods, they need a target method.
1250 if (!target)
1251 return FALSE;
1253 if (wrapper_type == MONO_WRAPPER_DELEGATE_INVOKE) {
1254 subtype = (WrapperSubtype)decode_value (p, &p);
1255 info = mono_marshal_get_wrapper_info (target);
1256 if (info) {
1257 if (info->subtype != subtype)
1258 return FALSE;
1259 } else {
1260 if (subtype != WRAPPER_SUBTYPE_NONE)
1261 return FALSE;
1264 if (sig_matches_target (module, target, p, &p))
1265 ref->method = target;
1266 else
1267 return FALSE;
1269 break;
1271 case MONO_WRAPPER_NATIVE_TO_MANAGED: {
1272 MonoMethod *m;
1273 MonoClass *klass;
1275 m = decode_resolve_method_ref (module, p, &p, error);
1276 if (!m)
1277 return FALSE;
1278 klass = decode_klass_ref (module, p, &p, error);
1279 if (!klass)
1280 return FALSE;
1281 ref->method = mono_marshal_get_managed_wrapper (m, klass, 0, error);
1282 if (!mono_error_ok (error))
1283 return FALSE;
1284 break;
1286 default:
1287 g_assert_not_reached ();
1289 } else if (image_index == MONO_AOT_METHODREF_METHODSPEC) {
1290 image_index = decode_value (p, &p);
1291 ref->token = decode_value (p, &p);
1293 image = load_image (module, image_index, error);
1294 if (!image)
1295 return FALSE;
1296 } else if (image_index == MONO_AOT_METHODREF_GINST) {
1297 MonoClass *klass;
1298 MonoGenericContext ctx;
1301 * These methods do not have a token which resolves them, so we
1302 * resolve them immediately.
1304 klass = decode_klass_ref (module, p, &p, error);
1305 if (!klass)
1306 return FALSE;
1308 if (target && target->klass != klass)
1309 return FALSE;
1311 image_index = decode_value (p, &p);
1312 ref->token = decode_value (p, &p);
1314 image = load_image (module, image_index, error);
1315 if (!image)
1316 return FALSE;
1318 ref->method = mono_get_method_checked (image, ref->token, NULL, NULL, error);
1319 if (!ref->method)
1320 return FALSE;
1323 memset (&ctx, 0, sizeof (ctx));
1325 if (FALSE && mono_class_is_ginst (klass)) {
1326 ctx.class_inst = mono_class_get_generic_class (klass)->context.class_inst;
1327 ctx.method_inst = NULL;
1329 ref->method = mono_class_inflate_generic_method_full_checked (ref->method, klass, &ctx, error);
1330 if (!ref->method)
1331 return FALSE;
1334 memset (&ctx, 0, sizeof (ctx));
1336 if (!decode_generic_context (module, &ctx, p, &p, error))
1337 return FALSE;
1339 ref->method = mono_class_inflate_generic_method_full_checked (ref->method, klass, &ctx, error);
1340 if (!ref->method)
1341 return FALSE;
1343 } else if (image_index == MONO_AOT_METHODREF_ARRAY) {
1344 MonoClass *klass;
1345 int method_type;
1347 klass = decode_klass_ref (module, p, &p, error);
1348 if (!klass)
1349 return FALSE;
1350 method_type = decode_value (p, &p);
1351 switch (method_type) {
1352 case 0:
1353 ref->method = mono_class_get_method_from_name_checked (klass, ".ctor", m_class_get_rank (klass), 0, error);
1354 return_val_if_nok (error, FALSE);
1355 break;
1356 case 1:
1357 ref->method = mono_class_get_method_from_name_checked (klass, ".ctor", m_class_get_rank (klass) * 2, 0, error);
1358 return_val_if_nok (error, FALSE);
1359 break;
1360 case 2:
1361 ref->method = mono_class_get_method_from_name_checked (klass, "Get", -1, 0, error);
1362 return_val_if_nok (error, FALSE);
1363 break;
1364 case 3:
1365 ref->method = mono_class_get_method_from_name_checked (klass, "Address", -1, 0, error);
1366 return_val_if_nok (error, FALSE);
1367 break;
1368 case 4:
1369 ref->method = mono_class_get_method_from_name_checked (klass, "Set", -1, 0, error);
1370 return_val_if_nok (error, FALSE);
1371 break;
1372 default:
1373 mono_error_set_bad_image_by_name (error, module->aot_name, "Invalid METHODREF_ARRAY method type %d", method_type);
1374 return FALSE;
1376 } else {
1377 if (image_index == MONO_AOT_METHODREF_LARGE_IMAGE_INDEX) {
1378 image_index = decode_value (p, &p);
1379 value = decode_value (p, &p);
1382 ref->token = MONO_TOKEN_METHOD_DEF | (value & 0xffffff);
1384 image = load_image (module, image_index, error);
1385 if (!image)
1386 return FALSE;
1389 *endbuf = p;
1391 ref->image = image;
1393 return TRUE;
1396 static gboolean
1397 decode_method_ref (MonoAotModule *module, MethodRef *ref, guint8 *buf, guint8 **endbuf, MonoError *error)
1399 return decode_method_ref_with_target (module, ref, NULL, buf, endbuf, error);
1403 * decode_resolve_method_ref_with_target:
1405 * Similar to decode_method_ref, but resolve and return the method itself.
1407 static MonoMethod*
1408 decode_resolve_method_ref_with_target (MonoAotModule *module, MonoMethod *target, guint8 *buf, guint8 **endbuf, MonoError *error)
1410 MethodRef ref;
1412 error_init (error);
1414 if (!decode_method_ref_with_target (module, &ref, target, buf, endbuf, error))
1415 return NULL;
1416 if (ref.method)
1417 return ref.method;
1418 if (!ref.image) {
1419 mono_error_set_bad_image_by_name (error, module->aot_name, "No image found for methodref with target");
1420 return NULL;
1422 return mono_get_method_checked (ref.image, ref.token, NULL, NULL, error);
1425 static MonoMethod*
1426 decode_resolve_method_ref (MonoAotModule *module, guint8 *buf, guint8 **endbuf, MonoError *error)
1428 return decode_resolve_method_ref_with_target (module, NULL, buf, endbuf, error);
1431 #ifdef ENABLE_AOT_CACHE
1433 /* AOT CACHE */
1436 * FIXME:
1437 * - Add options for controlling the cache size
1438 * - Handle full cache by deleting old assemblies lru style
1439 * - Maybe add a threshold after an assembly is AOT compiled
1440 * - Add options for enabling this for specific main assemblies
1443 /* The cache directory */
1444 static char *cache_dir;
1446 /* The number of assemblies AOTed in this run */
1447 static int cache_count;
1449 /* Whenever to AOT in-process */
1450 static gboolean in_process;
1452 static void
1453 collect_assemblies (gpointer data, gpointer user_data)
1455 MonoAssembly *ass = data;
1456 GSList **l = user_data;
1458 *l = g_slist_prepend (*l, ass);
1461 #define SHA1_DIGEST_LENGTH 20
1464 * get_aot_config_hash:
1466 * Return a hash for all the version information an AOT module depends on.
1468 static G_GNUC_UNUSED char*
1469 get_aot_config_hash (MonoAssembly *assembly)
1471 char *build_info;
1472 GSList *l, *assembly_list = NULL;
1473 GString *s;
1474 int i;
1475 guint8 digest [SHA1_DIGEST_LENGTH];
1476 char *digest_str;
1478 build_info = mono_get_runtime_build_info ();
1480 s = g_string_new (build_info);
1482 mono_assembly_foreach (collect_assemblies, &assembly_list);
1485 * The assembly list includes the current assembly as well, no need
1486 * to add it.
1488 for (l = assembly_list; l; l = l->next) {
1489 MonoAssembly *ass = l->data;
1491 g_string_append (s, "_");
1492 g_string_append (s, ass->aname.name);
1493 g_string_append (s, "_");
1494 g_string_append (s, ass->image->guid);
1497 for (i = 0; i < s->len; ++i) {
1498 if (!isalnum (s->str [i]) && s->str [i] != '-')
1499 s->str [i] = '_';
1502 mono_sha1_get_digest ((guint8*)s->str, s->len, digest);
1504 digest_str = g_malloc0 ((SHA1_DIGEST_LENGTH * 2) + 1);
1505 for (i = 0; i < SHA1_DIGEST_LENGTH; ++i)
1506 sprintf (digest_str + (i * 2), "%02x", digest [i]);
1508 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: file dependencies: %s, hash %s", s->str, digest_str);
1510 g_string_free (s, TRUE);
1512 return digest_str;
1515 static void
1516 aot_cache_init (void)
1518 if (mono_aot_only)
1519 return;
1520 enable_aot_cache = TRUE;
1521 in_process = TRUE;
1525 * aot_cache_load_module:
1527 * Load the AOT image corresponding to ASSEMBLY from the aot cache, AOTing it if neccessary.
1529 static MonoDl*
1530 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1532 MonoAotCacheConfig *config;
1533 GSList *l;
1534 char *fname, *tmp2, *aot_options, *failure_fname;
1535 const char *home;
1536 MonoDl *module;
1537 gboolean res;
1538 gint exit_status;
1539 char *hash;
1540 int pid;
1541 gboolean enabled;
1542 FILE *failure_file;
1544 *aot_name = NULL;
1546 if (image_is_dynamic (assembly->image))
1547 return NULL;
1549 /* Check in the list of assemblies enabled for aot caching */
1550 config = mono_get_aot_cache_config ();
1552 enabled = FALSE;
1553 if (config->apps) {
1554 MonoDomain *domain = mono_domain_get ();
1555 MonoAssembly *entry_assembly = domain->entry_assembly;
1557 // FIXME: This cannot be used for mscorlib during startup, since entry_assembly is not set yet
1558 for (l = config->apps; l; l = l->next) {
1559 char *n = l->data;
1561 if ((entry_assembly && !strcmp (entry_assembly->aname.name, n)) || (!entry_assembly && !strcmp (assembly->aname.name, n)))
1562 break;
1564 if (l)
1565 enabled = TRUE;
1568 if (!enabled) {
1569 for (l = config->assemblies; l; l = l->next) {
1570 char *n = l->data;
1572 if (!strcmp (assembly->aname.name, n))
1573 break;
1575 if (l)
1576 enabled = TRUE;
1578 if (!enabled)
1579 return NULL;
1581 if (!cache_dir) {
1582 home = g_get_home_dir ();
1583 if (!home)
1584 return NULL;
1585 cache_dir = g_strdup_printf ("%s/Library/Caches/mono/aot-cache", home);
1586 if (!g_file_test (cache_dir, G_FILE_TEST_EXISTS|G_FILE_TEST_IS_DIR))
1587 g_mkdir_with_parents (cache_dir, 0777);
1591 * The same assembly can be used in multiple configurations, i.e. multiple
1592 * versions of the runtime, with multiple versions of dependent assemblies etc.
1593 * To handle this, we compute a version string containing all this information, hash it,
1594 * and use the hash as a filename suffix.
1596 hash = get_aot_config_hash (assembly);
1598 tmp2 = g_strdup_printf ("%s-%s%s", assembly->image->assembly_name, hash, MONO_SOLIB_EXT);
1599 fname = g_build_filename (cache_dir, tmp2, NULL);
1600 *aot_name = fname;
1601 g_free (tmp2);
1603 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: loading from cache: '%s'.", fname);
1604 module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1606 if (module) {
1607 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: found in cache: '%s'.", fname);
1608 return module;
1611 if (!strcmp (assembly->aname.name, "mscorlib") && !mscorlib_aot_loaded)
1613 * Can't AOT this during startup, so we AOT it when called later from
1614 * mono_aot_get_method ().
1616 return NULL;
1618 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: not found.");
1620 /* Only AOT one assembly per run to avoid slowing down execution too much */
1621 if (cache_count > 0)
1622 return NULL;
1623 cache_count ++;
1625 /* Check for previous failure */
1626 failure_fname = g_strdup_printf ("%s.failure", fname);
1627 failure_file = fopen (failure_fname, "r");
1628 if (failure_file) {
1629 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: assembly '%s' previously failed to compile '%s' ('%s')... ", assembly->image->name, fname, failure_fname);
1630 g_free (failure_fname);
1631 return NULL;
1632 } else {
1633 g_free (failure_fname);
1634 fclose (failure_file);
1637 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compiling assembly '%s', logfile: '%s.log'... ", assembly->image->name, fname);
1640 * We need to invoke the AOT compiler here. There are multiple approaches:
1641 * - spawn a new runtime process. This can be hard when running with mkbundle, and
1642 * its hard to make the new process load the same set of assemblies.
1643 * - doing it in-process. This exposes the current process to bugs/leaks/side effects of
1644 * the AOT compiler.
1645 * - fork a new process and do the work there.
1647 if (in_process) {
1648 aot_options = g_strdup_printf ("outfile=%s,internal-logfile=%s.log%s%s", fname, fname, config->aot_options ? "," : "", config->aot_options ? config->aot_options : "");
1649 /* Maybe due this in another thread ? */
1650 res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options, NULL);
1651 if (res) {
1652 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation failed.");
1653 failure_fname = g_strdup_printf ("%s.failure", fname);
1654 failure_file = fopen (failure_fname, "a+");
1655 fclose (failure_file);
1656 g_free (failure_fname);
1657 } else {
1658 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: compilation succeeded.");
1660 } else {
1662 * - Avoid waiting for the aot process to finish ?
1663 * (less overhead, but multiple processes could aot the same assembly at the same time)
1665 pid = fork ();
1666 if (pid == 0) {
1667 FILE *logfile;
1668 char *logfile_name;
1670 /* Child */
1672 logfile_name = g_strdup_printf ("%s/aot.log", cache_dir);
1673 logfile = fopen (logfile_name, "a+");
1674 g_free (logfile_name);
1676 dup2 (fileno (logfile), 1);
1677 dup2 (fileno (logfile), 2);
1679 aot_options = g_strdup_printf ("outfile=%s", fname);
1680 res = mono_compile_assembly (assembly, mono_parse_default_optimizations (NULL), aot_options, NULL);
1681 if (!res) {
1682 exit (1);
1683 } else {
1684 exit (0);
1686 } else {
1687 /* Parent */
1688 waitpid (pid, &exit_status, 0);
1689 if (!WIFEXITED (exit_status) && (WEXITSTATUS (exit_status) == 0))
1690 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: failed.");
1691 else
1692 mono_trace (G_LOG_LEVEL_MESSAGE, MONO_TRACE_AOT, "AOT: succeeded.");
1696 module = mono_dl_open (fname, MONO_DL_LAZY, NULL);
1698 return module;
1701 #else
1703 static void
1704 aot_cache_init (void)
1708 static MonoDl*
1709 aot_cache_load_module (MonoAssembly *assembly, char **aot_name)
1711 return NULL;
1714 #endif
1716 static void
1717 find_symbol (MonoDl *module, gpointer *globals, const char *name, gpointer *value)
1719 if (globals) {
1720 int global_index;
1721 guint16 *table, *entry;
1722 guint16 table_size;
1723 guint32 hash;
1724 char *symbol = (char*)name;
1726 #ifdef TARGET_MACH
1727 symbol = g_strdup_printf ("_%s", name);
1728 #endif
1730 /* The first entry points to the hash */
1731 table = (guint16 *)globals [0];
1732 globals ++;
1734 table_size = table [0];
1735 table ++;
1737 hash = mono_metadata_str_hash (symbol) % table_size;
1739 entry = &table [hash * 2];
1741 /* Search the hash for the index into the globals table */
1742 global_index = -1;
1743 while (entry [0] != 0) {
1744 guint32 index = entry [0] - 1;
1745 guint32 next = entry [1];
1747 //printf ("X: %s %s\n", (char*)globals [index * 2], name);
1749 if (!strcmp (globals [index * 2], symbol)) {
1750 global_index = index;
1751 break;
1754 if (next != 0) {
1755 entry = &table [next * 2];
1756 } else {
1757 break;
1761 if (global_index != -1)
1762 *value = globals [global_index * 2 + 1];
1763 else
1764 *value = NULL;
1766 if (symbol != name)
1767 g_free (symbol);
1768 } else {
1769 char *err = mono_dl_symbol (module, name, value);
1771 if (err)
1772 g_free (err);
1776 static void
1777 find_amodule_symbol (MonoAotModule *amodule, const char *name, gpointer *value)
1779 g_assert (!(amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_ONLY));
1781 find_symbol (amodule->sofile, amodule->globals, name, value);
1784 void
1785 mono_install_load_aot_data_hook (MonoLoadAotDataFunc load_func, MonoFreeAotDataFunc free_func, gpointer user_data)
1787 aot_data_load_func = load_func;
1788 aot_data_free_func = free_func;
1789 aot_data_func_user_data = user_data;
1792 /* Load the separate aot data file for ASSEMBLY */
1793 static guint8*
1794 open_aot_data (MonoAssembly *assembly, MonoAotFileInfo *info, void **ret_handle)
1796 MonoFileMap *map;
1797 char *filename;
1798 guint8 *data;
1800 if (aot_data_load_func) {
1801 data = aot_data_load_func (assembly, info->datafile_size, aot_data_func_user_data, ret_handle);
1802 g_assert (data);
1803 return data;
1807 * Use <assembly name>.aotdata as the default implementation if no callback is given
1809 filename = g_strdup_printf ("%s.aotdata", assembly->image->name);
1810 map = mono_file_map_open (filename);
1811 g_assert (map);
1812 data = mono_file_map (info->datafile_size, MONO_MMAP_READ, mono_file_map_fd (map), 0, ret_handle);
1813 g_assert (data);
1815 return data;
1818 static gboolean
1819 check_usable (MonoAssembly *assembly, MonoAotFileInfo *info, guint8 *blob, char **out_msg)
1821 char *build_info;
1822 char *msg = NULL;
1823 gboolean usable = TRUE;
1824 gboolean full_aot, safepoints;
1825 guint32 excluded_cpu_optimizations;
1827 if (strcmp (assembly->image->guid, info->assembly_guid)) {
1828 msg = g_strdup_printf ("doesn't match assembly");
1829 usable = FALSE;
1832 build_info = mono_get_runtime_build_info ();
1833 if (strlen ((const char *)info->runtime_version) > 0 && strcmp (info->runtime_version, build_info)) {
1834 msg = g_strdup_printf ("compiled against runtime version '%s' while this runtime has version '%s'", info->runtime_version, build_info);
1835 usable = FALSE;
1837 g_free (build_info);
1839 full_aot = info->flags & MONO_AOT_FILE_FLAG_FULL_AOT;
1841 if (mono_aot_only && !full_aot) {
1842 msg = g_strdup_printf ("not compiled with --aot=full");
1843 usable = FALSE;
1845 if (!mono_aot_only && full_aot) {
1846 msg = g_strdup_printf ("compiled with --aot=full");
1847 usable = FALSE;
1849 if (mono_llvm_only && !(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
1850 msg = g_strdup_printf ("not compiled with --aot=llvmonly");
1851 usable = FALSE;
1853 if (mono_use_llvm && !(info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM)) {
1854 /* Prefer LLVM JITted code when using --llvm */
1855 msg = g_strdup_printf ("not compiled with --aot=llvm");
1856 usable = FALSE;
1858 if (mini_get_debug_options ()->mdb_optimizations && !(info->flags & MONO_AOT_FILE_FLAG_DEBUG) && !full_aot) {
1859 msg = g_strdup_printf ("not compiled for debugging");
1860 usable = FALSE;
1863 mono_arch_cpu_optimizations (&excluded_cpu_optimizations);
1864 if (info->opts & excluded_cpu_optimizations) {
1865 msg = g_strdup_printf ("compiled with unsupported CPU optimizations");
1866 usable = FALSE;
1869 if (!mono_aot_only && (info->simd_opts & ~mono_arch_cpu_enumerate_simd_versions ())) {
1870 msg = g_strdup_printf ("compiled with unsupported SIMD extensions");
1871 usable = FALSE;
1874 if (info->gc_name_index != -1) {
1875 char *gc_name = (char*)&blob [info->gc_name_index];
1876 const char *current_gc_name = mono_gc_get_gc_name ();
1878 if (strcmp (current_gc_name, gc_name) != 0) {
1879 msg = g_strdup_printf ("compiled against GC %s, while the current runtime uses GC %s.\n", gc_name, current_gc_name);
1880 usable = FALSE;
1884 safepoints = info->flags & MONO_AOT_FILE_FLAG_SAFEPOINTS;
1886 if (!safepoints && mono_threads_are_safepoints_enabled ()) {
1887 msg = g_strdup_printf ("not compiled with safepoints");
1888 usable = FALSE;
1891 *out_msg = msg;
1892 return usable;
1896 * TABLE should point to a table of call instructions. Return the address called by the INDEXth entry.
1898 static void*
1899 get_call_table_entry (void *table, int index)
1901 #if defined(TARGET_ARM)
1902 guint32 *ins_addr;
1903 guint32 ins;
1904 gint32 offset;
1906 ins_addr = (guint32*)table + index;
1907 ins = *ins_addr;
1908 if ((ins >> ARMCOND_SHIFT) == ARMCOND_NV) {
1909 /* blx */
1910 offset = (((int)(((ins & 0xffffff) << 1) | ((ins >> 24) & 0x1))) << 7) >> 7;
1911 return (char*)ins_addr + (offset * 2) + 8 + 1;
1912 } else {
1913 offset = (((int)ins & 0xffffff) << 8) >> 8;
1914 return (char*)ins_addr + (offset * 4) + 8;
1916 #elif defined(TARGET_ARM64)
1917 return mono_arch_get_call_target ((guint8*)table + (index * 4) + 4);
1918 #elif defined(TARGET_X86) || defined(TARGET_AMD64)
1919 /* The callee expects an ip which points after the call */
1920 return mono_arch_get_call_target ((guint8*)table + (index * 5) + 5);
1921 #else
1922 g_assert_not_reached ();
1923 return NULL;
1924 #endif
1928 * init_amodule_got:
1930 * Initialize the shared got entries for AMODULE.
1932 static void
1933 init_amodule_got (MonoAotModule *amodule)
1935 MonoJumpInfo *ji;
1936 MonoMemPool *mp;
1937 MonoJumpInfo *patches;
1938 guint32 got_offsets [128];
1939 ERROR_DECL (error);
1940 int i, npatches;
1942 /* These can't be initialized in load_aot_module () */
1943 if (amodule->shared_got [0] || amodule->got_initializing)
1944 return;
1946 amodule->got_initializing = TRUE;
1948 mp = mono_mempool_new ();
1949 npatches = amodule->info.nshared_got_entries;
1950 for (i = 0; i < npatches; ++i)
1951 got_offsets [i] = i;
1952 patches = decode_patches (amodule, mp, npatches, FALSE, got_offsets);
1953 g_assert (patches);
1954 for (i = 0; i < npatches; ++i) {
1955 ji = &patches [i];
1957 if (ji->type == MONO_PATCH_INFO_GC_CARD_TABLE_ADDR && !mono_gc_is_moving ()) {
1958 amodule->shared_got [i] = NULL;
1959 } else if (ji->type == MONO_PATCH_INFO_GC_NURSERY_START && !mono_gc_is_moving ()) {
1960 amodule->shared_got [i] = NULL;
1961 } else if (ji->type == MONO_PATCH_INFO_GC_NURSERY_BITS && !mono_gc_is_moving ()) {
1962 amodule->shared_got [i] = NULL;
1963 } else if (ji->type == MONO_PATCH_INFO_IMAGE) {
1964 amodule->shared_got [i] = amodule->assembly->image;
1965 } else if (ji->type == MONO_PATCH_INFO_MSCORLIB_GOT_ADDR) {
1966 if (mono_defaults.corlib) {
1967 MonoAotModule *mscorlib_amodule = (MonoAotModule *)mono_defaults.corlib->aot_module;
1969 if (mscorlib_amodule)
1970 amodule->shared_got [i] = mscorlib_amodule->got;
1971 } else {
1972 amodule->shared_got [i] = amodule->got;
1974 } else if (ji->type == MONO_PATCH_INFO_AOT_MODULE) {
1975 amodule->shared_got [i] = amodule;
1976 } else {
1977 amodule->shared_got [i] = mono_resolve_patch_target (NULL, mono_get_root_domain (), NULL, ji, FALSE, error);
1978 mono_error_assert_ok (error);
1982 if (amodule->got) {
1983 for (i = 0; i < npatches; ++i)
1984 amodule->got [i] = amodule->shared_got [i];
1986 if (amodule->llvm_got) {
1987 for (i = 0; i < npatches; ++i)
1988 amodule->llvm_got [i] = amodule->shared_got [i];
1991 mono_mempool_destroy (mp);
1994 static void
1995 load_aot_module (MonoAssembly *assembly, gpointer user_data)
1997 char *aot_name, *found_aot_name;
1998 MonoAotModule *amodule;
1999 MonoDl *sofile;
2000 gboolean usable = TRUE;
2001 char *version_symbol = NULL;
2002 char *msg = NULL;
2003 gpointer *globals = NULL;
2004 MonoAotFileInfo *info = NULL;
2005 int i, version;
2006 gboolean do_load_image = TRUE;
2007 int align_double, align_int64;
2008 guint8 *aot_data = NULL;
2010 if (mono_compile_aot)
2011 return;
2013 if (assembly->image->aot_module)
2015 * Already loaded. This can happen because the assembly loading code might invoke
2016 * the assembly load hooks multiple times for the same assembly.
2018 return;
2020 if (image_is_dynamic (assembly->image) || mono_asmctx_get_kind (&assembly->context) == MONO_ASMCTX_REFONLY || mono_domain_get () != mono_get_root_domain ())
2021 return;
2023 mono_aot_lock ();
2025 if (container_assm_name && !container_amodule) {
2026 char *local_ref = container_assm_name;
2027 container_assm_name = NULL;
2028 MonoImageOpenStatus status = MONO_IMAGE_OK;
2029 gchar *dll = g_strdup_printf ( "%s.dll", local_ref);
2030 MonoAssembly *assm = mono_assembly_open_a_lot (dll, &status, MONO_ASMCTX_DEFAULT);
2031 if (!assm) {
2032 gchar *exe = g_strdup_printf ("%s.exe", local_ref);
2033 assm = mono_assembly_open_a_lot (exe, &status, MONO_ASMCTX_DEFAULT);
2035 g_assert (assm);
2036 load_aot_module (assm, NULL);
2037 container_amodule = assm->image->aot_module;
2040 if (static_aot_modules)
2041 info = (MonoAotFileInfo *)g_hash_table_lookup (static_aot_modules, assembly->aname.name);
2043 mono_aot_unlock ();
2045 sofile = NULL;
2047 found_aot_name = NULL;
2049 if (info) {
2050 /* Statically linked AOT module */
2051 aot_name = g_strdup_printf ("%s", assembly->aname.name);
2052 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "Found statically linked AOT module '%s'.", aot_name);
2053 if (!(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
2054 globals = (void **)info->globals;
2055 g_assert (globals);
2057 found_aot_name = g_strdup (aot_name);
2058 } else {
2059 char *err;
2061 if (enable_aot_cache)
2062 sofile = aot_cache_load_module (assembly, &aot_name);
2063 if (!sofile) {
2064 aot_name = g_strdup_printf ("%s%s", assembly->image->name, MONO_SOLIB_EXT);
2066 sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
2067 if (sofile) {
2068 found_aot_name = g_strdup (aot_name);
2069 } else {
2070 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' not found: %s", aot_name, err);
2071 g_free (err);
2073 g_free (aot_name);
2075 if (!sofile) {
2076 char *basename = g_path_get_basename (assembly->image->name);
2077 aot_name = g_strdup_printf ("%s/mono/aot-cache/%s/%s%s", mono_assembly_getrootdir(), MONO_ARCHITECTURE, basename, MONO_SOLIB_EXT);
2078 g_free (basename);
2079 sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
2080 if (!sofile) {
2081 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' not found: %s", aot_name, err);
2082 g_free (err);
2084 g_free (aot_name);
2086 if (!sofile) {
2087 GList *l;
2089 for (l = mono_aot_paths; l; l = l->next) {
2090 char *path = l->data;
2092 char *basename = g_path_get_basename (assembly->image->name);
2093 aot_name = g_strdup_printf ("%s/%s%s", path, basename, MONO_SOLIB_EXT);
2094 sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
2095 if (sofile) {
2096 found_aot_name = g_strdup (aot_name);
2097 } else {
2098 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' not found: %s", aot_name, err);
2099 g_free (err);
2101 g_free (basename);
2102 g_free (aot_name);
2103 if (sofile)
2104 break;
2107 if (!sofile) {
2108 if (mono_aot_only && !mono_use_interpreter && assembly->image->tables [MONO_TABLE_METHOD].rows) {
2109 aot_name = g_strdup_printf ("%s%s", assembly->image->name, MONO_SOLIB_EXT);
2110 g_error ("Failed to load AOT module '%s' in aot-only mode.\n", aot_name);
2111 g_free (aot_name);
2113 return;
2117 if (!info) {
2118 find_symbol (sofile, globals, "mono_aot_version", (gpointer *) &version_symbol);
2119 find_symbol (sofile, globals, "mono_aot_file_info", (gpointer*)&info);
2122 // Copy aotid to MonoImage
2123 memcpy(&assembly->image->aotid, info->aotid, 16);
2125 if (version_symbol) {
2126 /* Old file format */
2127 version = atoi (version_symbol);
2128 } else {
2129 g_assert (info);
2130 version = info->version;
2133 if (version != MONO_AOT_FILE_VERSION) {
2134 msg = g_strdup_printf ("wrong file format version (expected %d got %d)", MONO_AOT_FILE_VERSION, version);
2135 usable = FALSE;
2136 } else {
2137 guint8 *blob;
2138 void *handle;
2140 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2141 aot_data = open_aot_data (assembly, info, &handle);
2143 blob = aot_data + info->table_offsets [MONO_AOT_TABLE_BLOB];
2144 } else {
2145 blob = (guint8 *)info->blob;
2148 usable = check_usable (assembly, info, blob, &msg);
2151 if (!usable) {
2152 if (mono_aot_only && !mono_use_interpreter) {
2153 g_error ("Failed to load AOT module '%s' while running in aot-only mode: %s.\n", found_aot_name, msg);
2154 } else {
2155 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: module %s is unusable: %s.", found_aot_name, msg);
2157 g_free (msg);
2158 g_free (found_aot_name);
2159 if (sofile)
2160 mono_dl_close (sofile);
2161 assembly->image->aot_module = NULL;
2162 return;
2165 /* Sanity check */
2166 align_double = MONO_ABI_ALIGNOF (double);
2167 align_int64 = MONO_ABI_ALIGNOF (gint64);
2168 g_assert (info->double_align == align_double);
2169 g_assert (info->long_align == align_int64);
2170 g_assert (info->generic_tramp_num == MONO_TRAMPOLINE_NUM);
2172 amodule = g_new0 (MonoAotModule, 1);
2173 amodule->aot_name = found_aot_name;
2174 amodule->assembly = assembly;
2176 memcpy (&amodule->info, info, sizeof (*info));
2178 amodule->got = (void **)amodule->info.jit_got;
2179 amodule->llvm_got = (void **)amodule->info.llvm_got;
2180 amodule->globals = globals;
2181 amodule->sofile = sofile;
2182 amodule->method_to_code = g_hash_table_new (mono_aligned_addr_hash, NULL);
2183 amodule->extra_methods = g_hash_table_new (NULL, NULL);
2184 amodule->shared_got = g_new0 (gpointer, info->nshared_got_entries);
2186 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2187 for (i = 0; i < MONO_AOT_TABLE_NUM; ++i)
2188 amodule->tables [i] = aot_data + info->table_offsets [i];
2191 mono_os_mutex_init_recursive (&amodule->mutex);
2193 /* Read image table */
2195 guint32 table_len, i;
2196 char *table = NULL;
2198 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA)
2199 table = amodule->tables [MONO_AOT_TABLE_IMAGE_TABLE];
2200 else
2201 table = (char *)info->image_table;
2202 g_assert (table);
2204 table_len = *(guint32*)table;
2205 table += sizeof (guint32);
2206 amodule->image_table = g_new0 (MonoImage*, table_len);
2207 amodule->image_names = g_new0 (MonoAssemblyName, table_len);
2208 amodule->image_guids = g_new0 (char*, table_len);
2209 amodule->image_table_len = table_len;
2210 for (i = 0; i < table_len; ++i) {
2211 MonoAssemblyName *aname = &(amodule->image_names [i]);
2213 aname->name = g_strdup (table);
2214 table += strlen (table) + 1;
2215 amodule->image_guids [i] = g_strdup (table);
2216 table += strlen (table) + 1;
2217 if (table [0] != 0)
2218 aname->culture = g_strdup (table);
2219 table += strlen (table) + 1;
2220 memcpy (aname->public_key_token, table, strlen (table) + 1);
2221 table += strlen (table) + 1;
2223 table = (char *)ALIGN_PTR_TO (table, 8);
2224 aname->flags = *(guint32*)table;
2225 table += 4;
2226 aname->major = *(guint32*)table;
2227 table += 4;
2228 aname->minor = *(guint32*)table;
2229 table += 4;
2230 aname->build = *(guint32*)table;
2231 table += 4;
2232 aname->revision = *(guint32*)table;
2233 table += 4;
2237 amodule->jit_code_start = (guint8 *)info->jit_code_start;
2238 amodule->jit_code_end = (guint8 *)info->jit_code_end;
2239 if (info->flags & MONO_AOT_FILE_FLAG_SEPARATE_DATA) {
2240 amodule->blob = amodule->tables [MONO_AOT_TABLE_BLOB];
2241 amodule->method_info_offsets = amodule->tables [MONO_AOT_TABLE_METHOD_INFO_OFFSETS];
2242 amodule->ex_info_offsets = amodule->tables [MONO_AOT_TABLE_EX_INFO_OFFSETS];
2243 amodule->class_info_offsets = amodule->tables [MONO_AOT_TABLE_CLASS_INFO_OFFSETS];
2244 amodule->class_name_table = amodule->tables [MONO_AOT_TABLE_CLASS_NAME];
2245 amodule->extra_method_table = amodule->tables [MONO_AOT_TABLE_EXTRA_METHOD_TABLE];
2246 amodule->extra_method_info_offsets = amodule->tables [MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS];
2247 amodule->got_info_offsets = amodule->tables [MONO_AOT_TABLE_GOT_INFO_OFFSETS];
2248 amodule->llvm_got_info_offsets = amodule->tables [MONO_AOT_TABLE_LLVM_GOT_INFO_OFFSETS];
2249 amodule->weak_field_indexes = amodule->tables [MONO_AOT_TABLE_WEAK_FIELD_INDEXES];
2250 } else {
2251 amodule->blob = info->blob;
2252 amodule->method_info_offsets = (guint32 *)info->method_info_offsets;
2253 amodule->ex_info_offsets = (guint32 *)info->ex_info_offsets;
2254 amodule->class_info_offsets = (guint32 *)info->class_info_offsets;
2255 amodule->class_name_table = (guint16 *)info->class_name_table;
2256 amodule->extra_method_table = (guint32 *)info->extra_method_table;
2257 amodule->extra_method_info_offsets = (guint32 *)info->extra_method_info_offsets;
2258 amodule->got_info_offsets = info->got_info_offsets;
2259 amodule->llvm_got_info_offsets = info->llvm_got_info_offsets;
2260 amodule->weak_field_indexes = info->weak_field_indexes;
2262 amodule->unbox_trampolines = (guint32 *)info->unbox_trampolines;
2263 amodule->unbox_trampolines_end = (guint32 *)info->unbox_trampolines_end;
2264 amodule->unbox_trampoline_addresses = (guint32 *)info->unbox_trampoline_addresses;
2265 amodule->unwind_info = (guint8 *)info->unwind_info;
2266 amodule->mem_begin = amodule->jit_code_start;
2267 amodule->mem_end = (guint8 *)info->mem_end;
2268 amodule->plt = (guint8 *)info->plt;
2269 amodule->plt_end = (guint8 *)info->plt_end;
2270 amodule->mono_eh_frame = (guint8 *)info->mono_eh_frame;
2271 amodule->trampolines [MONO_AOT_TRAMP_SPECIFIC] = (guint8 *)info->specific_trampolines;
2272 amodule->trampolines [MONO_AOT_TRAMP_STATIC_RGCTX] = (guint8 *)info->static_rgctx_trampolines;
2273 amodule->trampolines [MONO_AOT_TRAMP_IMT] = (guint8 *)info->imt_trampolines;
2274 amodule->trampolines [MONO_AOT_TRAMP_GSHAREDVT_ARG] = (guint8 *)info->gsharedvt_arg_trampolines;
2276 if (!strcmp (assembly->aname.name, "mscorlib"))
2277 mscorlib_aot_module = amodule;
2279 /* Compute method addresses */
2280 amodule->methods = (void **)g_malloc0 (amodule->info.nmethods * sizeof (gpointer));
2281 for (i = 0; i < amodule->info.nmethods; ++i) {
2282 void *addr = NULL;
2284 if (amodule->info.llvm_get_method) {
2285 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
2287 addr = get_method (i);
2290 /* method_addresses () contains a table of branches, since the ios linker can update those correctly */
2291 if (!addr && amodule->info.method_addresses) {
2292 addr = get_call_table_entry (amodule->info.method_addresses, i);
2293 g_assert (addr);
2294 if (addr == amodule->info.method_addresses)
2295 addr = NULL;
2297 if (addr == NULL)
2298 amodule->methods [i] = GINT_TO_POINTER (-1);
2299 else
2300 amodule->methods [i] = addr;
2303 if (make_unreadable) {
2304 #ifndef TARGET_WIN32
2305 guint8 *addr;
2306 guint8 *page_start, *page_end;
2307 int err, len;
2309 addr = amodule->mem_begin;
2310 g_assert (addr);
2311 len = amodule->mem_end - amodule->mem_begin;
2313 /* Round down in both directions to avoid modifying data which is not ours */
2314 page_start = (guint8 *) (((gssize) (addr)) & ~ (mono_pagesize () - 1)) + mono_pagesize ();
2315 page_end = (guint8 *) (((gssize) (addr + len)) & ~ (mono_pagesize () - 1));
2316 if (page_end > page_start) {
2317 err = mono_mprotect (page_start, (page_end - page_start), MONO_MMAP_NONE);
2318 g_assert (err == 0);
2320 #endif
2323 /* Compute the boundaries of LLVM code */
2324 if (info->flags & MONO_AOT_FILE_FLAG_WITH_LLVM)
2325 compute_llvm_code_range (amodule, &amodule->llvm_code_start, &amodule->llvm_code_end);
2327 mono_aot_lock ();
2329 if (amodule->jit_code_start) {
2330 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->jit_code_start);
2331 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->jit_code_end);
2333 if (amodule->llvm_code_start) {
2334 aot_code_low_addr = MIN (aot_code_low_addr, (gsize)amodule->llvm_code_start);
2335 aot_code_high_addr = MAX (aot_code_high_addr, (gsize)amodule->llvm_code_end);
2338 g_hash_table_insert (aot_modules, assembly, amodule);
2339 mono_aot_unlock ();
2341 if (amodule->jit_code_start)
2342 mono_jit_info_add_aot_module (assembly->image, amodule->jit_code_start, amodule->jit_code_end);
2343 if (amodule->llvm_code_start)
2344 mono_jit_info_add_aot_module (assembly->image, amodule->llvm_code_start, amodule->llvm_code_end);
2346 assembly->image->aot_module = amodule;
2348 if (mono_aot_only && !mono_llvm_only) {
2349 char *code;
2350 find_amodule_symbol (amodule, "specific_trampolines_page", (gpointer *)&code);
2351 amodule->use_page_trampolines = code != NULL;
2352 /*g_warning ("using page trampolines: %d", amodule->use_page_trampolines);*/
2356 * Register the plt region as a single trampoline so we can unwind from this code
2358 mono_aot_tramp_info_register (
2359 mono_tramp_info_create (
2360 NULL,
2361 amodule->plt,
2362 amodule->plt_end - amodule->plt,
2363 NULL,
2364 mono_unwind_get_cie_program ()
2366 NULL
2370 * Since we store methoddef and classdef tokens when referring to methods/classes in
2371 * referenced assemblies, we depend on the exact versions of the referenced assemblies.
2372 * MS calls this 'hard binding'. This means we have to load all referenced assemblies
2373 * non-lazily, since we can't handle out-of-date errors later.
2374 * The cached class info also depends on the exact assemblies.
2376 if (do_load_image) {
2377 for (i = 0; i < amodule->image_table_len; ++i) {
2378 ERROR_DECL (error);
2379 load_image (amodule, i, error);
2380 mono_error_cleanup (error); /* FIXME don't swallow the error */
2384 if (amodule->out_of_date) {
2385 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: Module %s is unusable because a dependency is out-of-date.", assembly->image->name);
2386 if (mono_aot_only)
2387 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);
2388 } else {
2389 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT: image '%s' found.", found_aot_name);
2394 * mono_aot_register_module:
2396 * This should be called by embedding code to register normal AOT modules statically linked
2397 * into the executable.
2399 * \param aot_info the value of the 'mono_aot_module_<ASSEMBLY_NAME>_info' global symbol from the AOT module.
2401 void
2402 mono_aot_register_module (gpointer *aot_info)
2404 gpointer *globals;
2405 char *aname;
2406 MonoAotFileInfo *info = (MonoAotFileInfo *)aot_info;
2408 g_assert (info->version == MONO_AOT_FILE_VERSION);
2410 if (!(info->flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) {
2411 globals = (void **)info->globals;
2412 g_assert (globals);
2415 aname = (char *)info->assembly_name;
2417 /* This could be called before startup */
2418 if (aot_modules)
2419 mono_aot_lock ();
2421 if (!static_aot_modules)
2422 static_aot_modules = g_hash_table_new (g_str_hash, g_str_equal);
2424 g_hash_table_insert (static_aot_modules, aname, info);
2426 if (info->flags & MONO_AOT_FILE_FLAG_EAGER_LOAD) {
2427 g_assert (!container_assm_name);
2428 container_assm_name = aname;
2431 if (aot_modules)
2432 mono_aot_unlock ();
2435 void
2436 mono_aot_init (void)
2438 mono_os_mutex_init_recursive (&aot_mutex);
2439 mono_os_mutex_init_recursive (&aot_page_mutex);
2440 aot_modules = g_hash_table_new (NULL, NULL);
2442 mono_install_assembly_load_hook (load_aot_module, NULL);
2443 mono_counters_register ("Async JIT info size", MONO_COUNTER_INT|MONO_COUNTER_JIT, &async_jit_info_size);
2445 char *lastaot = g_getenv ("MONO_LASTAOT");
2446 if (lastaot) {
2447 mono_last_aot_method = atoi (lastaot);
2448 g_free (lastaot);
2450 aot_cache_init ();
2453 void
2454 mono_aot_cleanup (void)
2456 g_hash_table_destroy (aot_jit_icall_hash);
2457 g_hash_table_destroy (aot_modules);
2460 static gboolean
2461 decode_cached_class_info (MonoAotModule *module, MonoCachedClassInfo *info, guint8 *buf, guint8 **endbuf)
2463 ERROR_DECL (error);
2464 guint32 flags;
2465 MethodRef ref;
2466 gboolean res;
2468 info->vtable_size = decode_value (buf, &buf);
2469 if (info->vtable_size == -1)
2470 /* Generic type */
2471 return FALSE;
2472 flags = decode_value (buf, &buf);
2473 info->ghcimpl = (flags >> 0) & 0x1;
2474 info->has_finalize = (flags >> 1) & 0x1;
2475 info->has_cctor = (flags >> 2) & 0x1;
2476 info->has_nested_classes = (flags >> 3) & 0x1;
2477 info->blittable = (flags >> 4) & 0x1;
2478 info->has_references = (flags >> 5) & 0x1;
2479 info->has_static_refs = (flags >> 6) & 0x1;
2480 info->no_special_static_fields = (flags >> 7) & 0x1;
2481 info->is_generic_container = (flags >> 8) & 0x1;
2482 info->has_weak_fields = (flags >> 9) & 0x1;
2484 if (info->has_cctor) {
2485 res = decode_method_ref (module, &ref, buf, &buf, error);
2486 mono_error_assert_ok (error); /* FIXME don't swallow the error */
2487 if (!res)
2488 return FALSE;
2489 info->cctor_token = ref.token;
2491 if (info->has_finalize) {
2492 res = decode_method_ref (module, &ref, buf, &buf, error);
2493 mono_error_assert_ok (error); /* FIXME don't swallow the error */
2494 if (!res)
2495 return FALSE;
2496 info->finalize_image = ref.image;
2497 info->finalize_token = ref.token;
2500 info->instance_size = decode_value (buf, &buf);
2501 info->class_size = decode_value (buf, &buf);
2502 info->packing_size = decode_value (buf, &buf);
2503 info->min_align = decode_value (buf, &buf);
2505 *endbuf = buf;
2507 return TRUE;
2510 gpointer
2511 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot, MonoError *error)
2513 int i;
2514 MonoClass *klass = vtable->klass;
2515 MonoAotModule *amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
2516 guint8 *info, *p;
2517 MonoCachedClassInfo class_info;
2518 gboolean err;
2519 MethodRef ref;
2520 gboolean res;
2521 gpointer addr;
2522 ERROR_DECL_VALUE (inner_error);
2524 error_init (error);
2526 if (MONO_CLASS_IS_INTERFACE (klass) || m_class_get_rank (klass) || !amodule)
2527 return NULL;
2529 info = &amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (m_class_get_type_token (klass)) - 1)];
2530 p = info;
2532 err = decode_cached_class_info (amodule, &class_info, p, &p);
2533 if (!err)
2534 return NULL;
2536 for (i = 0; i < slot; ++i) {
2537 decode_method_ref (amodule, &ref, p, &p, &inner_error);
2538 mono_error_cleanup (&inner_error); /* FIXME don't swallow the error */
2541 res = decode_method_ref (amodule, &ref, p, &p, &inner_error);
2542 mono_error_cleanup (&inner_error); /* FIXME don't swallow the error */
2543 if (!res)
2544 return NULL;
2545 if (ref.no_aot_trampoline)
2546 return NULL;
2548 if (mono_metadata_token_index (ref.token) == 0 || mono_metadata_token_table (ref.token) != MONO_TABLE_METHOD)
2549 return NULL;
2551 addr = mono_aot_get_method_from_token (domain, ref.image, ref.token, error);
2552 return addr;
2555 gboolean
2556 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
2558 MonoAotModule *amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
2559 guint8 *p;
2560 gboolean err;
2562 if (m_class_get_rank (klass) || !m_class_get_type_token (klass) || !amodule)
2563 return FALSE;
2565 p = (guint8*)&amodule->blob [mono_aot_get_offset (amodule->class_info_offsets, mono_metadata_token_index (m_class_get_type_token (klass)) - 1)];
2567 err = decode_cached_class_info (amodule, res, p, &p);
2568 if (!err)
2569 return FALSE;
2571 return TRUE;
2575 * mono_aot_get_class_from_name:
2577 * Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
2578 * using a cache stored in the AOT file.
2579 * Stores the resulting class in *KLASS if found, stores NULL otherwise.
2581 * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was
2582 * found.
2584 gboolean
2585 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
2587 MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
2588 guint16 *table, *entry;
2589 guint16 table_size;
2590 guint32 hash;
2591 char full_name_buf [1024];
2592 char *full_name;
2593 const char *name2, *name_space2;
2594 MonoTableInfo *t;
2595 guint32 cols [MONO_TYPEDEF_SIZE];
2596 GHashTable *nspace_table;
2598 if (!amodule || !amodule->class_name_table)
2599 return FALSE;
2601 amodule_lock (amodule);
2603 *klass = NULL;
2605 /* First look in the cache */
2606 if (!amodule->name_cache)
2607 amodule->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
2608 nspace_table = (GHashTable *)g_hash_table_lookup (amodule->name_cache, name_space);
2609 if (nspace_table) {
2610 *klass = (MonoClass *)g_hash_table_lookup (nspace_table, name);
2611 if (*klass) {
2612 amodule_unlock (amodule);
2613 return TRUE;
2617 table_size = amodule->class_name_table [0];
2618 table = amodule->class_name_table + 1;
2620 if (name_space [0] == '\0')
2621 full_name = g_strdup_printf ("%s", name);
2622 else {
2623 if (strlen (name_space) + strlen (name) < 1000) {
2624 sprintf (full_name_buf, "%s.%s", name_space, name);
2625 full_name = full_name_buf;
2626 } else {
2627 full_name = g_strdup_printf ("%s.%s", name_space, name);
2630 hash = mono_metadata_str_hash (full_name) % table_size;
2631 if (full_name != full_name_buf)
2632 g_free (full_name);
2634 entry = &table [hash * 2];
2636 if (entry [0] != 0) {
2637 t = &image->tables [MONO_TABLE_TYPEDEF];
2639 while (TRUE) {
2640 guint32 index = entry [0];
2641 guint32 next = entry [1];
2642 guint32 token = mono_metadata_make_token (MONO_TABLE_TYPEDEF, index);
2644 name_table_accesses ++;
2646 mono_metadata_decode_row (t, index - 1, cols, MONO_TYPEDEF_SIZE);
2648 name2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
2649 name_space2 = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
2651 if (!strcmp (name, name2) && !strcmp (name_space, name_space2)) {
2652 ERROR_DECL (error);
2653 amodule_unlock (amodule);
2654 *klass = mono_class_get_checked (image, token, error);
2655 if (!mono_error_ok (error))
2656 mono_error_cleanup (error); /* FIXME don't swallow the error */
2658 /* Add to cache */
2659 if (*klass) {
2660 amodule_lock (amodule);
2661 nspace_table = (GHashTable *)g_hash_table_lookup (amodule->name_cache, name_space);
2662 if (!nspace_table) {
2663 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
2664 g_hash_table_insert (amodule->name_cache, (char*)name_space2, nspace_table);
2666 g_hash_table_insert (nspace_table, (char*)name2, *klass);
2667 amodule_unlock (amodule);
2669 return TRUE;
2672 if (next != 0) {
2673 entry = &table [next * 2];
2674 } else {
2675 break;
2680 amodule_unlock (amodule);
2682 return TRUE;
2685 GHashTable *
2686 mono_aot_get_weak_field_indexes (MonoImage *image)
2688 MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
2690 if (!amodule)
2691 return NULL;
2693 /* Initialize weak field indexes from the cached copy */
2694 guint32 *indexes = amodule->weak_field_indexes;
2695 int len = indexes [0];
2696 GHashTable *indexes_hash = g_hash_table_new (NULL, NULL);
2697 for (int i = 0; i < len; ++i)
2698 g_hash_table_insert (indexes_hash, GUINT_TO_POINTER (indexes [i + 1]), GUINT_TO_POINTER (1));
2699 return indexes_hash;
2702 /* Compute the boundaries of the LLVM code for AMODULE. */
2703 static void
2704 compute_llvm_code_range (MonoAotModule *amodule, guint8 **code_start, guint8 **code_end)
2706 guint8 *p;
2707 int version, fde_count;
2708 gint32 *table;
2710 if (amodule->info.llvm_get_method) {
2711 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
2713 *code_start = (guint8 *)get_method (-1);
2714 *code_end = (guint8 *)get_method (-2);
2716 g_assert (*code_end > *code_start);
2717 return;
2720 g_assert (amodule->mono_eh_frame);
2722 p = amodule->mono_eh_frame;
2724 /* p points to data emitted by LLVM in DwarfException::EmitMonoEHFrame () */
2726 /* Header */
2727 version = *p;
2728 g_assert (version == 3);
2729 p ++;
2730 p ++;
2731 p = (guint8 *)ALIGN_PTR_TO (p, 4);
2733 fde_count = *(guint32*)p;
2734 p += 4;
2735 table = (gint32*)p;
2737 if (fde_count > 0) {
2738 *code_start = (guint8 *)amodule->methods [table [0]];
2739 *code_end = (guint8*)amodule->methods [table [(fde_count - 1) * 2]] + table [fde_count * 2];
2740 } else {
2741 *code_start = NULL;
2742 *code_end = NULL;
2746 static gboolean
2747 is_llvm_code (MonoAotModule *amodule, guint8 *code)
2749 if ((guint8*)code >= amodule->llvm_code_start && (guint8*)code < amodule->llvm_code_end)
2750 return TRUE;
2751 else
2752 return FALSE;
2755 static gboolean
2756 is_thumb_code (MonoAotModule *amodule, guint8 *code)
2758 if (is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_THUMB))
2759 return TRUE;
2760 else
2761 return FALSE;
2765 * decode_llvm_mono_eh_frame:
2767 * Decode the EH information emitted by our modified LLVM compiler and construct a
2768 * MonoJitInfo structure from it.
2769 * If JINFO is NULL, set OUT_LLVM_CLAUSES to the number of llvm level clauses.
2770 * This function is async safe when called in async context.
2772 static void
2773 decode_llvm_mono_eh_frame (MonoAotModule *amodule, MonoDomain *domain, MonoJitInfo *jinfo,
2774 guint8 *code, guint32 code_len,
2775 MonoJitExceptionInfo *clauses, int num_clauses,
2776 GSList **nesting,
2777 int *this_reg, int *this_offset, int *out_llvm_clauses)
2779 guint8 *p, *code1, *code2;
2780 guint8 *fde, *cie, *code_start, *code_end;
2781 int version, fde_count;
2782 gint32 *table;
2783 int i, pos, left, right;
2784 MonoJitExceptionInfo *ei;
2785 guint32 fde_len, ei_len, nested_len, nindex;
2786 gpointer *type_info;
2787 MonoLLVMFDEInfo info;
2788 guint8 *unw_info;
2789 gboolean async;
2791 async = mono_thread_info_is_async_context ();
2793 if (!amodule->mono_eh_frame) {
2794 if (!jinfo) {
2795 *out_llvm_clauses = num_clauses;
2796 return;
2798 memcpy (jinfo->clauses, clauses, num_clauses * sizeof (MonoJitExceptionInfo));
2799 return;
2802 g_assert (amodule->mono_eh_frame && code);
2804 p = amodule->mono_eh_frame;
2806 /* p points to data emitted by LLVM in DwarfMonoException::EmitMonoEHFrame () */
2808 /* Header */
2809 version = *p;
2810 g_assert (version == 3);
2811 p ++;
2812 /* func_encoding = *p; */
2813 p ++;
2814 p = (guint8 *)ALIGN_PTR_TO (p, 4);
2816 fde_count = *(guint32*)p;
2817 p += 4;
2818 table = (gint32*)p;
2820 /* There is +1 entry in the table */
2821 cie = p + ((fde_count + 1) * 8);
2823 /* Binary search in the table to find the entry for code */
2824 left = 0;
2825 right = fde_count;
2826 while (TRUE) {
2827 pos = (left + right) / 2;
2829 /* The table contains method index/fde offset pairs */
2830 g_assert (table [(pos * 2)] != -1);
2831 code1 = (guint8 *)amodule->methods [table [(pos * 2)]];
2832 if (pos + 1 == fde_count) {
2833 code2 = amodule->llvm_code_end;
2834 } else {
2835 g_assert (table [(pos + 1) * 2] != -1);
2836 code2 = (guint8 *)amodule->methods [table [(pos + 1) * 2]];
2839 if (code < code1)
2840 right = pos;
2841 else if (code >= code2)
2842 left = pos + 1;
2843 else
2844 break;
2847 code_start = (guint8 *)amodule->methods [table [(pos * 2)]];
2848 if (pos + 1 == fde_count) {
2849 /* The +1 entry in the table contains the length of the last method */
2850 int len = table [(pos + 1) * 2];
2851 code_end = code_start + len;
2852 } else {
2853 code_end = (guint8 *)amodule->methods [table [(pos + 1) * 2]];
2855 if (!code_len)
2856 code_len = code_end - code_start;
2858 g_assert (code >= code_start && code < code_end);
2860 if (is_thumb_code (amodule, code_start))
2861 /* Clear thumb flag */
2862 code_start = (guint8*)(((mgreg_t)code_start) & ~1);
2864 fde = amodule->mono_eh_frame + table [(pos * 2) + 1];
2865 /* This won't overflow because there is +1 entry in the table */
2866 fde_len = table [(pos * 2) + 2 + 1] - table [(pos * 2) + 1];
2868 /* Compute lengths */
2869 mono_unwind_decode_llvm_mono_fde (fde, fde_len, cie, code_start, &info, NULL, NULL, NULL);
2871 if (async) {
2872 /* These are leaked, but the leak is bounded */
2873 ei = mono_domain_alloc0_lock_free (domain, info.ex_info_len * sizeof (MonoJitExceptionInfo));
2874 type_info = mono_domain_alloc0_lock_free (domain, info.ex_info_len * sizeof (gpointer));
2875 unw_info = mono_domain_alloc0_lock_free (domain, info.unw_info_len);
2876 } else {
2877 ei = (MonoJitExceptionInfo *)g_malloc0 (info.ex_info_len * sizeof (MonoJitExceptionInfo));
2878 type_info = (gpointer *)g_malloc0 (info.ex_info_len * sizeof (gpointer));
2879 unw_info = (guint8*)g_malloc0 (info.unw_info_len);
2881 mono_unwind_decode_llvm_mono_fde (fde, fde_len, cie, code_start, &info, ei, type_info, unw_info);
2883 ei_len = info.ex_info_len;
2884 *this_reg = info.this_reg;
2885 *this_offset = info.this_offset;
2888 * LLVM might represent one IL region with multiple regions.
2891 /* Count number of nested clauses */
2892 nested_len = 0;
2893 for (i = 0; i < ei_len; ++i) {
2894 /* This might be unaligned */
2895 gint32 cindex1 = read32 (type_info [i]);
2896 GSList *l;
2898 for (l = nesting [cindex1]; l; l = l->next)
2899 nested_len ++;
2902 if (!jinfo) {
2903 *out_llvm_clauses = ei_len + nested_len;
2904 return;
2907 /* Store the unwind info addr/length in the MonoJitInfo structure itself so its async safe */
2908 MonoUnwindJitInfo *jinfo_unwind = mono_jit_info_get_unwind_info (jinfo);
2909 g_assert (jinfo_unwind);
2910 jinfo_unwind->unw_info = unw_info;
2911 jinfo_unwind->unw_info_len = info.unw_info_len;
2913 for (i = 0; i < ei_len; ++i) {
2915 * clauses contains the original IL exception info saved by the AOT
2916 * compiler, we have to combine that with the information produced by LLVM
2918 /* The type_info entries contain IL clause indexes */
2919 int clause_index = read32 (type_info [i]);
2920 MonoJitExceptionInfo *jei = &jinfo->clauses [i];
2921 MonoJitExceptionInfo *orig_jei = &clauses [clause_index];
2923 g_assert (clause_index < num_clauses);
2924 jei->flags = orig_jei->flags;
2925 jei->data.catch_class = orig_jei->data.catch_class;
2927 jei->try_start = ei [i].try_start;
2928 jei->try_end = ei [i].try_end;
2929 jei->handler_start = ei [i].handler_start;
2930 jei->clause_index = clause_index;
2932 if (is_thumb_code (amodule, (guint8 *)jei->try_start)) {
2933 jei->try_start = (void*)((mgreg_t)jei->try_start & ~1);
2934 jei->try_end = (void*)((mgreg_t)jei->try_end & ~1);
2935 /* Make sure we transition to thumb when a handler starts */
2936 jei->handler_start = (void*)((mgreg_t)jei->handler_start + 1);
2940 /* See exception_cb () in mini-llvm.c as to why this is needed */
2941 nindex = ei_len;
2942 for (i = 0; i < ei_len; ++i) {
2943 gint32 cindex1 = read32 (type_info [i]);
2944 GSList *l;
2946 for (l = nesting [cindex1]; l; l = l->next) {
2947 gint32 nesting_cindex = GPOINTER_TO_INT (l->data);
2948 MonoJitExceptionInfo *nesting_ei;
2949 MonoJitExceptionInfo *nesting_clause = &clauses [nesting_cindex];
2951 nesting_ei = &jinfo->clauses [nindex];
2952 nindex ++;
2954 memcpy (nesting_ei, &jinfo->clauses [i], sizeof (MonoJitExceptionInfo));
2955 nesting_ei->flags = nesting_clause->flags;
2956 nesting_ei->data.catch_class = nesting_clause->data.catch_class;
2957 nesting_ei->clause_index = nesting_cindex;
2960 g_assert (nindex == ei_len + nested_len);
2963 static gpointer
2964 alloc0_jit_info_data (MonoDomain *domain, int size, gboolean async_context)
2966 gpointer res;
2968 if (async_context) {
2969 res = mono_domain_alloc0_lock_free (domain, size);
2970 mono_atomic_fetch_add_i32 (&async_jit_info_size, size);
2971 } else {
2972 res = mono_domain_alloc0 (domain, size);
2974 return res;
2978 * LOCKING: Acquires the domain lock.
2979 * In async context, this is async safe.
2981 static MonoJitInfo*
2982 decode_exception_debug_info (MonoAotModule *amodule, MonoDomain *domain,
2983 MonoMethod *method, guint8* ex_info,
2984 guint8 *code, guint32 code_len)
2986 ERROR_DECL (error);
2987 int i, buf_len, num_clauses, len;
2988 MonoJitInfo *jinfo;
2989 MonoJitInfoFlags flags = JIT_INFO_NONE;
2990 guint unwind_info, eflags;
2991 gboolean has_generic_jit_info, has_dwarf_unwind_info, has_clauses, has_seq_points, has_try_block_holes, has_arch_eh_jit_info;
2992 gboolean from_llvm, has_gc_map;
2993 guint8 *p;
2994 int try_holes_info_size, num_holes;
2995 int this_reg = 0, this_offset = 0;
2996 gboolean async;
2998 /* Load the method info from the AOT file */
2999 async = mono_thread_info_is_async_context ();
3001 p = ex_info;
3002 eflags = decode_value (p, &p);
3003 has_generic_jit_info = (eflags & 1) != 0;
3004 has_dwarf_unwind_info = (eflags & 2) != 0;
3005 has_clauses = (eflags & 4) != 0;
3006 has_seq_points = (eflags & 8) != 0;
3007 from_llvm = (eflags & 16) != 0;
3008 has_try_block_holes = (eflags & 32) != 0;
3009 has_gc_map = (eflags & 64) != 0;
3010 has_arch_eh_jit_info = (eflags & 128) != 0;
3012 if (has_dwarf_unwind_info) {
3013 unwind_info = decode_value (p, &p);
3014 g_assert (unwind_info < (1 << 30));
3015 } else {
3016 unwind_info = decode_value (p, &p);
3018 if (has_generic_jit_info)
3019 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_GENERIC_JIT_INFO);
3021 if (has_try_block_holes) {
3022 num_holes = decode_value (p, &p);
3023 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_TRY_BLOCK_HOLES);
3024 try_holes_info_size = sizeof (MonoTryBlockHoleTableJitInfo) + num_holes * sizeof (MonoTryBlockHoleJitInfo);
3025 } else {
3026 num_holes = try_holes_info_size = 0;
3029 if (has_arch_eh_jit_info) {
3030 flags = (MonoJitInfoFlags)(flags | JIT_INFO_HAS_ARCH_EH_INFO);
3031 /* Overwrite the original code_len which includes alignment padding */
3032 code_len = decode_value (p, &p);
3035 /* Exception table */
3036 if (has_clauses)
3037 num_clauses = decode_value (p, &p);
3038 else
3039 num_clauses = 0;
3041 if (from_llvm) {
3042 MonoJitExceptionInfo *clauses;
3043 GSList **nesting;
3046 * Part of the info is encoded by the AOT compiler, the rest is in the .eh_frame
3047 * section.
3049 if (async) {
3050 if (num_clauses < 16) {
3051 clauses = g_newa (MonoJitExceptionInfo, num_clauses);
3052 nesting = g_newa (GSList*, num_clauses);
3053 } else {
3054 clauses = alloc0_jit_info_data (domain, sizeof (MonoJitExceptionInfo) * num_clauses, TRUE);
3055 nesting = alloc0_jit_info_data (domain, sizeof (GSList*) * num_clauses, TRUE);
3057 memset (clauses, 0, sizeof (MonoJitExceptionInfo) * num_clauses);
3058 memset (nesting, 0, sizeof (GSList*) * num_clauses);
3059 } else {
3060 clauses = g_new0 (MonoJitExceptionInfo, num_clauses);
3061 nesting = g_new0 (GSList*, num_clauses);
3064 for (i = 0; i < num_clauses; ++i) {
3065 MonoJitExceptionInfo *ei = &clauses [i];
3067 ei->flags = decode_value (p, &p);
3069 if (!(ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)) {
3070 int len = decode_value (p, &p);
3072 if (len > 0) {
3073 if (async) {
3074 p += len;
3075 } else {
3076 ei->data.catch_class = decode_klass_ref (amodule, p, &p, error);
3077 mono_error_cleanup (error); /* FIXME don't swallow the error */
3082 ei->clause_index = i;
3084 ei->try_offset = decode_value (p, &p);
3085 ei->try_len = decode_value (p, &p);
3086 ei->handler_offset = decode_value (p, &p);
3087 ei->handler_len = decode_value (p, &p);
3089 /* Read the list of nesting clauses */
3090 while (TRUE) {
3091 int nesting_index = decode_value (p, &p);
3092 if (nesting_index == -1)
3093 break;
3094 // FIXME: async
3095 g_assert (!async);
3096 nesting [i] = g_slist_prepend (nesting [i], GINT_TO_POINTER (nesting_index));
3100 flags |= JIT_INFO_HAS_UNWIND_INFO;
3102 int num_llvm_clauses;
3103 /* Get the length first */
3104 decode_llvm_mono_eh_frame (amodule, domain, NULL, code, code_len, clauses, num_clauses, nesting, &this_reg, &this_offset, &num_llvm_clauses);
3105 len = mono_jit_info_size (flags, num_llvm_clauses, num_holes);
3106 jinfo = (MonoJitInfo *)alloc0_jit_info_data (domain, len, async);
3107 mono_jit_info_init (jinfo, method, code, code_len, flags, num_llvm_clauses, num_holes);
3109 decode_llvm_mono_eh_frame (amodule, domain, jinfo, code, code_len, clauses, num_clauses, nesting, &this_reg, &this_offset, NULL);
3111 if (!async) {
3112 g_free (clauses);
3113 for (i = 0; i < num_clauses; ++i)
3114 g_slist_free (nesting [i]);
3115 g_free (nesting);
3117 jinfo->from_llvm = 1;
3118 } else {
3119 len = mono_jit_info_size (flags, num_clauses, num_holes);
3120 jinfo = (MonoJitInfo *)alloc0_jit_info_data (domain, len, async);
3121 mono_jit_info_init (jinfo, method, code, code_len, flags, num_clauses, num_holes);
3123 for (i = 0; i < jinfo->num_clauses; ++i) {
3124 MonoJitExceptionInfo *ei = &jinfo->clauses [i];
3126 ei->flags = decode_value (p, &p);
3128 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
3129 /* Not used for catch clauses */
3130 if (ei->flags != MONO_EXCEPTION_CLAUSE_NONE)
3131 ei->exvar_offset = decode_value (p, &p);
3132 #else
3133 ei->exvar_offset = decode_value (p, &p);
3134 #endif
3136 if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER || ei->flags == MONO_EXCEPTION_CLAUSE_FINALLY)
3137 ei->data.filter = code + decode_value (p, &p);
3138 else {
3139 int len = decode_value (p, &p);
3141 if (len > 0) {
3142 if (async) {
3143 p += len;
3144 } else {
3145 ei->data.catch_class = decode_klass_ref (amodule, p, &p, error);
3146 mono_error_cleanup (error); /* FIXME don't swallow the error */
3151 ei->try_start = code + decode_value (p, &p);
3152 ei->try_end = code + decode_value (p, &p);
3153 ei->handler_start = code + decode_value (p, &p);
3156 jinfo->unwind_info = unwind_info;
3157 jinfo->domain_neutral = 0;
3158 jinfo->from_aot = 1;
3161 if (has_try_block_holes) {
3162 MonoTryBlockHoleTableJitInfo *table;
3164 g_assert (jinfo->has_try_block_holes);
3166 table = mono_jit_info_get_try_block_hole_table_info (jinfo);
3167 g_assert (table);
3169 table->num_holes = (guint16)num_holes;
3170 for (i = 0; i < num_holes; ++i) {
3171 MonoTryBlockHoleJitInfo *hole = &table->holes [i];
3172 hole->clause = decode_value (p, &p);
3173 hole->length = decode_value (p, &p);
3174 hole->offset = decode_value (p, &p);
3178 if (has_arch_eh_jit_info) {
3179 MonoArchEHJitInfo *eh_info;
3181 g_assert (jinfo->has_arch_eh_info);
3183 eh_info = mono_jit_info_get_arch_eh_info (jinfo);
3184 eh_info->stack_size = decode_value (p, &p);
3185 eh_info->epilog_size = decode_value (p, &p);
3188 if (async) {
3189 /* The rest is not needed in async mode */
3190 jinfo->async = TRUE;
3191 jinfo->d.aot_info = amodule;
3192 // FIXME: Cache
3193 return jinfo;
3196 if (has_generic_jit_info) {
3197 MonoGenericJitInfo *gi;
3198 int len;
3200 g_assert (jinfo->has_generic_jit_info);
3202 gi = mono_jit_info_get_generic_jit_info (jinfo);
3203 g_assert (gi);
3205 gi->nlocs = decode_value (p, &p);
3206 if (gi->nlocs) {
3207 gi->locations = (MonoDwarfLocListEntry *)alloc0_jit_info_data (domain, gi->nlocs * sizeof (MonoDwarfLocListEntry), async);
3208 for (i = 0; i < gi->nlocs; ++i) {
3209 MonoDwarfLocListEntry *entry = &gi->locations [i];
3211 entry->is_reg = decode_value (p, &p);
3212 entry->reg = decode_value (p, &p);
3213 if (!entry->is_reg)
3214 entry->offset = decode_value (p, &p);
3215 if (i > 0)
3216 entry->from = decode_value (p, &p);
3217 entry->to = decode_value (p, &p);
3219 gi->has_this = 1;
3220 } else {
3221 if (from_llvm) {
3222 gi->has_this = this_reg != -1;
3223 gi->this_reg = this_reg;
3224 gi->this_offset = this_offset;
3225 } else {
3226 gi->has_this = decode_value (p, &p);
3227 gi->this_reg = decode_value (p, &p);
3228 gi->this_offset = decode_value (p, &p);
3232 len = decode_value (p, &p);
3233 if (async) {
3234 p += len;
3235 } else {
3236 jinfo->d.method = decode_resolve_method_ref (amodule, p, &p, error);
3237 mono_error_cleanup (error); /* FIXME don't swallow the error */
3240 gi->generic_sharing_context = alloc0_jit_info_data (domain, sizeof (MonoGenericSharingContext), async);
3241 if (decode_value (p, &p)) {
3242 /* gsharedvt */
3243 MonoGenericSharingContext *gsctx = gi->generic_sharing_context;
3245 gsctx->is_gsharedvt = TRUE;
3249 if (method && has_seq_points) {
3250 MonoSeqPointInfo *seq_points;
3252 p += mono_seq_point_info_read (&seq_points, p, FALSE);
3254 mono_domain_lock (domain);
3255 /* This could be set already since this function can be called more than once for the same method */
3256 if (!g_hash_table_lookup (domain_jit_info (domain)->seq_points, method))
3257 g_hash_table_insert (domain_jit_info (domain)->seq_points, method, seq_points);
3258 else
3259 mono_seq_point_info_free (seq_points);
3260 mono_domain_unlock (domain);
3263 /* Load debug info */
3264 buf_len = decode_value (p, &p);
3265 if (!async)
3266 mono_debug_add_aot_method (domain, method, code, p, buf_len);
3267 p += buf_len;
3269 if (has_gc_map) {
3270 int map_size = decode_value (p, &p);
3271 /* The GC map requires 4 bytes of alignment */
3272 while ((guint64)(gsize)p % 4)
3273 p ++;
3274 jinfo->gc_info = p;
3275 p += map_size;
3278 if (amodule != m_class_get_image (jinfo->d.method->klass)->aot_module) {
3279 mono_aot_lock ();
3280 if (!ji_to_amodule)
3281 ji_to_amodule = g_hash_table_new (NULL, NULL);
3282 g_hash_table_insert (ji_to_amodule, jinfo, amodule);
3283 mono_aot_unlock ();
3286 return jinfo;
3289 static gboolean
3290 amodule_contains_code_addr (MonoAotModule *amodule, guint8 *code)
3292 return (code >= amodule->jit_code_start && code <= amodule->jit_code_end) ||
3293 (code >= amodule->llvm_code_start && code <= amodule->llvm_code_end);
3297 * mono_aot_get_unwind_info:
3299 * Return a pointer to the DWARF unwind info belonging to JI.
3301 guint8*
3302 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
3304 MonoAotModule *amodule;
3305 guint8 *p;
3306 guint8 *code = (guint8 *)ji->code_start;
3308 if (ji->async)
3309 amodule = (MonoAotModule *)ji->d.aot_info;
3310 else
3311 amodule = (MonoAotModule *)m_class_get_image (jinfo_get_method (ji)->klass)->aot_module;
3312 g_assert (amodule);
3313 g_assert (ji->from_aot);
3315 if (!amodule_contains_code_addr (amodule, code)) {
3316 /* ji belongs to a different aot module than amodule */
3317 mono_aot_lock ();
3318 g_assert (ji_to_amodule);
3319 amodule = (MonoAotModule *)g_hash_table_lookup (ji_to_amodule, ji);
3320 g_assert (amodule);
3321 g_assert (amodule_contains_code_addr (amodule, code));
3322 mono_aot_unlock ();
3325 p = amodule->unwind_info + ji->unwind_info;
3326 *unwind_info_len = decode_value (p, &p);
3327 return p;
3330 static void
3331 msort_method_addresses_internal (gpointer *array, int *indexes, int lo, int hi, gpointer *scratch, int *scratch_indexes)
3333 int mid = (lo + hi) / 2;
3334 int i, t_lo, t_hi;
3336 if (lo >= hi)
3337 return;
3339 if (hi - lo < 32) {
3340 for (i = lo; i < hi; ++i)
3341 if (array [i] > array [i + 1])
3342 break;
3343 if (i == hi)
3344 /* Already sorted */
3345 return;
3348 msort_method_addresses_internal (array, indexes, lo, mid, scratch, scratch_indexes);
3349 msort_method_addresses_internal (array, indexes, mid + 1, hi, scratch, scratch_indexes);
3351 if (array [mid] < array [mid + 1])
3352 return;
3354 /* Merge */
3355 t_lo = lo;
3356 t_hi = mid + 1;
3357 for (i = lo; i <= hi; i ++) {
3358 if (t_lo <= mid && ((t_hi > hi) || array [t_lo] < array [t_hi])) {
3359 scratch [i] = array [t_lo];
3360 scratch_indexes [i] = indexes [t_lo];
3361 t_lo ++;
3362 } else {
3363 scratch [i] = array [t_hi];
3364 scratch_indexes [i] = indexes [t_hi];
3365 t_hi ++;
3368 for (i = lo; i <= hi; ++i) {
3369 array [i] = scratch [i];
3370 indexes [i] = scratch_indexes [i];
3374 static void
3375 msort_method_addresses (gpointer *array, int *indexes, int len)
3377 gpointer *scratch;
3378 int *scratch_indexes;
3380 scratch = g_new (gpointer, len);
3381 scratch_indexes = g_new (int, len);
3382 msort_method_addresses_internal (array, indexes, 0, len - 1, scratch, scratch_indexes);
3383 g_free (scratch);
3384 g_free (scratch_indexes);
3388 * mono_aot_find_jit_info:
3390 * In async context, the resulting MonoJitInfo will not have its method field set, and it will not be added
3391 * to the jit info tables.
3392 * FIXME: Large sizes in the lock free allocator
3394 MonoJitInfo *
3395 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
3397 ERROR_DECL (error);
3398 int pos, left, right, code_len;
3399 int method_index, table_len;
3400 guint32 token;
3401 MonoAotModule *amodule = (MonoAotModule *)image->aot_module;
3402 MonoMethod *method = NULL;
3403 MonoJitInfo *jinfo;
3404 guint8 *code, *ex_info, *p;
3405 guint32 *table;
3406 int nmethods;
3407 gpointer *methods;
3408 guint8 *code1, *code2;
3409 int methods_len, i;
3410 gboolean async;
3412 if (!amodule)
3413 return NULL;
3415 nmethods = amodule->info.nmethods;
3417 if (domain != mono_get_root_domain ())
3418 /* FIXME: */
3419 return NULL;
3421 if (!amodule_contains_code_addr (amodule, (guint8 *)addr))
3422 return NULL;
3424 async = mono_thread_info_is_async_context ();
3426 /* Compute a sorted table mapping code to method indexes. */
3427 if (!amodule->sorted_methods) {
3428 // FIXME: async
3429 gpointer *methods = g_new0 (gpointer, nmethods);
3430 int *method_indexes = g_new0 (int, nmethods);
3431 int methods_len = 0;
3433 for (i = 0; i < nmethods; ++i) {
3434 /* Skip the -1 entries to speed up sorting */
3435 if (amodule->methods [i] == GINT_TO_POINTER (-1))
3436 continue;
3437 methods [methods_len] = amodule->methods [i];
3438 method_indexes [methods_len] = i;
3439 methods_len ++;
3441 /* Use a merge sort as this is mostly sorted */
3442 msort_method_addresses (methods, method_indexes, methods_len);
3443 for (i = 0; i < methods_len -1; ++i)
3444 g_assert (methods [i] <= methods [i + 1]);
3445 amodule->sorted_methods_len = methods_len;
3446 if (mono_atomic_cas_ptr ((gpointer*)&amodule->sorted_methods, methods, NULL) != NULL)
3447 /* Somebody got in before us */
3448 g_free (methods);
3449 if (mono_atomic_cas_ptr ((gpointer*)&amodule->sorted_method_indexes, method_indexes, NULL) != NULL)
3450 /* Somebody got in before us */
3451 g_free (method_indexes);
3454 /* Binary search in the sorted_methods table */
3455 methods = amodule->sorted_methods;
3456 methods_len = amodule->sorted_methods_len;
3457 code = (guint8 *)addr;
3458 left = 0;
3459 right = methods_len;
3460 while (TRUE) {
3461 pos = (left + right) / 2;
3463 code1 = (guint8 *)methods [pos];
3464 if (pos + 1 == methods_len) {
3465 if (code1 >= amodule->jit_code_start && code1 < amodule->jit_code_end)
3466 code2 = amodule->jit_code_end;
3467 else
3468 code2 = amodule->llvm_code_end;
3469 } else {
3470 code2 = (guint8 *)methods [pos + 1];
3473 if (code < code1)
3474 right = pos;
3475 else if (code >= code2)
3476 left = pos + 1;
3477 else
3478 break;
3481 g_assert (addr >= methods [pos]);
3482 if (pos + 1 < methods_len)
3483 g_assert (addr < methods [pos + 1]);
3484 method_index = amodule->sorted_method_indexes [pos];
3486 /* In async mode, jinfo is not added to the normal jit info table, so have to cache it ourselves */
3487 if (async) {
3488 JitInfoMap *table = amodule->async_jit_info_table;
3489 int len;
3491 if (table) {
3492 len = table [0].method_index;
3493 for (i = 1; i < len; ++i) {
3494 if (table [i].method_index == method_index)
3495 return table [i].jinfo;
3500 code = (guint8 *)amodule->methods [method_index];
3501 ex_info = &amodule->blob [mono_aot_get_offset (amodule->ex_info_offsets, method_index)];
3503 if (pos == methods_len - 1) {
3504 if (code >= amodule->jit_code_start && code < amodule->jit_code_end)
3505 code_len = amodule->jit_code_end - code;
3506 else
3507 code_len = amodule->llvm_code_end - code;
3508 } else {
3509 code_len = (guint8*)methods [pos + 1] - (guint8*)methods [pos];
3512 g_assert ((guint8*)code <= (guint8*)addr && (guint8*)addr < (guint8*)code + code_len);
3514 /* Might be a wrapper/extra method */
3515 if (!async) {
3516 if (amodule->extra_methods) {
3517 amodule_lock (amodule);
3518 method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
3519 amodule_unlock (amodule);
3520 } else {
3521 method = NULL;
3524 if (!method) {
3525 if (method_index >= image->tables [MONO_TABLE_METHOD].rows) {
3527 * This is hit for extra methods which are called directly, so they are
3528 * not in amodule->extra_methods.
3530 table_len = amodule->extra_method_info_offsets [0];
3531 table = amodule->extra_method_info_offsets + 1;
3532 left = 0;
3533 right = table_len;
3534 pos = 0;
3536 /* Binary search */
3537 while (TRUE) {
3538 pos = ((left + right) / 2);
3540 g_assert (pos < table_len);
3542 if (table [pos * 2] < method_index)
3543 left = pos + 1;
3544 else if (table [pos * 2] > method_index)
3545 right = pos;
3546 else
3547 break;
3550 p = amodule->blob + table [(pos * 2) + 1];
3551 method = decode_resolve_method_ref (amodule, p, &p, error);
3552 mono_error_cleanup (error); /* FIXME don't swallow the error */
3553 if (!method)
3554 /* Happens when a random address is passed in which matches a not-yey called wrapper encoded using its name */
3555 return NULL;
3556 } else {
3557 ERROR_DECL (error);
3558 token = mono_metadata_make_token (MONO_TABLE_METHOD, method_index + 1);
3559 method = mono_get_method_checked (image, token, NULL, NULL, error);
3560 if (!method)
3561 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
3564 /* FIXME: */
3565 g_assert (method);
3568 //printf ("F: %s\n", mono_method_full_name (method, TRUE));
3570 jinfo = decode_exception_debug_info (amodule, domain, method, ex_info, code, code_len);
3572 g_assert ((guint8*)addr >= (guint8*)jinfo->code_start);
3574 /* Add it to the normal JitInfo tables */
3575 if (async) {
3576 JitInfoMap *old_table, *new_table;
3577 int len;
3580 * Use a simple inmutable table with linear search to cache async jit info entries.
3581 * This assumes that the number of entries is small.
3583 while (TRUE) {
3584 /* Copy the table, adding a new entry at the end */
3585 old_table = amodule->async_jit_info_table;
3586 if (old_table)
3587 len = old_table[0].method_index;
3588 else
3589 len = 1;
3590 new_table = (JitInfoMap *)alloc0_jit_info_data (domain, (len + 1) * sizeof (JitInfoMap), async);
3591 if (old_table)
3592 memcpy (new_table, old_table, len * sizeof (JitInfoMap));
3593 new_table [0].method_index = len + 1;
3594 new_table [len].method_index = method_index;
3595 new_table [len].jinfo = jinfo;
3596 /* Publish it */
3597 mono_memory_barrier ();
3598 if (mono_atomic_cas_ptr ((volatile gpointer *)&amodule->async_jit_info_table, new_table, old_table) == old_table)
3599 break;
3601 } else {
3602 mono_jit_info_table_add (domain, jinfo);
3605 if ((guint8*)addr >= (guint8*)jinfo->code_start + jinfo->code_size)
3606 /* addr is in the padding between methods, see the adjustment of code_size in decode_exception_debug_info () */
3607 return NULL;
3609 return jinfo;
3612 static gboolean
3613 decode_patch (MonoAotModule *aot_module, MonoMemPool *mp, MonoJumpInfo *ji, guint8 *buf, guint8 **endbuf)
3615 ERROR_DECL (error);
3616 guint8 *p = buf;
3617 gpointer *table;
3618 MonoImage *image;
3619 int i;
3621 switch (ji->type) {
3622 case MONO_PATCH_INFO_METHOD:
3623 case MONO_PATCH_INFO_METHOD_JUMP:
3624 case MONO_PATCH_INFO_ICALL_ADDR:
3625 case MONO_PATCH_INFO_ICALL_ADDR_CALL:
3626 case MONO_PATCH_INFO_METHOD_RGCTX:
3627 case MONO_PATCH_INFO_METHOD_CODE_SLOT: {
3628 MethodRef ref;
3629 gboolean res;
3631 res = decode_method_ref (aot_module, &ref, p, &p, error);
3632 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3633 if (!res)
3634 goto cleanup;
3636 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)) {
3637 ji->data.target = mono_create_ftnptr (mono_domain_get (), mono_create_jit_trampoline_from_token (ref.image, ref.token));
3638 ji->type = MONO_PATCH_INFO_ABS;
3640 else {
3641 if (ref.method) {
3642 ji->data.method = ref.method;
3643 }else {
3644 ERROR_DECL (error);
3645 ji->data.method = mono_get_method_checked (ref.image, ref.token, NULL, NULL, error);
3646 if (!ji->data.method)
3647 g_error ("AOT Runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
3649 g_assert (ji->data.method);
3650 mono_class_init (ji->data.method->klass);
3652 break;
3654 case MONO_PATCH_INFO_INTERNAL_METHOD:
3655 case MONO_PATCH_INFO_JIT_ICALL_ADDR:
3656 case MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL: {
3657 guint32 len = decode_value (p, &p);
3659 ji->data.name = (char*)p;
3660 p += len + 1;
3661 break;
3663 case MONO_PATCH_INFO_METHODCONST:
3664 /* Shared */
3665 ji->data.method = decode_resolve_method_ref (aot_module, p, &p, error);
3666 mono_error_cleanup (error); /* FIXME don't swallow the error */
3667 if (!ji->data.method)
3668 goto cleanup;
3669 break;
3670 case MONO_PATCH_INFO_VTABLE:
3671 case MONO_PATCH_INFO_CLASS:
3672 case MONO_PATCH_INFO_IID:
3673 case MONO_PATCH_INFO_ADJUSTED_IID:
3674 /* Shared */
3675 ji->data.klass = decode_klass_ref (aot_module, p, &p, error);
3676 mono_error_cleanup (error); /* FIXME don't swallow the error */
3677 if (!ji->data.klass)
3678 goto cleanup;
3679 break;
3680 case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
3681 ji->data.del_tramp = (MonoDelegateClassMethodPair *)mono_mempool_alloc0 (mp, sizeof (MonoDelegateClassMethodPair));
3682 ji->data.del_tramp->klass = decode_klass_ref (aot_module, p, &p, error);
3683 mono_error_cleanup (error); /* FIXME don't swallow the error */
3684 if (!ji->data.del_tramp->klass)
3685 goto cleanup;
3686 if (decode_value (p, &p)) {
3687 ji->data.del_tramp->method = decode_resolve_method_ref (aot_module, p, &p, error);
3688 mono_error_cleanup (error); /* FIXME don't swallow the error */
3689 if (!ji->data.del_tramp->method)
3690 goto cleanup;
3692 ji->data.del_tramp->is_virtual = decode_value (p, &p) ? TRUE : FALSE;
3693 break;
3694 case MONO_PATCH_INFO_IMAGE:
3695 ji->data.image = load_image (aot_module, decode_value (p, &p), error);
3696 mono_error_cleanup (error); /* FIXME don't swallow the error */
3697 if (!ji->data.image)
3698 goto cleanup;
3699 break;
3700 case MONO_PATCH_INFO_FIELD:
3701 case MONO_PATCH_INFO_SFLDA:
3702 /* Shared */
3703 ji->data.field = decode_field_info (aot_module, p, &p);
3704 if (!ji->data.field)
3705 goto cleanup;
3706 break;
3707 case MONO_PATCH_INFO_SWITCH:
3708 ji->data.table = (MonoJumpInfoBBTable *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoBBTable));
3709 ji->data.table->table_size = decode_value (p, &p);
3710 table = (void **)mono_domain_alloc (mono_domain_get (), sizeof (gpointer) * ji->data.table->table_size);
3711 ji->data.table->table = (MonoBasicBlock**)table;
3712 for (i = 0; i < ji->data.table->table_size; i++)
3713 table [i] = (gpointer)(gssize)decode_value (p, &p);
3714 break;
3715 case MONO_PATCH_INFO_R4: {
3716 guint32 val;
3718 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (float));
3719 val = decode_value (p, &p);
3720 *(float*)ji->data.target = *(float*)&val;
3721 break;
3723 case MONO_PATCH_INFO_R8: {
3724 guint32 val [2];
3725 guint64 v;
3727 ji->data.target = mono_domain_alloc0 (mono_domain_get (), sizeof (double));
3729 val [0] = decode_value (p, &p);
3730 val [1] = decode_value (p, &p);
3731 v = ((guint64)val [1] << 32) | ((guint64)val [0]);
3732 *(double*)ji->data.target = *(double*)&v;
3733 break;
3735 case MONO_PATCH_INFO_LDSTR:
3736 image = load_image (aot_module, decode_value (p, &p), error);
3737 mono_error_cleanup (error); /* FIXME don't swallow the error */
3738 if (!image)
3739 goto cleanup;
3740 ji->data.token = mono_jump_info_token_new (mp, image, MONO_TOKEN_STRING + decode_value (p, &p));
3741 break;
3742 case MONO_PATCH_INFO_RVA:
3743 case MONO_PATCH_INFO_DECLSEC:
3744 case MONO_PATCH_INFO_LDTOKEN:
3745 case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
3746 /* Shared */
3747 image = load_image (aot_module, decode_value (p, &p), error);
3748 mono_error_cleanup (error); /* FIXME don't swallow the error */
3749 if (!image)
3750 goto cleanup;
3751 ji->data.token = mono_jump_info_token_new (mp, image, decode_value (p, &p));
3753 ji->data.token->has_context = decode_value (p, &p);
3754 if (ji->data.token->has_context) {
3755 gboolean res = decode_generic_context (aot_module, &ji->data.token->context, p, &p, error);
3756 mono_error_cleanup (error); /* FIXME don't swallow the error */
3757 if (!res)
3758 goto cleanup;
3760 break;
3761 case MONO_PATCH_INFO_EXC_NAME:
3762 ji->data.klass = decode_klass_ref (aot_module, p, &p, error);
3763 mono_error_cleanup (error); /* FIXME don't swallow the error */
3764 if (!ji->data.klass)
3765 goto cleanup;
3766 ji->data.name = m_class_get_name (ji->data.klass);
3767 break;
3768 case MONO_PATCH_INFO_METHOD_REL:
3769 ji->data.offset = decode_value (p, &p);
3770 break;
3771 case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG:
3772 case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR:
3773 case MONO_PATCH_INFO_GC_NURSERY_START:
3774 case MONO_PATCH_INFO_GC_NURSERY_BITS:
3775 case MONO_PATCH_INFO_PROFILER_ALLOCATION_COUNT:
3776 case MONO_PATCH_INFO_PROFILER_CLAUSE_COUNT:
3777 break;
3778 case MONO_PATCH_INFO_CASTCLASS_CACHE:
3779 ji->data.index = decode_value (p, &p);
3780 break;
3781 case MONO_PATCH_INFO_RGCTX_FETCH:
3782 case MONO_PATCH_INFO_RGCTX_SLOT_INDEX: {
3783 gboolean res;
3784 MonoJumpInfoRgctxEntry *entry;
3785 guint32 offset, val;
3786 guint8 *p2;
3788 offset = decode_value (p, &p);
3789 val = decode_value (p, &p);
3791 entry = (MonoJumpInfoRgctxEntry *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoRgctxEntry));
3792 p2 = aot_module->blob + offset;
3793 entry->method = decode_resolve_method_ref (aot_module, p2, &p2, error);
3794 entry->in_mrgctx = ((val & 1) > 0) ? TRUE : FALSE;
3795 entry->info_type = (MonoRgctxInfoType)((val >> 1) & 0xff);
3796 entry->data = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo));
3797 entry->data->type = (MonoJumpInfoType)((val >> 9) & 0xff);
3798 mono_error_cleanup (error); /* FIXME don't swallow the error */
3800 res = decode_patch (aot_module, mp, entry->data, p, &p);
3801 if (!res)
3802 goto cleanup;
3803 ji->data.rgctx_entry = entry;
3804 break;
3806 case MONO_PATCH_INFO_SEQ_POINT_INFO:
3807 case MONO_PATCH_INFO_AOT_MODULE:
3808 case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR:
3809 break;
3810 case MONO_PATCH_INFO_SIGNATURE:
3811 case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER:
3812 ji->data.target = decode_signature (aot_module, p, &p);
3813 break;
3814 case MONO_PATCH_INFO_GSHAREDVT_CALL: {
3815 MonoJumpInfoGSharedVtCall *info = (MonoJumpInfoGSharedVtCall *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoGSharedVtCall));
3816 info->sig = decode_signature (aot_module, p, &p);
3817 g_assert (info->sig);
3818 info->method = decode_resolve_method_ref (aot_module, p, &p, error);
3819 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3821 ji->data.target = info;
3822 break;
3824 case MONO_PATCH_INFO_GSHAREDVT_METHOD: {
3825 MonoGSharedVtMethodInfo *info = (MonoGSharedVtMethodInfo *)mono_mempool_alloc0 (mp, sizeof (MonoGSharedVtMethodInfo));
3826 int i;
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 info->num_entries = decode_value (p, &p);
3832 info->count_entries = info->num_entries;
3833 info->entries = (MonoRuntimeGenericContextInfoTemplate *)mono_mempool_alloc0 (mp, sizeof (MonoRuntimeGenericContextInfoTemplate) * info->num_entries);
3834 for (i = 0; i < info->num_entries; ++i) {
3835 MonoRuntimeGenericContextInfoTemplate *template_ = &info->entries [i];
3837 template_->info_type = (MonoRgctxInfoType)decode_value (p, &p);
3838 switch (mini_rgctx_info_type_to_patch_info_type (template_->info_type)) {
3839 case MONO_PATCH_INFO_CLASS: {
3840 MonoClass *klass = decode_klass_ref (aot_module, p, &p, error);
3841 mono_error_cleanup (error); /* FIXME don't swallow the error */
3842 if (!klass)
3843 goto cleanup;
3844 template_->data = m_class_get_byval_arg (klass);
3845 break;
3847 case MONO_PATCH_INFO_FIELD:
3848 template_->data = decode_field_info (aot_module, p, &p);
3849 if (!template_->data)
3850 goto cleanup;
3851 break;
3852 default:
3853 g_assert_not_reached ();
3854 break;
3857 ji->data.target = info;
3858 break;
3860 case MONO_PATCH_INFO_LDSTR_LIT: {
3861 int len = decode_value (p, &p);
3862 char *s;
3864 s = (char *)mono_mempool_alloc0 (mp, len + 1);
3865 memcpy (s, p, len + 1);
3866 p += len + 1;
3868 ji->data.target = s;
3869 break;
3871 case MONO_PATCH_INFO_VIRT_METHOD: {
3872 MonoJumpInfoVirtMethod *info = (MonoJumpInfoVirtMethod *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfoVirtMethod));
3874 info->klass = decode_klass_ref (aot_module, p, &p, error);
3875 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3877 info->method = decode_resolve_method_ref (aot_module, p, &p, error);
3878 mono_error_assert_ok (error); /* FIXME don't swallow the error */
3880 ji->data.target = info;
3881 break;
3883 case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG:
3884 case MONO_PATCH_INFO_JIT_THREAD_ATTACH:
3885 break;
3886 case MONO_PATCH_INFO_GET_TLS_TRAMP:
3887 case MONO_PATCH_INFO_SET_TLS_TRAMP:
3888 case MONO_PATCH_INFO_AOT_JIT_INFO:
3889 ji->data.index = decode_value (p, &p);
3890 break;
3891 default:
3892 g_warning ("unhandled type %d", ji->type);
3893 g_assert_not_reached ();
3896 *endbuf = p;
3898 return TRUE;
3900 cleanup:
3901 return FALSE;
3905 * decode_patches:
3907 * Decode a list of patches identified by the got offsets in GOT_OFFSETS. Return an array of
3908 * MonoJumpInfo structures allocated from MP.
3910 static MonoJumpInfo*
3911 decode_patches (MonoAotModule *amodule, MonoMemPool *mp, int n_patches, gboolean llvm, guint32 *got_offsets)
3913 MonoJumpInfo *patches;
3914 MonoJumpInfo *ji;
3915 gpointer *got;
3916 guint32 *got_info_offsets;
3917 int i;
3918 gboolean res;
3920 if (llvm) {
3921 got = amodule->llvm_got;
3922 got_info_offsets = (guint32 *)amodule->llvm_got_info_offsets;
3923 } else {
3924 got = amodule->got;
3925 got_info_offsets = (guint32 *)amodule->got_info_offsets;
3928 patches = (MonoJumpInfo *)mono_mempool_alloc0 (mp, sizeof (MonoJumpInfo) * n_patches);
3929 for (i = 0; i < n_patches; ++i) {
3930 guint8 *p = amodule->blob + mono_aot_get_offset (got_info_offsets, got_offsets [i]);
3932 ji = &patches [i];
3933 ji->type = (MonoJumpInfoType)decode_value (p, &p);
3935 /* See load_method () for SFLDA */
3936 if (got && got [got_offsets [i]] && ji->type != MONO_PATCH_INFO_SFLDA) {
3937 /* Already loaded */
3938 } else {
3939 res = decode_patch (amodule, mp, ji, p, &p);
3940 if (!res)
3941 return NULL;
3945 return patches;
3948 static MonoJumpInfo*
3949 load_patch_info (MonoAotModule *amodule, MonoMemPool *mp, int n_patches,
3950 gboolean llvm, guint32 **got_slots,
3951 guint8 *buf, guint8 **endbuf)
3953 MonoJumpInfo *patches;
3954 int pindex;
3955 guint8 *p;
3957 p = buf;
3959 *got_slots = (guint32 *)g_malloc (sizeof (guint32) * n_patches);
3960 for (pindex = 0; pindex < n_patches; ++pindex) {
3961 (*got_slots)[pindex] = decode_value (p, &p);
3964 patches = decode_patches (amodule, mp, n_patches, llvm, *got_slots);
3965 if (!patches) {
3966 g_free (*got_slots);
3967 *got_slots = NULL;
3968 return NULL;
3971 *endbuf = p;
3972 return patches;
3975 static void
3976 register_jump_target_got_slot (MonoDomain *domain, MonoMethod *method, gpointer *got_slot)
3979 * Jump addresses cannot be patched by the trampoline code since it
3980 * does not have access to the caller's address. Instead, we collect
3981 * the addresses of the GOT slots pointing to a method, and patch
3982 * them after the method has been compiled.
3984 MonoJitDomainInfo *info = domain_jit_info (domain);
3985 GSList *list;
3986 MonoMethod *shared_method = mini_method_to_shared (method);
3987 method = shared_method ? shared_method : method;
3989 mono_domain_lock (domain);
3990 if (!info->jump_target_got_slot_hash)
3991 info->jump_target_got_slot_hash = g_hash_table_new (NULL, NULL);
3992 list = (GSList *)g_hash_table_lookup (info->jump_target_got_slot_hash, method);
3993 list = g_slist_prepend (list, got_slot);
3994 g_hash_table_insert (info->jump_target_got_slot_hash, method, list);
3995 mono_domain_unlock (domain);
3999 * load_method:
4001 * Load the method identified by METHOD_INDEX from the AOT image. Return a
4002 * pointer to the native code of the method, or NULL if not found.
4003 * METHOD might not be set if the caller only has the image/token info.
4005 static gpointer
4006 load_method (MonoDomain *domain, MonoAotModule *amodule, MonoImage *image, MonoMethod *method, guint32 token, int method_index,
4007 MonoError *error)
4009 MonoJitInfo *jinfo = NULL;
4010 guint8 *code = NULL, *info;
4011 gboolean res;
4013 error_init (error);
4015 init_amodule_got (amodule);
4017 if (domain != mono_get_root_domain ())
4018 /* Non shared AOT code can't be used in other appdomains */
4019 return NULL;
4021 if (amodule->out_of_date)
4022 return NULL;
4024 if (amodule->info.llvm_get_method) {
4026 * Obtain the method address by calling a generated function in the LLVM module.
4028 gpointer (*get_method) (int) = (gpointer (*)(int))amodule->info.llvm_get_method;
4029 code = (guint8 *)get_method (method_index);
4032 if (!code) {
4033 /* JITted method */
4034 if (amodule->methods [method_index] == GINT_TO_POINTER (-1)) {
4035 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
4036 char *full_name;
4038 if (!method) {
4039 method = mono_get_method_checked (image, token, NULL, NULL, error);
4040 if (!method)
4041 return NULL;
4043 if (!(method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)) {
4044 full_name = mono_method_full_name (method, TRUE);
4045 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: NOT FOUND: %s.", full_name);
4046 g_free (full_name);
4049 return NULL;
4051 code = (guint8 *)amodule->methods [method_index];
4054 info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
4056 if (!amodule->methods_loaded) {
4057 amodule_lock (amodule);
4058 if (!amodule->methods_loaded) {
4059 guint32 *loaded;
4061 loaded = g_new0 (guint32, amodule->info.nmethods / 32 + 1);
4062 mono_memory_barrier ();
4063 amodule->methods_loaded = loaded;
4065 amodule_unlock (amodule);
4068 if ((amodule->methods_loaded [method_index / 32] >> (method_index % 32)) & 0x1)
4069 return code;
4071 if (mini_debug_options.aot_skip_set && !(method && method->wrapper_type)) {
4072 gint32 methods_aot = mono_atomic_load_i32 (&mono_jit_stats.methods_aot);
4073 if (methods_aot == mini_debug_options.aot_skip) {
4074 if (!method) {
4075 method = mono_get_method_checked (image, token, NULL, NULL, error);
4076 if (!method)
4077 return NULL;
4079 if (method) {
4080 char *name = mono_method_full_name (method, TRUE);
4081 g_print ("NON AOT METHOD: %s.\n", name);
4082 g_free (name);
4083 } else {
4084 g_print ("NON AOT METHOD: %p %d\n", code, method_index);
4086 return NULL;
4090 if (mono_last_aot_method != -1) {
4091 gint32 methods_aot = mono_atomic_load_i32 (&mono_jit_stats.methods_aot);
4092 if (methods_aot >= mono_last_aot_method)
4093 return NULL;
4094 else if (methods_aot == mono_last_aot_method - 1) {
4095 if (!method) {
4096 method = mono_get_method_checked (image, token, NULL, NULL, error);
4097 if (!method)
4098 return NULL;
4100 if (method) {
4101 char *name = mono_method_full_name (method, TRUE);
4102 g_print ("LAST AOT METHOD: %s.\n", name);
4103 g_free (name);
4104 } else {
4105 g_print ("LAST AOT METHOD: %p %d\n", code, method_index);
4110 if (!(is_llvm_code (amodule, code) && (amodule->info.flags & MONO_AOT_FILE_FLAG_LLVM_ONLY)) ||
4111 (mono_llvm_only && method && method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED)) {
4112 res = init_method (amodule, method_index, method, NULL, NULL, error);
4113 if (!res)
4114 goto cleanup;
4117 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
4118 char *full_name;
4120 if (!method) {
4121 method = mono_get_method_checked (image, token, NULL, NULL, error);
4122 if (!method)
4123 return NULL;
4126 full_name = mono_method_full_name (method, TRUE);
4128 if (!jinfo)
4129 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4131 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND method %s [%p - %p %p]", full_name, code, code + jinfo->code_size, info);
4132 g_free (full_name);
4135 amodule_lock (amodule);
4137 init_plt (amodule);
4139 mono_atomic_inc_i32 (&mono_jit_stats.methods_aot);
4141 if (method && method->wrapper_type)
4142 g_hash_table_insert (amodule->method_to_code, method, code);
4144 /* Commit changes since methods_loaded is accessed outside the lock */
4145 mono_memory_barrier ();
4147 amodule->methods_loaded [method_index / 32] |= 1 << (method_index % 32);
4149 amodule_unlock (amodule);
4151 if (MONO_PROFILER_ENABLED (jit_begin) || MONO_PROFILER_ENABLED (jit_done)) {
4152 MonoJitInfo *jinfo;
4154 if (!method) {
4155 method = mono_get_method_checked (amodule->assembly->image, token, NULL, NULL, error);
4156 if (!method)
4157 return NULL;
4159 MONO_PROFILER_RAISE (jit_begin, (method));
4160 jinfo = mono_jit_info_table_find (domain, code);
4161 g_assert (jinfo);
4162 MONO_PROFILER_RAISE (jit_done, (method, jinfo));
4165 return code;
4167 cleanup:
4168 if (jinfo)
4169 g_free (jinfo);
4171 return NULL;
4174 /** find_aot_method_in_amodule
4176 * \param code_amodule The AOT module containing the code pointer
4177 * \param method The method to find the code index for
4178 * \param hash_full The hash for the method
4180 static guint32
4181 find_aot_method_in_amodule (MonoAotModule *code_amodule, MonoMethod *method, guint32 hash_full)
4183 ERROR_DECL (error);
4184 guint32 table_size, entry_size, hash;
4185 guint32 *table, *entry;
4186 guint32 index;
4187 static guint32 n_extra_decodes;
4189 // The AOT module containing the MonoMethod
4190 // The reference to the metadata amodule will differ among multiple dedup methods
4191 // which mangle to the same name but live in different assemblies. This leads to
4192 // the caching breaking. The solution seems to be to cache using the "metadata" amodule.
4193 MonoAotModule *metadata_amodule = (MonoAotModule *)m_class_get_image (method->klass)->aot_module;
4195 if (!metadata_amodule || metadata_amodule->out_of_date || !code_amodule || code_amodule->out_of_date)
4196 return 0xffffff;
4198 table_size = code_amodule->extra_method_table [0];
4199 hash = hash_full % table_size;
4200 table = code_amodule->extra_method_table + 1;
4201 entry_size = 3;
4203 entry = &table [hash * entry_size];
4205 if (entry [0] == 0)
4206 return 0xffffff;
4208 index = 0xffffff;
4209 while (TRUE) {
4210 guint32 key = entry [0];
4211 guint32 value = entry [1];
4212 guint32 next = entry [entry_size - 1];
4213 MonoMethod *m;
4214 guint8 *p, *orig_p;
4216 p = code_amodule->blob + key;
4217 orig_p = p;
4219 amodule_lock (metadata_amodule);
4220 if (!metadata_amodule->method_ref_to_method)
4221 metadata_amodule->method_ref_to_method = g_hash_table_new (NULL, NULL);
4222 m = (MonoMethod *)g_hash_table_lookup (metadata_amodule->method_ref_to_method, p);
4223 amodule_unlock (metadata_amodule);
4224 if (!m) {
4225 m = decode_resolve_method_ref_with_target (code_amodule, method, p, &p, error);
4226 mono_error_cleanup (error); /* FIXME don't swallow the error */
4228 * Can't catche runtime invoke wrappers since it would break
4229 * the check in decode_method_ref_with_target ().
4231 if (m && m->wrapper_type != MONO_WRAPPER_RUNTIME_INVOKE) {
4232 amodule_lock (metadata_amodule);
4233 g_hash_table_insert (metadata_amodule->method_ref_to_method, orig_p, m);
4234 amodule_unlock (metadata_amodule);
4237 if (m == method) {
4238 index = value;
4239 break;
4242 /* Methods decoded needlessly */
4243 if (m) {
4244 //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
4245 n_extra_decodes ++;
4248 if (next != 0)
4249 entry = &table [next * entry_size];
4250 else
4251 break;
4254 if (index != 0xffffff)
4255 g_assert (index < code_amodule->info.nmethods);
4257 return index;
4260 static void
4261 add_module_cb (gpointer key, gpointer value, gpointer user_data)
4263 g_ptr_array_add ((GPtrArray*)user_data, value);
4266 gboolean
4267 mono_aot_can_dedup (MonoMethod *method)
4269 gboolean not_normal_gshared = method->is_inflated && !mono_method_is_generic_sharable_full (method, TRUE, FALSE, FALSE);
4270 gboolean extra_method = (method->wrapper_type != MONO_WRAPPER_NONE) || not_normal_gshared;
4272 return extra_method;
4277 * find_aot_method:
4279 * Try finding METHOD in the extra_method table in all AOT images.
4280 * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
4281 * module where the method was found.
4283 static guint32
4284 find_aot_method (MonoMethod *method, MonoAotModule **out_amodule)
4286 guint32 index;
4287 GPtrArray *modules;
4288 int i;
4289 guint32 hash = mono_aot_method_hash (method);
4291 /* Try the place we expect to have moved the method only
4292 * We don't probe, as that causes hard-to-debug issues when we fail
4293 * to find the method */
4294 if (container_amodule && mono_aot_can_dedup (method)) {
4295 *out_amodule = container_amodule;
4296 index = find_aot_method_in_amodule (container_amodule, method, hash);
4297 return index;
4300 /* Try the method's module first */
4301 *out_amodule = (MonoAotModule *)m_class_get_image (method->klass)->aot_module;
4302 index = find_aot_method_in_amodule ((MonoAotModule *)m_class_get_image (method->klass)->aot_module, method, hash);
4303 if (index != 0xffffff)
4304 return index;
4307 * Try all other modules.
4308 * This is needed because generic instances klass->image points to the image
4309 * containing the generic definition, but the native code is generated to the
4310 * AOT image which contains the reference.
4313 /* Make a copy to avoid doing the search inside the aot lock */
4314 modules = g_ptr_array_new ();
4315 mono_aot_lock ();
4316 g_hash_table_foreach (aot_modules, add_module_cb, modules);
4317 mono_aot_unlock ();
4319 index = 0xffffff;
4320 for (i = 0; i < modules->len; ++i) {
4321 MonoAotModule *amodule = (MonoAotModule *)g_ptr_array_index (modules, i);
4323 if (amodule != m_class_get_image (method->klass)->aot_module)
4324 index = find_aot_method_in_amodule (amodule, method, hash);
4325 if (index != 0xffffff) {
4326 *out_amodule = amodule;
4327 break;
4331 g_ptr_array_free (modules, TRUE);
4333 return index;
4336 guint32
4337 mono_aot_find_method_index (MonoMethod *method)
4339 MonoAotModule *out_amodule;
4340 return find_aot_method (method, &out_amodule);
4343 static gboolean
4344 init_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context, MonoError *error)
4346 MonoDomain *domain = mono_domain_get ();
4347 MonoMemPool *mp;
4348 MonoClass *klass_to_run_ctor = NULL;
4349 gboolean from_plt = method == NULL;
4350 int pindex, n_patches;
4351 guint8 *p;
4352 MonoJitInfo *jinfo = NULL;
4353 guint8 *code, *info;
4355 error_init (error);
4357 code = (guint8 *)amodule->methods [method_index];
4358 info = &amodule->blob [mono_aot_get_offset (amodule->method_info_offsets, method_index)];
4360 p = info;
4362 //does the method's class has a cctor?
4363 if (decode_value (p, &p) == 1)
4364 klass_to_run_ctor = decode_klass_ref (amodule, p, &p, error);
4365 if (!is_ok (error))
4366 return FALSE;
4368 //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
4369 if (method)
4370 klass_to_run_ctor = method->klass;
4372 n_patches = decode_value (p, &p);
4374 if (n_patches) {
4375 MonoJumpInfo *patches;
4376 guint32 *got_slots;
4377 gboolean llvm;
4378 gpointer *got;
4380 mp = mono_mempool_new ();
4382 if ((gpointer)code >= amodule->info.jit_code_start && (gpointer)code <= amodule->info.jit_code_end) {
4383 llvm = FALSE;
4384 got = amodule->got;
4385 } else {
4386 llvm = TRUE;
4387 got = amodule->llvm_got;
4388 g_assert (got);
4391 patches = load_patch_info (amodule, mp, n_patches, llvm, &got_slots, p, &p);
4392 if (patches == NULL) {
4393 mono_mempool_destroy (mp);
4394 goto cleanup;
4397 for (pindex = 0; pindex < n_patches; ++pindex) {
4398 MonoJumpInfo *ji = &patches [pindex];
4399 gpointer addr;
4402 * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
4403 * been initialized by load_method () for a static cctor before the cctor has
4404 * finished executing (#23242).
4406 if (!got [got_slots [pindex]] || ji->type == MONO_PATCH_INFO_SFLDA) {
4407 /* In llvm-only made, we might encounter shared methods */
4408 if (mono_llvm_only && ji->type == MONO_PATCH_INFO_METHOD && mono_method_check_context_used (ji->data.method)) {
4409 g_assert (context);
4410 ji->data.method = mono_class_inflate_generic_method_checked (ji->data.method, context, error);
4411 if (!mono_error_ok (error)) {
4412 g_free (got_slots);
4413 mono_mempool_destroy (mp);
4414 return FALSE;
4417 /* This cannot be resolved in mono_resolve_patch_target () */
4418 if (ji->type == MONO_PATCH_INFO_AOT_JIT_INFO) {
4419 // FIXME: Lookup using the index
4420 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4421 ji->type = MONO_PATCH_INFO_ABS;
4422 ji->data.target = jinfo;
4424 addr = mono_resolve_patch_target (method, domain, code, ji, TRUE, error);
4425 if (!mono_error_ok (error)) {
4426 g_free (got_slots);
4427 mono_mempool_destroy (mp);
4428 return FALSE;
4430 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4431 addr = mono_create_ftnptr (domain, addr);
4432 mono_memory_barrier ();
4433 got [got_slots [pindex]] = addr;
4434 if (ji->type == MONO_PATCH_INFO_METHOD_JUMP)
4435 register_jump_target_got_slot (domain, ji->data.method, &(got [got_slots [pindex]]));
4437 ji->type = MONO_PATCH_INFO_NONE;
4440 g_free (got_slots);
4442 mono_mempool_destroy (mp);
4445 if (mini_get_debug_options ()->load_aot_jit_info_eagerly)
4446 jinfo = mono_aot_find_jit_info (domain, amodule->assembly->image, code);
4448 gboolean inited_ok = TRUE;
4449 if (init_class) {
4450 MonoVTable *vt = mono_class_vtable_checked (domain, init_class, error);
4451 if (!is_ok (error))
4452 inited_ok = FALSE;
4453 else
4454 inited_ok = mono_runtime_class_init_full (vt, error);
4455 } else if (from_plt && klass_to_run_ctor && !mono_class_is_gtd (klass_to_run_ctor)) {
4456 MonoVTable *vt = mono_class_vtable_checked (domain, klass_to_run_ctor, error);
4457 if (!is_ok (error))
4458 inited_ok = FALSE;
4459 else
4460 inited_ok = mono_runtime_class_init_full (vt, error);
4462 if (!inited_ok)
4463 return FALSE;
4465 return TRUE;
4467 cleanup:
4468 if (jinfo)
4469 g_free (jinfo);
4471 return FALSE;
4474 static void
4475 init_llvmonly_method (MonoAotModule *amodule, guint32 method_index, MonoMethod *method, MonoClass *init_class, MonoGenericContext *context)
4477 gboolean res;
4478 ERROR_DECL (error);
4480 res = init_method (amodule, method_index, method, init_class, context, error);
4481 if (!is_ok (error)) {
4482 MonoException *ex = mono_error_convert_to_exception (error);
4483 /* Its okay to raise in llvmonly mode */
4484 if (ex)
4485 mono_llvm_throw_exception ((MonoObject*)ex);
4489 void
4490 mono_aot_init_llvm_method (gpointer aot_module, guint32 method_index)
4492 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4494 init_llvmonly_method (amodule, method_index, NULL, NULL, NULL);
4497 void
4498 mono_aot_init_gshared_method_this (gpointer aot_module, guint32 method_index, MonoObject *this_obj)
4500 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4501 MonoClass *klass;
4502 MonoGenericContext *context;
4503 MonoMethod *method;
4505 // FIXME:
4506 g_assert (this_obj);
4507 klass = this_obj->vtable->klass;
4509 amodule_lock (amodule);
4510 method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4511 amodule_unlock (amodule);
4513 g_assert (method);
4514 context = mono_method_get_context (method);
4515 g_assert (context);
4517 init_llvmonly_method (amodule, method_index, NULL, klass, context);
4520 void
4521 mono_aot_init_gshared_method_mrgctx (gpointer aot_module, guint32 method_index, MonoMethodRuntimeGenericContext *rgctx)
4523 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4524 MonoGenericContext context = { NULL, NULL };
4525 MonoClass *klass = rgctx->class_vtable->klass;
4527 if (mono_class_is_ginst (klass))
4528 context.class_inst = mono_class_get_generic_class (klass)->context.class_inst;
4529 else if (mono_class_is_gtd (klass))
4530 context.class_inst = mono_class_get_generic_container (klass)->context.class_inst;
4531 context.method_inst = rgctx->method_inst;
4533 init_llvmonly_method (amodule, method_index, NULL, rgctx->class_vtable->klass, &context);
4536 void
4537 mono_aot_init_gshared_method_vtable (gpointer aot_module, guint32 method_index, MonoVTable *vtable)
4539 MonoAotModule *amodule = (MonoAotModule *)aot_module;
4540 MonoClass *klass;
4541 MonoGenericContext *context;
4542 MonoMethod *method;
4544 klass = vtable->klass;
4546 amodule_lock (amodule);
4547 method = (MonoMethod *)g_hash_table_lookup (amodule->extra_methods, GUINT_TO_POINTER (method_index));
4548 amodule_unlock (amodule);
4550 g_assert (method);
4551 context = mono_method_get_context (method);
4552 g_assert (context);
4554 init_llvmonly_method (amodule, method_index, NULL, klass, context);
4558 * mono_aot_get_method:
4560 * Return a pointer to the AOTed native code for METHOD if it can be found,
4561 * NULL otherwise.
4562 * On platforms with function pointers, this doesn't return a function pointer.
4564 gpointer
4565 mono_aot_get_method (MonoDomain *domain, MonoMethod *method, MonoError *error)
4567 MonoClass *klass = method->klass;
4568 MonoMethod *orig_method = method;
4569 guint32 method_index;
4570 MonoAotModule *amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
4571 guint8 *code;
4572 gboolean cache_result = FALSE;
4573 ERROR_DECL_VALUE (inner_error);
4575 error_init (error);
4577 if (domain != mono_get_root_domain ())
4578 /* Non shared AOT code can't be used in other appdomains */
4579 return NULL;
4581 if (enable_aot_cache && !amodule && domain->entry_assembly && m_class_get_image (klass) == mono_defaults.corlib) {
4582 /* This cannot be AOTed during startup, so do it now */
4583 if (!mscorlib_aot_loaded) {
4584 mscorlib_aot_loaded = TRUE;
4585 load_aot_module (m_class_get_image (klass)->assembly, NULL);
4586 amodule = (MonoAotModule *)m_class_get_image (klass)->aot_module;
4590 if (!amodule)
4591 return NULL;
4593 if (amodule->out_of_date)
4594 return NULL;
4596 if ((method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) ||
4597 (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
4598 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
4599 (method->flags & METHOD_ATTRIBUTE_ABSTRACT))
4600 return NULL;
4603 * Use the original method instead of its invoke-with-check wrapper.
4604 * This is not a problem when using full-aot, since it doesn't support
4605 * remoting.
4607 if (mono_aot_only && method->wrapper_type == MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK)
4608 return mono_aot_get_method (domain, mono_marshal_method_from_wrapper (method), error);
4610 g_assert (m_class_is_inited (klass));
4612 /* Find method index */
4613 method_index = 0xffffff;
4615 gboolean dedupable = mono_aot_can_dedup (method);
4617 if (method->is_inflated && !method->wrapper_type && mono_method_is_generic_sharable_full (method, TRUE, FALSE, FALSE) && !dedupable) {
4618 MonoMethod *orig_method = method;
4620 * For generic methods, we store the fully shared instance in place of the
4621 * original method.
4623 method = mono_method_get_declaring_generic_method (method);
4624 method_index = mono_metadata_token_index (method->token) - 1;
4626 if (mono_llvm_only) {
4627 /* Needed by mono_aot_init_gshared_method_this () */
4628 /* orig_method is a random instance but it is enough to make init_method () work */
4629 amodule_lock (amodule);
4630 g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), orig_method);
4631 amodule_unlock (amodule);
4635 if (method_index == 0xffffff && (method->is_inflated || !method->token)) {
4636 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
4637 amodule_lock (amodule);
4638 code = (guint8 *)g_hash_table_lookup (amodule->method_to_code, method);
4639 amodule_unlock (amodule);
4640 if (code)
4641 return code;
4643 cache_result = TRUE;
4644 if (method_index == 0xffffff)
4645 method_index = find_aot_method (method, &amodule);
4648 * Special case the ICollection<T> wrappers for arrays, as they cannot
4649 * be statically enumerated, and each wrapper ends up calling the same
4650 * method in Array.
4652 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_MANAGED && m_class_get_rank (method->klass) && strstr (method->name, "System.Collections.Generic")) {
4653 MonoMethod *m = mono_aot_get_array_helper_from_wrapper (method);
4655 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4656 mono_error_cleanup (&inner_error);
4657 if (code)
4658 return code;
4662 * Special case Array.GetGenericValueImpl which is a generic icall.
4663 * Generic sharing currently can't handle it, but the icall returns data using
4664 * an out parameter, so the managed-to-native wrappers can share the same code.
4666 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && method->klass == mono_defaults.array_class && !strcmp (method->name, "GetGenericValueImpl")) {
4667 MonoMethod *m;
4668 MonoGenericContext ctx;
4669 MonoType *args [16];
4671 if (mono_method_signature (method)->params [1]->type == MONO_TYPE_OBJECT)
4672 /* Avoid recursion */
4673 return NULL;
4675 m = mono_class_get_method_from_name_checked (mono_defaults.array_class, "GetGenericValueImpl", 2, 0, error);
4676 mono_error_assert_ok (error);
4677 g_assert (m);
4679 memset (&ctx, 0, sizeof (ctx));
4680 args [0] = m_class_get_byval_arg (mono_defaults.object_class);
4681 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4683 m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4684 if (!m)
4685 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4688 * Get the code for the <object> instantiation which should be emitted into
4689 * the mscorlib aot image by the AOT compiler.
4691 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4692 mono_error_cleanup (&inner_error);
4693 if (code)
4694 return code;
4697 const char *klass_name_space = m_class_get_name_space (method->klass);
4698 const char *klass_name = m_class_get_name (method->klass);
4699 /* Same for CompareExchange<T> and Exchange<T> */
4700 /* Same for Volatile.Read<T>/Write<T> */
4701 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE && m_class_get_image (method->klass) == mono_defaults.corlib &&
4702 ((!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]))) ||
4703 (!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)))) ||
4704 (!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])))))) {
4705 MonoMethod *m;
4706 MonoGenericContext ctx;
4707 MonoType *args [16];
4708 gpointer iter = NULL;
4710 while ((m = mono_class_get_methods (method->klass, &iter))) {
4711 if (mono_method_signature (m)->generic_param_count && !strcmp (m->name, method->name))
4712 break;
4714 g_assert (m);
4716 memset (&ctx, 0, sizeof (ctx));
4717 args [0] = mono_get_object_type ();
4718 ctx.method_inst = mono_metadata_get_generic_inst (1, args);
4720 m = mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m, &ctx, error), TRUE, TRUE);
4721 if (!m)
4722 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error)); /* FIXME don't swallow the error */
4724 /* Avoid recursion */
4725 if (method == m)
4726 return NULL;
4729 * Get the code for the <object> instantiation which should be emitted into
4730 * the mscorlib aot image by the AOT compiler.
4732 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4733 mono_error_cleanup (&inner_error);
4734 if (code)
4735 return code;
4738 /* For ARRAY_ACCESSOR wrappers with reference types, use the <object> instantiation saved in corlib */
4739 if (method_index == 0xffffff && method->wrapper_type == MONO_WRAPPER_UNKNOWN) {
4740 WrapperInfo *info = mono_marshal_get_wrapper_info (method);
4742 if (info->subtype == WRAPPER_SUBTYPE_ARRAY_ACCESSOR) {
4743 MonoMethod *array_method = info->d.array_accessor.method;
4744 if (MONO_TYPE_IS_REFERENCE (m_class_get_byval_arg (m_class_get_element_class (array_method->klass)))) {
4745 int rank;
4747 if (!strcmp (array_method->name, "Set"))
4748 rank = mono_method_signature (array_method)->param_count - 1;
4749 else if (!strcmp (array_method->name, "Get") || !strcmp (array_method->name, "Address"))
4750 rank = mono_method_signature (array_method)->param_count;
4751 else
4752 g_assert_not_reached ();
4753 MonoClass *obj_array_class = mono_class_create_array (mono_defaults.object_class, rank);
4754 MonoMethod *m = mono_class_get_method_from_name_checked (obj_array_class, array_method->name, mono_method_signature (array_method)->param_count, 0, error);
4755 mono_error_assert_ok (error);
4756 g_assert (m);
4758 m = mono_marshal_get_array_accessor_wrapper (m);
4759 if (m != method) {
4760 code = (guint8 *)mono_aot_get_method (domain, m, &inner_error);
4761 mono_error_cleanup (&inner_error);
4762 if (code)
4763 return code;
4769 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
4770 /* Partial sharing */
4771 MonoMethod *shared;
4773 shared = mini_get_shared_method_full (method, SHARE_MODE_NONE, error);
4774 return_val_if_nok (error, NULL);
4776 method_index = find_aot_method (shared, &amodule);
4777 if (method_index != 0xffffff)
4778 method = shared;
4781 if (method_index == 0xffffff && method->is_inflated && mono_method_is_generic_sharable_full (method, FALSE, FALSE, TRUE)) {
4782 MonoMethod *shared;
4783 /* gsharedvt */
4784 /* Use the all-vt shared method since this is what was AOTed */
4785 shared = mini_get_shared_method_full (method, SHARE_MODE_GSHAREDVT, error);
4786 if (!shared)
4787 return NULL;
4789 method_index = find_aot_method (shared, &amodule);
4790 if (method_index != 0xffffff) {
4791 method = mini_get_shared_method_full (method, SHARE_MODE_GSHAREDVT, error);
4792 if (!method)
4793 return NULL;
4797 if (method_index == 0xffffff) {
4798 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT)) {
4799 char *full_name;
4801 full_name = mono_method_full_name (method, TRUE);
4802 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT NOT FOUND: %s.", full_name);
4803 g_free (full_name);
4805 return NULL;
4808 if (method_index == 0xffffff)
4809 return NULL;
4811 /* Needed by find_jit_info */
4812 amodule_lock (amodule);
4813 g_hash_table_insert (amodule->extra_methods, GUINT_TO_POINTER (method_index), method);
4814 amodule_unlock (amodule);
4815 } else {
4816 /* Common case */
4817 method_index = mono_metadata_token_index (method->token) - 1;
4820 code = (guint8 *)load_method (domain, amodule, m_class_get_image (klass), method, method->token, method_index, error);
4821 if (!is_ok (error))
4822 return NULL;
4823 if (code && cache_result) {
4824 amodule_lock (amodule);
4825 g_hash_table_insert (amodule->method_to_code, orig_method, code);
4826 amodule_unlock (amodule);
4828 return code;
4832 * Same as mono_aot_get_method, but we try to avoid loading any metadata from the
4833 * method.
4835 gpointer
4836 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token, MonoError *error)
4838 MonoAotModule *aot_module = (MonoAotModule *)image->aot_module;
4839 int method_index;
4840 gpointer res;
4842 error_init (error);
4844 if (!aot_module)
4845 return NULL;
4847 method_index = mono_metadata_token_index (token) - 1;
4849 res = load_method (domain, aot_module, image, NULL, token, method_index, error);
4850 return res;
4853 typedef struct {
4854 guint8 *addr;
4855 gboolean res;
4856 } IsGotEntryUserData;
4858 static void
4859 check_is_got_entry (gpointer key, gpointer value, gpointer user_data)
4861 IsGotEntryUserData *data = (IsGotEntryUserData*)user_data;
4862 MonoAotModule *aot_module = (MonoAotModule*)value;
4864 if (aot_module->got && (data->addr >= (guint8*)(aot_module->got)) && (data->addr < (guint8*)(aot_module->got + aot_module->info.got_size)))
4865 data->res = TRUE;
4868 gboolean
4869 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
4871 IsGotEntryUserData user_data;
4873 if (!aot_modules)
4874 return FALSE;
4876 user_data.addr = addr;
4877 user_data.res = FALSE;
4878 mono_aot_lock ();
4879 g_hash_table_foreach (aot_modules, check_is_got_entry, &user_data);
4880 mono_aot_unlock ();
4882 return user_data.res;
4885 typedef struct {
4886 guint8 *addr;
4887 MonoAotModule *module;
4888 } FindAotModuleUserData;
4890 static void
4891 find_aot_module_cb (gpointer key, gpointer value, gpointer user_data)
4893 FindAotModuleUserData *data = (FindAotModuleUserData*)user_data;
4894 MonoAotModule *aot_module = (MonoAotModule*)value;
4896 if (amodule_contains_code_addr (aot_module, data->addr))
4897 data->module = aot_module;
4900 static inline MonoAotModule*
4901 find_aot_module (guint8 *code)
4903 FindAotModuleUserData user_data;
4905 if (!aot_modules)
4906 return NULL;
4908 /* Reading these need no locking */
4909 if (((gsize)code < aot_code_low_addr) || ((gsize)code > aot_code_high_addr))
4910 return NULL;
4912 user_data.addr = code;
4913 user_data.module = NULL;
4915 mono_aot_lock ();
4916 g_hash_table_foreach (aot_modules, find_aot_module_cb, &user_data);
4917 mono_aot_unlock ();
4919 return user_data.module;
4922 void
4923 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
4925 MonoAotModule *amodule;
4928 * Since AOT code is only used in the root domain,
4929 * mono_domain_get () != mono_get_root_domain () means the calling method
4930 * is AppDomain:InvokeInDomain, so this is the same check as in
4931 * mono_method_same_domain () but without loading the metadata for the method.
4933 if (mono_domain_get () == mono_get_root_domain ()) {
4934 if (!got) {
4935 amodule = find_aot_module (code);
4936 if (amodule)
4937 got = amodule->got;
4939 mono_arch_patch_plt_entry (plt_entry, got, regs, addr);
4944 * mono_aot_plt_resolve:
4946 * This function is called by the entries in the PLT to resolve the actual method that
4947 * needs to be called. It returns a trampoline to the method and patches the PLT entry.
4948 * Returns NULL if the something cannot be loaded.
4950 gpointer
4951 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code, MonoError *error)
4953 #ifdef MONO_ARCH_AOT_SUPPORTED
4954 guint8 *p, *target, *plt_entry;
4955 MonoJumpInfo ji;
4956 MonoAotModule *module = (MonoAotModule*)aot_module;
4957 gboolean res, no_ftnptr = FALSE;
4958 MonoMemPool *mp;
4959 gboolean using_gsharedvt = FALSE;
4961 error_init (error);
4963 //printf ("DYN: %p %d\n", aot_module, plt_info_offset);
4965 p = &module->blob [plt_info_offset];
4967 ji.type = (MonoJumpInfoType)decode_value (p, &p);
4969 mp = mono_mempool_new ();
4970 res = decode_patch (module, mp, &ji, p, &p);
4972 if (!res) {
4973 mono_mempool_destroy (mp);
4974 return NULL;
4977 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
4978 using_gsharedvt = TRUE;
4979 #endif
4982 * Avoid calling resolve_patch_target in the full-aot case if possible, since
4983 * it would create a trampoline, and we don't need that.
4984 * We could do this only if the method does not need the special handling
4985 * in mono_magic_trampoline ().
4987 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) &&
4988 !mono_method_needs_static_rgctx_invoke (ji.data.method, FALSE) && !using_gsharedvt) {
4989 target = (guint8 *)mono_jit_compile_method (ji.data.method, error);
4990 if (!mono_error_ok (error)) {
4991 mono_mempool_destroy (mp);
4992 return NULL;
4994 no_ftnptr = TRUE;
4995 } else {
4996 target = (guint8 *)mono_resolve_patch_target (NULL, mono_domain_get (), NULL, &ji, TRUE, error);
4997 if (!mono_error_ok (error)) {
4998 mono_mempool_destroy (mp);
4999 return NULL;
5004 * The trampoline expects us to return a function descriptor on platforms which use
5005 * it, but resolve_patch_target returns a direct function pointer for some type of
5006 * patches, so have to translate between the two.
5007 * FIXME: Clean this up, but how ?
5009 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) {
5010 /* These should already have a function descriptor */
5011 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
5012 /* Our function descriptors have a 0 environment, gcc created ones don't */
5013 if (ji.type != MONO_PATCH_INFO_INTERNAL_METHOD && ji.type != MONO_PATCH_INFO_JIT_ICALL_ADDR && ji.type != MONO_PATCH_INFO_ICALL_ADDR)
5014 g_assert (((gpointer*)target) [2] == 0);
5015 #endif
5016 /* Empty */
5017 } else if (!no_ftnptr) {
5018 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
5019 g_assert (((gpointer*)target) [2] != 0);
5020 #endif
5021 target = (guint8 *)mono_create_ftnptr (mono_domain_get (), target);
5024 mono_mempool_destroy (mp);
5026 /* Patch the PLT entry with target which might be the actual method not a trampoline */
5027 plt_entry = mono_aot_get_plt_entry (code);
5028 g_assert (plt_entry);
5029 mono_aot_patch_plt_entry (code, plt_entry, module->got, NULL, target);
5031 return target;
5032 #else
5033 g_assert_not_reached ();
5034 return NULL;
5035 #endif
5039 * init_plt:
5041 * Initialize the PLT table of the AOT module. Called lazily when the first AOT
5042 * method in the module is loaded to avoid committing memory by writing to it.
5043 * LOCKING: Assumes the AMODULE lock is held.
5045 static void
5046 init_plt (MonoAotModule *amodule)
5048 int i;
5049 gpointer tramp;
5051 if (amodule->plt_inited)
5052 return;
5054 if (amodule->info.plt_size <= 1) {
5055 amodule->plt_inited = TRUE;
5056 return;
5059 tramp = mono_create_specific_trampoline (amodule, MONO_TRAMPOLINE_AOT_PLT, mono_get_root_domain (), NULL);
5062 * Initialize the PLT entries in the GOT to point to the default targets.
5065 tramp = mono_create_ftnptr (mono_domain_get (), tramp);
5066 for (i = 1; i < amodule->info.plt_size; ++i)
5067 /* All the default entries point to the AOT trampoline */
5068 ((gpointer*)amodule->got)[amodule->info.plt_got_offset_base + i] = tramp;
5070 amodule->plt_inited = TRUE;
5074 * mono_aot_get_plt_entry:
5076 * Return the address of the PLT entry called by the code at CODE if exists.
5078 guint8*
5079 mono_aot_get_plt_entry (guint8 *code)
5081 MonoAotModule *amodule = find_aot_module (code);
5082 guint8 *target = NULL;
5084 if (!amodule)
5085 return NULL;
5087 #ifdef TARGET_ARM
5088 if (is_thumb_code (amodule, code - 4))
5089 return mono_arm_get_thumb_plt_entry (code);
5090 #endif
5092 #ifdef MONO_ARCH_AOT_SUPPORTED
5093 target = mono_arch_get_call_target (code);
5094 #else
5095 g_assert_not_reached ();
5096 #endif
5098 #ifdef MONOTOUCH
5099 while (target != NULL) {
5100 if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
5101 return target;
5103 // Add 4 since mono_arch_get_call_target assumes we're passing
5104 // the instruction after the actual branch instruction.
5105 target = mono_arch_get_call_target (target + 4);
5108 return NULL;
5109 #else
5110 if ((target >= (guint8*)(amodule->plt)) && (target < (guint8*)(amodule->plt_end)))
5111 return target;
5112 else
5113 return NULL;
5114 #endif
5118 * mono_aot_get_plt_info_offset:
5120 * Return the PLT info offset belonging to the plt entry called by CODE.
5122 guint32
5123 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
5125 guint8 *plt_entry = mono_aot_get_plt_entry (code);
5127 g_assert (plt_entry);
5129 /* The offset is embedded inside the code after the plt entry */
5130 #ifdef MONO_ARCH_AOT_SUPPORTED
5131 return mono_arch_get_plt_info_offset (plt_entry, regs, code);
5132 #else
5133 g_assert_not_reached ();
5134 return 0;
5135 #endif
5138 static gpointer
5139 mono_create_ftnptr_malloc (guint8 *code)
5141 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
5142 MonoPPCFunctionDescriptor *ftnptr = g_malloc0 (sizeof (MonoPPCFunctionDescriptor));
5144 ftnptr->code = code;
5145 ftnptr->toc = NULL;
5146 ftnptr->env = NULL;
5148 return ftnptr;
5149 #else
5150 return code;
5151 #endif
5155 * mono_aot_register_jit_icall:
5157 * Register a JIT icall which is called by trampolines in full-aot mode. This should
5158 * be called from mono_arch_init () during startup.
5160 void
5161 mono_aot_register_jit_icall (const char *name, gpointer addr)
5163 /* No need for locking */
5164 if (!aot_jit_icall_hash)
5165 aot_jit_icall_hash = g_hash_table_new (g_str_hash, g_str_equal);
5166 g_hash_table_insert (aot_jit_icall_hash, (char*)name, addr);
5170 * load_function_full:
5172 * Load the function named NAME from the aot image.
5174 static gpointer
5175 load_function_full (MonoAotModule *amodule, const char *name, MonoTrampInfo **out_tinfo)
5177 char *symbol;
5178 guint8 *p;
5179 int n_patches, pindex;
5180 MonoMemPool *mp;
5181 gpointer code;
5182 guint32 info_offset;
5184 /* Load the code */
5186 symbol = g_strdup_printf ("%s", name);
5187 find_amodule_symbol (amodule, symbol, (gpointer *)&code);
5188 g_free (symbol);
5189 if (!code)
5190 g_error ("Symbol '%s' not found in AOT file '%s'.\n", name, amodule->aot_name);
5192 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_AOT, "AOT: FOUND function '%s' in AOT file '%s'.", name, amodule->aot_name);
5194 /* Load info */
5196 symbol = g_strdup_printf ("%s_p", name);
5197 find_amodule_symbol (amodule, symbol, (gpointer *)&p);
5198 g_free (symbol);
5199 if (!p)
5200 /* Nothing to patch */
5201 return code;
5203 info_offset = *(guint32*)p;
5204 if (out_tinfo) {
5205 MonoTrampInfo *tinfo;
5206 guint32 code_size, uw_info_len, uw_offset;
5207 guint8 *uw_info;
5208 /* Construct a MonoTrampInfo from the data in the AOT image */
5210 p += sizeof (guint32);
5211 code_size = *(guint32*)p;
5212 p += sizeof (guint32);
5213 uw_offset = *(guint32*)p;
5214 uw_info = amodule->unwind_info + uw_offset;
5215 uw_info_len = decode_value (uw_info, &uw_info);
5217 tinfo = g_new0 (MonoTrampInfo, 1);
5218 tinfo->code = (guint8 *)code;
5219 tinfo->code_size = code_size;
5220 tinfo->uw_info_len = uw_info_len;
5221 if (uw_info_len)
5222 tinfo->uw_info = uw_info;
5224 *out_tinfo = tinfo;
5227 p = amodule->blob + info_offset;
5229 /* Similar to mono_aot_load_method () */
5231 n_patches = decode_value (p, &p);
5233 if (n_patches) {
5234 MonoJumpInfo *patches;
5235 guint32 *got_slots;
5237 mp = mono_mempool_new ();
5239 patches = load_patch_info (amodule, mp, n_patches, FALSE, &got_slots, p, &p);
5240 g_assert (patches);
5242 for (pindex = 0; pindex < n_patches; ++pindex) {
5243 MonoJumpInfo *ji = &patches [pindex];
5244 ERROR_DECL (error);
5245 gpointer target;
5247 if (amodule->got [got_slots [pindex]])
5248 continue;
5251 * When this code is executed, the runtime may not be initalized yet, so
5252 * resolve the patch info by hand.
5254 if (ji->type == MONO_PATCH_INFO_JIT_ICALL_ADDR) {
5255 if (!strcmp (ji->data.name, "mono_get_lmf_addr")) {
5256 target = mono_get_lmf_addr;
5257 } else if (!strcmp (ji->data.name, "mono_thread_force_interruption_checkpoint_noraise")) {
5258 target = mono_thread_force_interruption_checkpoint_noraise;
5259 } else if (!strcmp (ji->data.name, "mono_exception_from_token")) {
5260 target = mono_exception_from_token;
5261 } else if (!strcmp (ji->data.name, "mono_throw_exception")) {
5262 target = mono_get_throw_exception ();
5263 } else if (strstr (ji->data.name, "trampoline_func_") == ji->data.name) {
5264 MonoTrampolineType tramp_type2 = (MonoTrampolineType)atoi (ji->data.name + strlen ("trampoline_func_"));
5265 target = (gpointer)mono_get_trampoline_func (tramp_type2);
5266 } else if (strstr (ji->data.name, "specific_trampoline_lazy_fetch_") == ji->data.name) {
5267 /* atoll is needed because the the offset is unsigned */
5268 guint32 slot;
5269 int res;
5271 res = sscanf (ji->data.name, "specific_trampoline_lazy_fetch_%u", &slot);
5272 g_assert (res == 1);
5273 target = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
5274 target = mono_create_ftnptr_malloc ((guint8 *)target);
5275 } else if (!strcmp (ji->data.name, "debugger_agent_single_step_from_context")) {
5276 target = mini_get_dbg_callbacks ()->single_step_from_context;
5277 } else if (!strcmp (ji->data.name, "debugger_agent_breakpoint_from_context")) {
5278 target = mini_get_dbg_callbacks ()->breakpoint_from_context;
5279 } else if (!strcmp (ji->data.name, "throw_exception_addr")) {
5280 target = mono_get_throw_exception_addr ();
5281 } else if (strstr (ji->data.name, "generic_trampoline_")) {
5282 target = mono_aot_get_trampoline (ji->data.name);
5283 } else if (aot_jit_icall_hash && g_hash_table_lookup (aot_jit_icall_hash, ji->data.name)) {
5284 /* Registered by mono_arch_init () */
5285 target = g_hash_table_lookup (aot_jit_icall_hash, ji->data.name);
5286 } else {
5287 fprintf (stderr, "Unknown relocation '%s'\n", ji->data.name);
5288 g_assert_not_reached ();
5289 target = NULL;
5291 } else {
5292 /* Hopefully the code doesn't have patches which need method or
5293 * domain to be set.
5295 target = mono_resolve_patch_target (NULL, NULL, (guint8 *)code, ji, FALSE, error);
5296 mono_error_assert_ok (error);
5297 g_assert (target);
5300 amodule->got [got_slots [pindex]] = target;
5303 g_free (got_slots);
5305 mono_mempool_destroy (mp);
5308 return code;
5311 static gpointer
5312 load_function (MonoAotModule *amodule, const char *name)
5314 return load_function_full (amodule, name, NULL);
5317 static MonoAotModule*
5318 get_mscorlib_aot_module (void)
5320 MonoImage *image;
5321 MonoAotModule *amodule;
5323 image = mono_defaults.corlib;
5324 if (image)
5325 amodule = (MonoAotModule *)image->aot_module;
5326 else
5327 amodule = mscorlib_aot_module;
5328 g_assert (amodule);
5329 return amodule;
5332 static void
5333 no_trampolines (void)
5335 g_assert_not_reached ();
5339 * Return the trampoline identified by NAME from the mscorlib AOT file.
5340 * On ppc64, this returns a function descriptor.
5342 gpointer
5343 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
5345 MonoAotModule *amodule = get_mscorlib_aot_module ();
5347 if (mono_llvm_only) {
5348 *out_tinfo = NULL;
5349 return no_trampolines;
5352 return mono_create_ftnptr_malloc ((guint8 *)load_function_full (amodule, name, out_tinfo));
5355 gpointer
5356 mono_aot_get_trampoline (const char *name)
5358 MonoTrampInfo *out_tinfo;
5359 gpointer code;
5361 code = mono_aot_get_trampoline_full (name, &out_tinfo);
5362 mono_aot_tramp_info_register (out_tinfo, NULL);
5364 return code;
5367 static gpointer
5368 read_unwind_info (MonoAotModule *amodule, MonoTrampInfo *info, const char *symbol_name)
5370 gpointer symbol_addr;
5371 guint32 uw_offset, uw_info_len;
5372 guint8 *uw_info;
5374 find_amodule_symbol (amodule, symbol_name, &symbol_addr);
5376 if (!symbol_addr)
5377 return NULL;
5379 uw_offset = *(guint32*)symbol_addr;
5380 uw_info = amodule->unwind_info + uw_offset;
5381 uw_info_len = decode_value (uw_info, &uw_info);
5383 info->uw_info_len = uw_info_len;
5384 if (uw_info_len)
5385 info->uw_info = uw_info;
5386 else
5387 info->uw_info = NULL;
5389 /* If successful return the address of the following data */
5390 return (guint32*)symbol_addr + 1;
5393 #ifdef MONOTOUCH
5394 #include <mach/mach.h>
5396 static TrampolinePage* trampoline_pages [MONO_AOT_TRAMP_NUM];
5398 static void
5399 read_page_trampoline_uwinfo (MonoTrampInfo *info, int tramp_type, gboolean is_generic)
5401 char symbol_name [128];
5403 if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
5404 sprintf (symbol_name, "specific_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5405 else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
5406 sprintf (symbol_name, "rgctx_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5407 else if (tramp_type == MONO_AOT_TRAMP_IMT)
5408 sprintf (symbol_name, "imt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5409 else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
5410 sprintf (symbol_name, "gsharedvt_trampolines_page_%s_p", is_generic ? "gen" : "sp");
5411 else
5412 g_assert_not_reached ();
5414 read_unwind_info (mono_defaults.corlib->aot_module, info, symbol_name);
5417 static unsigned char*
5418 get_new_trampoline_from_page (int tramp_type)
5420 MonoAotModule *amodule;
5421 MonoImage *image;
5422 TrampolinePage *page;
5423 int count;
5424 void *tpage;
5425 vm_address_t addr, taddr;
5426 kern_return_t ret;
5427 vm_prot_t prot, max_prot;
5428 int psize, specific_trampoline_size;
5429 unsigned char *code;
5431 specific_trampoline_size = 2 * sizeof (gpointer);
5433 mono_aot_page_lock ();
5434 page = trampoline_pages [tramp_type];
5435 if (page && page->trampolines < page->trampolines_end) {
5436 code = page->trampolines;
5437 page->trampolines += specific_trampoline_size;
5438 mono_aot_page_unlock ();
5439 return code;
5441 mono_aot_page_unlock ();
5442 /* the trampoline template page is in the mscorlib module */
5443 image = mono_defaults.corlib;
5444 g_assert (image);
5446 psize = MONO_AOT_TRAMP_PAGE_SIZE;
5448 amodule = image->aot_module;
5449 g_assert (amodule);
5451 if (tramp_type == MONO_AOT_TRAMP_SPECIFIC)
5452 tpage = load_function (amodule, "specific_trampolines_page");
5453 else if (tramp_type == MONO_AOT_TRAMP_STATIC_RGCTX)
5454 tpage = load_function (amodule, "rgctx_trampolines_page");
5455 else if (tramp_type == MONO_AOT_TRAMP_IMT)
5456 tpage = load_function (amodule, "imt_trampolines_page");
5457 else if (tramp_type == MONO_AOT_TRAMP_GSHAREDVT_ARG)
5458 tpage = load_function (amodule, "gsharedvt_arg_trampolines_page");
5459 else
5460 g_error ("Incorrect tramp type for trampolines page");
5461 g_assert (tpage);
5462 /*g_warning ("loaded trampolines page at %x", tpage);*/
5464 /* avoid the unlikely case of looping forever */
5465 count = 40;
5466 page = NULL;
5467 while (page == NULL && count-- > 0) {
5468 MonoTrampInfo *gen_info, *sp_info;
5470 addr = 0;
5471 /* allocate two contiguous pages of memory: the first page will contain the data (like a local constant pool)
5472 * while the second will contain the trampolines.
5474 do {
5475 ret = vm_allocate (mach_task_self (), &addr, psize * 2, VM_FLAGS_ANYWHERE);
5476 } while (ret == KERN_ABORTED);
5477 if (ret != KERN_SUCCESS) {
5478 g_error ("Cannot allocate memory for trampolines: %d", ret);
5479 break;
5481 /*g_warning ("allocated trampoline double page at %x", addr);*/
5482 /* replace the second page with a remapped trampoline page */
5483 taddr = addr + psize;
5484 vm_deallocate (mach_task_self (), taddr, psize);
5485 ret = vm_remap (mach_task_self (), &taddr, psize, 0, FALSE, mach_task_self(), (vm_address_t)tpage, FALSE, &prot, &max_prot, VM_INHERIT_SHARE);
5486 if (ret != KERN_SUCCESS) {
5487 /* someone else got the page, try again */
5488 vm_deallocate (mach_task_self (), addr, psize);
5489 continue;
5491 /*g_warning ("remapped trampoline page at %x", taddr);*/
5493 mono_aot_page_lock ();
5494 page = trampoline_pages [tramp_type];
5495 /* some other thread already allocated, so use that to avoid wasting memory */
5496 if (page && page->trampolines < page->trampolines_end) {
5497 code = page->trampolines;
5498 page->trampolines += specific_trampoline_size;
5499 mono_aot_page_unlock ();
5500 vm_deallocate (mach_task_self (), addr, psize);
5501 vm_deallocate (mach_task_self (), taddr, psize);
5502 return code;
5504 page = (TrampolinePage*)addr;
5505 page->next = trampoline_pages [tramp_type];
5506 trampoline_pages [tramp_type] = page;
5507 page->trampolines = (void*)(taddr + amodule->info.tramp_page_code_offsets [tramp_type]);
5508 page->trampolines_end = (void*)(taddr + psize - 64);
5509 code = page->trampolines;
5510 page->trampolines += specific_trampoline_size;
5511 mono_aot_page_unlock ();
5513 /* Register the generic part at the beggining of the trampoline page */
5514 gen_info = mono_tramp_info_create (NULL, (guint8*)taddr, amodule->info.tramp_page_code_offsets [tramp_type], NULL, NULL);
5515 read_page_trampoline_uwinfo (gen_info, tramp_type, TRUE);
5516 mono_aot_tramp_info_register (gen_info, NULL);
5518 * FIXME
5519 * Registering each specific trampoline produces a lot of
5520 * MonoJitInfo structures. Jump trampolines are also registered
5521 * separately.
5523 if (tramp_type != MONO_AOT_TRAMP_SPECIFIC) {
5524 /* Register the rest of the page as a single trampoline */
5525 sp_info = mono_tramp_info_create (NULL, code, page->trampolines_end - code, NULL, NULL);
5526 read_page_trampoline_uwinfo (sp_info, tramp_type, FALSE);
5527 mono_aot_tramp_info_register (sp_info, NULL);
5529 return code;
5531 g_error ("Cannot allocate more trampoline pages: %d", ret);
5532 return NULL;
5535 #else
5536 static unsigned char*
5537 get_new_trampoline_from_page (int tramp_type)
5539 g_error ("Page trampolines not supported.");
5540 return NULL;
5542 #endif
5545 static gpointer
5546 get_new_specific_trampoline_from_page (gpointer tramp, gpointer arg)
5548 void *code;
5549 gpointer *data;
5551 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_SPECIFIC);
5553 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5554 data [0] = arg;
5555 data [1] = tramp;
5556 /*g_warning ("new trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5557 return code;
5561 static gpointer
5562 get_new_rgctx_trampoline_from_page (gpointer tramp, gpointer arg)
5564 void *code;
5565 gpointer *data;
5567 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_STATIC_RGCTX);
5569 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5570 data [0] = arg;
5571 data [1] = tramp;
5572 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5573 return code;
5577 static gpointer
5578 get_new_imt_trampoline_from_page (gpointer arg)
5580 void *code;
5581 gpointer *data;
5583 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_IMT);
5585 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5586 data [0] = arg;
5587 /*g_warning ("new imt trampoline at %p for data %p, (stored at %p)", code, arg, data);*/
5588 return code;
5592 static gpointer
5593 get_new_gsharedvt_arg_trampoline_from_page (gpointer tramp, gpointer arg)
5595 void *code;
5596 gpointer *data;
5598 code = get_new_trampoline_from_page (MONO_AOT_TRAMP_GSHAREDVT_ARG);
5600 data = (gpointer*)((char*)code - MONO_AOT_TRAMP_PAGE_SIZE);
5601 data [0] = arg;
5602 data [1] = tramp;
5603 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5604 return code;
5607 /* Return a given kind of trampoline */
5608 /* FIXME set unwind info for these trampolines */
5609 static gpointer
5610 get_numerous_trampoline (MonoAotTrampoline tramp_type, int n_got_slots, MonoAotModule **out_amodule, guint32 *got_offset, guint32 *out_tramp_size)
5612 MonoImage *image;
5613 MonoAotModule *amodule = get_mscorlib_aot_module ();
5614 int index, tramp_size;
5616 /* Currently, we keep all trampolines in the mscorlib AOT image */
5617 image = mono_defaults.corlib;
5619 *out_amodule = amodule;
5621 mono_aot_lock ();
5623 #ifdef MONOTOUCH
5624 #define MONOTOUCH_TRAMPOLINES_ERROR ". See http://docs.xamarin.com/ios/troubleshooting for instructions on how to fix this condition."
5625 #else
5626 #define MONOTOUCH_TRAMPOLINES_ERROR ""
5627 #endif
5628 if (amodule->trampoline_index [tramp_type] == amodule->info.num_trampolines [tramp_type]) {
5629 g_error ("Ran out of trampolines of type %d in '%s' (limit %d)%s\n",
5630 tramp_type, image ? image->name : "mscorlib", amodule->info.num_trampolines [tramp_type], MONOTOUCH_TRAMPOLINES_ERROR);
5632 index = amodule->trampoline_index [tramp_type] ++;
5634 mono_aot_unlock ();
5636 *got_offset = amodule->info.trampoline_got_offset_base [tramp_type] + (index * n_got_slots);
5638 tramp_size = amodule->info.trampoline_size [tramp_type];
5640 if (out_tramp_size)
5641 *out_tramp_size = tramp_size;
5643 return amodule->trampolines [tramp_type] + (index * tramp_size);
5646 static void
5647 no_specific_trampoline (void)
5649 g_assert_not_reached ();
5653 * Return a specific trampoline from the AOT file.
5655 gpointer
5656 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
5658 MonoAotModule *amodule;
5659 guint32 got_offset, tramp_size;
5660 guint8 *code, *tramp;
5661 static gpointer generic_trampolines [MONO_TRAMPOLINE_NUM];
5662 static gboolean inited;
5663 static guint32 num_trampolines;
5665 if (mono_llvm_only) {
5666 *code_len = 1;
5667 return no_specific_trampoline;
5670 if (!inited) {
5671 mono_aot_lock ();
5673 if (!inited) {
5674 mono_counters_register ("Specific trampolines", MONO_COUNTER_JIT | MONO_COUNTER_INT, &num_trampolines);
5675 inited = TRUE;
5678 mono_aot_unlock ();
5681 num_trampolines ++;
5683 if (!generic_trampolines [tramp_type]) {
5684 char *symbol;
5686 symbol = mono_get_generic_trampoline_name (tramp_type);
5687 generic_trampolines [tramp_type] = mono_aot_get_trampoline (symbol);
5688 g_free (symbol);
5691 tramp = (guint8 *)generic_trampolines [tramp_type];
5692 g_assert (tramp);
5694 if (USE_PAGE_TRAMPOLINES) {
5695 code = (guint8 *)get_new_specific_trampoline_from_page (tramp, arg1);
5696 tramp_size = 8;
5697 } else {
5698 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_SPECIFIC, 2, &amodule, &got_offset, &tramp_size);
5700 amodule->got [got_offset] = tramp;
5701 amodule->got [got_offset + 1] = arg1;
5704 if (code_len)
5705 *code_len = tramp_size;
5707 return code;
5710 gpointer
5711 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
5713 MonoAotModule *amodule;
5714 guint8 *code;
5715 guint32 got_offset;
5717 if (USE_PAGE_TRAMPOLINES) {
5718 code = (guint8 *)get_new_rgctx_trampoline_from_page (addr, ctx);
5719 } else {
5720 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_STATIC_RGCTX, 2, &amodule, &got_offset, NULL);
5722 amodule->got [got_offset] = ctx;
5723 amodule->got [got_offset + 1] = addr;
5726 /* The caller expects an ftnptr */
5727 return mono_create_ftnptr (mono_domain_get (), code);
5730 gpointer
5731 mono_aot_get_unbox_trampoline (MonoMethod *method)
5733 ERROR_DECL (error);
5734 guint32 method_index = mono_metadata_token_index (method->token) - 1;
5735 MonoAotModule *amodule;
5736 gpointer code;
5737 guint32 *ut, *ut_end, *entry;
5738 int low, high, entry_index = 0;
5739 gpointer symbol_addr;
5740 MonoTrampInfo *tinfo;
5742 if (method->is_inflated && !mono_method_is_generic_sharable_full (method, FALSE, FALSE, FALSE)) {
5743 method_index = find_aot_method (method, &amodule);
5744 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, FALSE)) {
5745 MonoMethod *shared = mini_get_shared_method_full (method, SHARE_MODE_NONE, error);
5746 mono_error_assert_ok (error);
5747 method_index = find_aot_method (shared, &amodule);
5749 if (method_index == 0xffffff && mono_method_is_generic_sharable_full (method, FALSE, TRUE, TRUE)) {
5750 MonoMethod *shared = mini_get_shared_method_full (method, SHARE_MODE_GSHAREDVT, error);
5751 mono_error_assert_ok (error);
5753 method_index = find_aot_method (shared, &amodule);
5755 g_assert (method_index != 0xffffff);
5756 } else {
5757 amodule = (MonoAotModule *)m_class_get_image (method->klass)->aot_module;
5758 g_assert (amodule);
5761 if (amodule->info.llvm_get_unbox_tramp) {
5762 gpointer (*get_tramp) (int) = (gpointer (*)(int))amodule->info.llvm_get_unbox_tramp;
5763 code = get_tramp (method_index);
5765 if (code)
5766 return code;
5769 ut = amodule->unbox_trampolines;
5770 ut_end = amodule->unbox_trampolines_end;
5772 /* Do a binary search in the sorted table */
5773 code = NULL;
5774 low = 0;
5775 high = (ut_end - ut);
5776 while (low < high) {
5777 entry_index = (low + high) / 2;
5778 entry = &ut [entry_index];
5779 if (entry [0] < method_index) {
5780 low = entry_index + 1;
5781 } else if (entry [0] > method_index) {
5782 high = entry_index;
5783 } else {
5784 break;
5788 code = get_call_table_entry (amodule->unbox_trampoline_addresses, entry_index);
5789 g_assert (code);
5791 tinfo = mono_tramp_info_create (NULL, (guint8 *)code, 0, NULL, NULL);
5793 symbol_addr = read_unwind_info (amodule, tinfo, "unbox_trampoline_p");
5794 if (!symbol_addr) {
5795 mono_tramp_info_free (tinfo);
5796 return FALSE;
5799 tinfo->code_size = *(guint32*)symbol_addr;
5800 mono_aot_tramp_info_register (tinfo, NULL);
5802 /* The caller expects an ftnptr */
5803 return mono_create_ftnptr (mono_domain_get (), code);
5806 gpointer
5807 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
5809 char *symbol;
5810 gpointer code;
5811 MonoAotModule *amodule = (MonoAotModule *)mono_defaults.corlib->aot_module;
5812 guint32 index = MONO_RGCTX_SLOT_INDEX (slot);
5813 static int count = 0;
5815 count ++;
5816 if (index >= amodule->info.num_rgctx_fetch_trampolines) {
5817 static gpointer addr;
5818 gpointer *info;
5821 * Use the general version of the rgctx fetch trampoline. It receives a pair of <slot, trampoline> in the rgctx arg reg.
5823 if (!addr)
5824 addr = load_function (amodule, "rgctx_fetch_trampoline_general");
5825 info = (void **)mono_domain_alloc0 (mono_get_root_domain (), sizeof (gpointer) * 2);
5826 info [0] = GUINT_TO_POINTER (slot);
5827 info [1] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH, mono_get_root_domain (), NULL);
5828 code = mono_aot_get_static_rgctx_trampoline (info, addr);
5829 return mono_create_ftnptr (mono_domain_get (), code);
5832 symbol = mono_get_rgctx_fetch_trampoline_name (slot);
5833 code = load_function ((MonoAotModule *)mono_defaults.corlib->aot_module, symbol);
5834 g_free (symbol);
5835 /* The caller expects an ftnptr */
5836 return mono_create_ftnptr (mono_domain_get (), code);
5839 static void
5840 no_imt_trampoline (void)
5842 g_assert_not_reached ();
5845 gpointer
5846 mono_aot_get_imt_trampoline (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
5848 guint32 got_offset;
5849 gpointer code;
5850 gpointer *buf;
5851 int i, index, real_count;
5852 MonoAotModule *amodule;
5854 if (mono_llvm_only)
5855 return no_imt_trampoline;
5857 real_count = 0;
5858 for (i = 0; i < count; ++i) {
5859 MonoIMTCheckItem *item = imt_entries [i];
5861 if (item->is_equals)
5862 real_count ++;
5865 /* Save the entries into an array */
5866 buf = (void **)mono_domain_alloc (domain, (real_count + 1) * 2 * sizeof (gpointer));
5867 index = 0;
5868 for (i = 0; i < count; ++i) {
5869 MonoIMTCheckItem *item = imt_entries [i];
5871 if (!item->is_equals)
5872 continue;
5874 g_assert (item->key);
5876 buf [(index * 2)] = item->key;
5877 if (item->has_target_code) {
5878 gpointer *p = (gpointer *)mono_domain_alloc (domain, sizeof (gpointer));
5879 *p = item->value.target_code;
5880 buf [(index * 2) + 1] = p;
5881 } else {
5882 buf [(index * 2) + 1] = &(vtable->vtable [item->value.vtable_slot]);
5884 index ++;
5886 buf [(index * 2)] = NULL;
5887 buf [(index * 2) + 1] = fail_tramp;
5889 if (USE_PAGE_TRAMPOLINES) {
5890 code = get_new_imt_trampoline_from_page (buf);
5891 } else {
5892 code = get_numerous_trampoline (MONO_AOT_TRAMP_IMT, 1, &amodule, &got_offset, NULL);
5894 amodule->got [got_offset] = buf;
5897 return code;
5900 gpointer
5901 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
5903 MonoAotModule *amodule;
5904 guint8 *code;
5905 guint32 got_offset;
5907 if (USE_PAGE_TRAMPOLINES) {
5908 code = (guint8 *)get_new_gsharedvt_arg_trampoline_from_page (addr, arg);
5909 } else {
5910 code = (guint8 *)get_numerous_trampoline (MONO_AOT_TRAMP_GSHAREDVT_ARG, 2, &amodule, &got_offset, NULL);
5912 amodule->got [got_offset] = arg;
5913 amodule->got [got_offset + 1] = addr;
5916 /* The caller expects an ftnptr */
5917 return mono_create_ftnptr (mono_domain_get (), code);
5921 * mono_aot_set_make_unreadable:
5923 * Set whenever to make all mmaped memory unreadable. In conjuction with a
5924 * SIGSEGV handler, this is useful to find out which pages the runtime tries to read.
5926 void
5927 mono_aot_set_make_unreadable (gboolean unreadable)
5929 static int inited;
5931 make_unreadable = unreadable;
5933 if (make_unreadable && !inited) {
5934 mono_counters_register ("AOT: pagefaults", MONO_COUNTER_JIT | MONO_COUNTER_INT, &n_pagefaults);
5938 typedef struct {
5939 MonoAotModule *module;
5940 guint8 *ptr;
5941 } FindMapUserData;
5943 static void
5944 find_map (gpointer key, gpointer value, gpointer user_data)
5946 MonoAotModule *module = (MonoAotModule*)value;
5947 FindMapUserData *data = (FindMapUserData*)user_data;
5949 if (!data->module)
5950 if ((data->ptr >= module->mem_begin) && (data->ptr < module->mem_end))
5951 data->module = module;
5954 static MonoAotModule*
5955 find_module_for_addr (void *ptr)
5957 FindMapUserData data;
5959 if (!make_unreadable)
5960 return NULL;
5962 data.module = NULL;
5963 data.ptr = (guint8*)ptr;
5965 mono_aot_lock ();
5966 g_hash_table_foreach (aot_modules, (GHFunc)find_map, &data);
5967 mono_aot_unlock ();
5969 return data.module;
5973 * mono_aot_is_pagefault:
5975 * Should be called from a SIGSEGV signal handler to find out whenever @ptr is
5976 * within memory allocated by this module.
5978 gboolean
5979 mono_aot_is_pagefault (void *ptr)
5981 if (!make_unreadable)
5982 return FALSE;
5985 * Not signal safe, but SIGSEGV's are synchronous, and
5986 * this is only turned on by a MONO_DEBUG option.
5988 return find_module_for_addr (ptr) != NULL;
5992 * mono_aot_handle_pagefault:
5994 * Handle a pagefault caused by an unreadable page by making it readable again.
5996 void
5997 mono_aot_handle_pagefault (void *ptr)
5999 #ifndef HOST_WIN32
6000 guint8* start = (guint8*)ROUND_DOWN (((gssize)ptr), mono_pagesize ());
6001 int res;
6003 mono_aot_lock ();
6004 res = mono_mprotect (start, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_WRITE|MONO_MMAP_EXEC);
6005 g_assert (res == 0);
6007 n_pagefaults ++;
6008 mono_aot_unlock ();
6009 #endif
6012 #else
6013 /* AOT disabled */
6015 void
6016 mono_aot_init (void)
6020 void
6021 mono_aot_cleanup (void)
6025 guint32
6026 mono_aot_find_method_index (MonoMethod *method)
6028 g_assert_not_reached ();
6029 return 0;
6032 void
6033 mono_aot_init_llvm_method (gpointer aot_module, guint32 method_index)
6037 void
6038 mono_aot_init_gshared_method_this (gpointer aot_module, guint32 method_index, MonoObject *this)
6042 void
6043 mono_aot_init_gshared_method_mrgctx (gpointer aot_module, guint32 method_index, MonoMethodRuntimeGenericContext *rgctx)
6047 void
6048 mono_aot_init_gshared_method_vtable (gpointer aot_module, guint32 method_index, MonoVTable *vtable)
6052 gpointer
6053 mono_aot_get_method (MonoDomain *domain,
6054 MonoMethod *method, MonoError *error)
6056 error_init (error);
6057 return NULL;
6060 gboolean
6061 mono_aot_is_got_entry (guint8 *code, guint8 *addr)
6063 return FALSE;
6066 gboolean
6067 mono_aot_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
6069 return FALSE;
6072 gboolean
6073 mono_aot_get_class_from_name (MonoImage *image, const char *name_space, const char *name, MonoClass **klass)
6075 return FALSE;
6078 MonoJitInfo *
6079 mono_aot_find_jit_info (MonoDomain *domain, MonoImage *image, gpointer addr)
6081 return NULL;
6084 gpointer
6085 mono_aot_get_method_from_token (MonoDomain *domain, MonoImage *image, guint32 token, MonoError *error)
6087 error_init (error);
6088 return NULL;
6091 guint8*
6092 mono_aot_get_plt_entry (guint8 *code)
6094 return NULL;
6097 gpointer
6098 mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code, MonoError *error)
6100 return NULL;
6103 void
6104 mono_aot_patch_plt_entry (guint8 *code, guint8 *plt_entry, gpointer *got, mgreg_t *regs, guint8 *addr)
6108 gpointer
6109 mono_aot_get_method_from_vt_slot (MonoDomain *domain, MonoVTable *vtable, int slot, MonoError *error)
6111 error_init (error);
6113 return NULL;
6116 guint32
6117 mono_aot_get_plt_info_offset (mgreg_t *regs, guint8 *code)
6119 g_assert_not_reached ();
6121 return 0;
6124 gpointer
6125 mono_aot_create_specific_trampoline (MonoImage *image, gpointer arg1, MonoTrampolineType tramp_type, MonoDomain *domain, guint32 *code_len)
6127 g_assert_not_reached ();
6128 return NULL;
6131 gpointer
6132 mono_aot_get_static_rgctx_trampoline (gpointer ctx, gpointer addr)
6134 g_assert_not_reached ();
6135 return NULL;
6138 gpointer
6139 mono_aot_get_trampoline_full (const char *name, MonoTrampInfo **out_tinfo)
6141 g_assert_not_reached ();
6142 return NULL;
6145 gpointer
6146 mono_aot_get_trampoline (const char *name)
6148 g_assert_not_reached ();
6149 return NULL;
6152 gpointer
6153 mono_aot_get_unbox_trampoline (MonoMethod *method)
6155 g_assert_not_reached ();
6156 return NULL;
6159 gpointer
6160 mono_aot_get_lazy_fetch_trampoline (guint32 slot)
6162 g_assert_not_reached ();
6163 return NULL;
6166 gpointer
6167 mono_aot_get_imt_trampoline (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count, gpointer fail_tramp)
6169 g_assert_not_reached ();
6170 return NULL;
6173 gpointer
6174 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg, gpointer addr)
6176 g_assert_not_reached ();
6177 return NULL;
6180 void
6181 mono_aot_set_make_unreadable (gboolean unreadable)
6185 gboolean
6186 mono_aot_is_pagefault (void *ptr)
6188 return FALSE;
6191 void
6192 mono_aot_handle_pagefault (void *ptr)
6196 guint8*
6197 mono_aot_get_unwind_info (MonoJitInfo *ji, guint32 *unwind_info_len)
6199 g_assert_not_reached ();
6200 return NULL;
6203 void
6204 mono_aot_register_jit_icall (const char *name, gpointer addr)
6208 GHashTable *
6209 mono_aot_get_weak_field_indexes (MonoImage *image)
6211 return NULL;
6214 #endif