Files
swift-mirror/test/SIL/Parser/polymorphic_function.sil
T
Erik Eckstein 6ff2f09796 [SIL] Let alloc_stack return a single value.
Having a separate address and container value returned from alloc_stack is not really needed in SIL.
Even if they differ we have both addresses available during IRGen, because a dealloc_stack is always dominated by the corresponding alloc_stack in the same function.

Although this commit quite large, most changes are trivial. The largest non-trivial change is in IRGenSIL.

This commit is a NFC regarding the generated code. Even the generated SIL is the same (except removed #0, #1 and @local_storage).
2016-01-06 17:35:27 -08:00

25 lines
1012 B
Plaintext

// RUN: %target-sil-opt %s | FileCheck %s
import Swift
public protocol mmOutputStreamType {
/// Append the given `string` to this stream.
mutating func write(string: String)
}
public protocol mmStreamable {
func writeTo<Target : mmOutputStreamType>(inout target: Target)
}
// CHECK-LABEL: sil @test : $@convention(thin) () -> () {
sil @test : $() -> () {
bb0:
%281 = alloc_stack $mmStreamable
%282 = open_existential_addr %281 : $*mmStreamable to $*@opened("01234567-89ab-cdef-0123-000000000000") mmStreamable
// CHECK: witness_method $@opened({{.*}}) mmStreamable, #mmStreamable.writeTo!1
%293 = witness_method $@opened("01234567-89ab-cdef-0123-000000000000") mmStreamable, #mmStreamable.writeTo!1, %282 : $*@opened("01234567-89ab-cdef-0123-000000000000") mmStreamable : $@convention(witness_method) @callee_owned <T_0_0, T_1_0 where T_0_0 : mmStreamable, T_1_0 : mmOutputStreamType> (@inout T_1_0, @inout T_0_0) -> ()
dealloc_stack %281 : $*mmStreamable
%1 = tuple ()
return %1 : $()
}