forked from scala/scala3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSemantic.scala
1663 lines (1441 loc) · 63.8 KB
/
Semantic.scala
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
package dotty.tools.dotc
package transform
package init
import core.*
import Contexts.*
import Symbols.*
import Types.*
import StdNames.*
import NameKinds.OuterSelectName
import NameKinds.SuperAccessorName
import ast.tpd.*
import config.Printers.init as printer
import reporting.trace as log
import Errors.*
import Trace.*
import Util.*
import Cache.*
import scala.collection.mutable
import scala.annotation.tailrec
/**
* Checks safe initialization of objects
*
* This algorithm cannot handle safe access of global object names. That part
* is handled by the check in `Objects` (@see Objects).
*/
object Semantic:
// ----- Domain definitions --------------------------------
/** Abstract values
*
* Value = Hot | Cold | Warm | ThisRef | Fun | RefSet
*
* Cold
* ┌──────► ▲ ◄────┐ ◄────┐
* │ │ │ │
* │ │ │ │
* | │ │ │
* | │ │ │
* ThisRef Warm Fun RefSet
* │ ▲ ▲ ▲
* │ │ │ │
* | │ │ │
* ▲ │ │ │
* │ │ │ │
* └─────────┴───────┴───────┘
* Hot
*
* The diagram above does not reflect relationship between `RefSet`
* and other values. `RefSet` represents a set of values which could
* be `ThisRef`, `Warm` or `Fun`. The following ordering applies for
* RefSet:
*
* R_a ⊑ R_b if R_a ⊆ R_b
*
* V ⊑ R if V ∈ R
*
*/
sealed abstract class Value:
def show(using Context): String = this match
case ThisRef(klass) =>
"the original object of type (" + klass.show + ") where initialization checking started"
case Warm(klass, outer, ctor, args) =>
val argsText = if args.nonEmpty then ", args = " + args.map(_.show).mkString("(", ", ", ")") else ""
"a non-transitively initialized (Warm) object of type (" + klass.show + ") { outer = " + outer.show + argsText + " }"
case Fun(expr, thisV, klass) =>
"a function where \"this\" is (" + thisV.show + ")"
case RefSet(values) =>
values.map(_.show).mkString("Set { ", ", ", " }")
case Hot =>
"a transitively initialized (Hot) object"
case Cold =>
"an uninitialized (Cold) object"
def isHot = this == Hot
def isCold = this == Cold
def isWarm = this.isInstanceOf[Warm]
def isThisRef = this.isInstanceOf[ThisRef]
/** A transitively initialized object */
case object Hot extends Value
/** An object with unknown initialization status */
case object Cold extends Value
sealed abstract class Ref extends Value:
def klass: ClassSymbol
def outer: Value
/** A reference to the object under initialization pointed by `this` */
case class ThisRef(klass: ClassSymbol) extends Ref:
val outer = Hot
/** An object with all fields initialized but reaches objects under initialization
*
* We need to restrict nesting levels of `outer` to finitize the domain.
*/
case class Warm(klass: ClassSymbol, outer: Value, ctor: Symbol, args: List[Value]) extends Ref:
/** If a warm value is in the process of populating parameters, class bodies are not executed. */
private var populatingParams: Boolean = false
def isPopulatingParams = populatingParams
/** Ensure that outers and class parameters are initialized.
*
* Fields in class body are not initialized.
*
* We need to populate class parameters and outers for warm values for the
* following cases:
*
* - Widen an already checked warm value to another warm value without
* corresponding object
*
* - Using a warm value from the cache, whose corresponding object from
* the last iteration have been remove due to heap reversion
* {@see Cache.prepareForNextIteration}
*
* After populating class parameters and outers, it is possible to lazily
* compute the field values in class bodies when they are accessed.
*/
private def populateParams(): Contextual[this.type] = log("populating parameters", printer, (_: Warm).objekt.toString) {
assert(!populatingParams, "the object is already populating parameters")
populatingParams = true
val tpl = klass.defTree.asInstanceOf[TypeDef].rhs.asInstanceOf[Template]
extendTrace(klass.defTree) { this.callConstructor(ctor, args.map(arg => new ArgInfo(arg, trace))) }
populatingParams = false
this
}
def ensureObjectExistsAndPopulated(): Contextual[this.type] =
if cache.containsObject(this) then this
else this.ensureFresh().populateParams()
end Warm
/** A function value */
case class Fun(expr: Tree, thisV: Ref, klass: ClassSymbol) extends Value
/** A value which represents a set of addresses
*
* It comes from `if` expressions.
*/
case class RefSet(refs: List[Fun | Ref]) extends Value
// end of value definition
/** The abstract object which stores value about its fields and immediate outers.
*
* Semantically it suffices to store the outer for `klass`. We cache other outers
* for performance reasons.
*
* Note: Object is NOT a value.
*/
case class Objekt(val klass: ClassSymbol, val fields: Map[Symbol, Value], val outers: Map[ClassSymbol, Value]):
def field(f: Symbol): Value = fields(f)
def outer(klass: ClassSymbol) = outers(klass)
def hasOuter(klass: ClassSymbol) = outers.contains(klass)
def hasField(f: Symbol) = fields.contains(f)
object Promoted:
class PromotionInfo(val entryClass: ClassSymbol):
var isCurrentObjectPromoted: Boolean = false
val values = mutable.Set.empty[Value]
override def toString(): String = values.toString()
/** Values that have been safely promoted */
opaque type Promoted = PromotionInfo
/** Note: don't use `val` to avoid incorrect sharing */
def empty(entryClass: ClassSymbol): Promoted = new PromotionInfo(entryClass)
extension (promoted: Promoted)
def isCurrentObjectPromoted: Boolean = promoted.isCurrentObjectPromoted
def promoteCurrent(thisRef: ThisRef): Unit = promoted.isCurrentObjectPromoted = true
def contains(value: Value): Boolean = promoted.values.contains(value)
def add(value: Value): Unit = promoted.values += value
def remove(value: Value): Unit = promoted.values -= value
def entryClass: ClassSymbol = promoted.entryClass
end extension
end Promoted
type Promoted = Promoted.Promoted
import Promoted.*
inline def promoted(using p: Promoted): Promoted = p
/** Cache used in fixed point computation
*
* The analysis computes the least fixed point for the cache (see doc for
* `ExprValueCache`).
*
* For the fixed point computation to terminate, we need to make sure that
* the domain of the cache, i.e. the key pair (Ref, Tree) is finite. As the
* code is finite, we only need to carefully design the abstract domain to
* be finitary.
*
* We also need to make sure that the computing function (i.e. the abstract
* interpreter) is monotone. Error handling breaks monotonicity of the
* abstract interpreter, because when an error happens, we always return
* the bottom value `Hot` for an expression. It is not a threat for
* termination because when an error happens, we stop the fixed point
* computation at the end of the iteration where the error happens. Care
* must be paid to tests of errors, monotonicity will be broken if we simply
* ignore the test errors (See `TryReporter`).
*
* Note: It's tempting to use location of trees as key. That should
* be avoided as a template may have the same location as its single
* statement body. Macros may also create incorrect locations.
*/
object Cache:
/** Cache for expressions
*
* Value -> Tree -> Value
*
* The first key is the value of `this` for the expression.
*
* We do not need the heap in the key, because the value of an expression
* is only determined by the value of `this`. The heap is immutable: the
* abstract values for object fields never change within one iteration.
* The initial abstraction of a field is always a safe over-approximation
* thanks to monotonicity of initialization states.
*
* If the heap is unstable in an iteration, the cache should also be
* unstable. This is because all values stored in the heap are also present
* in the cache. Therefore, we only need to track whether the cache is
* stable between two iterations.
*
* The heap is not part of the fixed point computation -- we throw the
* unstable heap from last iteration away. In contrast, we use the unstable
* output cache from the last iteration as input for the next iteration.
* This is safe because the heap is determined by the cache -- it is a
* "local" data to the computing function, conceptually. Local data is
* always safe be discarded.
*
* Now, if a fixed point is reached, the local data contains stable data
* that could be reused to check other classes. We employ this trick to
* improve performance of the analysis.
*/
/** The heap for abstract objects
*
* The heap objects are immutable and its values are essentially derived
* from the cache, thus they are not part of the configuration.
*
* The only exception is the object correspond to `ThisRef`, where the
* object remembers the set of initialized fields. That information is reset
* in each iteration thus is harmless.
*/
private type Heap = Map[Ref, Objekt]
class Data extends Cache[Value, Value]:
/** Global cached values for expressions
*
* The values are only added when a fixed point is reached.
*
* It is intended to improve performance for computation related to warm values.
*/
private var stable: ExprValueCache[Value, Value] = Map.empty
/** Abstract heap stores abstract objects
*
* The heap serves as cache of summaries for warm objects and is shared for checking all classes.
*
* The fact that objects of `ThisRef` are stored in heap is just an engineering convenience.
* Technically, we can also store the object directly in `ThisRef`.
*
* The heap contains objects of two conceptually distinct kinds.
*
* - Objects that are also in `heapStable` are flow-insensitive views of already initialized objects that are
* cached for reuse in analysis of later classes. These objects and their fields should never change; this is
* enforced using assertions.
*
* - Objects that are not (yet) in `heapStable` are the flow-sensitive abstract state of objects being analyzed
* in the current iteration of the analysis of the current class. Their fields do change flow-sensitively: more
* fields are added as fields become initialized. These objects are valid only within the current iteration and
* are removed when moving to a new iteration of analyzing the current class. When the analysis of a class
* reaches a fixed point, these now stable flow-sensitive views of the object at the end of the constructor
* of the analyzed class now become the flow-insensitive views of already initialized objects and can therefore
* be added to `heapStable`.
*/
private var heap: Heap = Map.empty
/** Used to revert heap to last stable heap. */
private var heapStable: Heap = Map.empty
override def get(value: Value, expr: Tree): Option[Value] =
stable.get(value, expr) match
case None => super.get(value, expr)
case res => res
/** Backup the state of the cache
*
* All the shared data structures must be immutable.
*/
def backup(): Data =
val cache = new Data
cache.stable = this.stable
cache.heap = this.heap
cache.heapStable = this.heapStable
cache.changed = this.changed
cache.last = this.last
cache.current = this.current
cache
/** Restore state from a backup */
def restore(cache: Data) =
this.changed = cache.changed
this.last = cache.last
this.current = cache.current
this.stable = cache.stable
this.heap = cache.heap
this.heapStable = cache.heapStable
/** Commit current cache to stable cache. */
private def commitToStableCache() =
for
(v, m) <- this.current
if v.isWarm // It's useless to cache value for ThisRef.
(wrapper, res) <- m
do
this.stable = stable.updatedNestedWrapper(v, wrapper.asInstanceOf[ImmutableTreeWrapper], res)
/** Prepare cache for the next iteration
*
* 1. Reset changed flag.
*
* 2. Use current cache as last cache and set current cache to be empty.
*
* 3. Revert heap to stable.
*/
override def prepareForNextIteration()(using Context) =
super.prepareForNextIteration()
this.heap = this.heapStable
/** Prepare for checking next class
*
* 1. Reset changed flag.
*
* 2. Commit current cache to stable cache if not changed.
*
* 3. Update stable heap if not changed.
*
* 4. Reset last cache.
*/
def prepareForNextClass()(using Context) =
if this.hasChanged then
this.heap = this.heapStable
else
this.commitToStableCache()
this.heapStable = this.heap
// reset changed and cache
super.prepareForNextIteration()
def updateObject(ref: Ref, obj: Objekt) =
assert(!this.heapStable.contains(ref))
this.heap = this.heap.updated(ref, obj)
def containsObject(ref: Ref) = heap.contains(ref)
def getObject(ref: Ref) = heap(ref)
end Data
end Cache
inline def cache(using c: Cache.Data): Cache.Data = c
// ----- Checker State -----------------------------------
/** The state that threads through the interpreter */
type Contextual[T] = (Context, Trace, Promoted, Cache.Data, Reporter, TreeCache.CacheData) ?=> T
// ----- Error Handling -----------------------------------
/** Error reporting */
trait Reporter:
def report(err: Error): Unit
def reportAll(errs: Seq[Error]): Unit = for err <- errs do report(err)
/** A TryReporter cannot be simply thrown away
*
* Either `abort` should be called or the errors be reported.
*
* If errors are ignored and `abort` is not called, the monotonicity of the
* computation function is not guaranteed, thus termination of fixed-point
* computation becomes a problem.
*/
trait TryReporter extends Reporter:
/**
* Revert the cache to previous state.
*/
def abort()(using Cache.Data): Unit
def errors: List[Error]
object Reporter:
class BufferedReporter extends Reporter:
private val buf = new mutable.ArrayBuffer[Error]
def errors = buf.toList
def report(err: Error) = buf += err
class TryBufferedReporter(backup: Cache.Data) extends BufferedReporter with TryReporter:
def abort()(using Cache.Data): Unit = cache.restore(backup)
class ErrorFound(val error: Error) extends Exception
class StopEarlyReporter extends Reporter:
def report(err: Error) = throw new ErrorFound(err)
/** Capture all errors with a TryReporter
*
* The TryReporter cannot be thrown away: either `abort` must be called or
* the errors must be reported.
*/
def errorsIn(fn: Reporter ?=> Unit)(using Cache.Data): TryReporter =
val reporter = new TryBufferedReporter(cache.backup())
fn(using reporter)
reporter
/** Stop on first error */
def stopEarly(fn: Reporter ?=> Unit): List[Error] =
val reporter: Reporter = new StopEarlyReporter
try
fn(using reporter)
Nil
catch case ex: ErrorFound =>
ex.error :: Nil
def hasErrors(fn: Reporter ?=> Unit)(using Cache.Data): Boolean =
val backup = cache.backup()
val errors = stopEarly(fn)
cache.restore(backup)
errors.nonEmpty
inline def reporter(using r: Reporter): Reporter = r
// ----- Cache for Trees -----------------------------
object TreeCache:
class CacheData:
private val emptyTrees = mutable.Set[ValOrDefDef]()
extension (tree: ValOrDefDef)
def getRhs(using Context): Tree =
def getTree: Tree =
val errorCount = ctx.reporter.errorCount
val rhs = tree.rhs
if (ctx.reporter.errorCount > errorCount)
emptyTrees.add(tree)
report.warning("Ignoring analyses of " + tree.name + " due to error in reading TASTy.")
EmptyTree
else
rhs
if (emptyTrees.contains(tree)) EmptyTree
else getTree
end TreeCache
// ----- Operations on domains -----------------------------
extension (a: Value)
def join(b: Value): Value =
(a, b) match
case (Hot, _) => b
case (_, Hot) => a
case (Cold, _) => Cold
case (_, Cold) => Cold
case (a: (Fun | Warm | ThisRef), b: (Fun | Warm | ThisRef)) =>
if a == b then a else RefSet(a :: b :: Nil)
case (a: (Fun | Warm | ThisRef), RefSet(refs)) =>
if refs.exists(_ == a) then b: Value // fix pickling test
else RefSet(a :: refs)
case (RefSet(refs), b: (Fun | Warm | ThisRef)) =>
if refs.exists(_ == b) then a: Value // fix pickling test
else RefSet(b :: refs)
case (RefSet(refs1), RefSet(refs2)) =>
val diff = refs2.filter(ref => refs1.forall(_ != ref))
RefSet(refs1 ++ diff)
/** Conservatively approximate the value with `Cold` or `Hot` */
def widenArg: Contextual[Value] =
a match
case _: Ref | _: Fun =>
val hasError = Reporter.hasErrors { a.promote("Argument is not provably transitively initialized (Hot)") }
if hasError then Cold else Hot
case RefSet(refs) =>
refs.map(_.widenArg).join
case _ => a
extension (values: Seq[Value])
def join: Value =
if values.isEmpty then Hot
else values.reduce { (v1, v2) => v1.join(v2) }
def widenArgs: Contextual[List[Value]] = values.map(_.widenArg).toList
extension (ref: Ref)
def objekt: Contextual[Objekt] =
// TODO: improve performance
ref match
case warm: Warm => warm.ensureObjectExistsAndPopulated()
case _ =>
cache.getObject(ref)
def ensureObjectExists()(using Cache.Data): ref.type =
if cache.containsObject(ref) then
printer.println("object " + ref + " already exists")
ref
else
ensureFresh()
def ensureFresh()(using Cache.Data): ref.type =
val obj = Objekt(ref.klass, fields = Map.empty, outers = Map(ref.klass -> ref.outer))
printer.println("reset object " + ref)
cache.updateObject(ref, obj)
ref
/** Update field value of the abstract object
*
* Invariant: fields are immutable and only set once
*/
def updateField(field: Symbol, value: Value): Contextual[Unit] = log("set field " + field + " of " + ref + " to " + value) {
val obj = objekt
// We may reset the outers or params of a populated warm object.
// This is the case if we need access the field of a warm object, which
// requires population of parameters and outers; and later create an
// instance of the exact warm object, whose initialization will reset
// the outer and constructor parameters.
//
// See tests/init/neg/unsound1.scala
val changed = !obj.hasField(field) || obj.field(field) != value
def isParamUpdate = field.isOneOf(Flags.ParamAccessor | Flags.Param) && obj.field(field) == value
assert(!obj.hasField(field) || isParamUpdate, field.show + " already init, new = " + value + ", old = " + obj.field(field) + ", ref = " + ref)
val obj2 = obj.copy(fields = obj.fields.updated(field, value))
if changed then cache.updateObject(ref, obj2)
}
/** Update the immediate outer of the given `klass` of the abstract object
*
* Invariant: outers are immutable and only set once
*/
def updateOuter(klass: ClassSymbol, value: Value): Contextual[Unit] = log("set outer " + klass + " of " + ref + " to " + value) {
val obj = objekt
// See the comment in `updateField` for setting the value twice.
assert(!obj.hasOuter(klass) || obj.outer(klass) == value, klass.show + " already has outer, new = " + value + ", old = " + obj.outer(klass) + ", ref = " + ref)
val obj2 = obj.copy(outers = obj.outers.updated(klass, value))
cache.updateObject(ref, obj2)
}
end extension
extension (value: Value)
def ensureHot(msg: String): Contextual[Value] =
value.promote(msg)
value
def filterClass(sym: Symbol)(using Context): Value =
if !sym.isClass then value
else
val klass = sym.asClass
value match
case Cold => Cold
case Hot => Hot
case ref: Ref => if ref.klass.isSubClass(klass) then ref else Hot
case RefSet(values) => values.map(v => v.filterClass(klass)).join
case fun: Fun =>
if klass.isOneOf(Flags.AbstractOrTrait) && klass.baseClasses.exists(defn.isFunctionClass)
then fun
else Hot
def select(field: Symbol, receiver: Type, needResolve: Boolean = true): Contextual[Value] = log("select " + field.show + ", this = " + value, printer, (_: Value).show) {
if promoted.isCurrentObjectPromoted then Hot
else value.filterClass(field.owner) match
case Hot =>
Hot
case Cold =>
val error = AccessCold(field)(trace)
reporter.report(error)
Hot
case ref: Ref =>
val target = if needResolve then resolve(ref.klass, field) else field
if target.is(Flags.Lazy) then
val rhs = target.defTree.asInstanceOf[ValDef].getRhs
eval(rhs, ref, target.owner.asClass, cacheResult = true)
else if target.exists then
val obj = ref.objekt
if obj.hasField(target) then
obj.field(target)
else if ref.isInstanceOf[Warm] then
assert(obj.klass.isSubClass(target.owner))
if target.is(Flags.ParamAccessor) then
// possible for trait parameters
// see tests/init/neg/trait2.scala
//
// return `Hot` here, errors are reported in checking `ThisRef`
Hot
else if target.hasSource then
val rhs = target.defTree.asInstanceOf[ValOrDefDef].getRhs
eval(rhs, ref, target.owner.asClass, cacheResult = true)
else
val error = CallUnknown(field)(trace)
reporter.report(error)
Hot
else
val error = AccessNonInit(target)(trace)
reporter.report(error)
Hot
else
report.warning("[Internal error] Unexpected resolution failure: ref.klass = " + ref.klass.show + ", field = " + field.show + Trace.show, Trace.position)
Hot
case fun: Fun =>
report.warning("[Internal error] unexpected tree in selecting a function, fun = " + fun.expr.show + Trace.show, fun.expr)
Hot
case RefSet(refs) =>
refs.map(_.select(field, receiver)).join
}
def call(meth: Symbol, args: List[ArgInfo], receiver: Type, superType: Type, needResolve: Boolean = true): Contextual[Value] = log("call " + meth.show + ", args = " + args.map(_.value.show), printer, (_: Value).show) {
def promoteArgs(): Contextual[Unit] = args.foreach(_.promote)
def isSyntheticApply(meth: Symbol) =
meth.is(Flags.Synthetic)
&& meth.name == nme.apply
&& meth.owner.is(Flags.Module)
&& meth.owner.companionClass.is(Flags.Case)
def isAlwaysSafe(meth: Symbol) =
(meth eq defn.Object_eq)
|| (meth eq defn.Object_ne)
|| (meth eq defn.Any_isInstanceOf)
def checkArgsWithParametricity() =
val methodType = atPhaseBeforeTransforms { meth.info.stripPoly }
var allArgsHot = true
val allParamTypes = methodType.paramInfoss.flatten.map(_.repeatedToSingle)
val errors = allParamTypes.zip(args).flatMap { (info, arg) =>
val tryReporter = Reporter.errorsIn { arg.promote }
allArgsHot = allArgsHot && tryReporter.errors.isEmpty
if tryReporter.errors.isEmpty then tryReporter.errors
else
info match
case typeParamRef: TypeParamRef =>
val bounds = typeParamRef.underlying.bounds
val isWithinBounds = bounds.lo <:< defn.NothingType && defn.AnyType <:< bounds.hi
def otherParamContains = allParamTypes.exists { param => param != typeParamRef && param.typeSymbol != defn.ClassTagClass && typeParamRef.occursIn(param) }
// A non-hot method argument is allowed if the corresponding parameter type is a
// type parameter T with Any as its upper bound and Nothing as its lower bound.
// the other arguments should either correspond to a parameter type that is T
// or that does not contain T as a component.
if isWithinBounds && !otherParamContains then
tryReporter.abort()
Nil
else
tryReporter.errors
case _ => tryReporter.errors
}
(errors, allArgsHot)
def filterValue(value: Value): Value =
// methods of polyfun does not have denotation
if !meth.exists then value
else value.filterClass(meth.owner)
// fast track if the current object is already initialized
if promoted.isCurrentObjectPromoted then Hot
else if isAlwaysSafe(meth) then Hot
else if meth eq defn.Any_asInstanceOf then value
else filterValue(value) match {
case Hot =>
if isSyntheticApply(meth) && meth.hasSource then
val klass = meth.owner.companionClass.asClass
instantiate(klass, klass.primaryConstructor, args)
else
if receiver.typeSymbol.isStaticOwner then
val (errors, allArgsHot) = checkArgsWithParametricity()
if allArgsHot then
Hot: Value
else if errors.nonEmpty then
reporter.reportAll(errors)
Hot: Value
else
Cold: Value
else
promoteArgs()
Hot
case Cold =>
promoteArgs()
val error = CallCold(meth)(trace)
reporter.report(error)
Hot
case ref: Ref =>
val isLocal = !meth.owner.isClass
val target =
if !needResolve then
meth
else if superType.exists then
meth
else if meth.name.is(SuperAccessorName) then
ResolveSuper.rebindSuper(ref.klass, meth)
else
resolve(ref.klass, meth)
if target.isOneOf(Flags.Method) then
if target.hasSource then
val cls = target.owner.enclosingClass.asClass
val ddef = target.defTree.asInstanceOf[DefDef]
val tryReporter = Reporter.errorsIn { promoteArgs() }
// normal method call
if tryReporter.errors.nonEmpty && isSyntheticApply(meth) then
tryReporter.abort()
val klass = meth.owner.companionClass.asClass
val targetCls = klass.owner.lexicallyEnclosingClass.asClass
val outer = resolveThis(targetCls, ref, meth.owner.asClass)
outer.instantiate(klass, klass.primaryConstructor, args)
else
reporter.reportAll(tryReporter.errors)
extendTrace(ddef) {
eval(ddef.getRhs, ref, cls, cacheResult = true)
}
else if ref.canIgnoreMethodCall(target) then
Hot
else
// no source code available
promoteArgs()
// try promoting the receiver as last resort
val hasErrors = Reporter.hasErrors {
ref.promote(ref.show + " has no source code and is not provably transitively initialized (Hot).")
}
if hasErrors then
val error = CallUnknown(target)(trace)
reporter.report(error)
Hot
else if target.exists then
// method call resolves to a field
val obj = ref.objekt
if obj.hasField(target) then
obj.field(target)
else
value.select(target, receiver, needResolve = false)
else
report.warning("[Internal error] Unexpected resolution failure: ref.klass = " + ref.klass.show + ", meth = " + meth.show + Trace.show, Trace.position)
Hot
case Fun(body, thisV, klass) =>
// meth == NoSymbol for poly functions
if meth.name.toString == "tupled" then value // a call like `fun.tupled`
else
promoteArgs()
eval(body, thisV, klass, cacheResult = true)
case RefSet(refs) =>
refs.map(_.call(meth, args, receiver, superType)).join
}
}
def callConstructor(ctor: Symbol, args: List[ArgInfo]): Contextual[Value] = log("call " + ctor.show + ", args = " + args.map(_.value.show), printer, (_: Value).show) {
// init "fake" param fields for parameters of primary and secondary constructors
def addParamsAsFields(args: List[Value], ref: Ref, ctorDef: DefDef) =
val params = ctorDef.termParamss.flatten.map(_.symbol)
assert(args.size == params.size, "arguments = " + args.size + ", params = " + params.size + ", ctor = " + ctor.show)
for (param, value) <- params.zip(args) do
ref.updateField(param, value)
printer.println(param.show + " initialized with " + value)
value match {
case Hot | Cold | _: RefSet | _: Fun =>
report.warning("[Internal error] unexpected constructor call, meth = " + ctor + ", value = " + value + Trace.show, Trace.position)
Hot
case ref: Warm if ref.isPopulatingParams =>
if ctor.hasSource then
val cls = ctor.owner.enclosingClass.asClass
val ddef = ctor.defTree.asInstanceOf[DefDef]
val args2 = args.map(_.value).widenArgs
addParamsAsFields(args2, ref, ddef)
if ctor.isPrimaryConstructor then
val tpl = cls.defTree.asInstanceOf[TypeDef].rhs.asInstanceOf[Template]
extendTrace(cls.defTree) { init(tpl, ref, cls) }
else
val initCall = ddef.getRhs match
case Block(call :: _, _) => call
case call => call
extendTrace(ddef) { eval(initCall, ref, cls) }
end if
else
Hot
case ref: Ref =>
if ctor.hasSource then
val cls = ctor.owner.enclosingClass.asClass
val ddef = ctor.defTree.asInstanceOf[DefDef]
val args2 = args.map(_.value).widenArgs
addParamsAsFields(args2, ref, ddef)
if ctor.isPrimaryConstructor then
val tpl = cls.defTree.asInstanceOf[TypeDef].rhs.asInstanceOf[Template]
extendTrace(cls.defTree) { eval(tpl, ref, cls, cacheResult = true) }
ref
else
extendTrace(ddef) { eval(ddef.getRhs, ref, cls, cacheResult = true) }
else if ref.canIgnoreMethodCall(ctor) then
Hot
else
// no source code available
val error = CallUnknown(ctor)(trace)
reporter.report(error)
Hot
}
}
/** Handle a new expression `new p.C` where `p` is abstracted by `value` */
def instantiate(klass: ClassSymbol, ctor: Symbol, args: List[ArgInfo]): Contextual[Value] = log("instantiating " + klass.show + ", value = " + value + ", args = " + args.map(_.value.show), printer, (_: Value).show) {
def tryLeak(warm: Warm, nonHotOuterClass: Symbol, argValues: List[Value]): Contextual[Value] =
val argInfos2 = args.zip(argValues).map { (argInfo, v) => argInfo.copy(value = v) }
val errors = Reporter.stopEarly {
given Trace = Trace.empty
warm.callConstructor(ctor, argInfos2)
}
if errors.nonEmpty then
val indices =
for
(arg, i) <- argValues.zipWithIndex
if arg.isCold
yield
i + 1
val error = UnsafeLeaking(errors.head, nonHotOuterClass, indices)(trace)
reporter.report(error)
Hot
else
warm
if promoted.isCurrentObjectPromoted then Hot
else value.filterClass(klass.owner) match {
case Hot =>
var allHot = true
val args2 = args.map { arg =>
val hasErrors = Reporter.hasErrors { arg.promote }
allHot = allHot && !hasErrors
if hasErrors then arg.value.widenArg
else Hot
}
if allHot then
Hot
else
val outer = Hot
val warm = Warm(klass, outer, ctor, args2).ensureObjectExists()
tryLeak(warm, NoSymbol, args2)
case Cold =>
val error = CallCold(ctor)(trace)
reporter.report(error)
Hot
case ref: Ref =>
// widen the outer to finitize the domain
val outer = ref match
case warm @ Warm(_, _: Warm, _, _) =>
// the widened warm object might not exist in the heap
warm.copy(outer = Cold).ensureObjectExistsAndPopulated()
case _ => ref
val argsWidened = args.map(_.value).widenArgs
val warm = Warm(klass, outer, ctor, argsWidened).ensureObjectExists()
if argsWidened.exists(_.isCold) then
tryLeak(warm, klass.owner.lexicallyEnclosingClass, argsWidened)
else
val argInfos2 = args.zip(argsWidened).map { (argInfo, v) => argInfo.copy(value = v) }
warm.callConstructor(ctor, argInfos2)
warm
case Fun(body, thisV, klass) =>
report.warning("[Internal error] unexpected tree in instantiating a function, fun = " + body.show + Trace.show, Trace.position)
Hot
case RefSet(refs) =>
refs.map(_.instantiate(klass, ctor, args)).join
}
}
end extension
extension (ref: Ref)
def accessLocal(tmref: TermRef, klass: ClassSymbol): Contextual[Value] =
val sym = tmref.symbol
if sym.is(Flags.Param) && sym.owner.isConstructor then
val enclosingClass = sym.owner.enclosingClass.asClass
val thisValue2 = resolveThis(enclosingClass, ref, klass)
thisValue2 match
case Hot => Hot
case ref: Ref => ref.objekt.field(sym)
case _ =>
report.warning("[Internal error] unexpected this value accessing local variable, sym = " + sym.show + ", thisValue = " + thisValue2.show + Trace.show, Trace.position)
Hot
else if sym.is(Flags.Param) then
Hot
else
sym.defTree match {
case vdef: ValDef =>
// resolve this for local variable
val enclosingClass = sym.owner.enclosingClass.asClass
val thisValue2 = resolveThis(enclosingClass, ref, klass)
thisValue2 match
case Hot => Hot
case Cold => Cold
case ref: Ref => eval(vdef.getRhs, ref, enclosingClass, cacheResult = sym.is(Flags.Lazy))
case _ =>
report.warning("[Internal error] unexpected this value when accessing local variable, sym = " + sym.show + ", thisValue = " + thisValue2.show + Trace.show, Trace.position)
Hot
end match
case _ => Hot
}
end extension
// ----- Promotion ----------------------------------------------------
extension (ref: Ref)
/** Whether the object is fully assigned
*
* It means all fields and outers are set. For performance, we don't check
* outers here, because Scala semantics ensure that they are always set
* before any user code in the constructor.
*
* Note that `isFullyFilled = true` does not mean we can use the
* object freely, as its fields or outers may still reach uninitialized
* objects.
*/
def isFullyFilled: Contextual[Boolean] = log("isFullyFilled " + ref, printer) {
val obj = ref.objekt
ref.klass.baseClasses.forall { klass =>
!klass.hasSource || {
val nonInits = klass.info.decls.filter { member =>
!member.isOneOf(Flags.Method | Flags.Lazy | Flags.Deferred)
&& !member.isType
&& !obj.hasField(member)
}
printer.println("nonInits = " + nonInits)
nonInits.isEmpty
}
}
}
def nonInitFields(): Contextual[List[Symbol]] =
val obj = ref.objekt
ref.klass.baseClasses.flatMap { klass =>
if klass.hasSource then
klass.info.decls.filter { member =>
!member.isOneOf(Flags.Method | Flags.Lazy | Flags.Deferred)
&& !member.isType
&& !obj.hasField(member)
}
else
Nil
}
end extension
extension (thisRef: ThisRef)
def tryPromoteCurrentObject(): Contextual[Boolean] = log("tryPromoteCurrentObject ", printer) {
if promoted.isCurrentObjectPromoted then
true
else if thisRef.isFullyFilled then
// If we have all fields initialized, then we can promote This to hot.
promoted.promoteCurrent(thisRef)
true
else
false
}
extension (value: Value)
/** Promotion of values to hot */
def promote(msg: String): Contextual[Unit] = log("promoting " + value + ", promoted = " + promoted, printer) {
if !promoted.isCurrentObjectPromoted then