记录一下:

mini/driver.c 

mono_main():

 

 

Mono 执行顺序
mono_gc_base__init
mono_debug_init
mono_config_parse
mono_assembly_open
 mono_runtime_exec_managed_code(SubThread)
 mono_thread_handler -> mono_thread_manage
mono_method_desc_search_in_image
mini_method_compile
mono_draw_graph (cfg, mono_graph_options);
mono_destroy_compile (cfg);


mono_gc_base__initmono_debug_init

mono_config_parsemono_assembly_open
     mono_runtime_exec_managed_code(SubThread)
     mono_thread_handler -> mono_thread_manage
mono_method_desc_search_in_image
mini_method_compile
mono_draw_graph (cfg, mono_graph_options);
mono_destroy_compile (cfg);

 

相关文章:

  • 2021-05-28
  • 2021-12-04
  • 2021-09-12
  • 2021-08-13
  • 2021-08-30
猜你喜欢
  • 2021-07-10
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-07-31
  • 2021-04-14
相关资源
相似解决方案