Skip to content

dhcpack/BUAA_Compiler_2022

Repository files navigation

BUAA_Compiler_2022


北京航空航天大学2022秋编译技术课程设计

Java语言实现的SysY到Mips编译器

GitHub GitHub Workflow Status (with branch) GitHub code size in bytes Lines of Code GitHub Repo stars

基础功能

  • 词法分析
  • 语法分析
  • 符号表管理
  • 中间代码
  • 错误处理
  • 代码生成

前端优化

  • 小型函数内联
  • 常量传播
  • 复写传播
  • 编译期计算
  • 表达式翻译优化
  • 分支语句翻译优化
  • 活跃变量分析,死代码删除

后端优化

  • 图着色全局寄存器分配策略
  • OPT临时寄存器分配策略
  • 立即数乘除优化
  • 后端无用跳转语句删除
  • 后端无用赋值语句删除