mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This reverts commit062d14b422. Revert "Fix a swift argument initialization bug - swift argument should be initialized" This reverts commit273b149583. This breaks DebugAssert as well as REPL builds. Revert to appease the bots while i look further.
67 lines
3.2 KiB
Swift
67 lines
3.2 KiB
Swift
// RUN: %target-swift-frontend -primary-file %s -emit-ir -disable-objc-attr-requires-foundation-module | FileCheck %s
|
|
|
|
// REQUIRES: CPU=x86_64
|
|
// REQUIRES: objc_interop
|
|
|
|
// CHECK: @_INSTANCE_METHODS__TtC15objc_subscripts10SomeObject =
|
|
// CHECK: private constant { i32, i32, [5 x { i8*, i8*, i8* }] }
|
|
// CHECK: { i32 24, i32 5, [5 x { i8*, i8*, i8* }]
|
|
// CHECK: [
|
|
// CHECK: { i8*, i8*, i8* }
|
|
// CHECK: {
|
|
// CHECK: i8* getelementptr inbounds ([26 x i8], [26 x i8]* @"\01L_selector_data(objectAtIndexedSubscript:)", i64 0, i64 0),
|
|
// CHECK: i8* null,
|
|
// CHECK: i8* bitcast ([[OPAQUE0:%.*]]* ([[OPAQUE1:%.*]]*, i8*, i64)* @_TToFC15objc_subscripts10SomeObjectg9subscriptFSiS0_ to i8*)
|
|
// CHECK: },
|
|
// CHECK: { i8*, i8*, i8* }
|
|
// CHECK: {
|
|
// CHECK: i8* getelementptr inbounds ([30 x i8], [30 x i8]* @"\01L_selector_data(setObject:atIndexedSubscript:)", i64 0, i64 0),
|
|
// CHECK: i8* null,
|
|
// CHECK: i8* bitcast (void ([[OPAQUE2:%.*]]*, i8*, [[OPAQUE3:%.*]]*, i64)* @_TToFC15objc_subscripts10SomeObjects9subscriptFSiS0_ to i8*)
|
|
// CHECK: },
|
|
// CHECK: { i8*, i8*, i8* }
|
|
// CHECK: {
|
|
// CHECK: i8* getelementptr inbounds ([25 x i8], [25 x i8]* @"\01L_selector_data(objectForKeyedSubscript:)", i64 0, i64 0),
|
|
// CHECK: i8* null,
|
|
// CHECK: i8* bitcast (i64 ([[OPAQUE4:%.*]]*, i8*, [[OPAQUE5:%.*]]*)* @_TToFC15objc_subscripts10SomeObjectg9subscriptFS0_Si to i8*)
|
|
// CHECK: },
|
|
// CHECK: { i8*, i8*, i8* }
|
|
// CHECK: {
|
|
// CHECK: i8* getelementptr inbounds ([29 x i8], [29 x i8]* @"\01L_selector_data(setObject:forKeyedSubscript:)", i64 0, i64 0),
|
|
// CHECK: i8* null,
|
|
// CHECK: i8* bitcast (void ([[OPAQUE6:%.*]]*, i8*, i64, [[OPAQUE7:%.*]]*)* @_TToFC15objc_subscripts10SomeObjects9subscriptFS0_Si to i8*)
|
|
// CHECK: },
|
|
// CHECK: { i8*, i8*, i8* }
|
|
// CHECK: { i8* getelementptr inbounds ([5 x i8], [5 x i8]* @"\01L_selector_data(init)", i64 0, i64 0), i8* getelementptr inbounds ([8 x i8], [8 x i8]* @0, i64 0, i64 0), i8* bitcast ([[OPAQUE8:%.*]]* ([[OPAQUE9:%.*]]*, i8*)* @_TToFC15objc_subscripts10SomeObjectcfT_S0_ to i8*) }
|
|
// CHECK: ]
|
|
// CHECK: }, section "__DATA, __objc_const", align 8
|
|
|
|
@objc class SomeObject {
|
|
subscript (i : Int) -> SomeObject {
|
|
// CHECK: define internal [[OPAQUE0:%.*]]* @_TToFC15objc_subscripts10SomeObjectg9subscriptFSiS0_([[OPAQUE1]]*, i8*, i64) unnamed_addr
|
|
get {
|
|
// CHECK: call %C15objc_subscripts10SomeObject* @_TFC15objc_subscripts10SomeObjectg9subscriptFSiS0_
|
|
return self
|
|
}
|
|
|
|
// CHECK-LABEL: define internal void @_TToFC15objc_subscripts10SomeObjects9subscriptFSiS0_
|
|
set {
|
|
// CHECK: void @_TFC15objc_subscripts10SomeObjects9subscriptFSiS0_
|
|
}
|
|
}
|
|
|
|
subscript (s : SomeObject) -> Int {
|
|
// CHECK-LABEL: define internal i64 @_TToFC15objc_subscripts10SomeObjectg9subscriptFS0_Si
|
|
get {
|
|
// CHECK: call i64 @_TFC15objc_subscripts10SomeObjectg9subscriptFS0_Si
|
|
return 5
|
|
}
|
|
|
|
// CHECK-LABEL: define internal void @_TToFC15objc_subscripts10SomeObjects9subscriptFS0_Si
|
|
set {
|
|
// CHECK: call void @_TFC15objc_subscripts10SomeObjects9subscriptFS0_Si
|
|
}
|
|
}
|
|
}
|
|
|