mips without optimize

This commit is contained in:
colden
2025-12-12 20:14:00 +08:00
parent 84827838e2
commit c94bebf37b
130 changed files with 5462 additions and 4182 deletions

8
midend/llvm/value/IrValue.java Normal file → Executable file
View File

@@ -35,4 +35,12 @@ public class IrValue {
public String toString() {
return type.toString() + " " + name;
}
public void toMips() {
// 子类实现
}
public String getMipsLabel() {
return name.substring(1);
}
}