-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathmodule.c
1854 lines (1694 loc) · 72.2 KB
/
module.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file is a part of Julia. License is MIT: https://julialang.org/license
//
/*
modules and top-level bindings
*/
#include "julia.h"
#include "julia_internal.h"
#include "julia_assert.h"
#ifdef __cplusplus
extern "C" {
#endif
// In this translation unit and this translation unit only emit this symbol `extern` for use by julia
EXTERN_INLINE_DEFINE uint8_t jl_bpart_get_kind(jl_binding_partition_t *bpart) JL_NOTSAFEPOINT;
static jl_binding_partition_t *new_binding_partition(void)
{
jl_binding_partition_t *bpart = (jl_binding_partition_t*)jl_gc_alloc(jl_current_task->ptls, sizeof(jl_binding_partition_t), jl_binding_partition_type);
bpart->restriction = NULL;
bpart->kind = (size_t)PARTITION_KIND_GUARD;
bpart->min_world = 0;
jl_atomic_store_relaxed(&bpart->max_world, (size_t)-1);
jl_atomic_store_relaxed(&bpart->next, NULL);
return bpart;
}
static jl_binding_partition_t *jl_get_binding_partition2(jl_binding_t *b, size_t world, modstack_t *st);
static int eq_bindings(jl_binding_partition_t *owner, jl_binding_t *alias, size_t world)
{
jl_binding_t *ownerb = NULL;
jl_binding_partition_t *alias_bpart = jl_get_binding_partition(alias, world);
if (owner == alias_bpart)
return 1;
jl_walk_binding_inplace(&ownerb, &owner, world);
jl_walk_binding_inplace(&alias, &alias_bpart, world);
if (jl_bkind_is_some_constant(jl_binding_kind(owner)) &&
jl_bkind_is_some_constant(jl_binding_kind(alias_bpart)) &&
owner->restriction &&
alias_bpart->restriction == owner->restriction)
return 1;
return owner == alias_bpart;
}
// find a binding from a module's `usings` list
void jl_check_new_binding_implicit(
jl_binding_partition_t *new_bpart JL_MAYBE_UNROOTED, jl_binding_t *b, modstack_t *st, size_t world)
{
modstack_t top = { b, st };
modstack_t *tmp = st;
for (; tmp != NULL; tmp = tmp->prev) {
if (tmp->b == b) {
new_bpart->restriction = NULL;
new_bpart->kind = PARTITION_KIND_FAILED; /* PARTITION_KIND_CYCLE */
return;
}
}
JL_GC_PUSH1(&new_bpart);
jl_module_t *m = b->globalref->mod;
jl_sym_t *var = b->globalref->name;
jl_binding_t *deprecated_impb = NULL;
jl_binding_t *impb = NULL;
jl_binding_partition_t *impbpart = NULL;
size_t min_world = new_bpart->min_world;
size_t max_world = jl_atomic_load_relaxed(&new_bpart->max_world);
JL_LOCK(&m->lock);
int i = (int)module_usings_length(m) - 1;
JL_UNLOCK(&m->lock);
enum jl_partition_kind guard_kind = PARTITION_KIND_GUARD;
for (; i >= 0; --i) {
JL_LOCK(&m->lock);
struct _jl_module_using data = *module_usings_getidx(m, i);
JL_UNLOCK(&m->lock);
if (data.min_world > world) {
if (max_world > data.min_world)
max_world = data.min_world - 1;
continue;
}
if (data.max_world < world) {
if (min_world < data.max_world)
min_world = data.max_world + 1;
continue;
}
jl_module_t *imp = data.mod;
JL_GC_PROMISE_ROOTED(imp);
jl_binding_t *tempb = jl_get_module_binding(imp, var, 0);
if (tempb != NULL) {
if (data.min_world > min_world)
min_world = data.min_world;
if (data.max_world < min_world)
max_world = data.max_world;
jl_binding_partition_t *tempbpart = jl_get_binding_partition2(tempb, world, &top);
JL_GC_PROMISE_ROOTED(tempbpart);
size_t tempbmax_world = jl_atomic_load_relaxed(&tempbpart->max_world);
if (tempbpart->min_world > min_world)
min_world = tempbpart->min_world;
if (tempbmax_world < max_world)
max_world = tempbmax_world;
// N.B.: Which aspects of the partition are considered here needs to
// be kept in sync with `export_affecting_partition_flags` in the
// invalidation code.
if ((tempbpart->kind & PARTITION_FLAG_EXPORTED) == 0)
continue;
if (impb) {
if (tempbpart->kind & PARTITION_FLAG_DEPRECATED)
continue;
if (jl_binding_kind(tempbpart) == PARTITION_KIND_GUARD &&
jl_binding_kind(impbpart) != PARTITION_KIND_GUARD)
continue;
if (jl_binding_kind(impbpart) == PARTITION_KIND_GUARD) {
impb = tempb;
impbpart = tempbpart;
continue;
}
if (eq_bindings(tempbpart, impb, world))
continue;
// Binding is ambiguous
// TODO: Even for eq bindings, this may need to further constrain the world age.
deprecated_impb = impb = NULL;
guard_kind = PARTITION_KIND_FAILED;
break;
}
else if (tempbpart->kind & PARTITION_FLAG_DEPRECATED) {
if (deprecated_impb) {
if (!eq_bindings(tempbpart, deprecated_impb, world)) {
guard_kind = PARTITION_KIND_FAILED;
deprecated_impb = NULL;
}
}
else if (guard_kind == PARTITION_KIND_GUARD) {
deprecated_impb = tempb;
}
}
else {
impb = tempb;
impbpart = tempbpart;
}
}
}
if (deprecated_impb && !impb)
impb = deprecated_impb;
assert(min_world <= max_world);
new_bpart->min_world = min_world;
jl_atomic_store_relaxed(&new_bpart->max_world, max_world);
if (impb) {
new_bpart->kind = PARTITION_KIND_IMPLICIT;
new_bpart->restriction = (jl_value_t*)impb;
jl_gc_wb(new_bpart, impb);
// TODO: World age constraints?
} else {
new_bpart->kind = guard_kind;
new_bpart->restriction = NULL;
}
JL_GC_POP();
return;
}
JL_DLLEXPORT jl_binding_partition_t *jl_maybe_reresolve_implicit(jl_binding_t *b, size_t new_max_world)
{
jl_binding_partition_t *new_bpart = new_binding_partition();
jl_binding_partition_t *bpart = jl_atomic_load_acquire(&b->partitions);
assert(bpart);
while (1) {
jl_atomic_store_relaxed(&new_bpart->next, bpart);
jl_gc_wb(new_bpart, bpart);
jl_check_new_binding_implicit(new_bpart, b, NULL, new_max_world+1);
JL_GC_PROMISE_ROOTED(new_bpart); // TODO: Analyzer doesn't understand MAYBE_UNROOTED properly
if (bpart->kind & PARTITION_FLAG_EXPORTED)
new_bpart->kind |= PARTITION_FLAG_EXPORTED;
if (new_bpart->kind == bpart->kind && new_bpart->restriction == bpart->restriction)
return bpart;
// Resolution changed, insert the new partition
size_t expected_max_world = ~(size_t)0;
if (jl_atomic_cmpswap(&bpart->max_world, &expected_max_world, new_max_world) &&
jl_atomic_cmpswap(&b->partitions, &bpart, new_bpart))
break;
}
return new_bpart;
}
STATIC_INLINE jl_binding_partition_t *jl_get_binding_partition_(jl_binding_t *b JL_PROPAGATES_ROOT, jl_value_t *parent, _Atomic(jl_binding_partition_t *)*insert, size_t world, modstack_t *st) JL_GLOBALLY_ROOTED
{
assert(jl_is_binding(b));
jl_binding_partition_t *bpart = jl_atomic_load_relaxed(insert);
size_t max_world = (size_t)-1;
jl_binding_partition_t *new_bpart = NULL;
while (1) {
while (bpart && world < bpart->min_world) {
insert = &bpart->next;
max_world = bpart->min_world - 1;
parent = (jl_value_t *)bpart;
bpart = jl_atomic_load_relaxed(&bpart->next);
}
if (bpart && world <= jl_atomic_load_relaxed(&bpart->max_world))
return bpart;
if (!new_bpart)
new_bpart = new_binding_partition();
jl_atomic_store_relaxed(&new_bpart->next, bpart);
if (bpart)
jl_gc_wb(new_bpart, bpart); // Not fresh the second time around the loop
new_bpart->min_world = bpart ? jl_atomic_load_relaxed(&bpart->max_world) + 1 : 0;
jl_atomic_store_relaxed(&new_bpart->max_world, max_world);
JL_GC_PROMISE_ROOTED(new_bpart); // TODO: Analyzer doesn't understand MAYBE_UNROOTED properly
jl_check_new_binding_implicit(new_bpart, b, st, world);
if (bpart && (bpart->kind & PARTITION_FLAG_EXPORTED))
new_bpart->kind |= PARTITION_FLAG_EXPORTED;
if (jl_atomic_cmpswap(insert, &bpart, new_bpart)) {
jl_gc_wb(parent, new_bpart);
return new_bpart;
}
}
}
jl_binding_partition_t *jl_get_binding_partition(jl_binding_t *b, size_t world) {
if (!b)
return NULL;
// Duplicate the code for the entry frame for branch prediction
return jl_get_binding_partition_(b, (jl_value_t*)b, &b->partitions, world, NULL);
}
jl_binding_partition_t *jl_get_binding_partition_with_hint(jl_binding_t *b, jl_binding_partition_t *prev, size_t world) JL_GLOBALLY_ROOTED {
// Helper for getting a binding partition for an older world after we've already looked up the partition for a newer world
assert(b);
assert(prev->min_world > world);
return jl_get_binding_partition_(b, (jl_value_t*)prev, &prev->next, world, NULL);
}
jl_binding_partition_t *jl_get_binding_partition2(jl_binding_t *b JL_PROPAGATES_ROOT, size_t world, modstack_t *st) JL_GLOBALLY_ROOTED {
assert(b);
return jl_get_binding_partition_(b, (jl_value_t*)b, &b->partitions, world, st);
}
jl_binding_partition_t *jl_get_binding_partition_all(jl_binding_t *b, size_t min_world, size_t max_world) {
if (!b)
return NULL;
jl_binding_partition_t *bpart = jl_get_binding_partition(b, min_world);
if (!bpart)
return NULL;
if (jl_atomic_load_relaxed(&bpart->max_world) < max_world)
return NULL;
return bpart;
}
JL_DLLEXPORT int jl_get_binding_leaf_partitions_restriction_kind(jl_binding_t *b JL_PROPAGATES_ROOT, struct restriction_kind_pair *rkp, size_t min_world, size_t max_world) {
if (!b)
return 0;
int first = 1;
size_t validated_min_world = max_world == ~(size_t)0 ? ~(size_t)0 : max_world + 1;
jl_binding_partition_t *bpart = NULL;
int maybe_depwarn = 0;
while (validated_min_world > min_world) {
bpart = bpart ? jl_get_binding_partition_with_hint(b, bpart, validated_min_world - 1) :
jl_get_binding_partition(b, validated_min_world - 1);
while (validated_min_world > min_world && validated_min_world > bpart->min_world) {
jl_binding_t *curb = b;
jl_binding_partition_t *curbpart = bpart;
size_t cur_min_world = bpart->min_world;
size_t cur_max_world = validated_min_world - 1;
jl_walk_binding_inplace_worlds(&curb, &curbpart, &cur_min_world, &cur_max_world, &maybe_depwarn, cur_max_world);
if (first == 1) {
rkp->kind = jl_binding_kind(curbpart);
rkp->restriction = curbpart->restriction;
if (rkp->kind == PARTITION_KIND_GLOBAL || rkp->kind == PARTITION_KIND_DECLARED)
rkp->binding_if_global = curb;
first = 0;
} else {
if (jl_binding_kind(curbpart) != rkp->kind || curbpart->restriction != rkp->restriction)
return 0;
if ((rkp->kind == PARTITION_KIND_GLOBAL || rkp->kind == PARTITION_KIND_DECLARED) && rkp->binding_if_global != curb)
return 0;
}
validated_min_world = cur_min_world;
}
}
rkp->maybe_depwarn = maybe_depwarn;
return 1;
}
JL_DLLEXPORT jl_value_t *jl_get_binding_leaf_partitions_value_if_const(jl_binding_t *b JL_PROPAGATES_ROOT, int *maybe_depwarn, size_t min_world, size_t max_world) {
struct restriction_kind_pair rkp = { NULL, NULL, PARTITION_KIND_GUARD, 0 };
if (!jl_get_binding_leaf_partitions_restriction_kind(b, &rkp, min_world, max_world))
return NULL;
if (jl_bkind_is_some_constant(rkp.kind) && rkp.kind != PARTITION_KIND_BACKDATED_CONST) {
*maybe_depwarn = rkp.maybe_depwarn;
return rkp.restriction;
}
return NULL;
}
static jl_module_t *jl_new_module__(jl_sym_t *name, jl_module_t *parent)
{
jl_task_t *ct = jl_current_task;
const jl_uuid_t uuid_zero = {0, 0};
jl_module_t *m = (jl_module_t*)jl_gc_alloc(ct->ptls, sizeof(jl_module_t),
jl_module_type);
jl_set_typetagof(m, jl_module_tag, 0);
assert(jl_is_symbol(name));
m->name = name;
m->parent = parent ? parent : m;
m->istopmod = 0;
m->uuid = uuid_zero;
static unsigned int mcounter; // simple counter backup, in case hrtime is not incrementing
m->build_id.lo = jl_hrtime() + (++mcounter);
if (!m->build_id.lo)
m->build_id.lo++; // build id 0 is invalid
m->build_id.hi = ~(uint64_t)0;
jl_atomic_store_relaxed(&m->counter, 1);
m->usings_backedges = jl_nothing;
m->scanned_methods = jl_nothing;
m->nospecialize = 0;
m->optlevel = -1;
m->compile = -1;
m->infer = -1;
m->max_methods = -1;
m->file = jl_empty_sym;
m->line = 0;
m->hash = parent == NULL ? bitmix(name->hash, jl_module_type->hash) :
bitmix(name->hash, parent->hash);
JL_MUTEX_INIT(&m->lock, "module->lock");
jl_atomic_store_relaxed(&m->bindings, jl_emptysvec);
jl_atomic_store_relaxed(&m->bindingkeyset, (jl_genericmemory_t*)jl_an_empty_memory_any);
arraylist_new(&m->usings, 0);
return m;
}
static void jl_add_default_names(jl_module_t *m, uint8_t default_using_core, uint8_t self_name)
{
if (jl_core_module) {
// Bootstrap: Before jl_core_module is defined, we don't have enough infrastructure
// for bindings, so Core itself gets special handling in jltypes.c
if (default_using_core) {
jl_module_initial_using(m, jl_core_module);
}
if (self_name) {
// export own name, so "using Foo" makes "Foo" itself visible
jl_set_initial_const(m, m->name, (jl_value_t*)m, 1);
}
}
}
jl_module_t *jl_new_module_(jl_sym_t *name, jl_module_t *parent, uint8_t default_using_core, uint8_t self_name)
{
jl_module_t *m = jl_new_module__(name, parent);
JL_GC_PUSH1(&m);
jl_add_default_names(m, default_using_core, self_name);
JL_GC_POP();
return m;
}
// Precondition: world_counter_lock is held
JL_DLLEXPORT jl_binding_partition_t *jl_declare_constant_val3(
jl_binding_t *b, jl_module_t *mod, jl_sym_t *var, jl_value_t *val,
enum jl_partition_kind constant_kind, size_t new_world)
{
jl_binding_partition_t *new_prev_bpart = NULL;
JL_GC_PUSH2(&val, &new_prev_bpart);
if (!b) {
b = jl_get_module_binding(mod, var, 1);
}
jl_binding_partition_t *new_bpart = NULL;
jl_binding_partition_t *bpart = jl_get_binding_partition(b, new_world);
while (!new_bpart) {
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_constant(kind)) {
if (!val) {
new_bpart = bpart;
break;
}
jl_value_t *old = bpart->restriction;
JL_GC_PROMISE_ROOTED(old);
if (jl_egal(val, old)) {
new_bpart = bpart;
break;
}
} else if (jl_bkind_is_some_import(kind) && kind != PARTITION_KIND_IMPLICIT) {
jl_errorf("cannot declare %s.%s constant; it was already declared as an import",
jl_symbol_name(mod->name), jl_symbol_name(var));
} else if (kind == PARTITION_KIND_GLOBAL) {
jl_errorf("cannot declare %s.%s constant; it was already declared global",
jl_symbol_name(mod->name), jl_symbol_name(var));
}
if (bpart->min_world == new_world) {
bpart->kind = constant_kind | (bpart->kind & PARTITION_MASK_FLAG);
bpart->restriction = val;
if (val)
jl_gc_wb(bpart, val);
new_bpart = bpart;
} else {
new_bpart = jl_replace_binding_locked(b, bpart, val, constant_kind, new_world);
}
int need_backdate = new_world && val;
if (need_backdate) {
// We will backdate as long as this partition was never explicitly
// declared const, global, or imported.
jl_binding_partition_t *prev_bpart = bpart;
for (;;) {
enum jl_partition_kind prev_kind = jl_binding_kind(prev_bpart);
if (jl_bkind_is_some_constant(prev_kind) || prev_kind == PARTITION_KIND_GLOBAL ||
(jl_bkind_is_some_import(prev_kind))) {
need_backdate = 0;
break;
}
if (prev_bpart->min_world == 0)
break;
prev_bpart = jl_get_binding_partition(b, prev_bpart->min_world - 1);
}
}
// If backdate is required, replace each existing partition by a new one.
// We can't use one binding to cover the entire range, because we need to
// keep the flags partitioned.
if (need_backdate) {
jl_binding_partition_t *prev_bpart = bpart;
jl_binding_partition_t *backdate_bpart = new_binding_partition();
new_prev_bpart = backdate_bpart;
while (1) {
backdate_bpart->kind = (size_t)PARTITION_KIND_BACKDATED_CONST | (prev_bpart->kind & 0xf0);
backdate_bpart->restriction = val;
backdate_bpart->min_world = prev_bpart->min_world;
jl_gc_wb_fresh(backdate_bpart, val);
jl_atomic_store_relaxed(&backdate_bpart->max_world,
jl_atomic_load_relaxed(&prev_bpart->max_world));
prev_bpart = jl_atomic_load_relaxed(&prev_bpart->next);
if (!prev_bpart)
break;
jl_binding_partition_t *next_prev_bpart = new_binding_partition();
jl_atomic_store_relaxed(&backdate_bpart->next, next_prev_bpart);
jl_gc_wb(backdate_bpart, next_prev_bpart);
backdate_bpart = next_prev_bpart;
}
jl_atomic_store_release(&new_bpart->next, new_prev_bpart);
jl_gc_wb(new_bpart, new_prev_bpart);
}
}
JL_GC_POP();
return new_bpart;
}
JL_DLLEXPORT jl_module_t *jl_new_module(jl_sym_t *name, jl_module_t *parent)
{
return jl_new_module_(name, parent, 1, 1);
}
uint32_t jl_module_next_counter(jl_module_t *m)
{
return jl_atomic_fetch_add_relaxed(&m->counter, 1);
}
JL_DLLEXPORT jl_value_t *jl_f_new_module(jl_sym_t *name, uint8_t std_imports, uint8_t default_names)
{
// TODO: should we prohibit this during incremental compilation?
// TODO: the parent module is a lie
jl_module_t *m = jl_new_module_(name, jl_main_module, default_names, default_names);
JL_GC_PUSH1(&m);
if (std_imports)
jl_add_standard_imports(m);
JL_GC_POP();
// TODO: should we somehow try to gc-root this correctly?
return (jl_value_t*)m;
}
JL_DLLEXPORT void jl_set_module_nospecialize(jl_module_t *self, int on)
{
self->nospecialize = (on ? -1 : 0);
}
JL_DLLEXPORT void jl_set_module_optlevel(jl_module_t *self, int lvl)
{
self->optlevel = lvl;
}
JL_DLLEXPORT int jl_get_module_optlevel(jl_module_t *m)
{
int lvl = m->optlevel;
while (lvl == -1 && m->parent != m && m != jl_base_module) {
m = m->parent;
lvl = m->optlevel;
}
return lvl;
}
JL_DLLEXPORT void jl_set_module_compile(jl_module_t *self, int value)
{
self->compile = value;
}
JL_DLLEXPORT int jl_get_module_compile(jl_module_t *m)
{
int value = m->compile;
while (value == -1 && m->parent != m && m != jl_base_module) {
m = m->parent;
value = m->compile;
}
return value;
}
JL_DLLEXPORT void jl_set_module_infer(jl_module_t *self, int value)
{
self->infer = value;
// no reason to specialize if inference is off
if (!value)
jl_set_module_nospecialize(self, 1);
}
JL_DLLEXPORT int jl_get_module_infer(jl_module_t *m)
{
int value = m->infer;
while (value == -1 && m->parent != m && m != jl_base_module) {
m = m->parent;
value = m->infer;
}
return value;
}
JL_DLLEXPORT void jl_set_module_max_methods(jl_module_t *self, int value)
{
self->max_methods = value;
}
JL_DLLEXPORT int jl_get_module_max_methods(jl_module_t *m)
{
int value = m->max_methods;
while (value == -1 && m->parent != m && m != jl_base_module) {
m = m->parent;
value = m->max_methods;
}
return value;
}
JL_DLLEXPORT void jl_set_istopmod(jl_module_t *self, uint8_t isprimary)
{
self->istopmod = 1;
if (isprimary) {
jl_top_module = self;
}
}
JL_DLLEXPORT uint8_t jl_istopmod(jl_module_t *mod)
{
return mod->istopmod;
}
static jl_globalref_t *jl_new_globalref(jl_module_t *mod, jl_sym_t *name, jl_binding_t *b)
{
jl_task_t *ct = jl_current_task;
jl_globalref_t *g = (jl_globalref_t*)jl_gc_alloc(ct->ptls, sizeof(jl_globalref_t), jl_globalref_type);
g->mod = mod;
jl_gc_wb_fresh(g, g->mod);
g->name = name;
jl_gc_wb_fresh(g, g->name);
g->binding = b;
jl_gc_wb_fresh(g, g->binding);
return g;
}
static jl_binding_t *new_binding(jl_module_t *mod, jl_sym_t *name)
{
jl_task_t *ct = jl_current_task;
assert(jl_is_module(mod) && jl_is_symbol(name));
jl_binding_t *b = (jl_binding_t*)jl_gc_alloc(ct->ptls, sizeof(jl_binding_t), jl_binding_type);
jl_atomic_store_relaxed(&b->value, NULL);
jl_atomic_store_relaxed(&b->partitions, NULL);
b->globalref = NULL;
b->backedges = NULL;
jl_atomic_store_relaxed(&b->flags, 0);
JL_GC_PUSH1(&b);
b->globalref = jl_new_globalref(mod, name, b);
jl_gc_wb(b, b->globalref);
JL_GC_POP();
return b;
}
extern jl_mutex_t jl_modules_mutex;
static int is_module_open(jl_module_t *m)
{
JL_LOCK(&jl_modules_mutex);
int open = ptrhash_has(&jl_current_modules, (void*)m);
if (!open && jl_module_init_order != NULL) {
size_t i, l = jl_array_len(jl_module_init_order);
for (i = 0; i < l; i++) {
if (m == (jl_module_t*)jl_array_ptr_ref(jl_module_init_order, i)) {
open = 1;
break;
}
}
}
JL_UNLOCK(&jl_modules_mutex);
return open;
}
extern void check_safe_newbinding(jl_module_t *m, jl_sym_t *var)
{
if (jl_current_task->ptls->in_pure_callback)
jl_errorf("new strong globals cannot be created in a generated function. Declare them outside using `global x::Any`.");
if (jl_options.incremental && jl_generating_output() && !is_module_open(m)) {
jl_errorf("Creating a new global in closed module `%s` (`%s`) breaks incremental compilation "
"because the side effects will not be permanent.",
jl_symbol_name(m->name), jl_symbol_name(var));
}
}
static jl_module_t *jl_binding_dbgmodule(jl_binding_t *b, jl_module_t *m, jl_sym_t *var) JL_GLOBALLY_ROOTED;
// Checks that the binding in general is currently writable, but does not perform any checks on the
// value to be written into the binding.
JL_DLLEXPORT void jl_check_binding_currently_writable(jl_binding_t *b, jl_module_t *m, jl_sym_t *s)
{
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
if (jl_options.depwarn && (bpart->kind & PARTITION_FLAG_DEPWARN)) {
jl_binding_deprecation_warning(b);
}
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (kind != PARTITION_KIND_GLOBAL && kind != PARTITION_KIND_DECLARED) {
if (jl_bkind_is_some_guard(kind)) {
jl_errorf("Global %s.%s does not exist and cannot be assigned.\n"
"Note: Julia 1.9 and 1.10 inadvertently omitted this error check (#56933).\n"
"Hint: Declare it using `global %s` inside `%s` before attempting assignment.",
jl_symbol_name(m->name), jl_symbol_name(s),
jl_symbol_name(s), jl_symbol_name(m->name));
}
else if (jl_bkind_is_some_constant(kind)) {
jl_errorf("invalid assignment to constant %s.%s. This redefinition may be permitted using the `const` keyword.",
jl_symbol_name(m->name), jl_symbol_name(s));
}
else {
jl_module_t *from = jl_binding_dbgmodule(b, m, s);
if (from == m)
jl_errorf("cannot assign a value to imported variable %s.%s",
jl_symbol_name(from->name), jl_symbol_name(s));
else
jl_errorf("cannot assign a value to imported variable %s.%s from module %s",
jl_symbol_name(from->name), jl_symbol_name(s), jl_symbol_name(m->name));
}
}
}
JL_DLLEXPORT jl_binding_t *jl_get_binding_wr(jl_module_t *m JL_PROPAGATES_ROOT, jl_sym_t *var)
{
jl_binding_t *b = jl_get_module_binding(m, var, 1);
jl_check_binding_currently_writable(b, m, var);
return b;
}
// return module of binding
JL_DLLEXPORT jl_module_t *jl_get_module_of_binding(jl_module_t *m, jl_sym_t *var)
{
jl_binding_t *b = jl_get_module_binding(m, var, 1);
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
jl_walk_binding_inplace(&b, &bpart, jl_current_task->world_age);
return b ? b->globalref->mod : m;
}
static NOINLINE void print_backdate_admonition(jl_binding_t *b) JL_NOTSAFEPOINT
{
jl_safe_printf(
"WARNING: Detected access to binding `%s.%s` in a world prior to its definition world.\n"
" Julia 1.12 has introduced more strict world age semantics for global bindings.\n"
" !!! This code may malfunction under Revise.\n"
" !!! This code will error in future versions of Julia.\n"
"Hint: Add an appropriate `invokelatest` around the access to this binding.\n",
jl_symbol_name(b->globalref->mod->name), jl_symbol_name(b->globalref->name));
}
static inline void check_backdated_binding(jl_binding_t *b, enum jl_partition_kind kind) JL_NOTSAFEPOINT
{
if (__unlikely(kind == PARTITION_KIND_BACKDATED_CONST) &&
!(jl_atomic_fetch_or(&b->flags, BINDING_FLAG_DID_PRINT_BACKDATE_ADMONITION) & BINDING_FLAG_DID_PRINT_BACKDATE_ADMONITION)) {
print_backdate_admonition(b);
}
}
JL_DLLEXPORT jl_value_t *jl_get_binding_value(jl_binding_t *b)
{
return jl_get_binding_value_in_world(b, jl_current_task->world_age);
}
JL_DLLEXPORT jl_value_t *jl_get_binding_value_in_world(jl_binding_t *b, size_t world)
{
jl_binding_partition_t *bpart = jl_get_binding_partition(b, world);
jl_walk_binding_inplace(&b, &bpart, world);
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_guard(kind))
return NULL;
if (jl_bkind_is_some_constant(kind)) {
check_backdated_binding(b, kind);
return bpart->restriction;
}
assert(!jl_bkind_is_some_import(kind));
return jl_atomic_load_relaxed(&b->value);
}
JL_DLLEXPORT jl_value_t *jl_get_binding_value_depwarn(jl_binding_t *b)
{
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
if (jl_options.depwarn) {
int needs_depwarn = 0;
jl_walk_binding_inplace_depwarn(&b, &bpart, jl_current_task->world_age, &needs_depwarn);
if (needs_depwarn)
jl_binding_deprecation_warning(b);
} else {
jl_walk_binding_inplace(&b, &bpart, jl_current_task->world_age);
}
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_guard(kind))
return NULL;
if (jl_bkind_is_some_constant(kind)) {
check_backdated_binding(b, kind);
return bpart->restriction;
}
assert(!jl_bkind_is_some_import(kind));
return jl_atomic_load_relaxed(&b->value);
}
JL_DLLEXPORT jl_value_t *jl_get_binding_value_seqcst(jl_binding_t *b)
{
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
jl_walk_binding_inplace(&b, &bpart, jl_current_task->world_age);
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_guard(kind))
return NULL;
if (jl_bkind_is_some_constant(kind)) {
check_backdated_binding(b, kind);
return bpart->restriction;
}
assert(!jl_bkind_is_some_import(kind));
return jl_atomic_load(&b->value);
}
JL_DLLEXPORT jl_value_t *jl_get_binding_value_if_const(jl_binding_t *b)
{
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
jl_walk_binding_inplace(&b, &bpart, jl_current_task->world_age);
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_guard(kind))
return NULL;
if (!jl_bkind_is_some_constant(kind))
return NULL;
check_backdated_binding(b, kind);
return bpart->restriction;
}
JL_DLLEXPORT jl_value_t *jl_get_binding_value_if_resolved_and_const(jl_binding_t *b)
{
// Unlike jl_get_binding_value_if_const this doesn't try to allocate new binding partitions if they
// don't already exist, making this JL_NOTSAFEPOINT.
if (!b)
return NULL;
jl_binding_partition_t *bpart = jl_atomic_load_relaxed(&b->partitions);
if (!bpart)
return NULL;
size_t max_world = jl_atomic_load_relaxed(&bpart->max_world);
if (bpart->min_world > jl_current_task->world_age || jl_current_task->world_age > max_world)
return NULL;
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_guard(kind))
return NULL;
if (!jl_bkind_is_some_constant(kind))
return NULL;
check_backdated_binding(b, kind);
return bpart->restriction;
}
JL_DLLEXPORT jl_value_t *jl_get_binding_value_if_resolved(jl_binding_t *b)
{
// Unlike jl_get_binding_value this doesn't try to allocate new binding partitions if they
// don't already exist, making this JL_NOTSAFEPOINT.
if (!b)
return NULL;
jl_binding_partition_t *bpart = jl_atomic_load_relaxed(&b->partitions);
if (!bpart)
return NULL;
size_t max_world = jl_atomic_load_relaxed(&bpart->max_world);
if (bpart->min_world > jl_current_task->world_age || jl_current_task->world_age > max_world)
return NULL;
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_guard(kind))
return NULL;
if (jl_bkind_is_some_import(kind))
return NULL;
if (jl_bkind_is_some_constant(kind)) {
check_backdated_binding(b, kind);
return bpart->restriction;
}
return jl_atomic_load_relaxed(&b->value);
}
JL_DLLEXPORT jl_value_t *jl_bpart_get_restriction_value(jl_binding_partition_t *bpart)
{
jl_value_t *v = bpart->restriction;
if (!v)
jl_throw(jl_undefref_exception);
return v;
}
// get binding for adding a method
// like jl_get_binding_wr, but has different error paths and messages
JL_DLLEXPORT jl_binding_t *jl_get_binding_for_method_def(jl_module_t *m, jl_sym_t *var, size_t new_world)
{
jl_binding_t *b = jl_get_module_binding(m, var, 1);
jl_binding_partition_t *bpart = jl_get_binding_partition(b, new_world);
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (kind == PARTITION_KIND_GLOBAL || kind == PARTITION_KIND_DECLARED || jl_bkind_is_some_constant(kind))
return b;
if (jl_bkind_is_some_guard(kind)) {
check_safe_newbinding(m, var);
return b;
}
jl_binding_t *ownerb = b;
jl_walk_binding_inplace(&ownerb, &bpart, new_world);
jl_value_t *f = NULL;
if (jl_bkind_is_some_constant(jl_binding_kind(bpart)))
f = bpart->restriction;
if (f == NULL) {
if (kind == PARTITION_KIND_IMPLICIT) {
check_safe_newbinding(m, var);
return b;
}
jl_module_t *from = jl_binding_dbgmodule(b, m, var);
// we must have implicitly imported this with using, so call jl_binding_dbgmodule to try to get the name of the module we got this from
jl_errorf("invalid method definition in %s: exported function %s.%s does not exist",
jl_module_debug_name(m), jl_module_debug_name(from), jl_symbol_name(var));
}
int istype = f && jl_is_type(f);
if (!istype) {
if (kind == PARTITION_KIND_IMPLICIT) {
check_safe_newbinding(m, var);
return b;
}
else if (kind != PARTITION_KIND_IMPORTED) {
// TODO: we might want to require explicitly importing types to add constructors
// or we might want to drop this error entirely
jl_module_t *from = jl_binding_dbgmodule(b, m, var);
jl_errorf("invalid method definition in %s: function %s.%s must be explicitly imported to be extended",
jl_module_debug_name(m), jl_module_debug_name(from), jl_symbol_name(var));
}
}
else if (kind != PARTITION_KIND_IMPORTED) {
int should_error = strcmp(jl_symbol_name(var), "=>") == 0;
jl_module_t *from = jl_binding_dbgmodule(b, m, var);
if (should_error) {
jl_errorf("invalid method definition in %s: function %s.%s must be explicitly imported to be extended",
jl_module_debug_name(m), jl_module_debug_name(from), jl_symbol_name(var));
}
else if (jl_atomic_fetch_or(&b->flags, BINDING_FLAG_DID_PRINT_IMPLICIT_IMPORT_ADMONITION) &
BINDING_FLAG_DID_PRINT_IMPLICIT_IMPORT_ADMONITION) {
jl_printf(JL_STDERR, "WARNING: Constructor for type \"%s\" was extended in `%s` without explicit qualification or import.\n"
" NOTE: Assumed \"%s\" refers to `%s.%s`. This behavior is deprecated and may differ in future versions.\n"
" NOTE: This behavior may have differed in Julia versions prior to 1.12.\n"
" Hint: If you intended to create a new generic function of the same name, use `function %s end`.\n"
" Hint: To silence the warning, qualify `%s` as `%s.%s` in the method signature or explicitly `import %s: %s`.\n",
jl_symbol_name(var), jl_module_debug_name(m),
jl_symbol_name(var), jl_module_debug_name(from), jl_symbol_name(var),
jl_symbol_name(var), jl_symbol_name(var), jl_module_debug_name(from), jl_symbol_name(var),
jl_module_debug_name(from), jl_symbol_name(var));
}
}
return ownerb;
}
// for error message printing: look up the module that exported a binding to m as var
// this might not be the same as the owner of the binding, since the binding itself may itself have been imported from elsewhere
static jl_module_t *jl_binding_dbgmodule(jl_binding_t *b, jl_module_t *m, jl_sym_t *var)
{
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
if (jl_bkind_is_some_import(jl_binding_kind(bpart))) {
return ((jl_binding_t*)bpart->restriction)->globalref->mod;
}
return m;
}
static void jl_binding_dep_message(jl_binding_t *b);
// get type of binding m.var, without resolving the binding
JL_DLLEXPORT jl_value_t *jl_get_binding_type(jl_module_t *m, jl_sym_t *var)
{
jl_binding_t *b = jl_get_module_binding(m, var, 0);
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
if (b == NULL)
return jl_nothing;
jl_walk_binding_inplace(&b, &bpart, jl_current_task->world_age);
enum jl_partition_kind kind = jl_binding_kind(bpart);
if (jl_bkind_is_some_guard(kind) || kind == PARTITION_KIND_DECLARED)
return jl_nothing;
if (jl_bkind_is_some_constant(kind)) {
// TODO: We would like to return the type of the constant, but
// currently code relies on this returning any to bypass conversion
// before an attempted assignment to a constant.
// return bpart->restriction;
return (jl_value_t*)jl_any_type;
}
return bpart->restriction;
}
JL_DLLEXPORT jl_binding_t *jl_get_binding(jl_module_t *m, jl_sym_t *var)
{
return jl_get_module_binding(m, var, 1);
}
JL_DLLEXPORT jl_value_t *jl_module_globalref(jl_module_t *m, jl_sym_t *var)
{
jl_binding_t *b = jl_get_module_binding(m, var, 1);
jl_globalref_t *globalref = b->globalref;
assert(globalref != NULL);
return (jl_value_t*)globalref;
}
// does module m explicitly import s?
JL_DLLEXPORT int jl_is_imported(jl_module_t *m, jl_sym_t *var)
{
jl_binding_t *b = jl_get_module_binding(m, var, 0);
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
return b && jl_binding_kind(bpart) == PARTITION_KIND_IMPORTED;
}
extern const char *jl_filename;
extern int jl_lineno;
static char const dep_message_prefix[] = "_dep_message_";
static void jl_binding_dep_message(jl_binding_t *b)
{
jl_module_t *m = b->globalref->mod;
jl_sym_t *name = b->globalref->name;
size_t prefix_len = strlen(dep_message_prefix);
size_t name_len = strlen(jl_symbol_name(name));
char *dep_binding_name = (char*)alloca(prefix_len+name_len+1);
memcpy(dep_binding_name, dep_message_prefix, prefix_len);
memcpy(dep_binding_name + prefix_len, jl_symbol_name(name), name_len);
dep_binding_name[prefix_len+name_len] = '\0';
jl_binding_t *dep_message_binding = jl_get_binding(m, jl_symbol(dep_binding_name));
jl_value_t *dep_message = NULL;
if (dep_message_binding != NULL)
dep_message = jl_get_binding_value(dep_message_binding);
JL_GC_PUSH1(&dep_message);
if (dep_message != NULL) {
if (jl_is_string(dep_message)) {
jl_uv_puts(JL_STDERR, jl_string_data(dep_message), jl_string_len(dep_message));
}
else {
jl_static_show(JL_STDERR, dep_message);
}
}
else {
jl_value_t *v = jl_get_binding_value(b);
dep_message = v; // use as gc-root
if (v) {
if (jl_is_type(v) || jl_is_module(v)) {
jl_printf(JL_STDERR, ", use ");
jl_static_show(JL_STDERR, v);
jl_printf(JL_STDERR, " instead.");
}
else {
jl_methtable_t *mt = jl_gf_mtable(v);
if (mt != NULL) {
jl_printf(JL_STDERR, ", use ");
if (mt->module != jl_core_module) {
jl_static_show(JL_STDERR, (jl_value_t*)mt->module);
jl_printf(JL_STDERR, ".");
}
jl_printf(JL_STDERR, "%s", jl_symbol_name(mt->name));
jl_printf(JL_STDERR, " instead.");
}
}
}
}
jl_printf(JL_STDERR, "\n");
JL_GC_POP();
}
JL_DLLEXPORT void check_safe_import_from(jl_module_t *m)
{
if (jl_options.incremental && jl_generating_output() && m == jl_main_module) {
jl_errorf("Any `import` or `using` from `Main` is prohibited during incremental compilation.");
}
}
// NOTE: we use explici since explicit is a C++ keyword
static void module_import_(jl_task_t *ct, jl_module_t *to, jl_module_t *from, jl_sym_t *asname, jl_sym_t *s, int explici)
{
check_safe_import_from(from);
jl_binding_t *b = jl_get_binding(from, s);
jl_binding_partition_t *bpart = jl_get_binding_partition(b, jl_current_task->world_age);
if (bpart->kind & PARTITION_FLAG_DEPRECATED) {
if (jl_get_binding_value(b) == jl_nothing) {