All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.codegen.inline.RegeneratedLambdaFieldRemapper Maven / Gradle / Ivy

There is a newer version: 2.1.20-RC3
Show newest version
/*
 * Copyright 2010-2015 JetBrains s.r.o.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.jetbrains.kotlin.codegen.inline;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.kotlin.codegen.StackValue;
import org.jetbrains.org.objectweb.asm.Opcodes;
import org.jetbrains.org.objectweb.asm.Type;
import org.jetbrains.org.objectweb.asm.tree.FieldInsnNode;

import java.util.Collection;
import java.util.Map;

public class RegeneratedLambdaFieldRemapper extends FieldRemapper {
    private final String oldOwnerType;
    private final String newOwnerType;
    private final Parameters parameters;
    private final Map recapturedLambdas;
    private final boolean isConstructor;

    public RegeneratedLambdaFieldRemapper(
            @NotNull String oldOwnerType,
            @NotNull String newOwnerType,
            @NotNull Parameters parameters,
            @NotNull Map recapturedLambdas,
            @NotNull FieldRemapper remapper,
            boolean isConstructor
    ) {
        super(oldOwnerType, remapper, parameters);
        this.oldOwnerType = oldOwnerType;
        this.newOwnerType = newOwnerType;
        this.parameters = parameters;
        this.recapturedLambdas = recapturedLambdas;
        this.isConstructor = isConstructor;
    }

    @Override
    public boolean canProcess(@NotNull String fieldOwner, @NotNull String fieldName, boolean isFolding) {
        return super.canProcess(fieldOwner, fieldName, isFolding) || isRecapturedLambdaType(fieldOwner, isFolding);
    }

    private boolean isRecapturedLambdaType(@NotNull String owner, boolean isFolding) {
        return recapturedLambdas.containsKey(owner) && (isFolding || !(parent instanceof InlinedLambdaRemapper));
    }

    @Nullable
    @Override
    public CapturedParamInfo findField(@NotNull FieldInsnNode fieldInsnNode, @NotNull Collection captured) {
        boolean searchInParent = !canProcess(fieldInsnNode.owner, fieldInsnNode.name, false);
        if (searchInParent) {
            return parent.findField(fieldInsnNode);
        }
        return findFieldInMyCaptured(fieldInsnNode);
    }

    @Override
    public boolean processNonAload0FieldAccessChains(boolean isInlinedLambda) {
        return isInlinedLambda && isConstructor;
    }

    @Nullable
    private CapturedParamInfo findFieldInMyCaptured(@NotNull FieldInsnNode fieldInsnNode) {
        return super.findField(fieldInsnNode, parameters.getCaptured());
    }

    @NotNull
    @Override
    public String getNewLambdaInternalName() {
        return newOwnerType;
    }

    @Nullable
    @Override
    public StackValue getFieldForInline(@NotNull FieldInsnNode node, @Nullable StackValue prefix) {
        assert node.name.startsWith("$$$") : "Captured field template should start with $$$ prefix";
        if (node.name.equals("$$$" + InlineCodegenUtil.THIS)) {
            assert oldOwnerType.equals(node.owner) : "Can't unfold '$$$THIS' parameter";
            return StackValue.LOCAL_0;
        }

        FieldInsnNode fin = new FieldInsnNode(node.getOpcode(), node.owner, node.name.substring(3), node.desc);
        CapturedParamInfo field = findFieldInMyCaptured(fin);

        boolean searchInParent = false;
        if (field == null) {
            field = findFieldInMyCaptured(new FieldInsnNode(
                    Opcodes.GETSTATIC, oldOwnerType, InlineCodegenUtil.THIS$0,
                    Type.getObjectType(parent.getLambdaInternalName()).getDescriptor()
            ));
            searchInParent = true;
            if (field == null) {
                throw new IllegalStateException("Couldn't find captured this " + getLambdaInternalName() + " for " + node.name);
            }
        }

        StackValue result = StackValue.field(
                field.isSkipped ?
                Type.getObjectType(parent.parent.getNewLambdaInternalName()) : field.getType(),
                Type.getObjectType(getNewLambdaInternalName()), /*TODO owner type*/
                field.getNewFieldName(), false,
                prefix == null ? StackValue.LOCAL_0 : prefix
        );

        return searchInParent ? parent.getFieldForInline(node, result) : result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy