aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/runtime/LazyHolders.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2014-03-14 12:56:11 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-03-19 14:13:47 +0100
commit5cbd2fbc8409b446f8751792b006693e1d091055 (patch)
tree6440bff96597df0e10e69a66ec673091f92ea284 /src/dotty/runtime/LazyHolders.scala
parent46856320f4e21d94b3c5c29a921efac40e12421f (diff)
downloaddotty-5cbd2fbc8409b446f8751792b006693e1d091055.tar.gz
dotty-5cbd2fbc8409b446f8751792b006693e1d091055.tar.bz2
dotty-5cbd2fbc8409b446f8751792b006693e1d091055.zip
LazyVals phase.
Creates accessors for lazy vals: 1) lazy local vals are rewritten to dotty.runtime.Lazy*** holders 2) for a non-volatile field lazy val create a non-thread-safe accessor and flag: 2.a) if lazy val type indicates that val is not nullable, uses null value as a flag 2.b) else uses boolean flag for sake of performance, method size, and allowing more jvm optimizations 3) for a volatile field lazy val use double locking scheme, that guaranties no spurious deadlocks, using long bits as bitmaps and creating companion objects to store offsets needed for unsafe methods. Conflicts: test/dotc/tests.scala
Diffstat (limited to 'src/dotty/runtime/LazyHolders.scala')
-rw-r--r--src/dotty/runtime/LazyHolders.scala40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/dotty/runtime/LazyHolders.scala b/src/dotty/runtime/LazyHolders.scala
new file mode 100644
index 000000000..86c5d34ec
--- /dev/null
+++ b/src/dotty/runtime/LazyHolders.scala
@@ -0,0 +1,40 @@
+package dotty.runtime
+
+/**
+ * Classes used as holders for local lazy vals
+ */
+class LazyInt(init: => Int) {
+ lazy val value = init
+}
+
+class LazyLong(init: => Long) {
+ lazy val value = init
+}
+
+class LazyBoolean(init: => Boolean) {
+ lazy val value = init
+}
+
+class LazyDouble(init: => Double) {
+ lazy val value = init
+}
+
+class LazyFloat(init: => Float) {
+ lazy val value = init
+}
+
+class LazyByte(init: => Byte) {
+ lazy val value = init
+}
+
+class LazyRef(init: => AnyRef) {
+ lazy val value = init
+}
+
+class LazyShort(init: => Short) {
+ lazy val value = init
+}
+
+class LazyChar(init: => Char) {
+ lazy val value = init
+}