visual-decaf / decaf-compiler

Compiler of decaf language
1 stars 3 forks source link

实现PRINT语句 #79

Closed DistinctWind closed 1 year ago

DistinctWind commented 1 year ago

是时候添加第一个有用的语句了

DistinctWind commented 1 year ago

现在其他阶段都没什么问题,关键是VirtualMachine。

如此多的类型必然会让VirtualMachine变得非常臃肿。重构VirtualMachine迫在眉睫。

目前的想法是将两个栈合并为同一个,创建一个新的类承载VirtualMachine中数据的运行时表示,并且由这个类负责类型相关的操作。

DistinctWind commented 1 year ago

现在该项目的运行时系统有很大的缺陷,我觉得需要增强一下运行时系统