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

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

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

4 个仓库

Awesome GitHub RepositoriesCompiler Frontend Development

The design and implementation of the initial stages of a compiler, including parsing and IR generation.

Distinct from Compiler Development: None of the candidates correctly capture the broad architectural domain of compiler frontend engineering.

Explore 4 awesome GitHub repositories matching programming languages & runtimes · Compiler Frontend Development. Refine with filters or upvote what's useful.

Awesome Compiler Frontend Development GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • chai2010/go-ast-bookchai2010 的头像

    chai2010/go-ast-book

    5,510在 GitHub 上查看↗

    go-ast-book 是一系列专注于抽象语法树(AST)分析、编译器开发和静态代码验证的教育和技术资源。它提供了解析、遍历和分析 Go 源代码以提取语义含义的指南和手册。 该项目作为构建编译器前端的参考,涵盖了将高级代码转换为中间表示和静态单赋值形式的过程。它还提供了使用这些技术开发语言工具和执行静态代码分析的说明。 这些资源涵盖了广泛的静态分析能力,包括词法标记化、表达式和声明的结构化解析,以及源文件的坐标跟踪。它还详细介绍了语义分析过程,如标识符解析、类型正确性验证,以及针对并发和延迟执行的控制流分析。

    Provides a comprehensive reference for building compiler frontends, from parsing to intermediate representation generation.

    Go
    在 GitHub 上查看↗5,510
  • llvm-mirror/llvmllvm-mirror 的头像

    llvm-mirror/llvm

    4,580在 GitHub 上查看↗

    LLVM 是一个模块化的编译器基础设施和框架,由一系列可重用库组成,用于构建语言前端和优化工具。它作为一个底层虚拟机,提供中间表示和优化流水线,以实现与语言无关的代码生成。 该项目提供了一套即时编译(JIT)工具包,可在运行时将中间表示翻译为机器码以供立即执行。其模块化设计允许开发者在多种目标架构上创建自定义语言前端和高性能运行时环境。 该基础设施涵盖了高性能代码优化和跨平台工具链的协调,包括编译器、运行时和调试器的集成。

    Facilitates the design and implementation of the initial compiler stages, including parsing and IR generation.

    LLVMcode-generationintermediate-representationllvm
    在 GitHub 上查看↗4,580
  • zaach/jisonzaach 的头像

    zaach/jison

    4,385在 GitHub 上查看↗

    Jison 是一个实现 LALR 解析算法的 JavaScript 解析器生成器。它通过将结构化输入转换为标记(tokens)和树,创建用于分析自定义编程语言的工具。 该项目作为一个与 Bison 兼容的生成器,接受与 Bison 解析器生成器格式兼容的语法,以生成 JavaScript 解析器。 它涵盖了编译器前端开发的需求,包括领域特定语言的实现和语法分析工具。其功能扩展到自定义语言解析以及通过命令行界面生成解析器。

    Provides the essential tools for the initial stage of a compiler, focusing on parsing and analysis.

    JavaScript
    在 GitHub 上查看↗4,385
  • alecthomas/participlealecthomas 的头像

    alecthomas/participle

    3,869在 GitHub 上查看↗

    Participle is a Go parser generator and toolkit for building language frontends. It provides a declarative grammar framework that uses reflection and struct tags to map input patterns directly into typed data structures. The library features a stateful lexical analyzer that employs state machines to handle nested or modal patterns. It includes a lexer code generator to produce optimized code, reducing runtime memory allocations and increasing throughput. The project covers recursive descent parsing with support for union types via sealed interfaces and custom parsing logic through interface-

    Provides the fundamental tools for building compiler frontends, including lexical analysis and syntax tree generation.

    Goastebnfgo
    在 GitHub 上查看↗3,869
  1. Home
  2. Programming Languages & Runtimes
  3. Compiler Frontend Development

探索子标签

  • Frontend ToolkitsCollections of utilities specifically for implementing the frontend stages of a compiler. **Distinct from Compiler Frontend Development:** Focuses on the toolkit aspect (utilities) rather than the general development process of the frontend.