Profiling with Instruments 编辑
Instruments can be used for memory profiling and for statistical profiling.
Official Apple documentation
- Instruments User Guide
- Instruments User Reference
- Instruments Help Articles
- Instruments Help
- Performance Overview
Basic Usage
- Select "Time Profiler" from the "Choose a profiling template for:" dialog.
- In the top left, next to the record and pause button, there will be a "[machine name] > All Processes". Click "All Processes" and select "firefox" from the "Running Applications" section.
- Click the record button (red circle in top left)
- Wait for the amount of time that you want to profile
- Click the stop button
Command line tools
There is instruments and iprofiler.
How do we monitor performance counters (cache miss etc.)? Instruments has a "Counters" instrument that can do this.
Memory profiling
Instruments will record a call stack at each allocation point. The call tree view can be quite helpful here. Switch from "Statistics". This malloc
profiling is done using the malloc_logger
infrastructure (similar to MallocStackLogging
). Currently this means you need to build with jemalloc disabled (ac_add_options --disable-jemalloc
). You also need the fix to Bug 719427
The DTPerformanceSession
api can be used to control profiling from applications like the old CHUD API we use in Shark builds. Bug 667036
System Trace might be useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论