-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpstcode.cc
219 lines (195 loc) · 3.95 KB
/
pstcode.cc
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#include <string>
#include <list>
#include <vector>
#include <utility>
#include <cstdio>
#include "symbtable.h"
#include "pstcode.h"
using namespace std;
// Stack address which holds the count of globals
// in the I_PROG call
int global_count_loc = 0;
void PstackCode::add(int op)
{
code.push_back(op);
}
void PstackCode::add_dup()
{
// -- w
add(I_CONSTANT);
add(ADDR_TEMP);
// -- addr_temp w
add(I_SWAP);
// -- w addr_temp
add(I_ASSIGN);
add(1);
add(I_CONSTANT);
add(ADDR_TEMP);
add(I_VALUE);
// -- w
add(I_CONSTANT);
add(ADDR_TEMP);
add(I_VALUE);
// -- w w
}
void PstackCode::begin_prog()
{
// execution starts at address 1
add(0);
add(I_PROG);
// Backfill this later
global_count_loc = pos();
add(0);
add(pos() + 1);
add(I_JMP);
add(0); // position 5, will be patched up at the end of prolog()
}
void PstackCode::prolog(SymbolTable &fvsyms)
{
// Add typechecking to builtins builtins
std::vector<type_t> type_list;
type_list.push_back(TY_STR);
fvsyms.insert(Symbol("puts", type_list, pos()));
add(I_VARIABLE);
add(0);
add(-1);
add(I_VALUE);
const int looploc = pos();
add_dup(); // ( str+k str+k --- )
add(I_VALUE); // ( str+k chr --- )
add_dup(); // ( str+k chr chr --- )
add(I_JR_IF_FALSE);
add(0); // ( str+k chr --- )
const int patchloc = pos() - 1;
add(C_WRITE);
add(1); // ( str+k --- )
add(I_CONSTANT);
add(1); // ( str+k 1 --- )
add(I_ADD); // ( str+k+1 --- )
add(I_JR);
add(looploc - (pos() - 1));
at(patchloc) = pos() - (patchloc - 1);
add(I_ENDPPROC);
add(1);
type_list.clear();
type_list.push_back(TY_INT);
fvsyms.insert(Symbol("putn", type_list, pos()));
add(I_VARIABLE);
add(0);
add(-1);
add(I_VALUE);
add(I_WRITE);
add(1);
add(I_ENDPPROC);
add(1);
type_list.clear();
type_list.push_back(TY_DOUBLE);
fvsyms.insert(Symbol("putd", type_list, pos()));
add(R_VARIABLE);
add(0);
add(-1);
add(R_VALUE);
add(R_WRITE);
add(1);
add(I_ENDPPROC);
add(1);
// getnum() function added (11/28)
type_list.clear();
fvsyms.insert(Symbol("getnum", type_list, pos()));
add(I_VARIABLE);
add(0);
add(-1);
add(I_READ);
add(1);
add(I_ENDPPROC);
add(0);
type_list.clear();
type_list.push_back(TY_DOUBLE);
fvsyms.insert(Symbol("dtoi", type_list, pos(), TY_INT));
// Push retval address
add(I_VARIABLE);
add(0);
add(-2);
// Push argument address
add(R_VARIABLE);
add(0);
add(-1);
// Dereference argument
add(R_VALUE);
// Pop and push as double
add(R_TO_I);
// Assign value to return address
add(I_ASSIGN);
add(1);
// End
add(I_ENDPPROC);
add(1);
type_list.clear();
type_list.push_back(TY_INT);
fvsyms.insert(Symbol("itod", type_list, pos(), TY_DOUBLE));
// See above
add(R_VARIABLE);
add(0);
add(-2);
add(I_VARIABLE);
add(0);
add(-1);
add(I_VALUE);
add(I_TO_R);
add(R_ASSIGN);
add(1);
add(I_ENDPPROC);
add(1);
type_list.clear();
fvsyms.insert(Symbol("exit", type_list, pos()));
add(I_ENDPROG);
// Patch up the JMP to the beginning of the program proper
at(5) = pos();
}
void PstackCode::end_prog()
{
list<pair<string, int> >::iterator i;
string::iterator j;
// Write strings after the end of the program.
for(i=strings.begin(); i!=strings.end(); ++i) {
at(i->second) = pos();
for(j=i->first.begin(); j!=i->first.end(); ++j)
add(*j);
add(0);
}
}
vector<int> PstackCode::codevec() const
{
return code;
}
bool PstackCode::write(FILE *file, bool binary) const
{
if(!file)
return false;
vector<int>::const_iterator i;
for(i=code.begin(); i!=code.end(); ++i) {
int iv = *i;
if(binary) {
fwrite(&iv, sizeof(int), 1, file);
} else {
fprintf(file, "%d\n", iv);
}
}
return !ferror(file);
}
int PstackCode::pos() const
{
return code.size();
}
int PstackCode::at(int p) const
{
return code[p];
}
int &PstackCode::at(int p)
{
return code[p];
}
void PstackCode::add_string(const string &value, int pos)
{
strings.push_back(pair<string,int>(value,pos));
}