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
·

2 repositorios

Awesome GitHub RepositoriesZero-Overhead

Generates code on both sides of the boundary that operates with no copying, serialization, or runtime checks.

Distinct from Binding Generators: Distinct from general binding generators: focuses on zero-overhead generation, not general API binding generation.

Explore 2 awesome GitHub repositories matching software engineering & architecture · Zero-Overhead. Refine with filters or upvote what's useful.

Awesome Zero-Overhead GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • dtolnay/cxxAvatar de dtolnay

    dtolnay/cxx

    6,664Ver en GitHub↗

    CXX is a code generator that produces a safe, zero-overhead FFI bridge between Rust and C++. It lets functions and data types from either language be used directly in the other, with static type safety enforced at compile time and no copying, serialization, or runtime checks across the boundary. The bridge supports the full range of cross-language interactions: Rust can call C++ functions and use C++ types, and C++ can call Rust functions and use Rust types. Standard library types like strings, vectors, and smart pointers are mapped automatically between the two languages, while opaque types

    Generates code on both sides of the boundary that operates with no copying, serialization, or runtime checks.

    Rust
    Ver en GitHub↗6,664
  • zeal-operating-system/zealosAvatar de Zeal-Operating-System

    Zeal-Operating-System/ZealOS

    2,322Ver en GitHub↗

    ZealOS es un sistema operativo de 64 bits diseñado para el despliegue en metal desnudo y el desarrollo de kernel personalizado. Proporciona un entorno autónomo que opera dentro de un modelo de memoria de espacio de direcciones único, donde todo el software se ejecuta en un nivel de privilegio de anillo cero para eliminar el cambio de contexto y facilitar la interacción directa con el hardware. El sistema se distingue por una arquitectura monolítica que integra la compilación justo a tiempo, permitiendo que el código fuente se traduzca en instrucciones de máquina durante el tiempo de ejecución. Evita las capas de abstracción tradicionales utilizando el mapeo de memoria de hardware directo y un framebuffer de 32 bits agnóstico al hardware para la renderización de gráficos, asegurando un control de baja latencia sobre los recursos del sistema y la salida visual. La plataforma admite una gama de tareas de programación de sistemas de bajo nivel, incluido el manejo de dispositivos de entrada sin procesar y la modernización de arquitecturas de hardware heredadas. Incluye utilidades administrativas como un navegador de sistema de archivos basado en web y mantiene la compatibilidad con cargadores de arranque externos para simplificar el proceso de inicialización en máquinas físicas o virtuales.

    Executes all software at the highest processor privilege level to simplify inter-process communication and remove context switching overhead.

    HolyCholycoperating-systempublic-domain
    Ver en GitHub↗2,322
  1. Home
  2. Software Engineering & Architecture
  3. Integration & Extensibility
  4. Programmatic Interfaces
  5. Binding Generators
  6. Zero-Overhead

Explorar subetiquetas

  • Privilege-Level Execution EnvironmentsExecution environments that operate entirely within a single processor privilege level to eliminate context switching. **Distinct from Zero-Overhead:** Distinct from Zero-Overhead: focuses on the architectural privilege level (Ring 0) rather than just the absence of runtime checks.