org.jetbrains.kotlin.backend.common.extensions.IrPluginContext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.backend.common.extensions
import org.jetbrains.kotlin.backend.common.ir.BuiltinSymbolsBase
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
import org.jetbrains.kotlin.config.LanguageVersionSettings
import org.jetbrains.kotlin.descriptors.ModuleDescriptor
import org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI
import org.jetbrains.kotlin.ir.builders.IrGeneratorContext
import org.jetbrains.kotlin.ir.linkage.IrDeserializer
import org.jetbrains.kotlin.ir.symbols.*
import org.jetbrains.kotlin.ir.util.IdSignature
import org.jetbrains.kotlin.ir.util.ReferenceSymbolTable
import org.jetbrains.kotlin.ir.util.TypeTranslator
import org.jetbrains.kotlin.name.CallableId
import org.jetbrains.kotlin.name.ClassId
import org.jetbrains.kotlin.name.FqName
import org.jetbrains.kotlin.platform.TargetPlatform
import org.jetbrains.kotlin.resolve.BindingContext
/**
* Indicates methods and properties that are not available in backend after K2 compiler release
*
* Invocation of such methods in IR plugins if frontend was K2 results in compiler crash.
* It's still possible to use them in IR plugins with old frontend.
*/
@RequiresOptIn("This API is deprecated. It will be removed after the release of K2 compiler")
annotation class FirIncompatiblePluginAPI(val hint: String = "")
interface IrPluginContext : IrGeneratorContext {
val languageVersionSettings: LanguageVersionSettings
/**
* Indicates that the plugin works after FIR. Effectively it means that all descriptor-based API may contain incorrect and/or incomplete information, and declarations marked with `@FirIncompatibleApi` will throw runtime exceptions.
*/
val afterK2: Boolean
@ObsoleteDescriptorBasedAPI
val moduleDescriptor: ModuleDescriptor
@ObsoleteDescriptorBasedAPI
@FirIncompatiblePluginAPI
val bindingContext: BindingContext
@ObsoleteDescriptorBasedAPI
val symbolTable: ReferenceSymbolTable
@ObsoleteDescriptorBasedAPI
@FirIncompatiblePluginAPI
val typeTranslator: TypeTranslator
val symbols: BuiltinSymbolsBase
val platform: TargetPlatform?
/**
* Use this service to:
* - add annotations to declarations if those annotations should be saved into metadata
* - register that declaration generated at IR stage will appear in compiled metadata
* This service properly works only in K2 compiler
*/
val metadataDeclarationRegistrar: IrGeneratedDeclarationsRegistrar
/**
* Returns a logger instance to post diagnostic messages from plugin
*
* @param pluginId the unique plugin ID to make it easy to distinguish in log
* @return the logger associated with specified ID
*/
fun createDiagnosticReporter(pluginId: String): MessageCollector
// The following API is experimental
@FirIncompatiblePluginAPI("Use classId overload instead")
fun referenceClass(fqName: FqName): IrClassSymbol?
@FirIncompatiblePluginAPI("Use classId overload instead")
fun referenceTypeAlias(fqName: FqName): IrTypeAliasSymbol?
@FirIncompatiblePluginAPI("Use classId overload instead")
fun referenceConstructors(classFqn: FqName): Collection
@FirIncompatiblePluginAPI("Use callableId overload instead")
fun referenceFunctions(fqName: FqName): Collection
@FirIncompatiblePluginAPI("Use callableId overload instead")
fun referenceProperties(fqName: FqName): Collection
// This one is experimental too
fun referenceClass(classId: ClassId): IrClassSymbol?
fun referenceTypeAlias(classId: ClassId): IrTypeAliasSymbol?
fun referenceConstructors(classId: ClassId): Collection
fun referenceFunctions(callableId: CallableId): Collection
fun referenceProperties(callableId: CallableId): Collection
// temporary solution to load synthetic top-level declaration
fun referenceTopLevel(signature: IdSignature, kind: IrDeserializer.TopLevelSymbolKind, moduleDescriptor: ModuleDescriptor): IrSymbol?
}