summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2009-03-30 14:50:49 +0000
committerIulian Dragos <jaguarul@gmail.com>2009-03-30 14:50:49 +0000
commit845c4fcd316ea0ec0b9ad38cad80d77a93607342 (patch)
treebd00d2dfe685d4afea75ce84d02641bf124fa5ef /src/compiler
parentfaa34dab7d0528cdaf9b0e0e5a47a39dc46adc87 (diff)
downloadscala-845c4fcd316ea0ec0b9ad38cad80d77a93607342.tar.gz
scala-845c4fcd316ea0ec0b9ad38cad80d77a93607342.tar.bz2
scala-845c4fcd316ea0ec0b9ad38cad80d77a93607342.zip
Fixed nested lazy values (#1589).
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/transform/LazyVals.scala15
-rw-r--r--src/compiler/scala/tools/nsc/transform/Mixin.scala24
2 files changed, 25 insertions, 14 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/LazyVals.scala b/src/compiler/scala/tools/nsc/transform/LazyVals.scala
index f3d74e3ed4..ce960068e2 100644
--- a/src/compiler/scala/tools/nsc/transform/LazyVals.scala
+++ b/src/compiler/scala/tools/nsc/transform/LazyVals.scala
@@ -72,8 +72,8 @@ abstract class LazyVals extends Transform {
case Block(_, _) if !added =>
added = true
typed(addBitmapDefs(sym, stat))
- case ValDef(mods, name, tpt, b @ Block(_, _)) =>
- typed(copy.ValDef(stat, mods, name, tpt, addBitmapDefs(stat.symbol, b)))
+ case ValDef(mods, name, tpt, rhs) =>
+ typed(copy.ValDef(stat, mods, name, tpt, addBitmapDefs(stat.symbol, rhs)))
case _ =>
stat
}
@@ -84,21 +84,26 @@ abstract class LazyVals extends Transform {
}
/** Add the bitmap definitions to the rhs of a method definition.
- * If the rhs has been tail-call trasnformed, insert the bitmap
+ * If the rhs has been tail-call transformed, insert the bitmap
* definitions inside the top-level label definition, so that each
* iteration has the lazy values un-initialized. Otherwise add them
* at the very beginning of the method.
*/
private def addBitmapDefs(methSym: Symbol, rhs: Tree): Tree = {
+ def prependStats(stats: List[Tree], tree: Tree): Block = tree match {
+ case Block(stats1, res) => Block(stats ::: stats1, res)
+ case _ => Block(stats, tree)
+ }
+
val bmps = bitmaps(methSym) map { b => ValDef(b, Literal(Constant(0))) }
if (bmps.isEmpty) rhs else rhs match {
case Block(assign, l @ LabelDef(name, params, rhs1))
if (name.toString.equals("_" + methSym.name)
&& List.forall2(params.tail, methSym.tpe.paramTypes) { (ident, tpe) => ident.tpe == tpe }) =>
val sym = l.symbol
- Block(assign, copy.LabelDef(l, name, params, typed(Block(bmps, rhs1))))
+ Block(assign, copy.LabelDef(l, name, params, typed(prependStats(bmps, rhs1))))
- case _ => Block(bmps, rhs)
+ case _ => prependStats(bmps, rhs)
}
}
diff --git a/src/compiler/scala/tools/nsc/transform/Mixin.scala b/src/compiler/scala/tools/nsc/transform/Mixin.scala
index 16f710a481..c41ade3ea7 100644
--- a/src/compiler/scala/tools/nsc/transform/Mixin.scala
+++ b/src/compiler/scala/tools/nsc/transform/Mixin.scala
@@ -611,7 +611,7 @@ abstract class Mixin extends InfoTransform {
* where bitmap$n is an int value acting as a bitmap of initialized values. It is
* the 'n' is (offset / 32), the MASK is (1 << (offset % 32)).
*/
- def mkLazyDef(clazz: Symbol, init: Tree, retVal: Tree, offset: Int): Tree = {
+ def mkLazyDef(clazz: Symbol, init: List[Tree], retVal: Tree, offset: Int): Tree = {
val bitmapSym = bitmapFor(clazz, offset)
@@ -620,12 +620,12 @@ abstract class Mixin extends InfoTransform {
If(mkTest(clazz, mask, bitmapSym, true),
gen.mkSynchronized(gen.mkAttributedThis(clazz),
If(mkTest(clazz, mask, bitmapSym, true),
- Block(List(init,
- mkSetFlag(clazz, offset)),
+ Block(init :::
+ List(mkSetFlag(clazz, offset)),
Literal(Constant(()))),
EmptyTree)),
EmptyTree)
- localTyper.typed(atPos(init.pos)(Block(List(result), retVal)))
+ localTyper.typed(atPos(init.head.pos)(Block(List(result), retVal)))
}
def mkCheckedAccessor(clazz: Symbol, retVal: Tree, offset: Int, pos: Position): Tree = {
@@ -644,15 +644,21 @@ abstract class Mixin extends InfoTransform {
* the class constructor is changed to set the initialized bits.
*/
def addCheckedGetters(clazz: Symbol, stats: List[Tree]): List[Tree] = {
+ def findLazyAssignment(stats: List[Tree]): Tree =
+ (stats find {
+ case Assign(lhs, _) if lhs.symbol.hasFlag(LAZY) => true
+ case _ => false
+ }).get // if there's no assignment then it's a bug and we crash
+
val stats1 = for (stat <- stats; sym = stat.symbol) yield stat match {
case DefDef(mods, name, tp, vp, tpt, rhs)
if sym.hasFlag(LAZY) && rhs != EmptyTree && !clazz.isImplClass =>
assert(fieldOffset.isDefinedAt(sym))
val rhs1 = if (sym.tpe.resultType.typeSymbol == definitions.UnitClass)
- mkLazyDef(clazz, rhs, Literal(()), fieldOffset(sym))
+ mkLazyDef(clazz, List(rhs), Literal(()), fieldOffset(sym))
else {
- val Block(List(assignment), res) = rhs
- mkLazyDef(clazz, assignment, Select(This(clazz), res.symbol), fieldOffset(sym))
+ val Block(stats, res) = rhs
+ mkLazyDef(clazz, stats, Select(This(clazz), res.symbol), fieldOffset(sym))
}
copy.DefDef(stat, mods, name, tp, vp, tpt, rhs1)
@@ -788,13 +794,13 @@ abstract class Mixin extends InfoTransform {
if (sym.hasFlag(LAZY) && sym.isGetter) {
val rhs1 =
if (sym.tpe.resultType.typeSymbol == definitions.UnitClass)
- mkLazyDef(clazz, Apply(staticRef(initializer(sym)), List(gen.mkAttributedThis(clazz))), Literal(()), fieldOffset(sym))
+ mkLazyDef(clazz, List(Apply(staticRef(initializer(sym)), List(gen.mkAttributedThis(clazz)))), Literal(()), fieldOffset(sym))
else {
val assign = atPos(sym.pos) {
Assign(Select(This(sym.accessed.owner), sym.accessed) /*gen.mkAttributedRef(sym.accessed)*/ ,
Apply(staticRef(initializer(sym)), gen.mkAttributedThis(clazz) :: Nil))
}
- mkLazyDef(clazz, assign, Select(This(clazz), sym.accessed), fieldOffset(sym))
+ mkLazyDef(clazz, List(assign), Select(This(clazz), sym.accessed), fieldOffset(sym))
}
rhs1
} else if (sym.getter(sym.owner).tpe.resultType.typeSymbol == definitions.UnitClass) {