Compiler
A simple-C language compiler
Introduction
Compile the simple-C program into machine code.
暂将实现分为11个阶段: 词法分析 语法分析 语义动作 语义分析 栈帧布局 翻译 规范化 指令选择 控制流分析 数据流分析 寄存器分配 代码流出.
已完成:词法分析 语法分析
相关内容:
Requirements
Linux OS
GCC
Flex
sudo apt-get install flex
Bison
sudo apt-get install bison
References
"Modern Compiler Implementation in C"
"Modern Compiler Implementation in C"
http://www.cs.pri
2022-12-29 17:51:23
7KB
C
1