@@ -2617,25 +2617,21 @@ JL_DLLEXPORT jl_value_t *jl_as_global_root(jl_value_t *val, int insert)
2617
2617
}
2618
2618
2619
2619
static void jl_prepare_serialization_data (jl_array_t * mod_array , jl_array_t * newly_inferred , uint64_t worklist_key ,
2620
- /* outputs */ jl_array_t * * extext_methods , jl_array_t * * new_ext_cis ,
2621
- jl_array_t * * method_roots_list , jl_array_t * * ext_targets , jl_array_t * * edges )
2620
+ /* outputs */ jl_array_t * * extext_methods JL_REQUIRE_ROOTED_SLOT ,
2621
+ jl_array_t * * new_ext_cis JL_REQUIRE_ROOTED_SLOT ,
2622
+ jl_array_t * * method_roots_list JL_REQUIRE_ROOTED_SLOT ,
2623
+ jl_array_t * * edges JL_REQUIRE_ROOTED_SLOT )
2622
2624
{
2623
2625
// extext_methods: [method1, ...], worklist-owned "extending external" methods added to functions owned by modules outside the worklist
2624
- // ext_targets: [invokesig1, callee1, matches1, ...] non-worklist callees of worklist-owned methods
2625
- // ordinary dispatch: invokesig=NULL, callee is MethodInstance
2626
- // `invoke` dispatch: invokesig is signature, callee is MethodInstance
2627
- // abstract call: callee is signature
2628
- // edges: [caller1, ext_targets_indexes1, ...] for worklist-owned methods calling external methods
2629
- assert (edges_map == NULL );
2626
+ // edges: [caller1, ext_targets, ...] for worklist-owned methods calling external methods
2630
2627
2631
2628
// Save the inferred code from newly inferred, external methods
2632
2629
* new_ext_cis = queue_external_cis (newly_inferred );
2633
2630
2634
2631
// Collect method extensions and edges data
2635
- JL_GC_PUSH1 (& edges_map );
2636
- if (edges )
2637
- edges_map = jl_alloc_memory_any (0 );
2638
2632
* extext_methods = jl_alloc_vec_any (0 );
2633
+ internal_methods = jl_alloc_vec_any (0 );
2634
+ JL_GC_PUSH1 (& internal_methods );
2639
2635
jl_collect_methtable_from_mod (jl_type_type_mt , * extext_methods );
2640
2636
jl_collect_methtable_from_mod (jl_nonfunction_mt , * extext_methods );
2641
2637
size_t i , len = jl_array_len (mod_array );
@@ -2648,18 +2644,15 @@ static void jl_prepare_serialization_data(jl_array_t *mod_array, jl_array_t *new
2648
2644
2649
2645
if (edges ) {
2650
2646
size_t world = jl_atomic_load_acquire (& jl_world_counter );
2651
- jl_collect_missing_backedges (jl_type_type_mt );
2652
- jl_collect_missing_backedges (jl_nonfunction_mt );
2653
- // jl_collect_extext_methods_from_mod and jl_collect_missing_backedges also accumulate data in callers_with_edges.
2654
- // Process this to extract `edges` and `ext_targets`.
2655
- * ext_targets = jl_alloc_vec_any (0 );
2656
- * edges = jl_alloc_vec_any (0 );
2647
+ // jl_collect_extext_methods_from_mod accumulate data in callers_with_edges.
2648
+ // Process this to extract `new_ext_cis` and `edges`
2657
2649
* method_roots_list = jl_alloc_vec_any (0 );
2658
2650
// Collect the new method roots for external specializations
2659
2651
jl_collect_new_roots (& relocatable_ext_cis , * method_roots_list , * new_ext_cis , worklist_key );
2660
- jl_collect_edges (* edges , * ext_targets , * new_ext_cis , world );
2652
+ * edges = jl_alloc_vec_any (0 );
2653
+ jl_collect_edges (* edges , * new_ext_cis , world );
2661
2654
}
2662
- assert ( edges_map == NULL ); // jl_collect_edges clears this when done
2655
+ internal_methods = NULL ;
2663
2656
2664
2657
JL_GC_POP ();
2665
2658
}
@@ -2668,7 +2661,7 @@ static void jl_prepare_serialization_data(jl_array_t *mod_array, jl_array_t *new
2668
2661
static void jl_save_system_image_to_stream (ios_t * f , jl_array_t * mod_array ,
2669
2662
jl_array_t * worklist , jl_array_t * extext_methods ,
2670
2663
jl_array_t * new_ext_cis , jl_array_t * method_roots_list ,
2671
- jl_array_t * ext_targets , jl_array_t * edges ) JL_GC_DISABLED
2664
+ jl_array_t * edges ) JL_GC_DISABLED
2672
2665
{
2673
2666
htable_new (& field_replace , 0 );
2674
2667
// strip metadata and IR when requested
@@ -2771,7 +2764,6 @@ static void jl_save_system_image_to_stream(ios_t *f, jl_array_t *mod_array,
2771
2764
}
2772
2765
// step 1.1: as needed, serialize the data needed for insertion into the running system
2773
2766
if (extext_methods ) {
2774
- assert (ext_targets );
2775
2767
assert (edges );
2776
2768
// Queue method extensions
2777
2769
jl_queue_for_serialization (& s , extext_methods );
@@ -2780,7 +2772,6 @@ static void jl_save_system_image_to_stream(ios_t *f, jl_array_t *mod_array,
2780
2772
// Queue the new roots
2781
2773
jl_queue_for_serialization (& s , method_roots_list );
2782
2774
// Queue the edges
2783
- jl_queue_for_serialization (& s , ext_targets );
2784
2775
jl_queue_for_serialization (& s , edges );
2785
2776
}
2786
2777
jl_serialize_reachable (& s );
@@ -2934,7 +2925,6 @@ static void jl_save_system_image_to_stream(ios_t *f, jl_array_t *mod_array,
2934
2925
jl_write_value (& s , extext_methods );
2935
2926
jl_write_value (& s , new_ext_cis );
2936
2927
jl_write_value (& s , method_roots_list );
2937
- jl_write_value (& s , ext_targets );
2938
2928
jl_write_value (& s , edges );
2939
2929
}
2940
2930
write_uint32 (f , jl_array_len (s .link_ids_gctags ));
@@ -3019,18 +3009,18 @@ JL_DLLEXPORT void jl_create_system_image(void **_native_data, jl_array_t *workli
3019
3009
}
3020
3010
3021
3011
jl_array_t * mod_array = NULL , * extext_methods = NULL , * new_ext_cis = NULL ;
3022
- jl_array_t * method_roots_list = NULL , * ext_targets = NULL , * edges = NULL ;
3012
+ jl_array_t * method_roots_list = NULL , * edges = NULL ;
3023
3013
int64_t checksumpos = 0 ;
3024
3014
int64_t checksumpos_ff = 0 ;
3025
3015
int64_t datastartpos = 0 ;
3026
- JL_GC_PUSH6 (& mod_array , & extext_methods , & new_ext_cis , & method_roots_list , & ext_targets , & edges );
3016
+ JL_GC_PUSH5 (& mod_array , & extext_methods , & new_ext_cis , & method_roots_list , & edges );
3027
3017
3028
3018
if (worklist ) {
3029
3019
mod_array = jl_get_loaded_modules (); // __toplevel__ modules loaded in this session (from Base.loaded_modules_array)
3030
3020
// Generate _native_data`
3031
3021
if (_native_data != NULL ) {
3032
3022
jl_prepare_serialization_data (mod_array , newly_inferred , jl_worklist_key (worklist ),
3033
- & extext_methods , & new_ext_cis , NULL , NULL , NULL );
3023
+ & extext_methods , & new_ext_cis , NULL , NULL );
3034
3024
jl_precompile_toplevel_module = (jl_module_t * )jl_array_ptr_ref (worklist , jl_array_len (worklist )- 1 );
3035
3025
* _native_data = jl_precompile_worklist (worklist , extext_methods , new_ext_cis );
3036
3026
jl_precompile_toplevel_module = NULL ;
@@ -3059,7 +3049,7 @@ JL_DLLEXPORT void jl_create_system_image(void **_native_data, jl_array_t *workli
3059
3049
if (worklist ) {
3060
3050
htable_new (& relocatable_ext_cis , 0 );
3061
3051
jl_prepare_serialization_data (mod_array , newly_inferred , jl_worklist_key (worklist ),
3062
- & extext_methods , & new_ext_cis , & method_roots_list , & ext_targets , & edges );
3052
+ & extext_methods , & new_ext_cis , & method_roots_list , & edges );
3063
3053
if (!emit_split ) {
3064
3054
write_int32 (f , 0 ); // No clone_targets
3065
3055
write_padding (f , LLT_ALIGN (ios_pos (f ), JL_CACHE_BYTE_ALIGNMENT ) - ios_pos (f ));
@@ -3071,7 +3061,7 @@ JL_DLLEXPORT void jl_create_system_image(void **_native_data, jl_array_t *workli
3071
3061
}
3072
3062
if (_native_data != NULL )
3073
3063
native_functions = * _native_data ;
3074
- jl_save_system_image_to_stream (ff , mod_array , worklist , extext_methods , new_ext_cis , method_roots_list , ext_targets , edges );
3064
+ jl_save_system_image_to_stream (ff , mod_array , worklist , extext_methods , new_ext_cis , method_roots_list , edges );
3075
3065
if (_native_data != NULL )
3076
3066
native_functions = NULL ;
3077
3067
if (worklist )
@@ -3161,7 +3151,7 @@ static void jl_restore_system_image_from_stream_(ios_t *f, jl_image_t *image, jl
3161
3151
/* outputs */ jl_array_t * * restored , jl_array_t * * init_order ,
3162
3152
jl_array_t * * extext_methods , jl_array_t * * internal_methods ,
3163
3153
jl_array_t * * new_ext_cis , jl_array_t * * method_roots_list ,
3164
- jl_array_t * * ext_targets , jl_array_t * * edges ,
3154
+ jl_array_t * * edges ,
3165
3155
char * * base , arraylist_t * ccallable_list , pkgcachesizes * cachesizes ) JL_GC_DISABLED
3166
3156
{
3167
3157
jl_task_t * ct = jl_current_task ;
@@ -3232,7 +3222,7 @@ static void jl_restore_system_image_from_stream_(ios_t *f, jl_image_t *image, jl
3232
3222
assert (!ios_eof (f ));
3233
3223
s .s = f ;
3234
3224
uintptr_t offset_restored = 0 , offset_init_order = 0 , offset_extext_methods = 0 , offset_new_ext_cis = 0 , offset_method_roots_list = 0 ;
3235
- uintptr_t offset_ext_targets = 0 , offset_edges = 0 ;
3225
+ uintptr_t offset_edges = 0 ;
3236
3226
if (!s .incremental ) {
3237
3227
size_t i ;
3238
3228
for (i = 0 ; tags [i ] != NULL ; i ++ ) {
@@ -3265,7 +3255,6 @@ static void jl_restore_system_image_from_stream_(ios_t *f, jl_image_t *image, jl
3265
3255
offset_extext_methods = jl_read_offset (& s );
3266
3256
offset_new_ext_cis = jl_read_offset (& s );
3267
3257
offset_method_roots_list = jl_read_offset (& s );
3268
- offset_ext_targets = jl_read_offset (& s );
3269
3258
offset_edges = jl_read_offset (& s );
3270
3259
}
3271
3260
s .buildid_depmods_idxs = depmod_to_imageidx (depmods );
@@ -3292,13 +3281,12 @@ static void jl_restore_system_image_from_stream_(ios_t *f, jl_image_t *image, jl
3292
3281
uint32_t external_fns_begin = read_uint32 (f );
3293
3282
jl_read_arraylist (s .s , ccallable_list ? ccallable_list : & s .ccallable_list );
3294
3283
if (s .incremental ) {
3295
- assert (restored && init_order && extext_methods && internal_methods && new_ext_cis && method_roots_list && ext_targets && edges );
3284
+ assert (restored && init_order && extext_methods && internal_methods && new_ext_cis && method_roots_list && edges );
3296
3285
* restored = (jl_array_t * )jl_delayed_reloc (& s , offset_restored );
3297
3286
* init_order = (jl_array_t * )jl_delayed_reloc (& s , offset_init_order );
3298
3287
* extext_methods = (jl_array_t * )jl_delayed_reloc (& s , offset_extext_methods );
3299
3288
* new_ext_cis = (jl_array_t * )jl_delayed_reloc (& s , offset_new_ext_cis );
3300
3289
* method_roots_list = (jl_array_t * )jl_delayed_reloc (& s , offset_method_roots_list );
3301
- * ext_targets = (jl_array_t * )jl_delayed_reloc (& s , offset_ext_targets );
3302
3290
* edges = (jl_array_t * )jl_delayed_reloc (& s , offset_edges );
3303
3291
* internal_methods = jl_alloc_vec_any (0 );
3304
3292
}
@@ -3736,9 +3724,9 @@ static jl_value_t *jl_restore_package_image_from_stream(void* pkgimage_handle, i
3736
3724
arraylist_t ccallable_list ;
3737
3725
3738
3726
jl_value_t * restored = NULL ;
3739
- jl_array_t * init_order = NULL , * extext_methods = NULL , * internal_methods = NULL , * new_ext_cis = NULL , * method_roots_list = NULL , * ext_targets = NULL , * edges = NULL ;
3727
+ jl_array_t * init_order = NULL , * extext_methods = NULL , * internal_methods = NULL , * new_ext_cis = NULL , * method_roots_list = NULL , * edges = NULL ;
3740
3728
jl_svec_t * cachesizes_sv = NULL ;
3741
- JL_GC_PUSH9 (& restored , & init_order , & extext_methods , & internal_methods , & new_ext_cis , & method_roots_list , & ext_targets , & edges , & cachesizes_sv );
3729
+ JL_GC_PUSH8 (& restored , & init_order , & extext_methods , & internal_methods , & new_ext_cis , & method_roots_list , & edges , & cachesizes_sv );
3742
3730
3743
3731
{ // make a permanent in-memory copy of f (excluding the header)
3744
3732
ios_bufmode (f , bm_none );
@@ -3763,7 +3751,7 @@ static jl_value_t *jl_restore_package_image_from_stream(void* pkgimage_handle, i
3763
3751
ios_static_buffer (f , sysimg , len );
3764
3752
pkgcachesizes cachesizes ;
3765
3753
jl_restore_system_image_from_stream_ (f , image , depmods , checksum , (jl_array_t * * )& restored , & init_order , & extext_methods , & internal_methods , & new_ext_cis , & method_roots_list ,
3766
- & ext_targets , & edges , & base , & ccallable_list , & cachesizes );
3754
+ & edges , & base , & ccallable_list , & cachesizes );
3767
3755
JL_SIGATOMIC_END ();
3768
3756
3769
3757
// No special processing of `new_ext_cis` is required because recaching handled it
@@ -3777,7 +3765,7 @@ static jl_value_t *jl_restore_package_image_from_stream(void* pkgimage_handle, i
3777
3765
// allow users to start running in this updated world
3778
3766
jl_atomic_store_release (& jl_world_counter , world );
3779
3767
// but one of those immediate users is going to be our cache updates
3780
- jl_insert_backedges ((jl_array_t * )edges , (jl_array_t * )ext_targets , ( jl_array_t * ) new_ext_cis , world ); // restore external backedges (needs to be last)
3768
+ jl_insert_backedges ((jl_array_t * )edges , (jl_array_t * )new_ext_cis , world ); // restore external backedges (needs to be last)
3781
3769
// now permit more methods to be added again
3782
3770
JL_UNLOCK (& world_counter_lock );
3783
3771
// reinit ccallables
@@ -3793,9 +3781,9 @@ static jl_value_t *jl_restore_package_image_from_stream(void* pkgimage_handle, i
3793
3781
jl_svecset (cachesizes_sv , 4 , jl_box_long (cachesizes .reloclist ));
3794
3782
jl_svecset (cachesizes_sv , 5 , jl_box_long (cachesizes .gvarlist ));
3795
3783
jl_svecset (cachesizes_sv , 6 , jl_box_long (cachesizes .fptrlist ));
3796
- restored = (jl_value_t * )jl_svec (8 , restored , init_order , extext_methods ,
3784
+ restored = (jl_value_t * )jl_svec (7 , restored , init_order , extext_methods ,
3797
3785
new_ext_cis ? (jl_value_t * )new_ext_cis : jl_nothing ,
3798
- method_roots_list , ext_targets , edges , cachesizes_sv );
3786
+ method_roots_list , edges , cachesizes_sv );
3799
3787
}
3800
3788
else {
3801
3789
restored = (jl_value_t * )jl_svec (2 , restored , init_order );
@@ -3810,7 +3798,7 @@ static jl_value_t *jl_restore_package_image_from_stream(void* pkgimage_handle, i
3810
3798
static void jl_restore_system_image_from_stream (ios_t * f , jl_image_t * image , uint32_t checksum )
3811
3799
{
3812
3800
JL_TIMING (LOAD_IMAGE , LOAD_Sysimg );
3813
- jl_restore_system_image_from_stream_ (f , image , NULL , checksum | ((uint64_t )0xfdfcfbfa << 32 ), NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL );
3801
+ jl_restore_system_image_from_stream_ (f , image , NULL , checksum | ((uint64_t )0xfdfcfbfa << 32 ), NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL , NULL );
3814
3802
}
3815
3803
3816
3804
JL_DLLEXPORT jl_value_t * jl_restore_incremental_from_buf (void * pkgimage_handle , const char * buf , jl_image_t * image , size_t sz , jl_array_t * depmods , int completeinfo , const char * pkgname , int needs_permalloc )
0 commit comments