mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Use the generic type lowering algorithm described in "docs/CallingConvention.rst#physical-lowering" to map from IRGen's explosion type to the type expected by the ABI. Change IRGen to use the swift calling convention (swiftcc) for native swift functions. Use the 'swiftself' attribute on self parameters and for closures contexts. Use the 'swifterror' parameter for swift error parameters. Change functions in the runtime that are called as native swift functions to use the swift calling convention. rdar://19978563
52 lines
2.2 KiB
Swift
52 lines
2.2 KiB
Swift
// RUN: %target-swift-frontend -Xllvm -new-mangling-for-tests %s -emit-ir -g -o - | %FileCheck %s
|
|
|
|
import Swift
|
|
|
|
func main() -> Void
|
|
{
|
|
// I am line 6.
|
|
var random_string = "b"
|
|
var random_int = 5
|
|
var out_only = 2013
|
|
|
|
var backward_ptr =
|
|
// CHECK: define linkonce_odr hidden {{.*}} i1 @_T04mainAAyyFSbSS_SStcfU_(
|
|
// CHECK: %[[RANDOM_STR_ADDR:.*]] = alloca %SS*, align {{(4|8)}}
|
|
// CHECK: store %SS* %{{.*}}, %SS** %[[RANDOM_STR_ADDR]], align {{(4|8)}}
|
|
// CHECK-NEXT: call void @llvm.dbg.declare(metadata %SS** %[[RANDOM_STR_ADDR]], metadata !{{.*}}, metadata !{{[0-9]+}}), !dbg
|
|
// CHECK-DAG: !DILocalVariable(name: "lhs",{{.*}} line: [[@LINE+5]],
|
|
// CHECK-DAG: !DILocalVariable(name: "rhs",{{.*}} line: [[@LINE+4]],
|
|
// CHECK-DAG: !DILocalVariable(name: "random_string",{{.*}} line: 8,
|
|
// CHECK-DAG: !DILocalVariable(name: "random_int",{{.*}} line: 9,
|
|
// CHECK-DAG: !DILocalVariable(name: "out_only",{{.*}} line: 10,
|
|
{ (lhs : String, rhs : String) -> Bool in
|
|
if rhs == random_string
|
|
|| rhs.unicodeScalars.count == random_int
|
|
{
|
|
// Ensure the two local_vars are in different lexical scopes.
|
|
// CHECK-DAG: !DILocalVariable(name: "local_var", scope: ![[THENSCOPE:[0-9]+]],{{.*}} line: [[@LINE+2]],
|
|
// CHECK-DAG: ![[THENSCOPE]] = distinct !DILexicalBlock({{.*}} line: [[@LINE-3]]
|
|
var local_var : Int64 = 10
|
|
print("I have an int here \(local_var).\n", terminator: "")
|
|
return false
|
|
}
|
|
else
|
|
{
|
|
// CHECK-DAG: !DILocalVariable(name: "local_var", scope: ![[ELSESCOPE:[0-9]+]],{{.*}} line: [[@LINE+2]]
|
|
// CHECK-DAG: ![[ELSESCOPE]] = distinct !DILexicalBlock({{.*}} line: [[@LINE-2]],
|
|
var local_var : String = "g"
|
|
print("I have another string here \(local_var).\n", terminator: "")
|
|
// Assign to all the captured variables to inhibit capture promotion.
|
|
random_string = "c"
|
|
random_int = -1
|
|
out_only = 333
|
|
return rhs < lhs
|
|
}
|
|
}
|
|
|
|
var bool = backward_ptr("a" , "b")
|
|
}
|
|
|
|
main()
|
|
|