-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
203 lines (166 loc) · 4.33 KB
/
main.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#include <type_traits>
#pragma mark Stack
template <int i, int ...j>
struct Stack {
template <int next>
using push = Stack<next, i, j ...>;
using pop = Stack<j ...>;
constexpr static int const top = i;
};
template <int i>
struct Stack<i> {
template <int next>
using push = Stack<next, i>;
//no pop
//make use of C++ type system to check bound!
constexpr static int const top = i;
};
#pragma mark Inst
typedef enum : int {
//0 - no value with inst
//1 - one value with inst
ADD, //0
SUB, //0
MUL, //0
DIV, //0
PUSH,//1
POP, //0
JXX, //0, conditional jump. jump if stack top != 0. eat the top and the address.
JMP, //1, unconditional jump to address.
CALL, //1, save returning ip for RET
RET //0, if ret_ip == -1, exit. else jump to ret_ip
// PRINT,//0, a constexpr VM don't print
} InstType;
struct Inst {
InstType typ;
int val;
constexpr Inst(InstType typ, int val = 0) : typ(typ), val(val) {}
};
constexpr Inst insts[] = {
{PUSH, 3}, //incrementByTen(3*2) = 16
{PUSH, 2},
{PUSH, 6},
{PUSH, 1},
{JXX}, // if 1 != 0, jump to 6
{ADD},
{MUL},
{CALL, 9}, //call the func
{RET},
{PUSH, 100}, //func incrementByTen(int i) -> int
{ADD},
{RET},
};
template <InstType typ, int ip, typename stack, typename call_stack>
struct VM;
#define a (stack::top)
#define b (stack::pop::top)
template <int ip = 0, typename stack = Stack<0>, typename call_stack = Stack<-1> >
constexpr auto run() -> int {
return VM<insts[ip].typ, ip, stack, call_stack>::run_impl;
}
template <int ip, typename stack, typename call_stack>
struct VM<ADD, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
ip + 1,
typename stack::pop::pop::template push<(a+b)>,
call_stack
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<SUB, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
ip + 1,
typename stack::pop::pop::template push<(a-b)>,
call_stack
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<MUL, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
ip + 1,
typename stack::pop::pop::template push<(a*b)>,
call_stack
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<DIV, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
ip + 1,
typename stack::pop::pop::template push<(a/b)>,
call_stack
>();
};
#undef a
#undef b
template <int ip, typename stack, typename call_stack>
struct VM<PUSH, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
ip + 1,
typename stack::template push<insts[ip].val>,
call_stack
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<POP, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
ip + 1,
typename stack::pop,
call_stack
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<JMP, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
insts[ip].val,
stack,
call_stack
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<JXX, ip, stack, call_stack> {
constexpr static int const next_ip = std::conditional<
stack::top != 0,
Stack<stack::pop::top>,//jump!
Stack<ip + 1>
>::type::top;
constexpr static int const run_impl =
run<
next_ip,
typename stack::pop::pop, //eat the condition and the address
call_stack
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<CALL, ip, stack, call_stack> {
constexpr static int const run_impl =
run<
insts[ip].val,
stack,
typename call_stack::template push<ip + 1>
>();
};
template <int ip, typename stack, typename call_stack>
struct VM<RET, ip, stack, call_stack> {
struct RET_Helper {
constexpr static int const top = run<call_stack::top, stack, typename call_stack::pop>();
};
constexpr static int const run_impl =
std::conditional<
call_stack::top == -1,
Stack<stack::top>,
RET_Helper
>::type::top;
};
constexpr int result = run();
#include <stdio.h>
int main(int argc, const char * argv[]) {
printf("%d\n", result);
return 0;
}