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
|
/*****
* program.cc
* Tom Prince
*
* The list of instructions used by the virtual machine.
*****/
#include <iostream>
#include "util.h"
#include "callable.h"
#include "program.h"
namespace vm {
static const char* opnames[] = {
"pop", "intpush", "constpush",
"varpush", "varsave", "fieldpush", "fieldsave",
"builtin", "jmp", "cjmp", "njmp", "call",
"pushclosure", "makefunc", "ret",
"alloc", "pushframe", "popframe"
};
static const Int numOps = (Int)(sizeof(opnames)/sizeof(char *));
#ifdef DEBUG_BLTIN
mem::map<bltin,string> bltinRegistry;
void registerBltin(bltin b, string s) {
bltinRegistry[b] = s;
}
string lookupBltin(bltin b) {
return bltinRegistry[b];
}
#endif
ostream& operator<< (ostream& out, const item& i)
{
// TODO: Make a data structure mapping typeids to print functions.
if (i.empty())
out << "empty";
else if (isdefault(i))
out << "default";
else if (i.type() == typeid(Int))
out << "Int, value = " << get<Int>(i);
else if (i.type() == typeid(double))
out << "real, value = " << get<double>(i);
else if (i.type() == typeid(string))
out << "string, value = " << get<string>(i);
else if (i.type() == typeid(callable))
out << *(get<callable *>(i));
else if (i.type() == typeid(frame)) {
out << "frame";
#ifdef DEBUG_FRAME
out << " " << (get<frame *>(i))->getName();
#endif
}
else
out << "type " << demangle(i.type().name());
return out;
}
void printInst(ostream& out, const program::label& code,
const program::label& base)
{
out.width(4);
out << offset(base,code) << " ";
Int i = (Int)code->op;
if (i < 0 || i >= numOps) {
out << "<<invalid op>> " << i;
}
out << opnames[i];
switch (code->op) {
case inst::intpush:
case inst::varpush:
case inst::varsave:
case inst::fieldpush:
case inst::fieldsave:
case inst::alloc:
{
out << " " << get<Int>(*code);
break;
}
case inst::constpush:
{
item c = code->ref;
out << " " << c;
break;
}
#ifdef DEBUG_BLTIN
case inst::builtin:
{
string s=lookupBltin(get<bltin>(*code));
out << " " << (!s.empty() ? s : "<unnamed>") << " ";
break;
}
#endif
case inst::jmp:
case inst::cjmp:
case inst::njmp:
{
char f = out.fill('0');
out << " i";
out.width(4);
out << offset(base,get<program::label>(*code));
out.fill(f);
break;
}
#ifdef DEBUG_FRAME
case inst::makefunc:
{
out << " " << get<lambda*>(*code)->name << " ";
break;
}
#endif
default: {
/* nothing else to do */
break;
}
};
}
void print(ostream& out, program *base)
{
program::label code = base->begin();
bool active = true;
while (active) {
if (code->op == inst::ret ||
code->op < 0 || code->op >= numOps)
active = false;
printInst(out, code, base->begin());
out << '\n';
++code;
}
}
} // namespace vm
|