2026-04-26 18:22:08 +08:00
|
|
|
# lexer
|
2025-11-20 10:44:59 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
> (Lexical Analysis) 词法分析
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
# pproc
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
> (Preprocessor) 预处理器
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
# parser
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
> (Syntax analysis) 语法分析
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
## sema
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
> (Semantic Analysis) 语义分析
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
# ast
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
> (Abstract Syntax Tree) 抽象语法树
|
2026-03-17 20:29:40 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
# ast2ir
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
> 抽象语法树到中间代码
|
2026-03-04 17:35:54 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
# ir
|
2026-03-20 14:12:25 +08:00
|
|
|
|
2026-04-26 18:22:08 +08:00
|
|
|
> (Intermediate Representation) 中间代码标识
|
|
|
|
|
|
|
|
|
|
## cfg
|
|
|
|
|
|
|
|
|
|
> (Control Flow Graph) 控制流图
|
|
|
|
|
|
|
|
|
|
## hir
|
|
|
|
|
|
|
|
|
|
> (High-Level Intermediate Representation) 高级中间代码标识
|
|
|
|
|
|
|
|
|
|
## lir
|
|
|
|
|
|
|
|
|
|
> (Low-Level Intermediate Representation) 低级中间代码标识
|
|
|
|
|
|
|
|
|
|
## mir
|
|
|
|
|
|
|
|
|
|
> (Machine Intermediate Representation) 机器中间代码标识
|
|
|
|
|
|
|
|
|
|
# ir2mcode
|
|
|
|
|
|
|
|
|
|
> 中间代码到机器码
|
|
|
|
|
|
|
|
|
|
<!-- asm 汇编器 -->
|
|
|
|
|
|
|
|
|
|
# mcode
|
|
|
|
|
|
|
|
|
|
> (Machine Code) 机器码
|
|
|
|
|
|
|
|
|
|
# sccf
|
|
|
|
|
|
|
|
|
|
> 统一输出格式
|
|
|
|
|
|
|
|
|
|
# target
|
|
|
|
|
|
|
|
|
|
> 目标平台支持
|
|
|
|
|
|
|
|
|
|
## Windows Portable Executable Format
|
2026-03-20 14:12:25 +08:00
|
|
|
[Windows Portable Executable Format](https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#archive-library-file-format)
|
|
|
|
|
[中文文档](https://learn.microsoft.com/zh-cn/windows/win32/debug/pe-format#archive-library-file-format)
|