-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Native] Move IrTypeInlineClassesSupport to
:native:base
^KT-73869 Fixed
- Loading branch information
Showing
3 changed files
with
27 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
native/base/src/main/kotlin/org/jetbrains/kotlin/backend/konan/ir/Utils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2010-2024 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.konan.ir | ||
|
||
import org.jetbrains.kotlin.ir.declarations.IrClass | ||
import org.jetbrains.kotlin.ir.symbols.IrClassSymbol | ||
import org.jetbrains.kotlin.ir.symbols.UnsafeDuringIrConstructionAPI | ||
import org.jetbrains.kotlin.ir.types.IdSignatureValues | ||
import org.jetbrains.kotlin.ir.types.classifierOrFail | ||
import org.jetbrains.kotlin.ir.util.IdSignature | ||
import org.jetbrains.kotlin.ir.util.isInterface | ||
import org.jetbrains.kotlin.utils.atMostOne | ||
|
||
fun IrClass.isClassTypeWithSignature(signature: IdSignature.CommonSignature): Boolean { | ||
return signature == symbol.signature | ||
} | ||
val IrClass.superClasses get() = this.superTypes.map { it.classifierOrFail as IrClassSymbol } | ||
@OptIn(UnsafeDuringIrConstructionAPI::class) | ||
fun IrClass.getSuperClassNotAny() = this.superClasses.map { it.owner }.atMostOne { !it.isInterface && !it.isAny() } | ||
|
||
fun IrClass.isAny() = this.isClassTypeWithSignature(IdSignatureValues.any) |