AutoFDO Optimizations For The GCC Compiler

Written by Michael Larabel in GNU on 30 September 2012 at 06:58 AM EDT. 3 Comments
GNU
A patch has emerged that provides "AutoFDO" support for the GCC compiler for automated feedback-directed optimizations.

Dehao Chen of Google published an AutoFDO implementation to the GCC mailing list on Friday.
This patch implements the fine-graind AutoFDO optimizations for GCC. It uses linux perf to collect sample profiles, and uses debug info to represent the profile. In GCC, it uses the profile to annotate CFG to drive FDO. This can bring 50% to 110% of the speedup derived by traditional instrumentation based FDO. (Average is between 70% to 80% for many CPU intensive applications). Comparing with traditional FDO, AutoFDO does not require instrumentation. It just need to have an optimized binary with debug info to collect the profile.

This patch has passed bootstrap and gcc regression tests as well as tested with crosstool. Okay for google branches?

If people in up-stream find this feature interesting, I'll spend some time to port this to trunk and try to opensource the tool to generate profile data file.
So this implementation is also faster than the traditional Feedback Directed Optimization (FDO) support currently found in GCC.

Up until now traditional FDO has required running the specially-created binary manually to collect sample/training data that can then be passed back to the GNU Compiler Collection for producing a more-optimized binary on an application-specific case. Among the optimizations being dealt with here are instruction scheduling, basic block re-ordering, function splitting, and register allocation.

Let's hope it makes it into GCC trunk! Until then, the patch is on gcc-patches.
Related News
About The Author
Michael Larabel

Michael Larabel is the principal author of Phoronix.com and founded the site in 2004 with a focus on enriching the Linux hardware experience. Michael has written more than 20,000 articles covering the state of Linux hardware support, Linux performance, graphics drivers, and other topics. Michael is also the lead developer of the Phoronix Test Suite, Phoromatic, and OpenBenchmarking.org automated benchmarking software. He can be followed via Twitter, LinkedIn, or contacted via MichaelLarabel.com.

Popular News This Week