-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexpressions.cpp
185 lines (161 loc) · 4.11 KB
/
expressions.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#include <stdlib.h>
#include "gen.h"
#include "expressions.h"
#include "object.h"
#include "symtab.h"
BinaryOp::BinaryOp(enum op op, Exp* left, Exp* right, int line): op(op), left(left), right(right), line(line)
{
if (op == XOR_OP) {
if (left->getType() != _INT || right->getType() != _INT) { // both operands must be int
errorMsg(ERR, "line %d: operator %s should be applied on opperands of type int only\n", line, opName(op, _INT));
}
type = _INT; // type of returned value should be int
}
else {
type = left->getType();
}
}
NumNode::NumNode(int ival): Exp(_INT)
{
setIval(ival);
}
NumNode::NumNode(double fval): Exp(_FLOAT)
{
setFval(fval);
}
IdNode::IdNode(const char* name, int line): name(nullptr), line(line)
{
myType t = getSymbol(name);
if (t == UNKNOWN) {
errorMsg(ERR, "line %d: variable %s is undefined\n", line, name);
t = _INT;
}
type = t;
this->name = new char[10];
strcpy(this->name, name);
}
IdNode::IdNode(const IdNode& other) : name(other.name), line(other.line) {}
IdNode::~IdNode()
{
delete[] name;
}
Object intResult(enum op op, int left, int right)
{
Object result;
switch (op) {
case PLUS:
result = Object(left + right);
break;
case MINUS:
result = Object(left - right);
break;
case MUL:
result = Object(left * right);
break;
case DIV:
result = Object(left / right);
break;
case XOR_OP:
if ((left == 0 || right == 0) && left != right) // only one is 0
result = Object(1);
else
result = Object(0);
break;
default:
fprintf(stderr, "internal compiler error #3\n"); exit(1);
}
return result;
}
Object floatResult(enum op op, float left, float right)
{
Object result;
switch (op) {
case PLUS:
result = Object(left + right);
break;
case MINUS:
result = Object(left - right);
break;
case MUL:
result = Object(left * right);
break;
case DIV:
result = Object(left / right);
break;
case XOR_OP:
if ((left == 0 || right == 0) && left != right) // only one is 0 than result is 1
result = Object(1);
else
result = Object(0);
break;
default:
fprintf(stderr, "internal compiler error #3\n"); exit(1);
}
return result;
}
Object BinaryOp::genExp()
{
Object left_operand_result = left->genExp();
Object right_operand_result = right->genExp();
Object result;
// if both operands are NumNodes - calculate value
if ((left_operand_result.getType() == INT_NUMBER || left_operand_result.getType() == FLOAT_NUMBER) &&
(right_operand_result.getType() == INT_NUMBER || right_operand_result.getType() == FLOAT_NUMBER))
{
if (left_operand_result.getType() == INT_NUMBER) { // left operand determines the type
// helper function for ints (left operand determines the type) returns Object(result value) based on operands
result = intResult(op, atoi(left_operand_result.getString()), atoi(right_operand_result.getString()));
}
else
{
// helper function for floats (left operand determines the type) returns Object(result value) based on operands
result = floatResult(op, atof(left_operand_result.getString()), atof(right_operand_result.getString()));
}
}
// else return expression
else {
result = *newTemp();
const char* the_op = opName(op, type);
if (left->getType() != right->getType())
{
Object converted = *newTemp();
if (left->getType() == _INT)
{
emit("%s = (int) %s\n", converted.getString(), right_operand_result.getString());
}
else
{
emit("%s = (float) %s\n", converted.getString(), right_operand_result.getString());
}
emit("%s = %s %s %s\n", result.getString(), left_operand_result.getString(),
the_op, converted.getString());
}
else
{
emit("%s = %s %s %s\n", result.getString(), left_operand_result.getString(),
the_op, right_operand_result.getString());
}
}
return result;
}
Object NumNode::genExp()
{
return (type == _INT) ? Object(value.ival) : Object(value.fval);
#if 0
int result = newTemp();
if (_type == _INT)
emit("_t%d = %d\n", result, _u.ival);
else
emit("_t%d = %.2f\n", result, _u.fval);
return result;
#endif
}
Object IdNode::genExp()
{
return Object(name);
#if 0
int result = newTemp();
emit("_t%d = %s\n", result, _name);
return result;
#endif
}