awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 个仓库

Awesome GitHub RepositoriesCompile-Time Optimization

Techniques to reduce the overhead of the compilation process and final binary size.

Distinct from Performance Profilers: This is about build-time overhead and binary bloat from testing frameworks, not runtime performance profiling.

Explore 4 awesome GitHub repositories matching programming languages & runtimes · Compile-Time Optimization. Refine with filters or upvote what's useful.

Awesome Compile-Time Optimization GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • doctest/doctestdoctest 的头像

    doctest/doctest

    6,765在 GitHub 上查看↗

    doctest is a lightweight C++ unit testing framework and assertion library. It provides a single-header implementation that eliminates complex build dependencies, allowing developers to write and execute test cases directly within their source code. The framework is distinguished by its focus on compile-time performance and binary overhead. It uses conditional compilation guards to strip all testing logic and metadata from production binaries. Additionally, it features hierarchical subcases that re-execute parent setup code to isolate different execution paths within a single test case. Its c

    Minimizes compilation overhead and binary size by streamlining expression decomposition and stripping metadata.

    C++c-plus-pluscppcpp11
    在 GitHub 上查看↗6,765
  • svf-tools/svfSVF-tools 的头像

    SVF-tools/SVF

    1,684在 GitHub 上查看↗

    SVF is an open-source static program analysis framework and points-to analysis library that tracks memory references, variable aliases, and data dependencies across whole programs. The platform translates compiled intermediate code formats into unified internal representations, constructing constraint graphs, call graphs, and control-flow graphs to model interprocedural execution behavior and memory state. The framework incorporates specialized engines for flow-sensitive, flow-insensitive, and context-sensitive pointer analysis alongside sparse value-flow graph generation. It features memory

    Transforms program instructions into constraint graphs where nodes represent pointers and edges represent dependencies.

    C++code-analysiscode-securitydependency-analysis
    在 GitHub 上查看↗1,684
  • grin-compiler/gringrin-compiler 的头像

    grin-compiler/grin

    1,062在 GitHub 上查看↗

    Grin is a compiler infrastructure designed for the translation and optimization of high-level functional languages. It functions as a graph-reduction compiler, transforming source code into a standardized intermediate representation that facilitates whole-program analysis and efficient execution across diverse hardware architectures. The project distinguishes itself through a modular backend infrastructure that separates intermediate representation management from target-specific code generation. By utilizing graph-based transformations, the system performs advanced optimizations such as valu

    Performs whole-program analysis to eliminate redundant operations and reduce memory usage, resulting in faster execution times.

    Haskellcompilerdata-flow-analysisfunctional-programming
    在 GitHub 上查看↗1,062
  • aplus-framework/frameworkaplus-framework 的头像

    aplus-framework/framework

    262在 GitHub 上查看↗

    This project is a full-stack web framework built on PHP that provides a structured environment for developing complete web applications. It utilizes a model-view-controller architecture to separate application data, user interface, and control logic, facilitating the management of complex application requirements. The framework distinguishes itself through a suite of integrated tools designed to unify server-side logic and client-side interfaces. It supports isomorphic code execution to maintain consistent behavior across the stack and employs server-side data hydration to populate the client

    Provides compile-time asset optimization to minimize payload size and improve browser loading performance.

    PHPaplusaplus-frameworkcache
    在 GitHub 上查看↗262
  1. Home
  2. Programming Languages & Runtimes
  3. Compile-Time Optimization

探索子标签

  • Whole-Program Analysis1 个子标签Performs whole-program analysis to eliminate redundant operations and reduce memory usage. **Distinct from Compile-Time Optimization:** Distinct from general compile-time optimization: focuses on whole-program analysis for execution speed and memory reduction.