iOS 设备中的低级循环计数器

发布于 2024-12-07 06:15:17 字数 253 浏览 5 评论 0原文

现在很明显 皮质-A8 性能计数器在 iPhone/iPad 上不可用(它们需要在用户模式下显式启用,而 Apple 尚未这样做),是否有其他方法可以在 iOS 上获得合理的周期计数设备,用于微观分析?

Now that it's clear that the Cortex-A8 performance counters aren't available on the iPhone/iPad (they need to be explicitly enabled for usermode, which Apple hasn't done), is there some other way of getting a reasonable cycle count on iOS devices, for micro-profiling?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惟欲睡 2024-12-14 06:15:17

iOS 用户代码通过公共 API 可获得的最细粒度计时似乎是使用 mach/mach_time.h 中的 mach_absolute_time(),其输出似乎是 ASIC 时钟周期计数器之一的缩放结果。在开始计时之前额外调用一次,以使用 mach_time 库代码预填充 ICACHE。请注意,某些 Apple 的 ASIC 可能会根据应用程序的 CPU 核心时钟速度进行调整,具体取决于情况。

The most fine grain timing available to iOS user code via a public API appears to be using mach_absolute_time(), from mach/mach_time.h, whose output appears to scaled results from one of the ASIC's clock cycle counters. Call it one extra time just before you start timing to pre-fill the ICACHE with the mach_time library code. Note that some of Apple's ASICs may shift gears for the app's CPU core clock speed, depending.

苍暮颜 2024-12-14 06:15:17

我可能完全不对劲,但是 CFAbsoluteTimeGetCurrent 对你来说太粗糙了吗?

I might be completely off, but is CFAbsoluteTimeGetCurrent too coarse for you?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文