1 Repo
Replacing function calls with the function body to eliminate prologue and epilogue overhead.
Distinct from Virtual Call Optimizations: Focuses on the elimination of call-return overhead via inlining, whereas virtual call optimizations target branch target mispredictions in polymorphism.
Explore 1 awesome GitHub repository matching operating systems & systems programming · Function Inlining. Refine with filters or upvote what's useful.
perf-ninja is a collection of educational resources and curricula focused on CPU architecture, memory hierarchies, SIMD programming, and low-level performance engineering. It provides instructional material and practical labs for identifying and fixing CPU bottlenecks, such as cache misses and branch mispredictions. The project differentiates itself through specialized training in hardware-level optimizations, including the use of compiler intrinsics for SIMD vectorization and the implementation of branchless predicate execution to eliminate pipeline stalls. It also covers advanced binary-lev
Performance Labs eliminates function prologue and epilogue costs by replacing calls with function bodies to enable further optimizations.