-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvirtualMachine.py
438 lines (374 loc) · 15.8 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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#Virtual Machine
#coding:UTF-8
from math import *
from copy import deepcopy
import opMatrices
#memory = dictvar
#quad = cuadruplos
#memory = {'factorial': {'int': {0: 15003, 1: 15004, 'return': 30003, 'n': 15002}, 'functype': {'begin': 1, 'return': 'int', 'param1': 15002}}, 'global': {'int': {'a': 0, 3: 1}}, 'Temp': {'int': {'t6': 30006, 't7': 30007, 't4': 30004, 't5': 30005, 't2': 30002, 't3': 30003, 't1': 30001}, 'bool': {'t0': 40001}}}
#quad = [['goto', '', '', 12], ['==', 15002, 15003, 40001], ['gotof', 40001, ' ', 2], ['return', 15004, '', ''], ['goto', ' ', ' ', 7], ['ERA', 'factorial', '', ''], ['-', 15002, 15004, 30001], ['Param', 30001, '', 'param1'], ['Gosub', 'factorial', '', ''], ['=', 30003, '', 30002], ['*', 15002, 30002, 30003], ['return', 30003, '', ''], ['ret', '', '', ''], ['*', 1, 1, 30004], ['+', 1, 30004, 30005], ['+', 1, 30005, 30006], ['=', 30006, '', 0], ['ERA', 'factorial', '', ''], ['Param', 0, '', 'param1'], ['Gosub', 'factorial', '', ''], ['=', 30003, '', 30007], ['print', 30007, '', '']]
#test arrays
#memory = {'global': {'int': {'a': 0, 1: 8, 2: 9, 'b': 4, 4: 11, 5: 12, 3: 10, 'i': 13, 'a1': 1, 'a3': 3, 'a2': 2, 'b1': 5, 'b2': 6, 'b3': 7, 0: 14}, 'arrays': {'a': {'begin': 0, 'type': 'int', 'dimensions': [2, 2], 'size': 4}, 'b': {'begin': 4, 'type': 'int', 'dimensions': [2, 2], 'size': 4}}}, 'Temp': {'int': {'t4': 30005, 't2': 30003, 't3': 30004, 't0': 30001, 't1': 30002}}}
#quad = [['=', 8, '', 0], ['=', 9, '', 1], ['=', 10, '', 2], ['=', 11, '', 3], ['=', 9, '', 4], ['=', 10, '', 5], ['=', 11, '', 6], ['=', 12, '', 7], ['*', 0, 4, 30001], ['print', 30001, '', ''], ['=', 14, '', 13], ['length', 0, '', 30002], ['<', 13, 30002, 30003], ['gotof', 30003, ' ', 5], ['*', 12, 12, 30004], ['+', 30004, 9, 30005], ['print', 30005, '', ''], ['+', 8, 13, 13], ['goto', ' ', ' ', -8]]
#quad = [['=', 8, '', 0], ['=', 9, '', 1], ['=', 10, '', 2], ['=', 11, '', 3], ['=', 9, '', 4], ['=', 10, '', 5], ['=', 11, '', 6], ['=', 12, '', 7], ['*', 0, 4, 30005], ['print', 30005, '', '']]
stackFunc = []
memoryFunc = {}
paramsFunc = {}
memoryERA = {}
#swap directions and values
def virtual_machine (quad, memory):
print quad
for i in memory:
if i == 'global' or i == 'Temp' or i == 'local':
for j in memory[i]:
if j != 'arrays':
memory[i][j] = dict (zip(memory[i][j].values(),memory[i][j].keys()))
else:
for j in memory[i]:
if j != 'functype':
memory[i][j] = dict (zip(memory[i][j].values(),memory[i][j].keys()))
print "It's inside the machine"
#obtiene el valor a partir de una direccion de memoria
def getVal(mem):
#get functionId
for key in memoryFunc:
functionId = key
if mem <= 5000: return globalInt[mem]
if mem > 5000 and mem <= 10000: return globalFloat[mem]
if mem > 10000 and mem <= 15000: return globalBool[mem]
if mem > 15000 and mem <= 20000: return memoryFunc[functionId]['int'][mem]
if mem > 20000 and mem <= 25000: return memoryFunc[functionId]['float'][mem]
if mem > 25000 and mem <= 30000: return memoryFunc[functionId]['bool'][mem]
if mem > 30000 and mem <= 35000: return tempInt[mem]
if mem > 35000 and mem <= 40000: return tempFloat[mem]
if mem > 40000 and mem <= 45000: return tempBool[mem]
#guarda el valor en la direccion de memoria dada
def setVal(mem, val):
#get functionId
for key in memoryFunc:
functionId = key
if mem <= 5000: globalInt[mem] = val
if mem > 5000 and mem <= 10000: globalFloat[mem] = val
if mem > 10000 and mem <= 15000: globalBool[mem] = val
if mem > 15000 and mem <= 20000: memoryFunc[functionId]['int'][mem] = val
if mem > 20000 and mem <= 25000: memoryFunc[functionId]['float'][mem] = val
if mem > 25000 and mem <= 30000: memoryFunc[functionId]['bool'][mem] = val
if mem > 30000 and mem <= 35000: tempInt[mem] = val
if mem > 35000 and mem <= 40000: tempFloat[mem] = val
if mem > 40000 and mem <= 45000: tempBool[mem] = val
def isArray(mem):
for key in memory:
if memory[key].has_key('arrays'):
for j in memory[key]['arrays']:
begin = memory[key]['arrays'][j]['begin']
if mem == begin:
return True
return False
def getDimensions(mem):
for key in memory:
if memory[key].has_key('arrays'):
for j in memory[key]['arrays']:
dimensions = memory[key]['arrays'][j]['dimensions']
return dimensions
return []
def buildArray(mem, dimensions):
#dimensions = [2, 2]
#dimensions = [4]
#mem = 0
arrTemp1 = []
arrTemp2 = []
#array
if len(dimensions) == 1:
del arrTemp1[:]
for k in range(dimensions[0]):
arrTemp1.append(getVal(mem))
mem +=1
return arrTemp1
#matrix
if len(dimensions) == 2:
del arrTemp1[:]
del arrTemp2[:]
for k in range(dimensions[0]):
del arrTemp1[:]
for j in range(dimensions[1]):
arrTemp1.append(getVal(mem))
mem +=1
arrTemp2.append(deepcopy(arrTemp1))
return arrTemp2
for k in memory:
if k == 'global':
for j in memory[k]:
if j == 'int': globalInt = memory['global']['int']
if j == 'float': globalFloat = memory['global']['float']
if j == 'bool': globalBool = memory['global']['bool']
if k == 'Temp':
for j in memory[k]:
if j == 'int': tempInt = memory['Temp']['int']
if j == 'float': tempFloat = memory['Temp']['float']
if j == 'bool': tempBool = memory['Temp']['bool']
if k == 'local':
for j in memory[k]:
if j == 'int': localInt = memory['local']['int']
if j == 'float': localFloat = memory['local']['float']
if j == 'bool': localBool = memory['local']['bool']
i = 0
while i < len(quad):
print "While were at it"
#Logic of this: We get a quad, in form of an array
# quad[i][0] is the operator
# quad[i][1] is the first operand
# quad[i][2] is the second operand
# quad[i][3] is the the result of operand 1 operator operand 2
if quad[i][0] == "+":
print "Addition"
arr1 = []
arr2 = []
if isArray(quad[i][1]) and isArray(quad[i][2]):
arr1 = deepcopy(buildArray(quad[i][1], getDimensions(quad[i][1])))
arr2 = deepcopy(buildArray(quad[i][2], getDimensions(quad[i][2])))
print arr1
print arr2
res = opMatrices.suma(arr1, arr2)
setVal(quad[i][3], res)
else:
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1+op2
setVal(quad[i][3], res)
print isArray(op1)
print op1, '+', op2, '=', res
i +=1
elif quad[i][0] == '-':
print "Substraction"
arr1 = []
arr2 = []
if isArray(quad[i][1]) and isArray(quad[i][2]):
arr1 = deepcopy(buildArray(quad[i][1], getDimensions(quad[i][1])))
arr2 = deepcopy(buildArray(quad[i][2], getDimensions(quad[i][2])))
print arr1
print arr2
res = opMatrices.resta(arr1, arr2)
setVal(quad[i][3], res)
else:
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1-op2
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == '*':
print "Multiplication"
arr1 = []
arr2 = []
if isArray(quad[i][1]) and isArray(quad[i][2]):
arr1 = deepcopy(buildArray(quad[i][1], getDimensions(quad[i][1])))
arr2 = deepcopy(buildArray(quad[i][2], getDimensions(quad[i][2])))
print arr1
print arr2
res = opMatrices.multiplica(arr1, arr2)
setVal(quad[i][3], res)
else:
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1*op2
print op1
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == "/":
print "Divition"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1/op2
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == ">":
print "Greater than"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1>op2
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == "<":
print "Less than"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1<op2
print op1 ,'<', op2, '=', res
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == "==":
print "Equal"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1==op2
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == ">=":
print "Greater or equal to"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1>=op2
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == "<=":
print "Less or equal than"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1<=op2
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == '^':
print "Power"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = pow(op1, op2)
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == '!':
print "Not"
op1 = getVal(quad[i][1])
res = not op1
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == '%':
print "residue"
op1 = getVal(quad[i][1])
op2 = getVal(quad[i][2])
res = op1%op2
setVal(quad[i][3], res)
i +=1
elif quad[i][0] == '=':
print "Asign"
op1 = getVal(quad[i][1])
print op1
setVal(quad[i][3], op1)
i +=1
elif quad[i][0] == 'goto':
print "Goto"
i += quad[i][3]
if quad[i][3] == 0:
i +=1
else: i +=1
elif quad[i][0] == 'gotof':
print "GotoF"
op1 = getVal(quad[i][1])
print op1
if op1 == False:
i += quad[i][3]
i +=1
else:
i +=1
elif quad[i][0] == 'gotov':
print 'GotoV'
op1 = getVal(quad[i][1])
if op1 == True:
i += quad[i][3]
else:
i +=1
elif quad[i][0] == 'print':
print "Print"
print '************************'
if isArray(quad[i][1]):
arr = []
arr = deepcopy(buildArray(quad[i][1], getDimensions(quad[i][1])))
print arr
else:
print getVal(quad[i][1])
i +=1
elif quad[i][0] == 'ERA':
print "ERA"
for j in memory:
if j == quad[i][1]:
#fact{n,0,1}
memoryERA.update({quad[i][1]: memory[j]})
i +=1
elif quad[i][0] == 'Param':
print "Param"
val = getVal(quad[i][1])
paramsFunc.update({quad[i][3]:val})
i +=1
elif quad[i][0] == 'Gosub':
print "GOSUB"
functionId = quad[i][1]
#add current i and temp variables of the main memory
if len(memoryFunc) == 0:
memoryFunc.update({functionId: {'i': i, 'Temp': memory['Temp']}})
print i
else:
memoryFunc[functionId].update({'i':i, 'Temp': memory['Temp']})
#save state of currentFunc
temporal = {}
temporal = deepcopy(memoryFunc)
stackFunc.append(temporal)
#actualize memoryFunc
memoryFunc.clear()
memoryFunc.update(memoryERA)
#actualize parameters
for key in paramsFunc:
param=0
for j in memoryERA[functionId]['functype']:
if j == key:
#get the memory direction of parameter
mem = memoryERA[functionId]['functype'][j]
setVal(mem, paramsFunc[key])
paramsFunc.clear()
#actualize i
i = memoryFunc[functionId]['functype']['begin']
elif quad[i][0] == 'return':
print "return"
res = getVal(quad[i][1])
print res
memoryFunc.clear()
memoryFunc.update(stackFunc.pop())
#get functionId
for key in memoryFunc:
functionId = key
#change previous values
memory.update({'Temp': memoryFunc[functionId]['Temp']})
#get returnType
if memoryFunc[functionId].has_key('functype'):
returnType = ''
for key in memoryFunc[functionId]['functype']:
if key == 'return':
returnType = memoryFunc[functionId]['functype'][key]
#actualize return value
for key in memory[functionId][returnType]:
if memory[functionId][returnType][key] == 'return':
mem = key
setVal(mem, res)
i = memoryFunc[functionId]['i']
i +=1
print getVal(mem)
elif quad[i][0] == 'ret':
print "RET"
memoryFunc.clear()
memoryFunc.update(stackFunc.pop())
#get functionId
for key in memoryFunc:
functionId = key
#change previous values
memory.update({'Temp': memoryFunc[functionId]['Temp']})
i = memoryFunc[functionId]['i']
i +=1
elif quad[i][0] == 'length':
print "length"
#memory where array starts
op1 = quad[i][1]
#size of array
for key in memory:
if memory[key].has_key('arrays'):
for j in memory[key]['arrays']:
if memory[key]['arrays'][j]['begin'] == op1:
size = memory[key]['arrays'][j]['size']
print size
setVal(quad[i][3], size)
i +=1
elif quad[i][0] == 'col':
print "col"
#matrix
#numero de columna
op2 = quad[i][2]
i +=1
elif quad[i][0] == 'end':
print "end"
i +=1
#virtual_machine(quad)