mirror of https://github.com/aamine/cbc
43 lines
886 B
Java
43 lines
886 B
Java
package net.loveruby.cflat.ir;
|
|
import net.loveruby.cflat.asm.*;
|
|
|
|
abstract public class Expr implements Dumpable {
|
|
protected Type type;
|
|
|
|
protected Expr(Type type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public Type type() { return type; }
|
|
|
|
public boolean isConstant() {
|
|
return false;
|
|
}
|
|
|
|
public ImmediateValue asmValue() {
|
|
throw new Error("Expr#asmValue called");
|
|
}
|
|
|
|
public boolean isConstantAddress() {
|
|
return false;
|
|
}
|
|
|
|
public AsmOperand address() {
|
|
throw new Error("Expr#address called");
|
|
}
|
|
|
|
public MemoryReference memref() {
|
|
throw new Error("Expr#memref called");
|
|
}
|
|
|
|
abstract public <S,E> E accept(IRVisitor<S,E> visitor);
|
|
|
|
public void dump(Dumper d) {
|
|
d.printClass(this);
|
|
d.printMember("type", type);
|
|
_dump(d);
|
|
}
|
|
|
|
abstract protected void _dump(Dumper d);
|
|
}
|