awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repositorios

Awesome GitHub RepositoriesIntermediate Representation Inspection

Utilities for printing and analyzing the state of code after specific optimization passes.

Distinct from Compiled Code Analysis: Specifically targets the inspection of code between compiler passes for debugging optimization bugs, not final binary auditing.

Explore 4 awesome GitHub repositories matching development tools & productivity · Intermediate Representation Inspection. Refine with filters or upvote what's useful.

Awesome Intermediate Representation Inspection GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • google/closure-compilerAvatar de google

    google/closure-compiler

    7,663Ver en GitHub↗

    This project is a JavaScript optimizer, minifier, module bundler, transpiler, and static analysis tool. It provides a compilation pipeline designed to shrink file sizes and improve runtime performance. The system utilizes a multi-pass compilation process to perform dead code elimination, global name mangling, and static type inference. It identifies unreachable functions and unused variables to reduce the final output size and detects potential runtime errors without executing the code. The tool manages assets through dependency resolution, code chunking, and bundle management. It ensures co

    Provides the ability to print the state of the code after each optimization phase to identify bugs.

    JavaScript
    Ver en GitHub↗7,663
  • tile-ai/tilelangAvatar de tile-ai

    tile-ai/tilelang

    5,226Ver en GitHub↗

    TileLang is a Python-embedded domain-specific language compiler that JIT-compiles and autotunes GPU kernels. It uses a tile-based DSL, automatic software pipelining, and parallel autotuning to generate optimized GPU kernels at runtime. It supports tensor core operations with Pythonic syntax, automatic memory management, and thread mapping. The compiler searches over tile sizes, thread counts, and scheduling policies, compiling and benchmarking candidates in parallel to find the fastest kernel. It also caches compiled binaries and tuning results to disk for reuse across sessions. TileLang inc

    Extracts the intermediate representation of compiled GPU kernels for debugging and analysis.

    Python
    Ver en GitHub↗5,226
  • iree-org/ireeAvatar de iree-org

    iree-org/iree

    3,819Ver en GitHub↗

    IREE is an MLIR-based compiler toolchain and runtime designed to translate machine learning models from various frameworks into optimized binaries for execution across diverse hardware targets. It provides a unified pipeline to ingest models from PyTorch, TensorFlow, JAX, and ONNX, lowering them into a common intermediate representation for deployment on CPUs, GPUs, and bare-metal embedded systems. The project distinguishes itself through a bytecode virtual machine and a hardware abstraction layer that decouple high-level model logic from specific hardware instruction sets. It supports sophis

    Snapshots and analyzes the intermediate representation between compiler passes to detect regressions.

    C++compilercudajax
    Ver en GitHub↗3,819
  • secure-software-engineering/phasarAvatar de secure-software-engineering

    secure-software-engineering/phasar

    1,045Ver en GitHub↗

    Phasar is a static analysis framework designed for the inspection of software logic through the processing of compiler intermediate representations. It provides a modular pipeline for building program representations, including call graphs, control flow graphs, and type hierarchies, which serve as the foundation for deep structural analysis of software behavior. The framework specializes in interprocedural data flow analysis and pointer alias resolution, enabling the tracking of information movement across function boundaries and the identification of indirect memory access patterns. By lever

    Processes compiler intermediate representations to perform deep structural inspection of software logic.

    C++ccppdata-flow-analysis
    Ver en GitHub↗1,045
  1. Home
  2. Development Tools & Productivity
  3. Compiled Code Analysis
  4. Intermediate Representation Inspection

Explorar subetiquetas

  • Intermediate Representation AnalyzersTools for performing deep structural inspection of compiler bytecode to analyze software logic without source code. **Distinct from Intermediate Representation Inspection:** Distinct from Intermediate Representation Inspection: focuses on deep structural analysis for logic inspection rather than just debugging optimization passes.