acc/include/acir.h
szdytom 38fd3c8911 add quad repersentation
Signed-off-by: szdytom <szdytom@163.com>
2023-06-13 19:44:07 +08:00

27 lines
330 B
C

#ifndef ACC_ACIR_H
#define ACC_ACIR_H
// operations in the ACC IR(ACIR)
enum {
IR_ADD, IR_SUB, IR_MUL, IR_DIV,
IR_EQ, IR_NE, IR_LT, IR_GT, IR_LE, IR_GE,
IR_NEG,
IR_LIT32, IR_LIT64,
};
struct IRblock {
}
struct IRinstruction {
int op;
union {
struct { int left, right; };
int val_i32;
int val_i64;
};
};
#endif