-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogramext.py
executable file
·1036 lines (767 loc) · 31.7 KB
/
programext.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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/python
#
# exp.py - Classes to represent underlying data structures for the grammar
# below, for the mini-compiler.
#
# Kurt Schmidt
# 8/07
#
# DESCRIPTION:
# Just a translation of the C++ implementation by Jeremy Johnson (see
# programext.cpp)
#
# EDITOR: cols=80, tabstop=2
#
# NOTES
# environment:
# a dict
#
# Procedure calls get their own environment, can not modify enclosing env
#
# Grammar:
# program: stmt_list
# stmt_list: stmt ';' stmt_list
# | stmt
# stmt: assign_stmt
# | define_stmt
# | if_stmt
# | while_stmt
# assign_stmt: IDENT ASSIGNOP expr
# define_stmt: DEFINE IDENT PROC '(' param_list ')' stmt_list END
# if_stmt: IF expr THEN stmt_list ELSE stmt_list FI
# while_stmt: WHILE expr DO stmt_list OD
# param_list: IDENT ',' param_list
# | IDENT
# expr: expr '+' term
# | expr '-' term
# | term
# term: term '*' factor
# | factor
# factor: '(' expr ')'
# | NUMBER
# | IDENT
# | funcall
# funcall: IDENT '(' expr_list ')'
# expr_list: expr ',' expr_list
# | expr
#
import sys
import logging
logging.basicConfig(
format = "%(levelname) -4s %(message)s",
level = logging.INFO
)
log = logging.getLogger('programext')
#### CONSTANTS ################
# the variable name used to store a proc's return value
returnSymbol = 'return'
tabstop = ' ' # 2 spaces
###### OPCODES ##################
LD = 'LDA'
ST = 'STA'
ADD = 'ADD'
SUB = 'SUB'
MUL = 'MUL'
JMP = 'JMP'
JMI = 'JMI'
JMN = 'JMN'
JMZ = 'JMZ'
CAL = 'CAL'
HLT = 'HLT'
###### SYMBOL TABLE ENTRY TYPE#####
CONST = "const"
VAR = "var"
TEMP = "temp"
###### ADDRESS CONSTANTS ############
UNKNOWN = "?"
###### CLASSES ##################
class MachineCode(object):
def __init__(self, opcode=None, operand=None, label=None):
self.opcode = opcode
self.operand = operand
self.label = label
@property
def is_jump(self):
if 'JM' in self.opcode:
return True
else:
return False
def __str__(self) :
if (self.operand is None) :
return "%s" % (self.opcode)
else:
return "%s %s" % (self.opcode, self.operand)
def symbolicStr(self):
if (self.label is not None) :
if (self.opcode is HLT) :
return "%s: %s" % (self.label, self.opcode)
else :
return "%s: %s %s" % (self.label, self.opcode, self.operand)
elif (self.operand is None) :
return " %s" % (self.opcode)
else:
return " %s %s" % (self.opcode, self.operand)
class Label(object):
def __init__(self, label=None):
self.label = label
def __str__(self):
return str(self.label)
def __eq__(self,other) :
if isinstance(other,Label) :
return self.label == other.label
elif isinstance(other,str) :
return self.label == other
else :
return False
def __ne__(self,other) :
return not __eq__(self,other)
def __hash__(self) :
return hash(self.label)
class LabelFactory ( object ) :
def __init__( self ) :
self.__labels = list()
self.count = 0
def get_label( self ):
newLabel = Label("L" + str(self.count))
self.count = self.count + 1
return newLabel
LABEL_FACTORY = LabelFactory()
class TempVariable(Label):
def __init__(self, number):
super(TempVariable, self).__init__("T%s" % number)
def __eq__(self, other) :
return super(TempVariable,self).__eq__(other)
def __ne__(self, other) :
return not self.__eq__(other)
def __hash__(self) :
return super(TempVariable,self).__hash__()
class TempVariableFactory(object):
def __init__(self):
self.__temps = list()
self.count = 0
def get_temp(self):
temp = TempVariable(self.count)
SymbolTableUtils.createOrGetSymbolTableReference(temp,temp.label,TEMP)
self.count = self.count + 1
return temp
TEMP_VARIABLE_FACTORY = TempVariableFactory()
class NoOp(MachineCode):
def __init__(self, label=None):
MachineCode.__init__(self, None, None, label)
class SymbolTableEntry(object):
def __init__(self, value=None, entryType=None, address=UNKNOWN, label=None):
""" Class representing a Symbol Table Entry
:param value: Value of the entry
:param entryType: Type, Constant, Variable, Temp
:param address: Memory address where located.
"""
self.value = value
self.entryType = entryType
self.address = address
def __str__(self):
return "Value: %s Type: %s Address: %s" % (self.value, self.entryType, self.address)
class SymbolTable(dict) :
def __init__(self) :
super(SymbolTable,self).__init__()
def dump(self) :
log.debug("Dumping entries in symbol table: ")
self.summarize()
for entry in self :
log.debug("Name: %s %s" % (entry, self[entry]))
def iterate(self, entryType) :
return filter(lambda x: x.entryType == entryType, self.itervalues())
def countOf(self, entryType) :
return len(filter(lambda x: x.entryType == entryType, self.itervalues()))
def summarize(self) :
log.debug("Num_Vars = %d, Num_Consts = %d, Num_Temps = %d" % ( self.countOf(VAR), self.countOf(CONST), self.countOf(TEMP) ) )
"This symbol table should contain: {Label : SymbolTableEntry}"
GLOBAL_SYMBOL_TABLE = SymbolTable()
class SymbolTableUtils :
@staticmethod
def createOrGetSymbolTableReference(key, entryVal, entryType ) :
entry = None
if key in GLOBAL_SYMBOL_TABLE:
log.debug("Found %s in the symbol table" % key)
entry = GLOBAL_SYMBOL_TABLE[key]
else:
log.debug("Didn't find %s in the symbol table" % key)
GLOBAL_SYMBOL_TABLE.dump()
log.debug("Putting %s into symbol table" % key)
entry = SymbolTableEntry(entryVal, entryType)
GLOBAL_SYMBOL_TABLE[key] = entry
return entry
@staticmethod
def getMemoryTable(linkedSymbolTable) :
'''Takes linked machine code and generates a memory table that already contains values of constants'''
log.debug("Generating memory table")
currentAddr = 1
# TODO: Refactor to use a lambda function to iterate by address
# Except for constants, we we initialize all values to 0
memLines = list()
for const in linkedSymbolTable.iterate(CONST) :
memLines.append("%d %s ; %s" % (currentAddr, const.value, const) )
currentAddr = currentAddr + 1
for var in linkedSymbolTable.iterate(VAR) :
memLines.append("%d %s ; %s" % (currentAddr, 0, var) )
currentAddr = currentAddr + 1
for temp in linkedSymbolTable.iterate(TEMP) :
memLines.append("%d %s ; %s" % (currentAddr, 0, temp) )
currentAddr = currentAddr + 1
log.debug("Memory table generated")
return memLines
### Linker Code ###
class Linker(object) :
@staticmethod
def linkAddressesToSymbolTable(symbolTable) :
currentAddr = 1
for const in symbolTable.iterate(CONST) :
const.address = currentAddr
currentAddr = currentAddr + 1
for var in symbolTable.iterate(VAR) :
var.address = currentAddr
currentAddr = currentAddr + 1
for temp in symbolTable.iterate(TEMP) :
temp.address = currentAddr
currentAddr = currentAddr + 1
class Expr(object) :
'''Virtual base class for expressions in the language'''
def __init__( self ) :
raise NotImplementedError(
'Expr: pure virtual base class. Do not instantiate' )
def eval( self, nt, ft ) :
'''Given an environment and a function table, evaluates the expression,
returns the value of the expression (an int in this grammar)'''
raise NotImplementedError(
'Expr.eval: virtual method. Must be overridden.' )
def display( self, nt, ft, depth=0 ) :
'For debugging.'
raise NotImplementedError(
'Expr.display: virtual method. Must be overridden.' )
def translate( self, nt=None, ft=None ) :
'For debugging.'
raise NotImplementedError(
'Expr.display: virtual method. Must be overridden.' )
class Number( Expr ) :
'''Just integers'''
def __init__( self, v=0 ) :
self.value = v
def eval( self, nt, ft ) :
return self.value
def display( self, nt, ft, depth=0 ) :
print "%s%i" % (tabstop*depth, self.value)
def __str__(self):
return str(self.value)
def __eq__(self,other):
if isinstance(other,Number) :
return self.value == other.value
else :
return False
def __ne__(self,other):
return not self.__eq__(other)
def __hash__(self):
return hash(self.value)
def translate( self, nt=None, ft=None ) :
#check to see if number is in the symbol table
log.debug("Entering translate method for Number %s" % self)
entry = SymbolTableUtils.createOrGetSymbolTableReference(self,self.value,CONST)
instructions = list()
#instructions.append(MachineCode(LD,self))
#instructions.append(MachineCode(ST,self))
return (instructions, self)
class Ident( Expr ) :
'''Stores the symbol'''
def __init__( self, name ) :
self.name = name
def eval( self, nt, ft ) :
return nt[ self.name ]
def display( self, nt, ft, depth=0 ) :
print "%s%s" % (tabstop*depth, self.name)
def __str__(self):
return self.name
def __eq__(self, other):
if(isinstance(other,Ident)) :
return self.name == other.name
else :
return False
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return hash(self.name)
def translate( self, nt=None, ft=None ) :
#check to see if Ident is in the symbol table
log.debug("Entering translate method for Ident: %s", self)
entry = SymbolTableUtils.createOrGetSymbolTableReference(self.name,self.name,VAR)
instructions = list()
#instructions.append(MachineCode(LD,self.name))
return (instructions, self.name)
class Times( Expr ) :
'''expression for binary multiplication'''
def __init__( self, lhs, rhs ) :
'''lhs, rhs are Expr's, the operands'''
# test type here?
# if type( lhs ) == type( Expr ) :
self.lhs = lhs
self.rhs = rhs
def eval( self, nt, ft ) :
return self.lhs.eval( nt, ft ) * self.rhs.eval( nt, ft )
def translate(self, nt, ft ) :
log.debug("Entering translate method for Times")
instructions = list()
# Get the Left Hand Side.
(lhsCode, lhsStorageLocation) = self.lhs.translate(nt,ft)
for instr in lhsCode :
instructions.append(instr)
# Get the Right Hand Side.
(rhsCode, rhsStorageLocation) = self.rhs.translate(nt,ft)
for instr in rhsCode :
instructions.append(instr)
# load the result of lhs into the accumulator, then subtract the rhs
resultStorageLocation = TEMP_VARIABLE_FACTORY.get_temp()
instructions.append(MachineCode(LD, lhsStorageLocation))
instructions.append(MachineCode(MUL, rhsStorageLocation))
instructions.append(MachineCode(ST, resultStorageLocation))
for val in instructions:
log.debug("%s %s " % (val.opcode, val.operand))
log.debug("Times translated")
return (instructions, resultStorageLocation)
def display( self, nt, ft, depth=0 ) :
print "%sMULT" % (tabstop*depth)
self.lhs.display( nt, ft, depth+1 )
self.rhs.display( nt, ft, depth+1 )
#print "%s= %i" % (tabstop*depth, self.eval( nt, ft ))
class Plus( Expr ) :
'''expression for binary addition'''
def __init__( self, lhs, rhs ) :
self.lhs = lhs
self.rhs = rhs
def eval( self, nt, ft ) :
return self.lhs.eval( nt, ft ) + self.rhs.eval( nt, ft )
def translate(self, nt, ft ) :
log.debug("Entering translate method for Plus")
instructions = list()
# Get the Left Hand Side.
(lhsCode, lhsStorageLocation) = self.lhs.translate(nt,ft)
for instr in lhsCode :
instructions.append(instr)
# Get the Right Hand Side.
(rhsCode, rhsStorageLocation) = self.rhs.translate(nt,ft)
for instr in rhsCode :
instructions.append(instr)
# load the result of lhs into the accumulator, then subtract the rhs
resultStorageLocation = TEMP_VARIABLE_FACTORY.get_temp()
instructions.append(MachineCode(LD, lhsStorageLocation))
instructions.append(MachineCode(ADD, rhsStorageLocation))
instructions.append(MachineCode(ST, resultStorageLocation))
for val in instructions:
log.debug("%s %s " % (val.opcode, val.operand))
log.debug("Plus translated")
return (instructions, resultStorageLocation)
def display( self, nt, ft, depth=0 ) :
print "%sADD" % (tabstop*depth)
self.lhs.display( nt, ft, depth+1 )
self.rhs.display( nt, ft, depth+1 )
#print "%s= %i" % (tabstop*depth, self.eval( nt, ft ))
class Minus( Expr ) :
'''expression for binary subtraction'''
def __init__( self, lhs, rhs ) :
self.lhs = lhs
self.rhs = rhs
def eval( self, nt, ft ) :
return self.lhs.eval( nt, ft ) - self.rhs.eval( nt, ft )
def translate( self, nt, ft ) :
log.debug("Entering translate method for Minus")
instructions = list()
# Get the Left Hand Side.
(lhsCode, lhsStorageLocation) = self.lhs.translate(nt,ft)
for instr in lhsCode :
instructions.append(instr)
# Get the Right Hand Side.
(rhsCode, rhsStorageLocation) = self.rhs.translate(nt,ft)
for instr in rhsCode :
instructions.append(instr)
# load the result of lhs into the accumulator, then subtract the rhs
resultStorageLocation = TEMP_VARIABLE_FACTORY.get_temp()
instructions.append(MachineCode(LD, lhsStorageLocation))
instructions.append(MachineCode(SUB, rhsStorageLocation))
instructions.append(MachineCode(ST, resultStorageLocation))
for val in instructions:
log.debug("%s %s " % (val.opcode, val.operand))
log.debug("Minus translated")
return (instructions, resultStorageLocation)
def display( self, nt, ft, depth=0 ) :
print "%sSUB" % (tabstop*depth)
self.lhs.display( nt, ft, depth+1 )
self.rhs.display( nt, ft, depth+1 )
#print "%s= %i" % (tabstop*depth, self.eval( nt, ft ))
class FunCall( Expr ) :
'''stores a function call:
- its name, and arguments'''
def __init__( self, name, argList ) :
self.name = name
self.argList = argList
def eval( self, nt, ft ) :
return ft[ self.name ].apply( nt, ft, self.argList )
def translate( self, nt, ft ) :
raise Exception("Functions not supported by mini compiler")
def display( self, nt, ft, depth=0 ) :
print "%sFunction Call: %s, args:" % (tabstop*depth, self.name)
for e in self.argList :
e.display( nt, ft, depth+1 )
#-------------------------------------------------------
class Stmt :
'''Virtual base class for statements in the language'''
def __init__( self ) :
raise NotImplementedError(
'Stmt: pure virtual base class. Do not instantiate' )
def eval( self, nt, ft ) :
'''Given an environment and a function table, evaluates the expression,
returns the value of the expression (an int in this grammar)'''
raise NotImplementedError(
'Stmt.eval: virtual method. Must be overridden.' )
def display( self, nt, ft, depth=0 ) :
'For debugging.'
raise NotImplementedError(
'Stmt.display: virtual method. Must be overridden.' )
class AssignStmt( Stmt ) :
'''adds/modifies symbol in the current context'''
def __init__( self, name, rhs ) :
'''stores the symbol for the l-val, and the expressions which is the
rhs'''
self.name = name
self.rhs = rhs
def eval( self, nt, ft ) :
nt[ self.name ] = self.rhs.eval( nt, ft )
def display( self, nt, ft, depth=0 ) :
print "%sAssign: %s :=" % (tabstop*depth, self.name)
self.rhs.display( nt, ft, depth+1 )
def __str__( self ) :
return str(self.name)
def __eq__( self, other ) :
if(isinstance(other,AssignStmt)) :
return self.name == other.name
elif(isinstance(other,str)) :
return self.name == other
else :
log.debug("Returning false")
return False
def __ne__( self, other ) :
return not (self.__eq__(other))
def __hash__( self ) :
return hash(self.name)
def translate(self, nt, ft) :
'''Produces (unlinked) machine code to load the locates of RHS via LD, and store into location of LHS via LD'''
log.debug("Entering translate method for AssignStmt: %s" % self)
instructions = list()
# First, execute the code corresponding to the RHS
(rhsCode, rhsStorageLocation) = self.rhs.translate(nt,ft)
for instr in rhsCode :
instructions.append(instr)
# instructions.append(rhsCode)
log.debug("RHS of AssignStmt translated")
# The value computed by the RHS is now in the accumulator. First, ensure the Ident on LHS is in the
# symbol table for later linking
entry = SymbolTableUtils.createOrGetSymbolTableReference(self,self.name,VAR)
# First, ensure the Ident is in the symbol table. Then, store the value in the accumulator in the
# memory address pointed to by the Ident on the LHS
ldCode = MachineCode(LD, rhsStorageLocation)
instructions.append(ldCode)
assignCode = MachineCode(ST, self.name)
instructions.append(assignCode)
log.debug("LHS of AssignStmt translated")
GLOBAL_SYMBOL_TABLE.dump()
return (instructions, self.name)
class DefineStmt( Stmt ) :
'''Binds a proc object to a name'''
def __init__( self, name, proc ) :
self.name = name
self.proc = proc
def eval( self, nt, ft ) :
ft[ self.name ] = self.proc
def translate(self, nt, ft) :
raise Exception("Functions not supported for mini compiler")
def display( self, nt, ft, depth=0 ) :
print "%sDEFINE %s :" % (tabstop*depth, self.name)
self.proc.display( nt, ft, depth+1 )
class IfStmt( Stmt ) :
def __init__( self, cond, tBody, fBody ) :
'''expects:
cond - expression (integer)
tBody - StmtList
fBody - StmtList'''
self.cond = cond
self.tBody = tBody
self.fBody = fBody
def eval( self, nt, ft ) :
if self.cond.eval( nt, ft ) > 0 :
self.tBody.eval( nt, ft )
else :
self.fBody.eval( nt, ft )
def translate( self, nt, ft ) :
instructions = list()
# translate the conditional expression
(condCode, storageLocation) = self.cond.translate( nt, ft)
for instr in condCode :
instructions.append(instr)
# load result of condConde into accumulator
instructions.append(MachineCode(LD, storageLocation))
# if result is false (<= 0), jump over trueBody
falseBodyLabel = LABEL_FACTORY.get_label()
instructions.append(MachineCode(JMN, falseBodyLabel))
instructions.append(MachineCode(JMZ, falseBodyLabel))
# translate the trueBody
(trueBody, storageLocation) = self.tBody.translate(nt, ft)
for instr in trueBody :
instructions.append(instr)
# load the result of trueBody
instructions.append(MachineCode(LD, storageLocation))
# jump over the falseBody
nextStatement = LABEL_FACTORY.get_label()
instructions.append(MachineCode(JMP, nextStatement))
# translate the falseBody
(falseBody, storageLocation) = self.fBody.translate(nt, ft)
if not falseBody:
#insert NOOP
instructions.append(NoOp(falseBodyLabel))
else:
falseBody[0].label = falseBodyLabel
for instr in falseBody :
instructions.append(instr)
# load resulf of falseBody
instructions.append(MachineCode(LD, storageLocation))
# insert the nextStatement label
instructions.append(NoOp(nextStatement))
return (instructions,storageLocation)
def display( self, nt, ft, depth=0 ) :
print "%sIF" % (tabstop*depth)
self.cond.display( nt, ft, depth+1 )
print "%sTHEN" % (tabstop*depth)
self.tBody.display( nt, ft, depth+1 )
print "%sELSE" % (tabstop*depth)
self.fBody.display( nt, ft, depth+1 )
class WhileStmt( Stmt ) :
def __init__( self, cond, body ) :
self.cond = cond
self.body = body
def eval( self, nt, ft ) :
while self.cond.eval( nt, ft ) > 0 :
self.body.eval( nt, ft )
def translate( self, nt, ft) :
log.debug("Entering translate for WhileStmt")
instructions = list()
# insert the loopBeginlabel
loopBeginLabel = LABEL_FACTORY.get_label()
# translate the body of the conditional
(condBody, storageLocation) = self.cond.translate(nt, ft)
log.debug("Condition returned %s storage: %s" % (condBody, storageLocation))
if len(condBody) is not 0:
condBody[0].label = loopBeginlabel
log.debug("Replaced machine code with: %s " % condBody[0])
for instr in condBody :
instructions.append(instr)
# print to log the result of condBody
log.debug(instr)
# load the result of condBody
instructions.append(MachineCode(LD, storageLocation))
else:
#point the label to the first instruction
instructions.append(MachineCode(LD, storageLocation,loopBeginLabel))
log.debug("Loop begin: %s" % instructions[0])
# if the result is false (<= 0), jump to loopEndLabel
loopEndLabel = LABEL_FACTORY.get_label()
instructions.append(MachineCode(JMN, loopEndLabel))
instructions.append(MachineCode(JMZ, loopEndLabel))
# translate the loopBody
(loopBody, storageLocation) = self.body.translate(nt, ft)
for instr in loopBody :
instructions.append(instr)
# load the result of loopBody
instructions.append(MachineCode(LD, storageLocation))
# go back to the begining of the loop
instructions.append(MachineCode(JMP, loopBeginLabel))
# insert the loopEndLabel
instructions.append(NoOp(loopEndLabel))
return (instructions,storageLocation)
def display( self, nt, ft, depth=0 ) :
print "%sWHILE" % (tabstop*depth)
self.cond.display( nt, ft, depth+1 )
print "%sDO" % (tabstop*depth)
self.body.display( nt, ft, depth+1 )
#-------------------------------------------------------
class StmtList :
'''builds/stores a list of Stmts'''
def __init__( self ) :
self.sl = []
def insert( self, stmt ) :
self.sl.insert( 0, stmt )
def eval( self, nt, ft ) :
for s in self.sl :
s.eval( nt, ft )
def translate( self, nt, ft ) :
instructions = list()
for s in self.sl :
(s.instructions, s.storageLocation) = s.translate( nt, ft)
lastStorageLocation = s.storageLocation
for instr in s.instructions :
instructions.append(instr)
return (instructions,lastStorageLocation)
def display( self, nt, ft, depth=0 ) :
print "%sSTMT LIST" % (tabstop*depth)
for s in self.sl :
s.display( nt, ft, depth+1 )
class Proc :
'''stores a procedure (formal params, and the body)
Note that, while each function gets its own environment, we decided not to
allow side-effects, so, no access to any outer contexts. Thus, nesting
functions is legal, but no different than defining them all in the global
environment. Further, all calls are handled the same way, regardless of
the calling environment (after the actual args are evaluated); the proc
doesn't need/want/get an outside environment.'''
def __init__( self, paramList, body ) :
'''expects a list of formal parameters (variables, as strings), and a
StmtList'''
self.parList = paramList
self.body = body
def apply( self, nt, ft, args ) :
newContext = {}
# sanity check, # of args
if len( args ) is not len( self.parList ) :
print "Param count does not match:"
sys.exit( 1 )
# bind parameters in new name table (the only things there right now)
# use zip, bastard
for i in range( len( args )) :
newContext[ self.parList[i] ] = args[i].eval( nt, ft )
# evaluate the function body using the new name table and the old (only)
# function table. Note that the proc's return value is stored as
# 'return in its nametable
self.body.eval( newContext, ft )
if newContext.has_key( returnSymbol ) :
return newContext[ returnSymbol ]
else :
print "Error: no return value"
sys.exit( 2 )
def display( self, nt, ft, depth=0 ) :
print "%sPROC %s :" % (tabstop*depth, str(self.parList))
self.body.display( nt, ft, depth+1 )
class Program :
def __init__( self, stmtList ) :
self.stmtList = stmtList
self.nameTable = {}
self.funcTable = {}
def eval( self ) :
self.stmtList.eval( self.nameTable, self.funcTable )
def remove_no_ops(self, instructions):
for i,item in enumerate(list(instructions)):
if isinstance(item, NoOp):
log.debug("found Noop at %s" % i)
if item.label is not None:
log.debug("Had label %s" % item.label)
instructions[i+1].label = item.label
instructions[i] = None
return [x for x in instructions if x is not None]
def translate( self ) :
nestedStmtCode, lastStorageLocation = self.stmtList.translate(self.nameTable, self.funcTable)
flattenedStmtCode = list(self.flattenList(nestedStmtCode))
flattenedStmtCode.append(MachineCode(HLT))
flattenedStmtCode = self.remove_no_ops(flattenedStmtCode)
# Append a HLT instruction
return flattenedStmtCode
def link( self, machineCode ) :
Linker.linkAddressesToSymbolTable(GLOBAL_SYMBOL_TABLE)
for key in GLOBAL_SYMBOL_TABLE.iterkeys() :
log.debug(key)
for line in machineCode :
if(line.operand is None or line.is_jump) :
# No need to link the HLT instruction
continue
linkedAddr = GLOBAL_SYMBOL_TABLE[line.operand].address
line.operand = linkedAddr
log.debug("Linked operand %s to address: %s" % (line.operand, linkedAddr))
for inst in machineCode:
if (inst.is_jump):
for i, item in enumerate(machineCode):
if inst.operand == item.label:
log.debug("Found jump")
inst.operand = i + 1
return machineCode
def getMemoryTable( self ) :
return SymbolTableUtils.getMemoryTable(GLOBAL_SYMBOL_TABLE)
def compile( self ) :
machineCode = self.translate()
machineCode = self.optimize(machineCode)
machineCode = self.link(machineCode)
# Print memory table
Linker.getMemoryTable(GLOBAL_SYMBOL_TABLE)
return machineCode
def performPeepholeOptimization(self, machineCode ) :
'''Removes redundant LD statements when desired value is already in accumulator'''
optimizedCode = list()
for i in range(len(machineCode)) :
prevInstr = machineCode[i-1]
currentInstr = machineCode[i]
if(prevInstr.opcode == ST and currentInstr.opcode == LD and (prevInstr.operand == currentInstr.operand)) :
if (currentInstr.label is None):
log.debug("Removing redundant LD statement")
else:
optimizedCode[-1].label = currentInstr.label
log.debug("Moved label %s" % currentInstr.label)
else :
optimizedCode.append(currentInstr)
return optimizedCode
def performConstantFolding(self, machineCode ) :
'''Extra credit optimization recommended by TA; pre-computes the values at compile time where possible; decreases execution time at cost of memory footprint'''
log.debug("Trying to perform folding")
optimizedCode = list()
log.debug("Pre-optimization length is: %d" % len(machineCode))
for i in range(2, len(machineCode)) :
# Try to find 3 instructions in form LDA CONST, ADD CONST, STA TEMP
currentInstr = machineCode[i]
instrMinus1 = machineCode[i-1]
instrMinus2 = machineCode[i-2]
if(currentInstr.opcode == ST and (instrMinus1.opcode == ADD or instrMinus1.opcode == SUB or instrMinus1.opcode == MUL) and instrMinus2.opcode == LD) :
if(isinstance(currentInstr.operand,TempVariable) and isinstance(instrMinus1.operand,Number) and isinstance(instrMinus2.operand,Number)) :
# Create a new constant that holds the computed result
foldedConst = None
if(instrMinus1.opcode == ADD) :
foldedConst = Number(instrMinus2.operand.value + instrMinus1.operand.value)
elif(instrMinus1.opcode == SUB) :
foldedConst = Number(instrMinus2.operand.value - instrMinus1.operand.value)
else :
foldedConst = Number(instrMinus2.operand.value * instrMinus1.operand.value)
entry = SymbolTableUtils.createOrGetSymbolTableReference(foldedConst,foldedConst.value,CONST)
machineCode[i-2] = MachineCode(LD, foldedConst, instrMinus2.label)
machineCode[i-1] = NoOp()
machineCode[i] = NoOp()
# Remove temp var from memory/symbol table
del GLOBAL_SYMBOL_TABLE[currentInstr.operand]
log.debug("Found folding candidate")
for inst in machineCode :