Include metadata in light classes for kapt
This commit is contained in:
@@ -404,6 +404,7 @@ public abstract class AnnotationCodegen {
|
|||||||
case FULL:
|
case FULL:
|
||||||
throw new IllegalStateException("Don't know how to compile annotation value " + value);
|
throw new IllegalStateException("Don't know how to compile annotation value " + value);
|
||||||
case LIGHT_CLASSES:
|
case LIGHT_CLASSES:
|
||||||
|
case LIGHT_CLASSES_WITH_METADATA:
|
||||||
return null;
|
return null;
|
||||||
default:
|
default:
|
||||||
throw new IllegalStateException("Unknown builder mode: " + mode);
|
throw new IllegalStateException("Unknown builder mode: " + mode);
|
||||||
|
|||||||
@@ -25,4 +25,8 @@ public enum ClassBuilderMode {
|
|||||||
* Generating light classes: Only function signatures
|
* Generating light classes: Only function signatures
|
||||||
*/
|
*/
|
||||||
LIGHT_CLASSES,
|
LIGHT_CLASSES,
|
||||||
|
/**
|
||||||
|
* Function signatures + metadata (to support incremental compilation with kapt)
|
||||||
|
*/
|
||||||
|
LIGHT_CLASSES_WITH_METADATA;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -134,7 +134,7 @@ class DefaultParameterValueSubstitutor(val state: GenerationState) {
|
|||||||
annotationCodegen.genAnnotations(it.value, signature.valueParameters[it.index].asmType)
|
annotationCodegen.genAnnotations(it.value, signature.valueParameters[it.index].asmType)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state.classBuilderMode == ClassBuilderMode.LIGHT_CLASSES) {
|
if (state.classBuilderMode != ClassBuilderMode.FULL) {
|
||||||
FunctionCodegen.generateLocalVariablesForParameters(mv, signature, null, Label(), Label(), remainingParameters, isStatic)
|
FunctionCodegen.generateLocalVariablesForParameters(mv, signature, null, Label(), Label(), remainingParameters, isStatic)
|
||||||
mv.visitEnd()
|
mv.visitEnd()
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ public class FunctionCodegen {
|
|||||||
parentBodyCodegen.addAdditionalTask(new JvmStaticGenerator(functionDescriptor, origin, state, parentBodyCodegen));
|
parentBodyCodegen.addAdditionalTask(new JvmStaticGenerator(functionDescriptor, origin, state, parentBodyCodegen));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state.getClassBuilderMode() == ClassBuilderMode.LIGHT_CLASSES || isAbstractMethod(functionDescriptor, contextKind)) {
|
if (state.getClassBuilderMode() != ClassBuilderMode.FULL || isAbstractMethod(functionDescriptor, contextKind)) {
|
||||||
generateLocalVariableTable(
|
generateLocalVariableTable(
|
||||||
mv,
|
mv,
|
||||||
jvmSignature,
|
jvmSignature,
|
||||||
@@ -294,7 +294,7 @@ public class FunctionCodegen {
|
|||||||
|
|
||||||
private void markEnumOrInnerConstructorParameterAsSynthetic(MethodVisitor mv, int i) {
|
private void markEnumOrInnerConstructorParameterAsSynthetic(MethodVisitor mv, int i) {
|
||||||
// IDEA's ClsPsi builder fails to annotate synthetic parameters
|
// IDEA's ClsPsi builder fails to annotate synthetic parameters
|
||||||
if (state.getClassBuilderMode() == ClassBuilderMode.LIGHT_CLASSES) return;
|
if (state.getClassBuilderMode() != ClassBuilderMode.FULL) return;
|
||||||
|
|
||||||
// This is needed to avoid RuntimeInvisibleParameterAnnotations error in javac:
|
// This is needed to avoid RuntimeInvisibleParameterAnnotations error in javac:
|
||||||
// see MethodWriter.visitParameterAnnotation()
|
// see MethodWriter.visitParameterAnnotation()
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ public class ImplementationBodyCodegen extends ClassBodyCodegen {
|
|||||||
|
|
||||||
if (!ktClass.hasModifier(KtTokens.OPEN_KEYWORD) && !isAbstract) {
|
if (!ktClass.hasModifier(KtTokens.OPEN_KEYWORD) && !isAbstract) {
|
||||||
// Light-class mode: Do not make enum classes final since PsiClass corresponding to enum is expected to be inheritable from
|
// Light-class mode: Do not make enum classes final since PsiClass corresponding to enum is expected to be inheritable from
|
||||||
isFinal = !(ktClass.isEnum() && state.getClassBuilderMode() == ClassBuilderMode.LIGHT_CLASSES);
|
isFinal = !(ktClass.isEnum() && state.getClassBuilderMode() != ClassBuilderMode.FULL);
|
||||||
}
|
}
|
||||||
isStatic = !ktClass.isInner();
|
isStatic = !ktClass.isInner();
|
||||||
}
|
}
|
||||||
@@ -169,7 +169,7 @@ public class ImplementationBodyCodegen extends ClassBodyCodegen {
|
|||||||
|
|
||||||
int access = 0;
|
int access = 0;
|
||||||
|
|
||||||
if (state.getClassBuilderMode() == ClassBuilderMode.LIGHT_CLASSES && !DescriptorUtils.isTopLevelDeclaration(descriptor)) {
|
if (state.getClassBuilderMode() != ClassBuilderMode.FULL && !DescriptorUtils.isTopLevelDeclaration(descriptor)) {
|
||||||
// ClassBuilderMode.LIGHT_CLASSES means we are generating light classes & looking at a nested or inner class
|
// ClassBuilderMode.LIGHT_CLASSES means we are generating light classes & looking at a nested or inner class
|
||||||
// Light class generation is implemented so that Cls-classes only read bare code of classes,
|
// Light class generation is implemented so that Cls-classes only read bare code of classes,
|
||||||
// without knowing whether these classes are inner or not (see ClassStubBuilder.EMPTY_STRATEGY)
|
// without knowing whether these classes are inner or not (see ClassStubBuilder.EMPTY_STRATEGY)
|
||||||
@@ -265,7 +265,7 @@ public class ImplementationBodyCodegen extends ClassBodyCodegen {
|
|||||||
|
|
||||||
private void writeEnclosingMethod() {
|
private void writeEnclosingMethod() {
|
||||||
// Do not emit enclosing method in "light-classes mode" since currently we generate local light classes as if they're top level
|
// Do not emit enclosing method in "light-classes mode" since currently we generate local light classes as if they're top level
|
||||||
if (state.getClassBuilderMode() == ClassBuilderMode.LIGHT_CLASSES) {
|
if (state.getClassBuilderMode() != ClassBuilderMode.FULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -59,6 +59,7 @@ import java.util.*;
|
|||||||
|
|
||||||
import static org.jetbrains.kotlin.codegen.AsmUtil.calculateInnerClassAccessFlags;
|
import static org.jetbrains.kotlin.codegen.AsmUtil.calculateInnerClassAccessFlags;
|
||||||
import static org.jetbrains.kotlin.codegen.AsmUtil.isPrimitive;
|
import static org.jetbrains.kotlin.codegen.AsmUtil.isPrimitive;
|
||||||
|
import static org.jetbrains.kotlin.codegen.ClassBuilderModeUtilKt.shouldGenerateMetadata;
|
||||||
import static org.jetbrains.kotlin.descriptors.CallableMemberDescriptor.Kind.SYNTHESIZED;
|
import static org.jetbrains.kotlin.descriptors.CallableMemberDescriptor.Kind.SYNTHESIZED;
|
||||||
import static org.jetbrains.kotlin.resolve.BindingContext.VARIABLE;
|
import static org.jetbrains.kotlin.resolve.BindingContext.VARIABLE;
|
||||||
import static org.jetbrains.kotlin.resolve.DescriptorUtils.*;
|
import static org.jetbrains.kotlin.resolve.DescriptorUtils.*;
|
||||||
@@ -119,7 +120,7 @@ public abstract class MemberCodegen<T extends KtElement/* TODO: & JetDeclaration
|
|||||||
|
|
||||||
generateSyntheticParts();
|
generateSyntheticParts();
|
||||||
|
|
||||||
if (state.getClassBuilderMode() == ClassBuilderMode.FULL) {
|
if (shouldGenerateMetadata(state.getClassBuilderMode())) {
|
||||||
generateKotlinMetadataAnnotation();
|
generateKotlinMetadataAnnotation();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -233,7 +234,7 @@ public abstract class MemberCodegen<T extends KtElement/* TODO: & JetDeclaration
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static void badDescriptor(ClassDescriptor descriptor, ClassBuilderMode mode) {
|
private static void badDescriptor(ClassDescriptor descriptor, ClassBuilderMode mode) {
|
||||||
if (mode != ClassBuilderMode.LIGHT_CLASSES) {
|
if (mode == ClassBuilderMode.FULL) {
|
||||||
throw new IllegalStateException("Generating bad descriptor in ClassBuilderMode = " + mode + ": " + descriptor);
|
throw new IllegalStateException("Generating bad descriptor in ClassBuilderMode = " + mode + ": " + descriptor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -411,7 +412,7 @@ public abstract class MemberCodegen<T extends KtElement/* TODO: & JetDeclaration
|
|||||||
ConstantValue<?> initializerValue = computeInitializerValue(property, propertyDescriptor, initializer);
|
ConstantValue<?> initializerValue = computeInitializerValue(property, propertyDescriptor, initializer);
|
||||||
// we must write constant values for fields in light classes,
|
// we must write constant values for fields in light classes,
|
||||||
// because Java's completion for annotation arguments uses this information
|
// because Java's completion for annotation arguments uses this information
|
||||||
if (initializerValue == null) return state.getClassBuilderMode() != ClassBuilderMode.LIGHT_CLASSES;
|
if (initializerValue == null) return state.getClassBuilderMode() == ClassBuilderMode.FULL;
|
||||||
|
|
||||||
//TODO: OPTIMIZATION: don't initialize static final fields
|
//TODO: OPTIMIZATION: don't initialize static final fields
|
||||||
KotlinType jetType = getPropertyOrDelegateType(property, propertyDescriptor);
|
KotlinType jetType = getPropertyOrDelegateType(property, propertyDescriptor);
|
||||||
@@ -495,7 +496,7 @@ public abstract class MemberCodegen<T extends KtElement/* TODO: & JetDeclaration
|
|||||||
v.newField(NO_ORIGIN, ACC_PRIVATE | ACC_STATIC | ACC_FINAL | ACC_SYNTHETIC, JvmAbi.DELEGATED_PROPERTIES_ARRAY_NAME,
|
v.newField(NO_ORIGIN, ACC_PRIVATE | ACC_STATIC | ACC_FINAL | ACC_SYNTHETIC, JvmAbi.DELEGATED_PROPERTIES_ARRAY_NAME,
|
||||||
"[" + K_PROPERTY_TYPE, null, null);
|
"[" + K_PROPERTY_TYPE, null, null);
|
||||||
|
|
||||||
if (state.getClassBuilderMode() == ClassBuilderMode.LIGHT_CLASSES) return;
|
if (state.getClassBuilderMode() != ClassBuilderMode.FULL) return;
|
||||||
|
|
||||||
InstructionAdapter iv = createOrGetClInitCodegen().v;
|
InstructionAdapter iv = createOrGetClInitCodegen().v;
|
||||||
iv.iconst(delegatedProperties.size());
|
iv.iconst(delegatedProperties.size());
|
||||||
|
|||||||
@@ -32,7 +32,8 @@ import org.jetbrains.kotlin.diagnostics.DiagnosticUtils
|
|||||||
import org.jetbrains.kotlin.fileClasses.JvmFileClassUtil
|
import org.jetbrains.kotlin.fileClasses.JvmFileClassUtil
|
||||||
import org.jetbrains.kotlin.load.java.JvmAnnotationNames
|
import org.jetbrains.kotlin.load.java.JvmAnnotationNames
|
||||||
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader
|
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader
|
||||||
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader.MultifileClassKind.*
|
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader.MultifileClassKind.DELEGATING
|
||||||
|
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader.MultifileClassKind.INHERITING
|
||||||
import org.jetbrains.kotlin.load.kotlin.incremental.IncrementalPackageFragmentProvider
|
import org.jetbrains.kotlin.load.kotlin.incremental.IncrementalPackageFragmentProvider
|
||||||
import org.jetbrains.kotlin.name.FqName
|
import org.jetbrains.kotlin.name.FqName
|
||||||
import org.jetbrains.kotlin.progress.ProgressIndicatorAndCompilationCanceledStatus
|
import org.jetbrains.kotlin.progress.ProgressIndicatorAndCompilationCanceledStatus
|
||||||
@@ -262,7 +263,7 @@ class MultifileClassCodegen(
|
|||||||
if (Visibilities.isPrivate(descriptor.visibility)) return false
|
if (Visibilities.isPrivate(descriptor.visibility)) return false
|
||||||
if (AsmUtil.getVisibilityAccessFlag(descriptor) == Opcodes.ACC_PRIVATE) return false
|
if (AsmUtil.getVisibilityAccessFlag(descriptor) == Opcodes.ACC_PRIVATE) return false
|
||||||
|
|
||||||
if (state.classBuilderMode == ClassBuilderMode.LIGHT_CLASSES) return true
|
if (state.classBuilderMode != ClassBuilderMode.FULL) return true
|
||||||
|
|
||||||
if (shouldGeneratePartHierarchy) {
|
if (shouldGeneratePartHierarchy) {
|
||||||
if (descriptor !is PropertyDescriptor || !descriptor.isConst) return false
|
if (descriptor !is PropertyDescriptor || !descriptor.isConst) return false
|
||||||
@@ -322,7 +323,7 @@ class MultifileClassCodegen(
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun writeKotlinMultifileFacadeAnnotationIfNeeded() {
|
private fun writeKotlinMultifileFacadeAnnotationIfNeeded() {
|
||||||
if (state.classBuilderMode != ClassBuilderMode.FULL) return
|
if (!state.classBuilderMode.shouldGenerateMetadata()) return
|
||||||
if (files.any { it.isScript }) return
|
if (files.any { it.isScript }) return
|
||||||
|
|
||||||
writeKotlinMetadata(classBuilder, KotlinClassHeader.Kind.MULTIFILE_CLASS) { av ->
|
writeKotlinMetadata(classBuilder, KotlinClassHeader.Kind.MULTIFILE_CLASS) { av ->
|
||||||
|
|||||||
@@ -24,7 +24,8 @@ import org.jetbrains.kotlin.descriptors.DeclarationDescriptor
|
|||||||
import org.jetbrains.kotlin.descriptors.PackageFragmentDescriptor
|
import org.jetbrains.kotlin.descriptors.PackageFragmentDescriptor
|
||||||
import org.jetbrains.kotlin.load.java.JvmAnnotationNames
|
import org.jetbrains.kotlin.load.java.JvmAnnotationNames
|
||||||
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader
|
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader
|
||||||
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader.MultifileClassKind.*
|
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader.MultifileClassKind.DELEGATING
|
||||||
|
import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader.MultifileClassKind.INHERITING
|
||||||
import org.jetbrains.kotlin.psi.KtFile
|
import org.jetbrains.kotlin.psi.KtFile
|
||||||
import org.jetbrains.kotlin.psi.KtNamedFunction
|
import org.jetbrains.kotlin.psi.KtNamedFunction
|
||||||
import org.jetbrains.kotlin.psi.KtProperty
|
import org.jetbrains.kotlin.psi.KtProperty
|
||||||
@@ -76,7 +77,7 @@ class MultifileClassPartCodegen(
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun generate() {
|
override fun generate() {
|
||||||
if (state.classBuilderMode == ClassBuilderMode.LIGHT_CLASSES) return
|
if (state.classBuilderMode != ClassBuilderMode.FULL) return
|
||||||
|
|
||||||
super.generate()
|
super.generate()
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2016 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
|
||||||
|
|
||||||
|
fun ClassBuilderMode.shouldGenerateMetadata() =
|
||||||
|
this == ClassBuilderMode.FULL || this == ClassBuilderMode.LIGHT_CLASSES_WITH_METADATA
|
||||||
@@ -113,7 +113,7 @@ public class KotlinTypeMapper {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void processErrorType(@NotNull KotlinType kotlinType, @NotNull ClassDescriptor descriptor) {
|
public void processErrorType(@NotNull KotlinType kotlinType, @NotNull ClassDescriptor descriptor) {
|
||||||
if (classBuilderMode != ClassBuilderMode.LIGHT_CLASSES) {
|
if (classBuilderMode == ClassBuilderMode.FULL) {
|
||||||
throw new IllegalStateException(generateErrorMessageForErrorType(kotlinType, descriptor));
|
throw new IllegalStateException(generateErrorMessageForErrorType(kotlinType, descriptor));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1122,7 +1122,7 @@ public class KotlinTypeMapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void writeFormalTypeParameter(@NotNull TypeParameterDescriptor typeParameterDescriptor, @NotNull JvmSignatureWriter sw) {
|
private void writeFormalTypeParameter(@NotNull TypeParameterDescriptor typeParameterDescriptor, @NotNull JvmSignatureWriter sw) {
|
||||||
if (classBuilderMode == ClassBuilderMode.LIGHT_CLASSES && typeParameterDescriptor.getName().isSpecial()) {
|
if (classBuilderMode != ClassBuilderMode.FULL && typeParameterDescriptor.getName().isSpecial()) {
|
||||||
// If a type parameter has no name, the code below fails, but it should recover in case of light classes
|
// If a type parameter has no name, the code below fails, but it should recover in case of light classes
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-2
@@ -24,7 +24,6 @@ import org.jetbrains.kotlin.codegen.state.GenerationState
|
|||||||
import org.jetbrains.kotlin.descriptors.ModuleDescriptor
|
import org.jetbrains.kotlin.descriptors.ModuleDescriptor
|
||||||
import org.jetbrains.kotlin.psi.KtFile
|
import org.jetbrains.kotlin.psi.KtFile
|
||||||
import org.jetbrains.kotlin.resolve.BindingContext
|
import org.jetbrains.kotlin.resolve.BindingContext
|
||||||
import org.jetbrains.kotlin.resolve.DelegatingBindingTrace
|
|
||||||
import org.jetbrains.kotlin.resolve.jvm.diagnostics.JvmDeclarationOrigin
|
import org.jetbrains.kotlin.resolve.jvm.diagnostics.JvmDeclarationOrigin
|
||||||
import org.jetbrains.kotlin.resolve.jvm.extensions.AnalysisCompletedHandlerExtension
|
import org.jetbrains.kotlin.resolve.jvm.extensions.AnalysisCompletedHandlerExtension
|
||||||
import org.jetbrains.org.objectweb.asm.ClassWriter
|
import org.jetbrains.org.objectweb.asm.ClassWriter
|
||||||
@@ -59,7 +58,7 @@ class StubProducerExtension(val stubsOutputDir: File) : AnalysisCompletedHandler
|
|||||||
|
|
||||||
private class StubClassBuilderFactory : ClassBuilderFactory {
|
private class StubClassBuilderFactory : ClassBuilderFactory {
|
||||||
|
|
||||||
override fun getClassBuilderMode() = ClassBuilderMode.LIGHT_CLASSES
|
override fun getClassBuilderMode() = ClassBuilderMode.LIGHT_CLASSES_WITH_METADATA
|
||||||
|
|
||||||
override fun newClassBuilder(origin: JvmDeclarationOrigin) = AbstractClassBuilder.Concrete(
|
override fun newClassBuilder(origin: JvmDeclarationOrigin) = AbstractClassBuilder.Concrete(
|
||||||
ClassWriter(ClassWriter.COMPUTE_FRAMES or ClassWriter.COMPUTE_MAXS))
|
ClassWriter(ClassWriter.COMPUTE_FRAMES or ClassWriter.COMPUTE_MAXS))
|
||||||
|
|||||||
Reference in New Issue
Block a user