JVM IR: add jvmLocalClassExtractionPhase to lift out local classes from initializers

Otherwise a local class in a field initializer or anonymous init block
is copied into each constructor of the containing class (because
InitializersLowering calls deepCopy).

Since the code structure no longer resembles the original source code
here, record a custom EnclosingMethod mapping before moving such
classes, and use it in codegen.
This commit is contained in:
Alexander Udalov
2019-10-31 16:56:04 +01:00
parent c5159d9cbe
commit 6be9101675
13 changed files with 182 additions and 20 deletions
@@ -0,0 +1,47 @@
// TARGET_BACKEND: JVM
// WITH_RUNTIME
class C {
val f by foo {
{}
}
}
fun foo(f: () -> Any): Any = f()
operator fun Any.getValue(thiz: Any?, metadata: Any?): Any = this
fun box(): String {
// This is the class for lambda inside the `foo` call (`{}`)
val innerLambda = C().f.javaClass
val emInner = innerLambda.getEnclosingMethod()
if (emInner?.getName() != "invoke") return "Fail: incorrect enclosing method for inner lambda: $emInner"
val ecInner = innerLambda.getEnclosingClass()
if (ecInner?.getName() != "C\$f\$2") return "Fail: incorrect enclosing class for inner lambda: $ecInner"
val ectorInner = innerLambda.getEnclosingConstructor()
if (ectorInner != null) return "Fail: inner lambda should not have enclosing constructor: $ectorInner"
val dcInner = innerLambda.getDeclaringClass()
if (dcInner != null) return "Fail: inner lambda should not have declaring class: $dcInner"
// This is the class for lambda that is passed as an argument to `foo`
val outerLambda = ecInner
val emOuter = outerLambda.getEnclosingMethod()
if (emOuter != null) return "Fail: outer lambda should not have enclosing method: $emOuter"
val ecOuter = outerLambda.getEnclosingClass()
if (ecOuter?.getName() != "C") return "Fail: incorrect enclosing class for outer lambda: $ecOuter"
val ectorOuter = outerLambda.getEnclosingConstructor()
if (ectorOuter == null) return "Fail: outer lambda _should_ have enclosing constructor"
val dcOuter = outerLambda.getDeclaringClass()
if (dcOuter != null) return "Fail: outer lambda should not have declaring class: $dcOuter"
return "OK"
}