[K/N][Tests] Migrate test direct.kt
^KT-61259
This commit is contained in:
@@ -0,0 +1,148 @@
|
||||
// TARGET_BACKEND: NATIVE
|
||||
// DISABLE_NATIVE: isAppleTarget=false
|
||||
// FILECHECK_STAGE: CStubs
|
||||
// LANGUAGE: +ImplicitSignedToUnsignedIntegerConversion
|
||||
|
||||
// MODULE: cinterop
|
||||
// FILE: direct.def
|
||||
language = Objective-C
|
||||
headers = direct.h
|
||||
headerFilter = direct.h
|
||||
|
||||
// FILE: direct.h
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
__attribute__((objc_runtime_name("CC")))
|
||||
__attribute__((swift_name("CC")))
|
||||
@interface CallingConventions : NSObject
|
||||
|
||||
+ (uint64_t)regular:(uint64_t)arg;
|
||||
- (uint64_t)regular:(uint64_t)arg;
|
||||
|
||||
+ (uint64_t)direct:(uint64_t)arg __attribute__((objc_direct));
|
||||
- (uint64_t)direct:(uint64_t)arg __attribute__((objc_direct));
|
||||
|
||||
@end
|
||||
|
||||
@interface CallingConventions(Ext)
|
||||
|
||||
+ (uint64_t)regularExt:(uint64_t)arg;
|
||||
- (uint64_t)regularExt:(uint64_t)arg;
|
||||
|
||||
+ (uint64_t)directExt:(uint64_t)arg __attribute__((objc_direct));
|
||||
- (uint64_t)directExt:(uint64_t)arg __attribute__((objc_direct));
|
||||
|
||||
@end
|
||||
|
||||
__attribute__((objc_runtime_name("CCH")))
|
||||
__attribute__((swift_name("CCH")))
|
||||
@interface CallingConventionsHeir : CallingConventions
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
|
||||
// FILE: direct.m
|
||||
#import "direct.h"
|
||||
|
||||
#define TEST_METHOD_IMPL(NAME) (uint64_t)NAME:(uint64_t)arg { return arg; }
|
||||
|
||||
@implementation CallingConventions : NSObject
|
||||
|
||||
+ TEST_METHOD_IMPL(regular);
|
||||
- TEST_METHOD_IMPL(regular);
|
||||
|
||||
+ TEST_METHOD_IMPL(direct);
|
||||
- TEST_METHOD_IMPL(direct);
|
||||
|
||||
@end
|
||||
|
||||
@implementation CallingConventions(Ext)
|
||||
|
||||
+ TEST_METHOD_IMPL(regularExt);
|
||||
- TEST_METHOD_IMPL(regularExt);
|
||||
|
||||
+ TEST_METHOD_IMPL(directExt);
|
||||
- TEST_METHOD_IMPL(directExt);
|
||||
|
||||
@end
|
||||
|
||||
@implementation CallingConventionsHeir
|
||||
|
||||
@end
|
||||
|
||||
|
||||
// MODULE: main(cinterop)
|
||||
// FILE: main.kt
|
||||
@file:OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
|
||||
@file:Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER")
|
||||
import kotlin.native.Retain
|
||||
import direct.*
|
||||
import kotlinx.cinterop.*
|
||||
import kotlin.test.*
|
||||
|
||||
class CallingConventionsNativeHeir() : CallingConventions() {
|
||||
// nothing
|
||||
}
|
||||
|
||||
typealias CC = CallingConventions
|
||||
typealias CCH = CallingConventionsHeir
|
||||
typealias CCN = CallingConventionsNativeHeir
|
||||
|
||||
// KT-54610
|
||||
fun box(): String {
|
||||
autoreleasepool {
|
||||
val cc = CC()
|
||||
val cch = CCH()
|
||||
val ccn = CCN()
|
||||
|
||||
assertEquals(42UL, CC.regular(42))
|
||||
assertEquals(42UL, cc.regular(42))
|
||||
assertEquals(42UL, CC.regularExt(42))
|
||||
assertEquals(42UL, cc.regularExt(42))
|
||||
|
||||
assertEquals(42UL, CCH.regular(42))
|
||||
assertEquals(42UL, cch.regular(42))
|
||||
assertEquals(42UL, CCH.regularExt(42))
|
||||
assertEquals(42UL, cch.regularExt(42))
|
||||
|
||||
assertEquals(42UL, ccn.regular(42UL))
|
||||
assertEquals(42UL, ccn.regularExt(42UL))
|
||||
|
||||
assertEquals(42UL, CC.direct(42))
|
||||
assertEquals(42UL, cc.direct(42))
|
||||
assertEquals(42UL, CC.directExt(42))
|
||||
assertEquals(42UL, cc.directExt(42))
|
||||
|
||||
assertEquals(42UL, CCH.direct(42))
|
||||
assertEquals(42UL, cch .direct(42))
|
||||
assertEquals(42UL, CCH.directExt(42))
|
||||
assertEquals(42UL, cch .directExt(42))
|
||||
|
||||
assertEquals(42UL, ccn .direct(42UL))
|
||||
assertEquals(42UL, ccn .directExt(42UL))
|
||||
}
|
||||
|
||||
// FileCheck part
|
||||
callDirect()
|
||||
callRegular()
|
||||
return "OK"
|
||||
}
|
||||
|
||||
@Retain
|
||||
//CHECK-LABEL: define i64 @"kfun:#callDirect(){}kotlin.ULong"()
|
||||
fun callDirect(): ULong {
|
||||
val cc = CallingConventions()
|
||||
//CHECK: invoke i64 @_{{[a-zA-Z0-9]+}}_knbridge{{[0-9]+}}(i8* %{{[0-9]+}}, i64 42)
|
||||
return cc.direct(42uL)
|
||||
}
|
||||
|
||||
@Retain
|
||||
//CHECK-LABEL: define i64 @"kfun:#callRegular(){}kotlin.ULong"()
|
||||
fun callRegular(): ULong {
|
||||
val cc = CallingConventions()
|
||||
//CHECK: invoke i64 @_{{[a-zA-Z0-9]+}}_knbridge{{[0-9]+}}(i8* %{{[0-9]+}}, i8* %{{[0-9]+}}, i64 42)
|
||||
return cc.regular(42uL)
|
||||
}
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
// DISABLE_NATIVE: isAppleTarget=false
|
||||
|
||||
// FREE_CINTEROP_ARGS: -compiler-option -fmodule-map-file=$generatedSourcesDir/cinterop/module_library.modulemap
|
||||
// FREE_CINTEROP_ARGS: -compiler-option -I$generatedSourcesDir/cinterop
|
||||
// MODULE: cinterop
|
||||
// FILE: module_library.def
|
||||
language = Objective-C
|
||||
|
||||
Reference in New Issue
Block a user