swift的调用约定

swift的静态绑定

 

Swift Calling Convention @convention(swift)

 func foo(_ x:Int, y:Int)

sil @foo : $(x:Int, y:Int) -> () {

entry(%x : $Int, %y : $Int):

  ...

}

 

func bar(_ x:Int, y:(Int, Int))

 

sil @bar : $(x:Int, y:(Int, Int)) -> () {

entry(%x : $Int, %y0 : $Int, %y1 : $Int):

  ...

}

 

func call_foo_and_bar() {

  foo(1, 2)

  bar(4, (5, 6))

}

 

sil @call_foo_and_bar : $() -> () {

entry:

  ...

  %foo = function_ref @foo : $(x:Int, y:Int) -> ()

  %foo_result = apply %foo(%1, %2) : $(x:Int, y:Int) -> ()

  ...

  %bar = function_ref @bar : $(x:Int, y:(Int, Int)) -> ()

  %bar_result = apply %bar(%4, %5, %6) : $(x:Int, y:(Int, Int)) -> ()

}

 

 

Swift Method Calling Convention @convention(method)

The method calling convention is currently identical to the freestanding function convention. Methods are considered to be curried functions, taking the "self" argument as their outer argument clause, and the method arguments as the inner argument clause(s). When uncurried, the "self" argument is thus passed last:

struct Foo {

  func method(_ x:Int) -> Int {}

}

sil @Foo_method_1 : $((x : Int), @inout Foo) -> Int { ... }

 

//例子

class NSObjectBase: NSObject {

    func Msg_Second(str:String){}

}

// NSObjectBase.Msg_Second(str:)

sil hidden @NSObjectBase.NSObjectBase.Msg_Second(str: Swift.String) -> () : $@convention(method) (@guaranteed String, @guaranteed NSObjectBase) -> ()

 

 

sil_vtable NSObjectBase {

  #NSObjectBase.Msg_Second!1: (NSObjectBase) -> (String) -> () : @NSObjectBase.NSObjectBase.Msg_Second(str: Swift.String) -> () // NSObjectBase.Msg_Second(str:)

}

 

 

Objective-C Calling Convention @convention(objc_method)

 

 

https://github.com/apple/swift/blob/master/docs/SIL.rst#objective-c-calling-convention-convention-objc-method

转载于:https://www.cnblogs.com/feng9exe/p/10601596.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值