[CMake] Support generation of linker order files using dtrace
Summary: This patch extends the lit-based perf-training tooling supplied for PGO data generation to also generate linker order files using dtrace. This patch should work on any system that has dtrace. If CMake can find the dtrace tool it will generate a target 'generate-order-file' which will run the per-training tests wrapped by dtrace to capture function entries. There are several algorithms implemented for sorting the order files which can be experimented with for best performance. The dtrace wrapper also supports bot oneshot and pid probes. The perf-helper.py changes to support order file construction are ported from internal changes by ddunbar; he gets all the credit for the hard work here, I just copy and pasted. Note: I've tested these patches on FreeBSD and OS X 10.10. Reviewers: ddunbar, bogner, silvas Subscribers: llvm-commits, emaste Differential Revision: http://reviews.llvm.org/D16134 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@257934 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- utils/perf-training/CMakeLists.txt 33 additions, 10 deletionsutils/perf-training/CMakeLists.txt
- utils/perf-training/order-files.lit.cfg 39 additions, 0 deletionsutils/perf-training/order-files.lit.cfg
- utils/perf-training/order-files.lit.site.cfg.in 21 additions, 0 deletionsutils/perf-training/order-files.lit.site.cfg.in
- utils/perf-training/perf-helper.py 315 additions, 12 deletionsutils/perf-training/perf-helper.py
Loading
Please register or sign in to comment