Is it possible to write inline assembly in Swift?

非 Y 不嫁゛ 提交于 2019-11-27 03:09:27

问题


I was wondering if you can write inline assembly in Swift.

I know that in Objective-C you could use something like this:

inline void assemblyFunc() {
    __asm__(/*Assembly*/);
}

But in Swift it seems that you can't use __asm__(/*Assembly*/).

Does anyone know how to use __asm__() if its even possible. I haven't found anything about it, so I thought it would be a good question to ask.


回答1:


To expand on what Robert Levy said, you can just use the Swift/Obj-C interop feature, and write an Obj-C class that does the ASM stuff, which you can then call from Swift.

It's an annoying workaround, but it should work nonetheless.

You can read more about how to do it [here]




回答2:


There isn't a way in Swift itself. If you need this, probably a good opportunity to take advantage of Swift-ObjC interop.



来源:https://stackoverflow.com/questions/24246521/is-it-possible-to-write-inline-assembly-in-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!