[JS IR] Add deep copying for callable reference
Perform a deep copy of callable reference adapter on inline lowering ^KT-49844 Fixed
This commit is contained in:
committed by
Space
parent
7b41d382b8
commit
b82c306530
+6
@@ -1116,6 +1116,12 @@ public class FirBlackBoxInlineCodegenTestGenerated extends AbstractFirBlackBoxIn
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+33
-20
@@ -245,10 +245,17 @@ class FunctionInlining(
|
||||
return super.visitCall(expression)
|
||||
|
||||
return when {
|
||||
functionArgument is IrFunctionReference -> inlineFunctionReference(expression, functionArgument)
|
||||
functionArgument.isAdaptedFunctionReference() -> inlineAdaptedFunctionReference(expression, functionArgument as IrBlock)
|
||||
functionArgument is IrFunctionExpression -> inlineFunctionExpression(expression, functionArgument)
|
||||
else -> super.visitCall(expression)
|
||||
functionArgument is IrFunctionReference ->
|
||||
inlineFunctionReference(expression, functionArgument, functionArgument.symbol.owner)
|
||||
|
||||
functionArgument.isAdaptedFunctionReference() ->
|
||||
inlineAdaptedFunctionReference(expression, functionArgument as IrBlock)
|
||||
|
||||
functionArgument is IrFunctionExpression ->
|
||||
inlineFunctionExpression(expression, functionArgument)
|
||||
|
||||
else ->
|
||||
super.visitCall(expression)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -264,10 +271,12 @@ class FunctionInlining(
|
||||
}
|
||||
|
||||
fun inlineAdaptedFunctionReference(irCall: IrCall, irBlock: IrBlock): IrExpression {
|
||||
val irFunction = irBlock.statements[0] as IrFunction
|
||||
irFunction.transformChildrenVoid(this)
|
||||
val irFunction = irBlock.statements[0].let {
|
||||
it.transformChildrenVoid(this)
|
||||
copyIrElement.copy(it) as IrFunction
|
||||
}
|
||||
val irFunctionReference = irBlock.statements[1] as IrFunctionReference
|
||||
val inlinedFunctionReference = inlineFunctionReference(irCall, irFunctionReference)
|
||||
val inlinedFunctionReference = inlineFunctionReference(irCall, irFunctionReference, irFunction)
|
||||
return IrBlockImpl(
|
||||
irCall.startOffset, irCall.endOffset,
|
||||
inlinedFunctionReference.type, origin = null,
|
||||
@@ -275,7 +284,11 @@ class FunctionInlining(
|
||||
)
|
||||
}
|
||||
|
||||
fun inlineFunctionReference(irCall: IrCall, irFunctionReference: IrFunctionReference): IrExpression {
|
||||
fun inlineFunctionReference(
|
||||
irCall: IrCall,
|
||||
irFunctionReference: IrFunctionReference,
|
||||
inlinedFunction: IrFunction
|
||||
): IrExpression {
|
||||
irFunctionReference.transformChildrenVoid(this)
|
||||
|
||||
val function = irFunctionReference.symbol.owner
|
||||
@@ -294,14 +307,14 @@ class FunctionInlining(
|
||||
}
|
||||
|
||||
val immediateCall = with(irCall) {
|
||||
when (function) {
|
||||
when (inlinedFunction) {
|
||||
is IrConstructor -> {
|
||||
val classTypeParametersCount = function.parentAsClass.typeParameters.size
|
||||
val classTypeParametersCount = inlinedFunction.parentAsClass.typeParameters.size
|
||||
IrConstructorCallImpl.fromSymbolOwner(
|
||||
startOffset,
|
||||
endOffset,
|
||||
function.returnType,
|
||||
function.symbol,
|
||||
inlinedFunction.returnType,
|
||||
inlinedFunction.symbol,
|
||||
classTypeParametersCount
|
||||
)
|
||||
}
|
||||
@@ -309,13 +322,13 @@ class FunctionInlining(
|
||||
IrCallImpl(
|
||||
startOffset,
|
||||
endOffset,
|
||||
function.returnType,
|
||||
function.symbol,
|
||||
function.typeParameters.size,
|
||||
function.valueParameters.size
|
||||
inlinedFunction.returnType,
|
||||
inlinedFunction.symbol,
|
||||
inlinedFunction.typeParameters.size,
|
||||
inlinedFunction.valueParameters.size
|
||||
)
|
||||
else ->
|
||||
error("Unknown function kind : ${function.render()}")
|
||||
error("Unknown function kind : ${inlinedFunction.render()}")
|
||||
}
|
||||
}.apply {
|
||||
for (parameter in functionParameters) {
|
||||
@@ -353,15 +366,15 @@ class FunctionInlining(
|
||||
}
|
||||
when (parameter) {
|
||||
function.dispatchReceiverParameter ->
|
||||
this.dispatchReceiver = argument.implicitCastIfNeededTo(function.dispatchReceiverParameter!!.type)
|
||||
this.dispatchReceiver = argument.implicitCastIfNeededTo(inlinedFunction.dispatchReceiverParameter!!.type)
|
||||
|
||||
function.extensionReceiverParameter ->
|
||||
this.extensionReceiver = argument.implicitCastIfNeededTo(function.extensionReceiverParameter!!.type)
|
||||
this.extensionReceiver = argument.implicitCastIfNeededTo(inlinedFunction.extensionReceiverParameter!!.type)
|
||||
|
||||
else ->
|
||||
putValueArgument(
|
||||
parameter.index,
|
||||
argument.implicitCastIfNeededTo(function.valueParameters[parameter.index].type)
|
||||
argument.implicitCastIfNeededTo(inlinedFunction.valueParameters[parameter.index].type)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
// WITH_STDLIB
|
||||
// KJS_WITH_FULL_RUNTIME
|
||||
|
||||
// FILE: 1.kt
|
||||
package test
|
||||
|
||||
inline fun doIt(f: () -> Int): Int = f()
|
||||
inline fun calcOnePlusTwo(f: (Int) -> Int): Int = f(1) + f(2)
|
||||
inline fun getFirstArg(a: Int, vararg other: Int): Int = a
|
||||
|
||||
fun testCustomFunction(): Boolean {
|
||||
val x = doIt { calcOnePlusTwo(::getFirstArg) }
|
||||
return x == 3
|
||||
}
|
||||
|
||||
fun testRuntimeFunctionCase1(): Boolean {
|
||||
val x = "123".let { it.minOf(::maxOf) }
|
||||
return x == '1'
|
||||
}
|
||||
|
||||
fun testRuntimeFunctionCase2(): Boolean {
|
||||
val x = "3123".minOfOrNull { a: Char -> a.titlecase().maxOf(::maxOf) }
|
||||
return x == '1'
|
||||
}
|
||||
|
||||
// FILE: 2.kt
|
||||
import test.*
|
||||
|
||||
fun box(): String {
|
||||
if (!testCustomFunction()) return "testCustomFunction failed"
|
||||
if (!testRuntimeFunctionCase1()) return "testRuntimeFunctionCase1 failed"
|
||||
if (!testRuntimeFunctionCase2()) return "testRuntimeFunctionCase2 failed"
|
||||
return "OK"
|
||||
}
|
||||
+6
@@ -1116,6 +1116,12 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -1116,6 +1116,12 @@ public class CompileKotlinAgainstInlineKotlinTestGenerated extends AbstractCompi
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -1116,6 +1116,12 @@ public class IrBlackBoxInlineCodegenTestGenerated extends AbstractIrBlackBoxInli
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -1116,6 +1116,12 @@ public class IrCompileKotlinAgainstInlineKotlinTestGenerated extends AbstractIrC
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -1116,6 +1116,12 @@ public class IrSerializeCompileKotlinAgainstInlineKotlinTestGenerated extends Ab
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -1116,6 +1116,12 @@ public class JvmIrAgainstOldBoxInlineTestGenerated extends AbstractJvmIrAgainstO
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -1116,6 +1116,12 @@ public class JvmOldAgainstIrBoxInlineTestGenerated extends AbstractJvmOldAgainst
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -918,6 +918,12 @@ public class JsCodegenInlineTestGenerated extends AbstractJsCodegenInlineTest {
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
+6
@@ -918,6 +918,12 @@ public class IrJsCodegenInlineTestGenerated extends AbstractIrJsCodegenInlineTes
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
Generated
+6
@@ -36326,6 +36326,12 @@ public class ExternalTestGenerated extends AbstractExternalNativeBlackBoxTest {
|
||||
public void testInlineVarargInts() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/inlineVarargInts.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("multipleCallableReferenceUsage.kt")
|
||||
public void testMultipleCallableReferenceUsage() throws Exception {
|
||||
runTest("compiler/testData/codegen/boxInline/callableReference/adaptedReferences/multipleCallableReferenceUsage.kt");
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
Reference in New Issue
Block a user