-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cc
138 lines (109 loc) · 3.55 KB
/
main.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
/*
Copyright 2013 David Malcolm <[email protected]>
Copyright 2013 Red Hat, Inc.
This is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>.
*/
#include <assert.h>
#include <stdio.h>
#include "stackvm.h"
#include "regvm.h"
/*
Simple recursive fibonacci implementation, roughly equivalent to:
int fibonacci(int arg)
{
if (arg < 2) {
return arg
}
return fibonacci(arg-1) + fibonacci(arg-2)
}
*/
using namespace stackvm;
const int FIRST_LINE = __LINE__ + 5;
const char fibonacci[] = {
// stack: [arg]
// 0:
DUP,
// stack: [arg, arg]
// 1:
PUSH_INT_CONST, 2,
// stack: [arg, arg, 2]
// 3:
BINARY_INT_COMPARE_LT,
// stack: [arg, (arg < 2)]
// 4:
JUMP_ABS_IF_TRUE, 17,
// stack: [arg]
// 6:
DUP,
// stack: [arg, arg]
// 7:
PUSH_INT_CONST, 1,
// stack: [arg, arg, 1]
// 9:
BINARY_INT_SUBTRACT,
// stack: [arg, (arg - 1)
// 10:
CALL_INT,
// stack: [arg, fib(arg - 1)]
// 11:
ROT,
// stack: [fib(arg - 1), arg]
// 12:
PUSH_INT_CONST, 2,
// stack: [fib(arg - 1), arg, 2]
// 14:
BINARY_INT_SUBTRACT,
// stack: [fib(arg - 1), arg, (arg - 2)
// 15:
CALL_INT,
// stack: [fib(arg - 1), fib(arg - 1)]
// 16:
BINARY_INT_ADD,
// stack: [fib(arg - 1) + fib(arg - 1)]
// 17:
RETURN_INT
};
typedef int (*compiled_code) (int);
int main(int argc, const char **argv)
{
stackvm::bytecode * scode = new stackvm::bytecode(fibonacci,
sizeof(fibonacci));
/* Set up line-numbering in bytecode to point into the array
initializer above, so that stepping through the JIT-generated
code in the debugger will step through the above.
We do it "by hand" here; in a real interpreter you'd presumably set
this up with information from your parser. */
scode->set_location(0, __FILE__, FIRST_LINE + 0, 2);
scode->set_location(1, __FILE__, FIRST_LINE + 4, 2);
scode->set_location(3, __FILE__, FIRST_LINE + 8, 2);
scode->set_location(4, __FILE__, FIRST_LINE + 12, 2);
scode->set_location(6, __FILE__, FIRST_LINE + 16, 2);
scode->set_location(7, __FILE__, FIRST_LINE + 20, 2);
scode->set_location(9, __FILE__, FIRST_LINE + 24, 2);
scode->set_location(10, __FILE__, FIRST_LINE + 28, 2);
scode->set_location(11, __FILE__, FIRST_LINE + 32, 2);
scode->set_location(12, __FILE__, FIRST_LINE + 36, 2);
scode->set_location(14, __FILE__, FIRST_LINE + 40, 2);
scode->set_location(15, __FILE__, FIRST_LINE + 44, 2);
scode->set_location(16, __FILE__, FIRST_LINE + 48, 2);
scode->set_location(17, __FILE__, FIRST_LINE + 52, 2);
scode->disassemble(stdout);
stackvm::vm *sv = new stackvm::vm(scode);
printf("sv->interpret(8) = %i\n", sv->interpret(8));
regvm::wordcode * regcode = scode->compile_to_regvm();
regcode->disassemble(stdout);
regvm::vm *rv = new regvm::vm(regcode);
printf("rv->interpret(8) = %i\n", rv->interpret(8));
compiled_code code = (compiled_code)regcode->compile();
printf("code (8) = %i\n", code (8));
}