ktietz2014

ktietz2014's contributions

GNU C library
Article

Red Hat Enterprise Linux 7 GCC Optimizations - partial inlining indepth

Jeff Law +1

In this prior post we mentioned several new optimization improvements in GCC for Red Hat Enterprise Linux 7. It's time to dig a little deeper. In this post we will focus on partial inlining/function outlining which are part of the Inter-Procedural Analysis (IPA) framework. Function inlining is a well known technique to improve application performance by expanding the body of a called function into one or more of its call site(s). Function inlining decreases function call overhead, may improve icache...