|
@@ -16,8 +16,8 @@
|
|
#define BREAK_BUFFER 32
|
|
#define BREAK_BUFFER 32
|
|
|
|
|
|
#define DT_OPERATION(op) \
|
|
#define DT_OPERATION(op) \
|
|
- case DT_INT: cAddOperation(OP_##op##_INT); break; \
|
|
|
|
- case DT_LONG: cAddOperation(OP_##op##_LONG); break; \
|
|
|
|
|
|
+ case DT_INT32: cAddOperation(OP_##op##_INT32); break; \
|
|
|
|
+ case DT_INT64: cAddOperation(OP_##op##_INT64); break; \
|
|
case DT_BOOL: cAddOperation(OP_##op##_BOOL); break; \
|
|
case DT_BOOL: cAddOperation(OP_##op##_BOOL); break; \
|
|
case DT_FLOAT: cAddOperation(OP_##op##_FLOAT); break;
|
|
case DT_FLOAT: cAddOperation(OP_##op##_FLOAT); break;
|
|
|
|
|
|
@@ -58,27 +58,28 @@ typedef struct {
|
|
#define TYPE_OP(NAME, INT, LONG, FLOAT, BOOL, POINTER, text) \
|
|
#define TYPE_OP(NAME, INT, LONG, FLOAT, BOOL, POINTER, text) \
|
|
static const TypedOp TYPED_##NAME = {OP_##INT, OP_##LONG, OP_##FLOAT, \
|
|
static const TypedOp TYPED_##NAME = {OP_##INT, OP_##LONG, OP_##FLOAT, \
|
|
OP_##BOOL, OP_##POINTER, text};
|
|
OP_##BOOL, OP_##POINTER, text};
|
|
-TYPE_OP(MUL, MUL_INT, MUL_LONG, MUL_FLOAT, NOTHING, NOTHING, "*")
|
|
|
|
-TYPE_OP(DIV, DIV_INT, DIV_LONG, DIV_FLOAT, NOTHING, NOTHING, "/")
|
|
|
|
-TYPE_OP(MOD, MOD_INT, MOD_LONG, NOTHING, NOTHING, NOTHING, "%")
|
|
|
|
-TYPE_OP(ADD, ADD_INT, ADD_LONG, ADD_FLOAT, NOTHING, NOTHING, "+")
|
|
|
|
-TYPE_OP(SUB, SUB_INT, SUB_LONG, SUB_FLOAT, NOTHING, NOTHING, "-")
|
|
|
|
-TYPE_OP(LESS, LESS_INT, LESS_LONG, LESS_FLOAT, NOTHING, NOTHING, "<")
|
|
|
|
-TYPE_OP(LESS_EQUAL, GREATER_INT, GREATER_LONG, GREATER_FLOAT, NOTHING, NOTHING,
|
|
|
|
- "<=")
|
|
|
|
-TYPE_OP(GREATER, GREATER_INT, GREATER_LONG, GREATER_FLOAT, NOTHING, NOTHING,
|
|
|
|
|
|
+TYPE_OP(MUL, MUL_INT32, MUL_INT64, MUL_FLOAT, NOTHING, NOTHING, "*")
|
|
|
|
+TYPE_OP(DIV, DIV_INT32, DIV_INT64, DIV_FLOAT, NOTHING, NOTHING, "/")
|
|
|
|
+TYPE_OP(MOD, MOD_INT32, MOD_INT64, NOTHING, NOTHING, NOTHING, "%")
|
|
|
|
+TYPE_OP(ADD, ADD_INT32, ADD_INT64, ADD_FLOAT, NOTHING, NOTHING, "+")
|
|
|
|
+TYPE_OP(SUB, SUB_INT32, SUB_INT64, SUB_FLOAT, NOTHING, NOTHING, "-")
|
|
|
|
+TYPE_OP(LESS, LESS_INT32, LESS_INT64, LESS_FLOAT, NOTHING, NOTHING, "<")
|
|
|
|
+TYPE_OP(LESS_EQUAL, GREATER_INT32, GREATER_INT64, GREATER_FLOAT, NOTHING,
|
|
|
|
+ NOTHING, "<=")
|
|
|
|
+TYPE_OP(GREATER, GREATER_INT32, GREATER_INT64, GREATER_FLOAT, NOTHING, NOTHING,
|
|
">")
|
|
">")
|
|
-TYPE_OP(GREATER_EQUAL, LESS_INT, LESS_LONG, LESS_FLOAT, NOTHING, NOTHING, ">=")
|
|
|
|
-TYPE_OP(EQUAL, EQUAL_INT, EQUAL_LONG, EQUAL_FLOAT, EQUAL_BOOL, EQUAL_POINTER,
|
|
|
|
|
|
+TYPE_OP(GREATER_EQUAL, LESS_INT32, LESS_INT64, LESS_FLOAT, NOTHING, NOTHING,
|
|
|
|
+ ">=")
|
|
|
|
+TYPE_OP(EQUAL, EQUAL_INT32, EQUAL_INT64, EQUAL_FLOAT, EQUAL_BOOL, EQUAL_POINTER,
|
|
"==")
|
|
"==")
|
|
-TYPE_OP(NOT_EQUAL, EQUAL_INT, EQUAL_LONG, EQUAL_FLOAT, EQUAL_BOOL,
|
|
|
|
|
|
+TYPE_OP(NOT_EQUAL, EQUAL_INT32, EQUAL_INT64, EQUAL_FLOAT, EQUAL_BOOL,
|
|
EQUAL_POINTER, "!=")
|
|
EQUAL_POINTER, "!=")
|
|
-TYPE_OP(BIT_OR, BIT_OR_INT, BIT_OR_LONG, NOTHING, NOTHING, NOTHING, "|")
|
|
|
|
-TYPE_OP(BIT_XOR, BIT_XOR_INT, BIT_XOR_LONG, NOTHING, NOTHING, NOTHING, "^")
|
|
|
|
-TYPE_OP(BIT_AND, BIT_AND_INT, BIT_AND_LONG, NOTHING, NOTHING, NOTHING, "&")
|
|
|
|
-TYPE_OP(LEFT_SHIFT, LEFT_SHIFT_INT, LEFT_SHIFT_LONG, NOTHING, NOTHING, NOTHING,
|
|
|
|
- "<<")
|
|
|
|
-TYPE_OP(RIGHT_SHIFT, RIGHT_SHIFT_INT, RIGHT_SHIFT_LONG, NOTHING, NOTHING,
|
|
|
|
|
|
+TYPE_OP(BIT_OR, BIT_OR_INT32, BIT_OR_INT64, NOTHING, NOTHING, NOTHING, "|")
|
|
|
|
+TYPE_OP(BIT_XOR, BIT_XOR_INT32, BIT_XOR_INT64, NOTHING, NOTHING, NOTHING, "^")
|
|
|
|
+TYPE_OP(BIT_AND, BIT_AND_INT32, BIT_AND_INT64, NOTHING, NOTHING, NOTHING, "&")
|
|
|
|
+TYPE_OP(LEFT_SHIFT, LEFT_SHIFT_INT32, LEFT_SHIFT_INT64, NOTHING, NOTHING,
|
|
|
|
+ NOTHING, "<<")
|
|
|
|
+TYPE_OP(RIGHT_SHIFT, RIGHT_SHIFT_INT32, RIGHT_SHIFT_INT64, NOTHING, NOTHING,
|
|
NOTHING, ">>")
|
|
NOTHING, ">>")
|
|
|
|
|
|
static void cError(const char* format, ...) {
|
|
static void cError(const char* format, ...) {
|
|
@@ -118,30 +119,30 @@ static void cAddOperation(Operation token) {
|
|
bcAddBytes(code, &c, 1);
|
|
bcAddBytes(code, &c, 1);
|
|
}
|
|
}
|
|
|
|
|
|
-static int cReserveInt() {
|
|
|
|
- return bcReserveBytes(code, sizeof(int));
|
|
|
|
|
|
+static int32 cReserveInt32() {
|
|
|
|
+ return bcReserveBytes(code, sizeof(int32));
|
|
}
|
|
}
|
|
|
|
|
|
-static void cSetInt(int p, int i) {
|
|
|
|
- bcSetBytes(code, p, &i, sizeof(int));
|
|
|
|
|
|
+static void cSetInt32(int p, int32 i) {
|
|
|
|
+ bcSetBytes(code, p, &i, sizeof(int32));
|
|
}
|
|
}
|
|
|
|
|
|
-static void cAddInt(int i) {
|
|
|
|
- bcAddBytes(code, &i, sizeof(int));
|
|
|
|
|
|
+static void cAddInt32(int32 i) {
|
|
|
|
+ bcAddBytes(code, &i, sizeof(int32));
|
|
}
|
|
}
|
|
|
|
|
|
-static void cAddLong(long l) {
|
|
|
|
- bcAddBytes(code, &l, sizeof(long));
|
|
|
|
|
|
+static void cAddInt64(int64 i) {
|
|
|
|
+ bcAddBytes(code, &i, sizeof(int64));
|
|
}
|
|
}
|
|
|
|
|
|
-static void cAddIntOperation(Operation token, int i) {
|
|
|
|
|
|
+static void cAddInt32Operation(Operation token, int32 i) {
|
|
cAddOperation(token);
|
|
cAddOperation(token);
|
|
- cAddInt(i);
|
|
|
|
|
|
+ cAddInt32(i);
|
|
}
|
|
}
|
|
|
|
|
|
-static void cAddByteOperation(Operation token, char c) {
|
|
|
|
|
|
+static void cAddByteOperation(Operation token, int8 i) {
|
|
cAddOperation(token);
|
|
cAddOperation(token);
|
|
- bcAddBytes(code, &c, sizeof(char));
|
|
|
|
|
|
+ bcAddBytes(code, &i, sizeof(int8));
|
|
}
|
|
}
|
|
|
|
|
|
static void cAddLine(int16 i) {
|
|
static void cAddLine(int16 i) {
|
|
@@ -169,21 +170,21 @@ static bool cConsumeTokenIf(Token t) {
|
|
return tPeekToken() == t && cReadTokenAndLine() == t;
|
|
return tPeekToken() == t && cReadTokenAndLine() == t;
|
|
}
|
|
}
|
|
|
|
|
|
-static void cConstantInt() {
|
|
|
|
- int value;
|
|
|
|
- if(!tReadInt(&value)) {
|
|
|
|
|
|
+static void cConstantInt32() {
|
|
|
|
+ int32 value;
|
|
|
|
+ if(!tReadInt32(&value)) {
|
|
cError("int token without an int");
|
|
cError("int token without an int");
|
|
}
|
|
}
|
|
- cAddIntOperation(OP_PUSH_INT, value);
|
|
|
|
|
|
+ cAddInt32Operation(OP_PUSH_INT32, value);
|
|
}
|
|
}
|
|
|
|
|
|
-static void cConstantLong() {
|
|
|
|
- long value;
|
|
|
|
- if(!tReadLong(&value)) {
|
|
|
|
|
|
+static void cConstantInt64() {
|
|
|
|
+ int64 value;
|
|
|
|
+ if(!tReadInt64(&value)) {
|
|
cError("long token without an long");
|
|
cError("long token without an long");
|
|
}
|
|
}
|
|
- cAddOperation(OP_PUSH_LONG);
|
|
|
|
- cAddLong(value);
|
|
|
|
|
|
+ cAddOperation(OP_PUSH_INT64);
|
|
|
|
+ cAddInt64(value);
|
|
}
|
|
}
|
|
|
|
|
|
static void cConstantFloat() {
|
|
static void cConstantFloat() {
|
|
@@ -223,8 +224,8 @@ static DataType cExtendType(DataType dt) {
|
|
|
|
|
|
static DataType cReadType(Token t) {
|
|
static DataType cReadType(Token t) {
|
|
switch(t) {
|
|
switch(t) {
|
|
- case T_INT: return cExtendType(dtInt());
|
|
|
|
- case T_LONG: return cExtendType(dtLong());
|
|
|
|
|
|
+ case T_INT32: return cExtendType(dtInt32());
|
|
|
|
+ case T_INT64: return cExtendType(dtInt64());
|
|
case T_BOOL: return cExtendType(dtBool());
|
|
case T_BOOL: return cExtendType(dtBool());
|
|
case T_FLOAT: return cExtendType(dtFloat());
|
|
case T_FLOAT: return cExtendType(dtFloat());
|
|
case T_LITERAL:
|
|
case T_LITERAL:
|
|
@@ -248,7 +249,7 @@ static void cLoadRef(DataType type) {
|
|
}
|
|
}
|
|
switch(type.type) {
|
|
switch(type.type) {
|
|
DT_OPERATION(LOAD);
|
|
DT_OPERATION(LOAD);
|
|
- case DT_STRUCT: cAddIntOperation(OP_LOAD, cGetSize(type)); break;
|
|
|
|
|
|
+ case DT_STRUCT: cAddInt32Operation(OP_LOAD, cGetSize(type)); break;
|
|
default: cError("cannot load type %s", cGetName(type));
|
|
default: cError("cannot load type %s", cGetName(type));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -291,20 +292,20 @@ static DataType cCallFunction(const char* name) {
|
|
if(found == NULL) {
|
|
if(found == NULL) {
|
|
cError("unknown function");
|
|
cError("unknown function");
|
|
} else if(found->global) {
|
|
} else if(found->global) {
|
|
- cAddIntOperation(OP_CALL, found->line);
|
|
|
|
|
|
+ cAddInt32Operation(OP_CALL, found->line);
|
|
return found->returnType;
|
|
return found->returnType;
|
|
}
|
|
}
|
|
- char push[1 + sizeof(int)] = {OP_PUSH_INT};
|
|
|
|
- bcInsertBytes(code, push, 5, returnAddress);
|
|
|
|
|
|
+ char push[1 + sizeof(int32)] = {OP_PUSH_INT32};
|
|
|
|
+ bcInsertBytes(code, push, sizeof(push), returnAddress);
|
|
cAddOperation(OP_GOSUB);
|
|
cAddOperation(OP_GOSUB);
|
|
if(found->address == -1) {
|
|
if(found->address == -1) {
|
|
f.returnType = found->returnType;
|
|
f.returnType = found->returnType;
|
|
- f.address = cReserveInt();
|
|
|
|
|
|
+ f.address = cReserveInt32();
|
|
fsAdd(&functionQueue, &f);
|
|
fsAdd(&functionQueue, &f);
|
|
} else {
|
|
} else {
|
|
- cAddInt(found->address);
|
|
|
|
|
|
+ cAddInt32(found->address);
|
|
}
|
|
}
|
|
- cAddInt(found->size);
|
|
|
|
|
|
+ cAddInt32(found->size);
|
|
return found->returnType;
|
|
return found->returnType;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -334,7 +335,7 @@ static DataType cLiteral() {
|
|
if(vsSearch(&vars, &v, literal)) {
|
|
if(vsSearch(&vars, &v, literal)) {
|
|
cNotDeclared(literal);
|
|
cNotDeclared(literal);
|
|
}
|
|
}
|
|
- cAddIntOperation(OP_DEREFERENCE_VAR, v.address);
|
|
|
|
|
|
+ cAddInt32Operation(OP_DEREFERENCE_VAR, v.address);
|
|
return dtToVariable(v.type);
|
|
return dtToVariable(v.type);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -345,7 +346,7 @@ static DataType cBracketPrimary() {
|
|
}
|
|
}
|
|
|
|
|
|
static void cArrayIndex(const char* name) {
|
|
static void cArrayIndex(const char* name) {
|
|
- if(!dtIsInt(cUnpackedExpression())) {
|
|
|
|
|
|
+ if(!dtIsInt32(cUnpackedExpression())) {
|
|
cError("array %s must be an int", name);
|
|
cError("array %s must be an int", name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -355,7 +356,7 @@ static DataType cAllocArray() {
|
|
cConsumeToken(T_OPEN_SQUARE_BRACKET);
|
|
cConsumeToken(T_OPEN_SQUARE_BRACKET);
|
|
cArrayIndex("size");
|
|
cArrayIndex("size");
|
|
cConsumeToken(T_CLOSE_SQUARE_BRACKET);
|
|
cConsumeToken(T_CLOSE_SQUARE_BRACKET);
|
|
- cAddIntOperation(OP_NEW, cGetSize(dt));
|
|
|
|
|
|
+ cAddInt32Operation(OP_NEW, cGetSize(dt));
|
|
return cDereference(dt);
|
|
return cDereference(dt);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -365,14 +366,14 @@ static DataType cLength() {
|
|
cError("length expects a pointer");
|
|
cError("length expects a pointer");
|
|
}
|
|
}
|
|
cAddOperation(OP_LENGTH);
|
|
cAddOperation(OP_LENGTH);
|
|
- return dtInt();
|
|
|
|
|
|
+ return dtInt32();
|
|
}
|
|
}
|
|
|
|
|
|
static DataType cPrimary() {
|
|
static DataType cPrimary() {
|
|
Token t = cReadTokenAndLine();
|
|
Token t = cReadTokenAndLine();
|
|
switch(t) {
|
|
switch(t) {
|
|
- case T_CONST_INT: cConstantInt(); return dtInt();
|
|
|
|
- case T_CONST_LONG: cConstantLong(); return dtLong();
|
|
|
|
|
|
+ case T_CONST_INT32: cConstantInt32(); return dtInt32();
|
|
|
|
+ case T_CONST_INT64: cConstantInt64(); return dtInt64();
|
|
case T_CONST_FLOAT: cConstantFloat(); return dtFloat();
|
|
case T_CONST_FLOAT: cConstantFloat(); return dtFloat();
|
|
case T_TRUE: cAddOperation(OP_PUSH_TRUE); return dtBool();
|
|
case T_TRUE: cAddOperation(OP_PUSH_TRUE); return dtBool();
|
|
case T_FALSE: cAddOperation(OP_PUSH_FALSE); return dtBool();
|
|
case T_FALSE: cAddOperation(OP_PUSH_FALSE); return dtBool();
|
|
@@ -409,10 +410,10 @@ static void cChangeType(DataType* dt, Operation op, Operation pushOp,
|
|
|
|
|
|
static void cPostChange(DataType* dt, int change, const char* name) {
|
|
static void cPostChange(DataType* dt, int change, const char* name) {
|
|
cRemoveReference(dt, name);
|
|
cRemoveReference(dt, name);
|
|
- if(dtCompare(*dt, dtInt())) {
|
|
|
|
- cChangeType(dt, OP_CHANGE_INT, OP_PUSH_POST_CHANGE_INT, change);
|
|
|
|
- } else if(dtCompare(*dt, dtLong())) {
|
|
|
|
- cChangeType(dt, OP_CHANGE_LONG, OP_PUSH_POST_CHANGE_LONG, change);
|
|
|
|
|
|
+ if(dtCompare(*dt, dtInt32())) {
|
|
|
|
+ cChangeType(dt, OP_CHANGE_INT32, OP_PUSH_POST_CHANGE_INT32, change);
|
|
|
|
+ } else if(dtCompare(*dt, dtInt64())) {
|
|
|
|
+ cChangeType(dt, OP_CHANGE_INT64, OP_PUSH_POST_CHANGE_INT64, change);
|
|
} else {
|
|
} else {
|
|
cError("%s needs an int or long not %s", name, cGetName(*dt));
|
|
cError("%s needs an int or long not %s", name, cGetName(*dt));
|
|
}
|
|
}
|
|
@@ -429,8 +430,8 @@ static DataType cStructAccess(DataType dt, int pointers) {
|
|
if(vSearchStruct(&inner, &structs, st, name)) {
|
|
if(vSearchStruct(&inner, &structs, st, name)) {
|
|
cError("%s has no member %s", st->name, name);
|
|
cError("%s has no member %s", st->name, name);
|
|
} else if(inner.address > 0) {
|
|
} else if(inner.address > 0) {
|
|
- cAddIntOperation(OP_PUSH_INT, inner.address);
|
|
|
|
- cAddIntOperation(OP_ADD_REFERENCE, 1);
|
|
|
|
|
|
+ cAddInt32Operation(OP_PUSH_INT32, inner.address);
|
|
|
|
+ cAddInt32Operation(OP_ADD_REFERENCE, 1);
|
|
}
|
|
}
|
|
return dtToVariable(inner.type);
|
|
return dtToVariable(inner.type);
|
|
}
|
|
}
|
|
@@ -455,7 +456,7 @@ static DataType cAccess() {
|
|
cArrayIndex("index");
|
|
cArrayIndex("index");
|
|
cConsumeToken(T_CLOSE_SQUARE_BRACKET);
|
|
cConsumeToken(T_CLOSE_SQUARE_BRACKET);
|
|
dt = dtReference(dt);
|
|
dt = dtReference(dt);
|
|
- cAddIntOperation(OP_ADD_REFERENCE, cGetSize(dt));
|
|
|
|
|
|
+ cAddInt32Operation(OP_ADD_REFERENCE, cGetSize(dt));
|
|
dt = dtToVariable(dt);
|
|
dt = dtToVariable(dt);
|
|
} else {
|
|
} else {
|
|
return dt;
|
|
return dt;
|
|
@@ -465,10 +466,10 @@ static DataType cAccess() {
|
|
|
|
|
|
static DataType cPreChange(DataType dt, int change, const char* name) {
|
|
static DataType cPreChange(DataType dt, int change, const char* name) {
|
|
cRemoveReference(&dt, name);
|
|
cRemoveReference(&dt, name);
|
|
- if(dtCompare(dt, dtInt())) {
|
|
|
|
- cChangeType(&dt, OP_CHANGE_INT, OP_PUSH_PRE_CHANGE_INT, change);
|
|
|
|
- } else if(dtCompare(dt, dtLong())) {
|
|
|
|
- cChangeType(&dt, OP_CHANGE_LONG, OP_PUSH_PRE_CHANGE_LONG, change);
|
|
|
|
|
|
+ if(dtCompare(dt, dtInt32())) {
|
|
|
|
+ cChangeType(&dt, OP_CHANGE_INT32, OP_PUSH_PRE_CHANGE_INT32, change);
|
|
|
|
+ } else if(dtCompare(dt, dtInt64())) {
|
|
|
|
+ cChangeType(&dt, OP_CHANGE_INT64, OP_PUSH_PRE_CHANGE_INT64, change);
|
|
} else {
|
|
} else {
|
|
cError("%s needs an int or long not %s", name, cGetName(dt));
|
|
cError("%s needs an int or long not %s", name, cGetName(dt));
|
|
}
|
|
}
|
|
@@ -476,10 +477,10 @@ static DataType cPreChange(DataType dt, int change, const char* name) {
|
|
}
|
|
}
|
|
|
|
|
|
static DataType cInvertSign(DataType dt) {
|
|
static DataType cInvertSign(DataType dt) {
|
|
- if(dtIsInt(dt)) {
|
|
|
|
- cAddOperation(OP_INVERT_SIGN_INT);
|
|
|
|
- } else if(dtIsLong(dt)) {
|
|
|
|
- cAddOperation(OP_INVERT_SIGN_LONG);
|
|
|
|
|
|
+ if(dtIsInt32(dt)) {
|
|
|
|
+ cAddOperation(OP_INVERT_SIGN_INT32);
|
|
|
|
+ } else if(dtIsInt64(dt)) {
|
|
|
|
+ cAddOperation(OP_INVERT_SIGN_INT64);
|
|
} else if(dtIsFloat(dt)) {
|
|
} else if(dtIsFloat(dt)) {
|
|
cAddOperation(OP_INVERT_SIGN_FLOAT);
|
|
cAddOperation(OP_INVERT_SIGN_FLOAT);
|
|
} else {
|
|
} else {
|
|
@@ -504,14 +505,16 @@ static DataType cPreUnary() {
|
|
int marker = tGetMarker();
|
|
int marker = tGetMarker();
|
|
if(cConsumeTokenIf(T_OPEN_BRACKET)) {
|
|
if(cConsumeTokenIf(T_OPEN_BRACKET)) {
|
|
if(cConsumeTokenIf(T_FLOAT) && cConsumeTokenIf(T_CLOSE_BRACKET)) {
|
|
if(cConsumeTokenIf(T_FLOAT) && cConsumeTokenIf(T_CLOSE_BRACKET)) {
|
|
- return cCast(cUnpack(cPreUnary()), dtInt(), OP_INT_TO_FLOAT,
|
|
|
|
- dtLong(), OP_LONG_TO_FLOAT, dtFloat());
|
|
|
|
- } else if(cConsumeTokenIf(T_INT) && cConsumeTokenIf(T_CLOSE_BRACKET)) {
|
|
|
|
- return cCast(cUnpack(cPreUnary()), dtFloat(), OP_FLOAT_TO_INT,
|
|
|
|
- dtLong(), OP_LONG_TO_INT, dtInt());
|
|
|
|
- } else if(cConsumeTokenIf(T_LONG) && cConsumeTokenIf(T_CLOSE_BRACKET)) {
|
|
|
|
- return cCast(cUnpack(cPreUnary()), dtInt(), OP_INT_TO_LONG,
|
|
|
|
- dtFloat(), OP_FLOAT_TO_LONG, dtLong());
|
|
|
|
|
|
+ return cCast(cUnpack(cPreUnary()), dtInt32(), OP_INT32_TO_FLOAT,
|
|
|
|
+ dtInt64(), OP_INT64_TO_FLOAT, dtFloat());
|
|
|
|
+ } else if(cConsumeTokenIf(T_INT32) &&
|
|
|
|
+ cConsumeTokenIf(T_CLOSE_BRACKET)) {
|
|
|
|
+ return cCast(cUnpack(cPreUnary()), dtFloat(), OP_FLOAT_TO_INT32,
|
|
|
|
+ dtInt64(), OP_INT64_TO_INT32, dtInt32());
|
|
|
|
+ } else if(cConsumeTokenIf(T_INT64) &&
|
|
|
|
+ cConsumeTokenIf(T_CLOSE_BRACKET)) {
|
|
|
|
+ return cCast(cUnpack(cPreUnary()), dtInt32(), OP_INT32_TO_INT64,
|
|
|
|
+ dtFloat(), OP_FLOAT_TO_INT64, dtInt64());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
tReset(marker);
|
|
tReset(marker);
|
|
@@ -528,10 +531,10 @@ static DataType cPreUnary() {
|
|
return dt;
|
|
return dt;
|
|
} else if(cConsumeTokenIf(T_BIT_NOT)) {
|
|
} else if(cConsumeTokenIf(T_BIT_NOT)) {
|
|
DataType dt = cPreUnary();
|
|
DataType dt = cPreUnary();
|
|
- if(dtCompare(dt, dtInt())) {
|
|
|
|
- cAddOperation(OP_BIT_NOT_INT);
|
|
|
|
- } else if(dtCompare(dt, dtLong())) {
|
|
|
|
- cAddOperation(OP_BIT_NOT_LONG);
|
|
|
|
|
|
+ if(dtCompare(dt, dtInt32())) {
|
|
|
|
+ cAddOperation(OP_BIT_NOT_INT32);
|
|
|
|
+ } else if(dtCompare(dt, dtInt64())) {
|
|
|
|
+ cAddOperation(OP_BIT_NOT_INT64);
|
|
} else {
|
|
} else {
|
|
cError("~ needs an int or long not %s", cGetName(dt));
|
|
cError("~ needs an int or long not %s", cGetName(dt));
|
|
}
|
|
}
|
|
@@ -561,9 +564,9 @@ static void cAddTypeOperation(DataType* a, Parser bf, const TypedOp* op) {
|
|
DataType b = cUnpack(bf());
|
|
DataType b = cUnpack(bf());
|
|
if(!dtCompare(*a, b)) {
|
|
if(!dtCompare(*a, b)) {
|
|
cInvalidOperation(*a, b, op->name);
|
|
cInvalidOperation(*a, b, op->name);
|
|
- } else if(dtIsInt(*a) && op->intOp != OP_NOTHING) {
|
|
|
|
|
|
+ } else if(dtIsInt32(*a) && op->intOp != OP_NOTHING) {
|
|
cAddOperation(op->intOp);
|
|
cAddOperation(op->intOp);
|
|
- } else if(dtIsLong(*a) && op->longOp != OP_NOTHING) {
|
|
|
|
|
|
+ } else if(dtIsInt64(*a) && op->longOp != OP_NOTHING) {
|
|
cAddOperation(op->longOp);
|
|
cAddOperation(op->longOp);
|
|
} else if(dtIsFloat(*a) && op->floatOp != OP_NOTHING) {
|
|
} else if(dtIsFloat(*a) && op->floatOp != OP_NOTHING) {
|
|
cAddOperation(op->floatOp);
|
|
cAddOperation(op->floatOp);
|
|
@@ -681,13 +684,13 @@ static DataType cLogical(Parser f, Token t, Operation jump, Operation op) {
|
|
while(cConsumeTokenIf(t)) {
|
|
while(cConsumeTokenIf(t)) {
|
|
a = cUnpack(a);
|
|
a = cUnpack(a);
|
|
cAddOperation(jump);
|
|
cAddOperation(jump);
|
|
- int p = cReserveInt();
|
|
|
|
|
|
+ int32 p = cReserveInt32();
|
|
DataType b = cUnpack(f());
|
|
DataType b = cUnpack(f());
|
|
if(!dtIsBool(a) || !dtIsBool(b)) {
|
|
if(!dtIsBool(a) || !dtIsBool(b)) {
|
|
cInvalidOperation(a, b, tGetName(t));
|
|
cInvalidOperation(a, b, tGetName(t));
|
|
}
|
|
}
|
|
cAddOperation(op);
|
|
cAddOperation(op);
|
|
- cSetInt(p, code->length);
|
|
|
|
|
|
+ cSetInt32(p, code->length);
|
|
}
|
|
}
|
|
return a;
|
|
return a;
|
|
}
|
|
}
|
|
@@ -725,7 +728,7 @@ static void cAddReturn(Operation op) {
|
|
cError("too much returns in function");
|
|
cError("too much returns in function");
|
|
}
|
|
}
|
|
cAddOperation(op);
|
|
cAddOperation(op);
|
|
- returns[returnIndex++] = cReserveInt();
|
|
|
|
|
|
+ returns[returnIndex++] = cReserveInt32();
|
|
}
|
|
}
|
|
|
|
|
|
static void cReturn() {
|
|
static void cReturn() {
|
|
@@ -738,10 +741,10 @@ static void cReturn() {
|
|
DataType dt = cUnpackedExpression();
|
|
DataType dt = cUnpackedExpression();
|
|
if(!cCompare(returnType, dt)) {
|
|
if(!cCompare(returnType, dt)) {
|
|
cError("wrong return type, should be %s", cGetName(returnType));
|
|
cError("wrong return type, should be %s", cGetName(returnType));
|
|
- } else if(dtIsInt(dt)) {
|
|
|
|
- cAddReturn(OP_RETURN_INT);
|
|
|
|
- } else if(dtIsLong(dt)) {
|
|
|
|
- cAddReturn(OP_RETURN_LONG);
|
|
|
|
|
|
+ } else if(dtIsInt32(dt)) {
|
|
|
|
+ cAddReturn(OP_RETURN_INT32);
|
|
|
|
+ } else if(dtIsInt64(dt)) {
|
|
|
|
+ cAddReturn(OP_RETURN_INT64);
|
|
} else if(dtIsBool(dt)) {
|
|
} else if(dtIsBool(dt)) {
|
|
cAddReturn(OP_RETURN_BOOL);
|
|
cAddReturn(OP_RETURN_BOOL);
|
|
} else if(dtIsFloat(dt)) {
|
|
} else if(dtIsFloat(dt)) {
|
|
@@ -760,27 +763,27 @@ static void cIf() {
|
|
cExpectType(cUnpackedExpression(), dtBool(), "if");
|
|
cExpectType(cUnpackedExpression(), dtBool(), "if");
|
|
cConsumeToken(T_CLOSE_BRACKET);
|
|
cConsumeToken(T_CLOSE_BRACKET);
|
|
cAddOperation(OP_IF_GOTO);
|
|
cAddOperation(OP_IF_GOTO);
|
|
- int ifP = cReserveInt();
|
|
|
|
|
|
+ int32 ifP = cReserveInt32();
|
|
cConsumeToken(T_OPEN_CURVED_BRACKET);
|
|
cConsumeToken(T_OPEN_CURVED_BRACKET);
|
|
cConsumeScope();
|
|
cConsumeScope();
|
|
- cSetInt(ifP, code->length);
|
|
|
|
|
|
+ cSetInt32(ifP, code->length);
|
|
if(cConsumeTokenIf(T_ELSE)) {
|
|
if(cConsumeTokenIf(T_ELSE)) {
|
|
cAddOperation(OP_GOTO);
|
|
cAddOperation(OP_GOTO);
|
|
- int elseP = cReserveInt();
|
|
|
|
- cSetInt(ifP, code->length);
|
|
|
|
|
|
+ int32 elseP = cReserveInt32();
|
|
|
|
+ cSetInt32(ifP, code->length);
|
|
if(cConsumeTokenIf(T_IF)) {
|
|
if(cConsumeTokenIf(T_IF)) {
|
|
cIf();
|
|
cIf();
|
|
} else {
|
|
} else {
|
|
cConsumeToken(T_OPEN_CURVED_BRACKET);
|
|
cConsumeToken(T_OPEN_CURVED_BRACKET);
|
|
cConsumeScope();
|
|
cConsumeScope();
|
|
}
|
|
}
|
|
- cSetInt(elseP, code->length);
|
|
|
|
|
|
+ cSetInt32(elseP, code->length);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
static void cConsumeBreaks(int start, int address) {
|
|
static void cConsumeBreaks(int start, int address) {
|
|
for(int i = start; i < breakIndex; i++) {
|
|
for(int i = start; i < breakIndex; i++) {
|
|
- cSetInt(breaks[i], address);
|
|
|
|
|
|
+ cSetInt32(breaks[i], address);
|
|
}
|
|
}
|
|
breakIndex = start;
|
|
breakIndex = start;
|
|
}
|
|
}
|
|
@@ -791,7 +794,7 @@ static void cWhile() {
|
|
cExpectType(cUnpackedExpression(), dtBool(), "while");
|
|
cExpectType(cUnpackedExpression(), dtBool(), "while");
|
|
cConsumeToken(T_CLOSE_BRACKET);
|
|
cConsumeToken(T_CLOSE_BRACKET);
|
|
cAddOperation(OP_IF_GOTO);
|
|
cAddOperation(OP_IF_GOTO);
|
|
- int ifP = cReserveInt();
|
|
|
|
|
|
+ int32 ifP = cReserveInt32();
|
|
int breakStart = breakIndex;
|
|
int breakStart = breakIndex;
|
|
forWhileStack++;
|
|
forWhileStack++;
|
|
int oldContinue = continueAt;
|
|
int oldContinue = continueAt;
|
|
@@ -800,8 +803,8 @@ static void cWhile() {
|
|
cConsumeScope();
|
|
cConsumeScope();
|
|
continueAt = oldContinue;
|
|
continueAt = oldContinue;
|
|
forWhileStack--;
|
|
forWhileStack--;
|
|
- cAddIntOperation(OP_GOTO, start);
|
|
|
|
- cSetInt(ifP, code->length);
|
|
|
|
|
|
+ cAddInt32Operation(OP_GOTO, start);
|
|
|
|
+ cSetInt32(ifP, code->length);
|
|
cConsumeBreaks(breakStart, code->length);
|
|
cConsumeBreaks(breakStart, code->length);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -855,7 +858,7 @@ static void cDeclare(DataType dt) {
|
|
Variable* v = vsAdd(&vars, var, dt, &structs);
|
|
Variable* v = vsAdd(&vars, var, dt, &structs);
|
|
if(dt.type != DT_STRUCT || dtIsPointer(dt)) {
|
|
if(dt.type != DT_STRUCT || dtIsPointer(dt)) {
|
|
cConsumeToken(T_SET);
|
|
cConsumeToken(T_SET);
|
|
- cAddIntOperation(OP_DEREFERENCE_VAR, v->address);
|
|
|
|
|
|
+ cAddInt32Operation(OP_DEREFERENCE_VAR, v->address);
|
|
cStore(v->type, cUnpackedExpression(), "=");
|
|
cStore(v->type, cUnpackedExpression(), "=");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -872,8 +875,8 @@ static void cLineExpression() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
switch(t) {
|
|
switch(t) {
|
|
- case T_INT: cDeclare(dtInt()); break;
|
|
|
|
- case T_LONG: cDeclare(dtLong()); break;
|
|
|
|
|
|
+ case T_INT32: cDeclare(dtInt32()); break;
|
|
|
|
+ case T_INT64: cDeclare(dtInt64()); break;
|
|
case T_BOOL: cDeclare(dtBool()); break;
|
|
case T_BOOL: cDeclare(dtBool()); break;
|
|
case T_FLOAT: cDeclare(dtFloat()); break;
|
|
case T_FLOAT: cDeclare(dtFloat()); break;
|
|
case T_DELETE: cDelete(); break;
|
|
case T_DELETE: cDelete(); break;
|
|
@@ -892,14 +895,14 @@ static void cFor() {
|
|
cExpectType(cUnpackedExpression(), dtBool(), "for");
|
|
cExpectType(cUnpackedExpression(), dtBool(), "for");
|
|
cConsumeToken(T_SEMICOLON);
|
|
cConsumeToken(T_SEMICOLON);
|
|
cAddOperation(OP_IF_GOTO);
|
|
cAddOperation(OP_IF_GOTO);
|
|
- int end = cReserveInt();
|
|
|
|
|
|
+ int32 end = cReserveInt32();
|
|
cAddOperation(OP_GOTO);
|
|
cAddOperation(OP_GOTO);
|
|
- int beginBody = cReserveInt();
|
|
|
|
|
|
+ int32 beginBody = cReserveInt32();
|
|
int startPerLoop = code->length;
|
|
int startPerLoop = code->length;
|
|
cLineExpression();
|
|
cLineExpression();
|
|
- cAddIntOperation(OP_GOTO, startCheck);
|
|
|
|
|
|
+ cAddInt32Operation(OP_GOTO, startCheck);
|
|
cConsumeToken(T_CLOSE_BRACKET);
|
|
cConsumeToken(T_CLOSE_BRACKET);
|
|
- cSetInt(beginBody, code->length);
|
|
|
|
|
|
+ cSetInt32(beginBody, code->length);
|
|
int breakStart = breakIndex;
|
|
int breakStart = breakIndex;
|
|
forWhileStack++;
|
|
forWhileStack++;
|
|
int oldContinue = continueAt;
|
|
int oldContinue = continueAt;
|
|
@@ -908,8 +911,8 @@ static void cFor() {
|
|
cConsumeBody();
|
|
cConsumeBody();
|
|
continueAt = oldContinue;
|
|
continueAt = oldContinue;
|
|
forWhileStack--;
|
|
forWhileStack--;
|
|
- cAddIntOperation(OP_GOTO, startPerLoop);
|
|
|
|
- cSetInt(end, code->length);
|
|
|
|
|
|
+ cAddInt32Operation(OP_GOTO, startPerLoop);
|
|
|
|
+ cSetInt32(end, code->length);
|
|
cConsumeBreaks(breakStart, code->length);
|
|
cConsumeBreaks(breakStart, code->length);
|
|
|
|
|
|
vsLeaveScope(&vars, &scope);
|
|
vsLeaveScope(&vars, &scope);
|
|
@@ -922,7 +925,7 @@ static void cBreak() {
|
|
cError("too much breaks");
|
|
cError("too much breaks");
|
|
}
|
|
}
|
|
cAddOperation(OP_GOTO);
|
|
cAddOperation(OP_GOTO);
|
|
- breaks[breakIndex++] = cReserveInt();
|
|
|
|
|
|
+ breaks[breakIndex++] = cReserveInt32();
|
|
cConsumeToken(T_SEMICOLON);
|
|
cConsumeToken(T_SEMICOLON);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -930,7 +933,7 @@ static void cContinue() {
|
|
if(forWhileStack == 0) {
|
|
if(forWhileStack == 0) {
|
|
cError("continue without for or while");
|
|
cError("continue without for or while");
|
|
}
|
|
}
|
|
- cAddIntOperation(OP_GOTO, continueAt);
|
|
|
|
|
|
+ cAddInt32Operation(OP_GOTO, continueAt);
|
|
cConsumeToken(T_SEMICOLON);
|
|
cConsumeToken(T_SEMICOLON);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -996,17 +999,17 @@ static void cAddFunction(Function* found, Function* f) {
|
|
static void cInnerFunction(Function* f) {
|
|
static void cInnerFunction(Function* f) {
|
|
cConsumeToken(T_OPEN_CURVED_BRACKET);
|
|
cConsumeToken(T_OPEN_CURVED_BRACKET);
|
|
cAddOperation(OP_RESERVE);
|
|
cAddOperation(OP_RESERVE);
|
|
- int p = cReserveInt();
|
|
|
|
- cAddInt(f->size);
|
|
|
|
|
|
+ int32 p = cReserveInt32();
|
|
|
|
+ cAddInt32(f->size);
|
|
returnIndex = 0;
|
|
returnIndex = 0;
|
|
cConsumeScope();
|
|
cConsumeScope();
|
|
if(!dtIsVoid(returnType) && hasReturn <= 0) {
|
|
if(!dtIsVoid(returnType) && hasReturn <= 0) {
|
|
cError("missing return");
|
|
cError("missing return");
|
|
}
|
|
}
|
|
- cAddIntOperation(OP_RETURN, vars.maxAddress);
|
|
|
|
- cSetInt(p, vars.maxAddress);
|
|
|
|
|
|
+ cAddInt32Operation(OP_RETURN, vars.maxAddress);
|
|
|
|
+ cSetInt32(p, vars.maxAddress);
|
|
for(int i = 0; i < returnIndex; i++) {
|
|
for(int i = 0; i < returnIndex; i++) {
|
|
- cSetInt(returns[i], vars.maxAddress);
|
|
|
|
|
|
+ cSetInt32(returns[i], vars.maxAddress);
|
|
}
|
|
}
|
|
returnIndex = 0;
|
|
returnIndex = 0;
|
|
}
|
|
}
|
|
@@ -1022,12 +1025,12 @@ static void cFunction(DataType rType) {
|
|
}
|
|
}
|
|
cAddLine(line);
|
|
cAddLine(line);
|
|
cAddOperation(OP_GOTO);
|
|
cAddOperation(OP_GOTO);
|
|
- int end = cReserveInt();
|
|
|
|
|
|
+ int32 end = cReserveInt32();
|
|
f.address = code->length;
|
|
f.address = code->length;
|
|
cAddFunction(found, &f);
|
|
cAddFunction(found, &f);
|
|
returnType = rType;
|
|
returnType = rType;
|
|
cInnerFunction(&f);
|
|
cInnerFunction(&f);
|
|
- cSetInt(end, code->length);
|
|
|
|
|
|
+ cSetInt32(end, code->length);
|
|
}
|
|
}
|
|
|
|
|
|
static void cStruct() {
|
|
static void cStruct() {
|
|
@@ -1064,9 +1067,9 @@ static void cCallMain() {
|
|
fInit(&f, "main", line);
|
|
fInit(&f, "main", line);
|
|
Function* found = fsSearch(&functions, &f);
|
|
Function* found = fsSearch(&functions, &f);
|
|
if(found != NULL && dtIsVoid(found->returnType)) {
|
|
if(found != NULL && dtIsVoid(found->returnType)) {
|
|
- cAddIntOperation(OP_PUSH_INT, 0);
|
|
|
|
- cAddIntOperation(OP_GOSUB, found->address);
|
|
|
|
- cAddInt(found->size);
|
|
|
|
|
|
+ cAddInt32Operation(OP_PUSH_INT32, 0);
|
|
|
|
+ cAddInt32Operation(OP_GOSUB, found->address);
|
|
|
|
+ cAddInt32(found->size);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1089,7 +1092,7 @@ static void cLinkQueuedFunctions() {
|
|
line = f->line;
|
|
line = f->line;
|
|
cError("unknown function");
|
|
cError("unknown function");
|
|
}
|
|
}
|
|
- cSetInt(f->address, found->address);
|
|
|
|
|
|
+ cSetInt32(f->address, found->address);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|