C 到 ARM ASM 转换器
是否有任何转换器可以将 C 函数转换为 ARM (v6) ASM 代码,或者我需要手动执行?
我正在尝试在 Iphone 上获得 C 函数的性能。
Is there any converter to convert a C function into ARM (v6) ASM code or I need to do it manually ?
I am trying to gain the performance of a C function on Iphone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您在 XCode 中,打开源文件并选择
Build =>;显示汇编代码
。Supposing you're in XCode, open the source file and select
Build => Show Assembly Code
.执行此操作的工具称为编译器:) 看看这里: http://www.keil.com/arm /
tool that does it is called compiler :) take a look here: http://www.keil.com/arm/