-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVirtualMachine.py
160 lines (140 loc) · 4.63 KB
/
VirtualMachine.py
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
#!/usr/bin/env python2
import sys
import string
import operator
PUSH, JMP, JMPIF, JMPUNL, EXIT, NOT, NEG, \
POS, ABS, LT, LE, EQ, NE, GE, GT, GT, OR, \
AND, XOR, LSHIFT, RSHIFT, MOD, ADD, SUB, \
MUL, DIV, POW, VALUE, ASSIGN, RESERVED = \
range(30)
class VM:
"""
This is a stack machine built on top of python.
Its task is to execute the given array of instructions.
"""
_SIGEXIT = KeyboardInterrupt
def __init__(self):
self.line = 0
self.program = []
self.stack = []
self.var_values = {}
def _push(self):
"""
Push a number into the stack.
"""
self.stack.append(self.program[self.line + 1])
self.line += 2
def _jmp(self):
"""
Continue execution from the following line (stored in program itself)
"""
self.line = self.program[self.line + 1]
def _jmpif(self):
"""
Jump if the top element on stack is true.
"""
if self.stack.pop():
self.line = self.program[self.line + 1]
else:
self.line += 2
def _jmpunl(self):
"""
Jump if the top element on stack is true.
"""
if self.stack.pop():
self.line += 2
else:
self.line = self.program[self.line + 1]
def _unary_op(func):
"""
Decorator for unary operation.
"""
def opn(self):
self.stack.append(func(self.stack.pop()))
self.line += 1
return opn
def _binary_op(func):
"""
Decorator for binary operation.
"""
def opn(self):
self.stack.append(func(self.stack.pop(), self.stack.pop()))
self.line += 1
return opn
def _value(self):
"""
Retreive value from the variable in the program.
"""
self.stack.append(self.var_values[self.program[self.line + 1]])
self.line += 2
def _assign(self):
"""
Assign variable to a value on the top of stack.
"""
self.var_values[self.program[self.line + 1]] = self.stack.pop()
self.line += 2
def _exit(self):
"""
Stop executing the code.
"""
raise self._SIGEXIT
"""
The following constants are numbers which are matched with instructions.
"""
MATCH = {
PUSH: _push,
JMP: _jmp,
JMPIF: _jmpif,
JMPUNL: _jmpunl,
EXIT: _exit,
# UNARY
NOT: _unary_op(lambda x: int(not x)),
NEG: _unary_op(lambda x: int(neg(x))),
POS: _unary_op(lambda x: int(pos(x))),
ABS: _unary_op(operator.__abs__),
# BINARY
LT: _binary_op(lambda x, y: int(x < y)),
LE: _binary_op(lambda x, y: int(x <= y)),
EQ: _binary_op(lambda x, y: int(x == y)),
NE: _binary_op(lambda x, y: int(x != y)),
GE: _binary_op(lambda x, y: int(x >= y)),
GT: _binary_op(lambda x, y: int(x > y)),
OR: _binary_op(lambda x, y: int(x or y)),
AND: _binary_op(lambda x, y: int(x and y)),
XOR: _binary_op(lambda x, y: int(x ^ y)),
LSHIFT: _binary_op(operator.__lshift__),
RSHIFT: _binary_op(operator.__rshift__),
MOD: _binary_op(operator.__mod__),
ADD: _binary_op(operator.__add__),
SUB: _binary_op(operator.__sub__),
MUL: _binary_op(operator.__mul__),
DIV: _binary_op(operator.__div__),
POW: _binary_op(operator.__pow__),
#
VALUE: _value,
ASSIGN: _assign,
RESERVED: _exit
}
def Execute(self, program):
"""
Executes the operations stack.
"""
self.line = 0
self.program = program
OPERATIONS = [
"PUSH", "JMP", "JMPIF", "JMPUNL", "EXIT", "NOT", "NEG", "POS",
"ABS", "LT", "LE", "EQ", "NE", "GE", "GT", "GT", "OR", "AND",
"XOR", "LSHIFT", "RSHIFT", "MOD", "ADD", "SUB", "MUL", "DIV",
"POW", "VALUE", "ASSIGN", "RESERVED"
]
print [OPERATIONS[step] if type(step) == int and step < len(OPERATIONS) else step for step in self.program]
while True:
operation = self.program[self.line]
try:
step = self.program[self.line]
print "(" + str(self.line) + ":" + (OPERATIONS[step] if type(step) == int and step < len(OPERATIONS) else step) + ")\t" + str(self.stack)
if self.MATCH[operation](self) == EXIT:
raise self._SIGEXIT
except self._SIGEXIT:
break
return self.stack