awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 Repo

Awesome GitHub RepositoriesVirtual Call Optimizations

Reducing branch target mispredictions by optimizing polymorphic object grouping.

Distinct from Optimizer Performance Optimizations: Candidates focus on AI optimizers or GraphQL, not low-level C++ style virtual function call overhead

Explore 1 awesome GitHub repository matching operating systems & systems programming · Virtual Call Optimizations. Refine with filters or upvote what's useful.

Awesome Virtual Call Optimizations GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • dendibakh/perf-ninjaAvatar von dendibakh

    dendibakh/perf-ninja

    3,754Auf GitHub ansehen↗

    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

    Increases execution speed and reduces branch target mispredictions by grouping polymorphic objects of the same derived type.

    C++
    Auf GitHub ansehen↗3,754
  1. Home
  2. Operating Systems & Systems Programming
  3. Virtual Call Optimizations

Unter-Tags erkunden

  • Function InliningReplacing 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.