Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait IdentityDenotTransformertrait DenotTransformerclass MiniPhaseclass Phaseclass Objecttrait Matchableclass AnyShow all
Members list
Type members
Classlikes
The map contains the list of the offset trees.
The map contains the list of the offset trees.
Attributes
- Supertypes
Value members
Concrete methods
Can this transform create or delete non-private members?
Attributes
- Definition Classes
Create thread-unsafe lazy accessor for not-nullable types equivalent to such code
Create thread-unsafe lazy accessor for not-nullable types equivalent to such code
def methodSymbol() = {
if (target eq null) {
target = rhs
nullable = null
}
target
}
Attributes
Create a threadsafe lazy accessor and function that computes the field's value. Evaluating
and NullValue
are represented by object
s and Waiting
by a class that allows awaiting the completion of the evaluation. Note that since tail-recursive functions are transformed before lazy-vals, this implementation does involve explicit while loop. PatternMatcher
is coming before LazyVals
, therefore the pattern matching is implemented using if-s.
Create a threadsafe lazy accessor and function that computes the field's value. Evaluating
and NullValue
are represented by object
s and Waiting
by a class that allows awaiting the completion of the evaluation. Note that since tail-recursive functions are transformed before lazy-vals, this implementation does involve explicit while loop. PatternMatcher
is coming before LazyVals
, therefore the pattern matching is implemented using if-s.
private @volatile var _x: AnyRef = null
def x: A =
val result = _x
if result.isInstanceOf[A] then
result // possible unboxing applied here
else if result.eq(NullValue) then
null // possible unboxing applied here
else
x_compute() // possible unboxing applied here
private def x_compute(): AnyRef =
while <EmptyTree> do
val current: AnyRef = _x
if current.eq(null) then
if CAS(_x, null, Evaluating) then
var resultNullable: AnyRef = null
var result: AnyRef = null
try
resultNullable = rhs
nullable = null // nulls out the nullable fields used only in initialization
if resultNullable.eq(null) then
result = NullValue
else
result = resultNullable
finally
if !CAS(_x, Evaluating, result) then
val lock = _x.asInstanceOf[Waiting]
CAS(_x, lock, result)
lock.release()
return resultNullable
else
if current.isInstanceOf[LazyValControlState] then
if current.eq(Evaluating) then // To avoid creating Waiting instance
CAS(current, current, new Waiting)
else if current.isInstanceOf[Waiting] then
current.asInstanceOf[Waiting].await()
else return null
else
return current
end while
*
Value parameters
- claz
-
the class containing this lazy val field
- memberDef
-
the transformed lazy field member definition
- offset
-
the offset of the field in the storage allocation of the class
- target
-
the target synthetic field
- thiz
-
a reference to the transformed class
Attributes
Create a threadsafe lazy accessor equivalent to such code
Create a threadsafe lazy accessor equivalent to such code
def methodSymbol(): Int = {
while (true) {
val flag = LazyVals.get(this, bitmap_offset)
val state = LazyVals.STATE(flag, <field-id>)
if (state == <state-3>) {
return value_0
} else if (state == <state-0>) {
if (LazyVals.CAS(this, bitmap_offset, flag, <state-1>, <field-id>)) {
try {
val result = <RHS>
value_0 = result
nullable = null
LazyVals.setFlag(this, bitmap_offset, <state-3>, <field-id>)
return result
}
catch {
case ex =>
LazyVals.setFlag(this, bitmap_offset, <state-0>, <field-id>)
throw ex
}
}
} else /* if (state == <state-1> || state == <state-2>) */ {
LazyVals.wait4Notification(this, bitmap_offset, flag, <field-id>)
}
}
}
Attributes
Create thread-unsafe lazy accessor equivalent to such code
Create thread-unsafe lazy accessor equivalent to such code
def methodSymbol() = {
if (!flag) {
target = rhs
flag = true
nullable = null
}
target
}
Attributes
A name given to the Phase
that can be used to debug the compiler. For instance, it is possible to print trees after a given phase using:
A name given to the Phase
that can be used to debug the compiler. For instance, it is possible to print trees after a given phase using:
$ ./bin/scalac -Xprint:<phaseNameHere> sourceFile.scala
Attributes
- Definition Classes
Attributes
- Definition Classes
List of names of phases that should have finished processing of tree before this phase starts processing same tree
List of names of phases that should have finished processing of tree before this phase starts processing same tree
Attributes
- Definition Classes
Attributes
- Definition Classes
Desugar a local lazy val x: Int = <RHS>
into:
Desugar a local lazy val x: Int = <RHS>
into:
val x$lzy = new scala.runtime.LazyInt()
def x$lzycompute(): Int = x$lzy.synchronized {
if (x$lzy.initialized()) x$lzy.value()
else x$lzy.initialize(<RHS>)
// TODO: Implement Unit-typed lazy val optimization described below
// for a Unit-typed lazy val, this becomes `{ rhs ; x$lzy.initialize() }`
// to avoid passing around BoxedUnit
}
def x(): Int = if (x$lzy.initialized()) x$lzy.value() else x$lzycompute()
Attributes
Attributes
- Definition Classes
Make an eager val that would implement synthetic module. Eager val ensures thread safety and has less code generated.
Make an eager val that would implement synthetic module. Eager val ensures thread safety and has less code generated.
Attributes
Append offset fields to companion objects
Attributes
- Definition Classes
Inherited methods
If set, implicit search is enabled
Can this transform change the base types of a type?
Can this transform change the parents of a class?
Check what the phase achieves, to be called at any point after it is finished.
Check what the phase achieves, to be called at any point after it is finished.
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- Phase
The sequence position of this phase in the given context where 0 is reserved for NoPhase and the first real phase is at position 1. -1 if the phase is not installed in the context.
The sequence position of this phase in the given context where 0 is reserved for NoPhase and the first real phase is at position 1. -1 if the phase is not installed in the context.
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- Phase
Output should be checkable by TreeChecker
Attributes
- Inherited from:
- Phase
Is this phase the standard typerphase? True for TyperPhase, but not for other first phases (such as FromTasty or Parser). The predicate is tested in some places that perform checks and corrections. It's different from ctx.isAfterTyper (and cheaper to test).
Is this phase the standard typerphase? True for TyperPhase, but not for other first phases (such as FromTasty or Parser). The predicate is tested in some places that perform checks and corrections. It's different from ctx.isAfterTyper (and cheaper to test).
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- Phase
The last phase during which the transformed denotations are valid
The last phase during which the transformed denotations are valid
Attributes
- Inherited from:
- DenotTransformer
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- Phase
If set, use relaxed typing for all phases in group
Attributes
- Inherited from:
- Phase
List of names of phases that should have finished their processing of all compilation units before this phase starts
List of names of phases that should have finished their processing of all compilation units before this phase starts
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- Phase
Attributes
- Inherited from:
- Phase
Convert a compilation unit's tree to a string; can be overridden
Attributes
- Inherited from:
- MiniPhase
The transformation method
Transform tree using all transforms of current group (including this one)
Transform tree using all transforms of current group (including this one)
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Transform single node using all transforms following the current one in this group
Transform single node using all transforms following the current one in this group
Attributes
- Inherited from:
- MiniPhase
Transform tree using all transforms following the current one in this group
Transform tree using all transforms following the current one in this group
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
Attributes
- Inherited from:
- MiniPhase
The validity period of the transformed denotations in the given context
The validity period of the transformed denotations in the given context
Attributes
- Inherited from:
- DenotTransformer
Inherited fields
Attributes
- Inherited from:
- MiniPhase