forked from Sonalisinghal/Two-Pass-Assembler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembler.py
771 lines (700 loc) · 25.3 KB
/
assembler.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
from opcodes import opcodes,opcode_arguments
import copy
import sys
#########classes required#########
exceptionFlag=False
class LiteralField:
def __init__(self,literal):
self.value=literal.replace("'","")
self.size=1
i=1
while(((2**((8*i)-1)//2)-1)<abs(float(self.value))): #if the constant value is very large, allocate it more memory spaces
self.size+=1
i+=1
self.physicalAdd=None
def printThis(self):
print("Value:",self.value,", Size:",self.size,", Physical Address:",self.physicalAdd)
class LabelField:
def __init__(self,virtualAdd,code): #code = the function that the label belongs to main or name of macro
self.virtualAdd=virtualAdd
self.physicalAdd=None
self.code=code
def printThis(self):
print("V.Add:",self.virtualAdd,", P.Add:",self.physicalAdd,", Code:",self.code)
class SymbolField:
def __init__(self):
self.physicalAdd=None
self.status='undefined'
def printThis(self):
print("P.Add:",self.physicalAdd,", Status:",str(self.status))
class MacroField:
def __init__(self,macroparameters):
self.macroparameters=macroparameters
self.instructionTable=[]
self.labels=[]
def printThis(self):
print("Parameters:",str(self.macroparameters),", Labels:",str(self.labels))
print("Instruction Table:")
for i in self.instructionTable:
print(str(i))
#########Initialization#########
dataTable={}
labelTable = {}
literalTable = {}
macroTable = {}
symbolTable={}
instructionTable=[]
macroCallcount={} #stores the number of calls for each macro present in the macro table
LoadAddress = False #stores the physical address to load instructions
instructions = []
num_ins = -1 #counter to count number of instructions
foundMacroDefinition=False #flag to check if a macro is being defined
#########Functions#########
def printTables(): # prints all the tables generated
print("\nPrinting instruction table")
printInstructionTable()
print("\nPrinting macro table")
printMacroTable()
print("\nPrinting label table")
printLabelTable()
print("\nPrinting symbol table")
printSymbolTable()
print("\nPrinting data table")
printDataTable()
print("\nPrinting literal table")
printLiteralTable()
def printMacroTable():
for i in macroTable:
print(i)
macroTable[i].printThis()
def printDataTable():
print(dataTable)
def printLabelTable():
for i in labelTable:
print(i)
labelTable[i].printThis()
def printSymbolTable():
for i in symbolTable:
print(i)
if(symbolTable[i].physicalAdd!=None):
symbolTable[i].physicalAdd = bin8(symbolTable[i].physicalAdd)
symbolTable[i].printThis()
def printInstructionTable():
for i in instructionTable:
print(i)
def printLiteralTable():
for i in literalTable:
print(i)
if(literalTable[i].physicalAdd!=None):
for k in range(0,len(literalTable[i].physicalAdd)):
literalTable[i].physicalAdd[k] = bin8(literalTable[i].physicalAdd[k])
literalTable[i].printThis()
def removeComments(instruction):
'''
Input: Single instruction in assembly language as a string
Output: Instruction in assembly language as a string, without comments
Parses the instruction passed as input to remove comments, that is,
any text written beyond the ';' character.
'''
if(instruction.find(";")!=(-1)):
instruction = instruction[0:instruction.find(";")]
return(instruction)
bin8 = lambda x : ''.join(reversed([str((x >> i) & 1) for i in range(8)] ) ) #returns 8 bit binary address
def checkMacro(instruction): #Check if a macro has been declared or it has ended
'''
Input: Instruction
Operation: Checking for beginning and ending of Macro definition.
'''
if len(instruction)>=2:
if("MACRO" in instruction[1]):
return True
if("MEND" in instruction or "ENDM" in instruction):
global exceptionFlag
instruction=refine(instruction)
labelsPresent=getLabel(instruction)
if labelsPresent!=False:
if labelsPresent not in macroTable[name].labels:
macroTable[name].labels.append(labelsPresent)
if len(instruction)==2:
return False
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Label",labelsPresent,"has been defined multiple times for macro",name) #if the label is declared multiple times in a macro
sys.exit()
elif len(instruction)==1:
return False
def addMacro(macro,fields): #Add macro to Macro table
'''
Input: Macro name and parameters.
Operation: Adds the macro and it's parameters to the macro table.
Throws MACRO defined more than once exception.
'''
if macro not in macroTable:
macroTable[macro]=MacroField(fields)
macroCallcount[macro]=0
else:
global exceptionFlag
exceptionFlag=True
print("Error in instruction",macro,*fields)
print("Exception: MACRO ",macro," has been defined more than once.")
sys.exit()
def getLabel(instruction): #Returns label if present in the instruction
'''
Input: Instruction from instruction table
Returns: True if label definition is found, else, returns False.
'''
if instruction[0].find(':')!=-1:
return instruction[0][:-1]
return False
def addLabel(label, address,code,instruction): #Adds detected label to label table
'''
Input: label name, label declaration address, part of program to which the label belongs (macro body/main).
Operation: Adds detected label to the label table
Throws exception if detected label is invalid:
Already used as variable,
or, contains the name of a macro,
or, has been defined more than once,
or, has the same name as a valid opcode.
'''
global exceptionFlag
if label in symbolTable:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Label",label," has also been used as a Variable.")
sys.exit()
else:
if label not in opcodes: #check if label name is not a opcode name
hasMacroName=False
if code=="Main":
for x in macroTable.keys(): #check if label name is not a macro name
if label.find(x)!=-1:
hasMacroName=True
if hasMacroName==True:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Label",label,"is invalid as labels cannot have same name as a MACRO.")
sys.exit()
if label not in labelTable: #check if label is not defined more than once
labelTable[label]=LabelField(address,code)
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Label",label,"has been defined more than once.")
sys.exit()
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Label cannot be an opcode name.",label,"is an opcode name.")
sys.exit()
def addData(parameters,opcode): #Adds the parameters in the datatable and literal table
'''
Input: Opcode and operands following the opcode for given instruction.
Operation: Adds operands to the dataTable/ literalTable/ symbolTable.
Throws : Memory Address out of bounds error.
'''
global exceptionFlag
for i in range(len(parameters)):
x=getLiteral(parameters[i]) #if literal found, add it to the literal table
if x!=False:
addLiteral(x)
else:
if (opcode in ["INP","ADD","SUB","LAC","SAC","DSP","MUL","DIV"]): ##as for branch, labels will be supplied which are already handled
try:
parameters[i]=int(parameters[i])
if parameters[i] not in dataTable:
if -1<parameters[i]<256:
if opcode=="INP" or opcode=="SAC":
dataTable[parameters[i]]="defined"
# if opcode=="SAC" and len(instructionTable)>0: ##if we consider that cla should result to 0 value, in which case store 0 would be a defined address
# if instructionTable[-1][-1]=="CLA":
# dataTable[i]="defined"
else:
dataTable[parameters[i]]="undefined"
else:
exceptionFlag=True
print("Error in instruction",opcode,*parameters)
print("Exception: Address supplied exceeds memory limit. It should be lesser than 8 bits, that is 256. Address",i,"is not a valid address.")
sys.exit()
except:
if (opcode in ["INP","ADD","SUB","LAC","SAC","DSP","MUL","DIV"]):
if parameters[i] not in labelTable:
if parameters[i] not in symbolTable:
symbolTable[parameters[i]]=SymbolField()
if(opcode in ["INP","SAC"]):
symbolTable[parameters[i]].status = "defined"
else:
exceptionFlag=True
print("Error in instruction",opcode,*parameters)
print("Exception:",opcode,"cannot take labels as parameters")
sys.exit()
if(opcode=="DIV"):
symbolTable['R1'] = SymbolField() # R1 stores the quotient
symbolTable['R1'].status = "defined"
symbolTable['R2'] = SymbolField() # R2 stores the remainder
symbolTable['R2'].status = "defined"
def getLiteral(token): #Checks if passed instruction contains literals
'''
Input: Operand for given instruction.
Returns: Literal if found, else, returns False.
'''
if(token[0]=="'" and token[-1]=="'"):
return(token)
return False
def addLiteral(literal): #Adds literals to Literal Table
'''
Input: Detected Literal.
Operation: Adds newly detected literal to literal table.
'''
if literal not in literalTable:
literalTable[literal]=LiteralField(literal)
def refine(instruction): #Case handling and divide the instruction in Labels, opcode and parameters
'''
Input: Instruction
Operation: Removes comments, splits instruction into opcode and operands.
'''
instruction = instruction.upper()
instruction = removeComments(instruction)
instruction = list(instruction.split())
return instruction
def handleMacroCalls(name,parameters,num_ins): #Expands Macro calls in the assembly program
'''
Input: Macro name, macro parameters and number of instructions.
Operation: Maps actual and formal parameters and expands the macro call in the instruction table.
'''
global exceptionFlag
macroCallcount[name]+=1
newLabelnames=[]
labelsUsed=[]
for i in macroTable[name].labels: #creates new label name set for the macro of the form macroName-
newLabelnames.append(str(name)+str(i)+str(macroCallcount[name]))
labelsUsed.append(False)
copiedInstructionset=copy.deepcopy(macroTable[name].instructionTable)
if len(parameters)!=len(macroTable[name].macroparameters):
exceptionFlag=True
print("Error in instruction",name,*parameters)
print("Exception: Macro",name,"takes",len(macroTable[name].macroparameters),"parameters but",len(parameters),"were given.")
sys.exit()
for instruction in copiedInstructionset:
vAddress=bin8(num_ins)
label=getLabel(instruction)
if label!=False:
instruction[0]=newLabelnames[macroTable[name].labels.index(label)]+":"
addLabel(newLabelnames[macroTable[name].labels.index(label)],vAddress,name,instruction)
labelsUsed[macroTable[name].labels.index(label)]=True
opcodeFrom=1
else:
opcodeFrom=0
opcode=instruction[opcodeFrom]
for i in range(opcodeFrom+1,len(instruction)):
if instruction[i] in macroTable[name].labels: #if label found, substitute it with the new label
instruction[i]=newLabelnames[macroTable[name].labels.index(instruction[i])]
elif (instruction[i] in macroTable[name].macroparameters):
instruction[i]=parameters[macroTable[name].macroparameters.index(instruction[i])] #substitute macro parameters with actual parameters
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Unidentified symbol",instruction[i],"in MACRO",name+".")
sys.exit()
if opcode in opcodes: #check if correct number of operands are supplied in the macro
if len(instruction[opcodeFrom+1:])==opcode_arguments[opcode]:
addData(instruction[opcodeFrom+1:],opcode)
instructionTable.append([vAddress]+[instruction])
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception:",opcode,"takes",opcode_arguments[opcode],"arguments but",len(instruction[opcodeFrom+1:]),"were given.")
sys.exit()
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception:",opcode,"is not a valid opcode name.")
sys.exit()
num_ins+=1
for i in range(len(labelsUsed)):
if (labelsUsed[i]==False):
addLabel(newLabelnames[i],bin8(num_ins),name,[newLabelnames[i],'MEND'])
return num_ins-1
#########Main code#########
path = input("Enter file path: ")
path = "./Sample_Inputs/"+path #Opening file and initializing line, symbol, literal and opcode
f = open(path+".txt",'r')
endEncountered=False
instruction = f.readline()
while instruction:
if instruction=="END" or instruction=="END\n": #if end is encountered, stop execution
endEncountered=True
break
if(len(instruction)==1): #check for empty lines
instruction = f.readline()
continue
instruction =refine(instruction)
if len(instruction)==0: #check if the line is just a comment
instruction = f.readline()
continue
if instruction[0]=='START':
if(len(instruction)==2):
LoadAddress = instruction[1]
instruction = f.readline()
continue
#Add macros to macro table
foundMacroDefinition=checkMacro(instruction) #check if instruction is a macro
if(foundMacroDefinition):
s=''
name=instruction[0]
for i in range(2,len(instruction)): #Find out all the parameters of the macro
s=s+instruction[i]
s=s.replace(' ','')
parameters=list(s.split(','))
addMacro(instruction[0],parameters)
instruction=f.readline()
while(checkMacro(instruction)!=False):
if (not instruction): #If end of file appears without getting MEND or END
# exceptionFlag=True
print("Exception: MEND/ENDM not specified after Macro definition",name)
sys.exit()
if(len(instruction)==1): #check for empty lines
instruction = f.readline()
continue
if ("MACRO" in instruction or "END" in instruction): #If another macro is declared or end of file appears
print("Exception: MEND/ENDM not specified after Macro definition",name)
sys.exit()
instruction=refine(instruction)
if len(instruction)==0: #check if the line is just a comment
instruction = f.readline()
continue
macroTable[name].instructionTable.append(instruction) #append all the instructions to macro's instruction table
labelsPresent=getLabel(instruction) #if the macro contains label, add them to the macros label table
if labelsPresent!=False:
if labelsPresent not in macroTable[name].labels:
macroTable[name].labels.append(labelsPresent)
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Label",labelsPresent,"has been defined multiple times for macro",name) #if the label is declared multiple times in a macro
sys.exit()
instruction=f.readline()
instruction=f.readline()
else:
num_ins+=1
vAddress=bin8(num_ins)
label=getLabel(instruction)
if(label!=False): #label is present
addLabel(label, vAddress,"Main",instruction)
opcodeFrom=1
else:
opcodeFrom=0
opcode=instruction[opcodeFrom]
parameters=instruction[opcodeFrom+1:]
if opcode in macroTable:
num_ins=handleMacroCalls(opcode,parameters,num_ins)
elif opcode in opcodes:
if len(parameters)==opcode_arguments[opcode]:
addData(parameters,opcode)
instructionTable.append([vAddress]+[instruction])
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: Opcode",opcode,"takes",opcode_arguments[opcode],"arguments but",len(parameters),"were given.")
sys.exit()
else:
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception:",opcode,"is not a valid opcode or a macro name.")
sys.exit()
instruction=f.readline()
if endEncountered==False:
exceptionFlag=True
print("Exception: END of program not found. Please declare 'END' command at the end of the assembly program.")
sys.exit()
if exceptionFlag==False:
print('######## SUCCESS: First pass ended successfully ########')
num_ins+=1
printTables()
########################SECOND PASS######################
def getOffset(num_ins):
'''
Input parameters: Number of instructions present in instruction table.
Returns: Offset/Starting address for instruction table, to be stored
in a contiguous memory space.
Throws "Not enough space" exception if instruction table size is larger
than available memory, or if a contiguous memory space cannot be found.
'''
totalIns=num_ins+1
dataset=list(dataTable.keys())
dataset=sorted(dataset)
#maxInstructionSize=0
print("Load",LoadAddress)
if(LoadAddress!=False):
for l in range(0,len(dataset)):
if(int(LoadAddress)<=int(dataset[l])<=(int(LoadAddress)+num_ins)):
print("Error at instruction START",LoadAddress)
print("Exception: Unable to load the program from address:", str(LoadAddress) +"\nas it conflicts with direct address "+str(dataset[l]))
sys.exit()
print("numins",num_ins)
if int(LoadAddress)+num_ins<256:
offset = LoadAddress
return int(LoadAddress)
else:
print("Error at instruction START",LoadAddress)
print("Exception: Not enough space to load the program from address:", str(LoadAddress))
sys.exit()
offset=False
if(len(dataset)>1):
for i in range(1,len(dataset)):
if (dataset[i]-dataset[i-1]>totalIns):
offset=dataset[i-1]+1
break
if(len(dataset)==1):
if((dataset[-1]+num_ins+1)<256):
offset = dataset[-1]+1
if(len(dataset)==0):
offset = 0
return(offset)
if (offset==False and len(dataset)!=0):
if((dataset[-1]+num_ins+1)<256):
offset = dataset[-1]+1
if offset==False:
global exceptionFlag
exceptionFlag=True
print("Exception: Not enough space for complete program")
sys.exit()
else:
return offset
def addOffset(offset):
'''
Input: Offset calculated for binding of instructions and labels.
Operation: Maps the instructions and labels in Instruction Table and Label Table to
physical addresses by adding offset
'''
for i in range(0,len(instructionTable)):
instructionTable[i][0] = bin8(int(instructionTable[i][0],2)+offset)
for j in labelTable:
labelTable[j].physicalAdd = bin8(int(labelTable[j].virtualAdd,2)+offset)
def getLiteralPool(offset,num_ins):
'''
Input: offset for Instruction table and total number of instructions.
Returns: Offset/Starting address for literal pool, to be stored
in a contiguous memory space.
Throws "Not enough space" exception if literal pool is larger
than available memory, or if a contiguous memory space cannot be found.
'''
totalMem = 0
startAdd = False
for i in literalTable:
totalMem+=literalTable[i].size
occAddresses=list(dataTable.keys())
for j in range(0,num_ins):
occAddresses+=[j+offset]
occAddresses = sorted(occAddresses)
if(totalMem<occAddresses[0]):
startAdd = occAddresses[0]-totalMem
return(startAdd)
for k in range(1,len(occAddresses)):
if (occAddresses[k]-occAddresses[k-1]>totalMem):
startAdd=occAddresses[k-1]+1
break
if startAdd==False:
if((occAddresses[-1]+totalMem+1)<256):
startAdd = occAddresses[-1]+1
if startAdd==False:
global exceptionFlag
exceptionFlag=True
print("Exception: Not enough space for complete program")
sys.exit()
else:
return startAdd
def assignLiteralPool(startAdd):
'''
Input: Starting address for literal pool
Operation: Assigns physical addresses for literals for binding.
'''
nextAdd = startAdd
for i in literalTable:
literalTable[i].physicalAdd = []
for j in range(0,literalTable[i].size):
literalTable[i].physicalAdd+=[nextAdd]
nextAdd+=1
return(nextAdd)
def getSymbolPool(offset,literalPoolAdd,nextAdd,num_ins):
'''
Input: offset for Instruction table, literal pool starting and ending addresses,
total number of instructions.
Returns: Offset/Starting address for variables in symbol table, to be stored
in a contiguous memory space.
Throws "Not enough space" exception if variable pool is larger
than available memory, or if a contiguous memory space cannot be found.
'''
totalMem = len(symbolTable)
startAdd = False
occAddresses = list(dataTable.keys())
for i in range(0,num_ins):
occAddresses+=[i+offset]
for j in range(literalPoolAdd,nextAdd):
occAddresses+=[j]
occAddresses=sorted(occAddresses)
for k in range(1,len(occAddresses)):
if(occAddresses[k]-occAddresses[k-1]>totalMem):
startAdd=occAddresses[k-1]+1
break
if startAdd==False:
if((occAddresses[-1]+totalMem+1)<256):
startAdd = occAddresses[-1]+1
if startAdd==False:
global exceptionFlag
exceptionFlag=True
print("Exception: Not enough space for complete program")
sys.exit()
else:
return(startAdd)
def assignSymbolPool(startAdd):
'''
Input: Starting address for variable pool
Operation: Assigns physical addresses for variables for binding.
'''
nextAdd = startAdd
for i in symbolTable:
symbolTable[i].physicalAdd = nextAdd
nextAdd+=1
return(nextAdd)
def removeLabelDefinitions():
'''
Operation: Removes label declarations from the instruction table
for conversion to machine language.
'''
for i in range(0,len(instructionTable)):
if(instructionTable[i][1][0].find(":")!=(-1)):
del instructionTable[i][1][0]
def checkOperands():
'''
Operation: Checks validity of operands corresponding to opcodes.
ADD, MUL, LAC, SUB: Only have defined variables/addresses or literals.
DSP: Only has defined variable/address.
BRN, BRP, BRZ: Only have defined label.
SAC, INP: Only have defined/undefined variables/addresses
DIV: Only has first operand as defined variable/address or literal, second and third operands as
defined/undefined variables/addresses
'''
global exceptionFlag
for i in range(0,len(instructionTable)):
instruction = instructionTable[i][1]
code = instructionTable[i][1][0]
if(code=='ADD' or code=='MUL' or code=='LAC' or code=='DSP' or code=='SUB'):
if(instruction[1] in symbolTable):
if(symbolTable[instruction[1]].status=='undefined'):
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: "+code, "cannot have undeclared variable as operand.")
sys.exit()
elif(instruction[1] in literalTable):
pass
elif(dataTable[int(instruction[1])]=='undefined'):
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: "+code, "cannot have undefined address as operand.")
sys.exit()
if(code=="DSP"):
if(instruction[1] in symbolTable):
pass
if(instruction[1] in literalTable):
print("Error in instruction",*instruction)
print("Exception: "+code, "cannot have literal as operand.")
sys.exit()
if(code=='BRN' or code=='BRP' or code=='BRZ'):
if(instruction[1] not in labelTable):
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: "+code, "has an undeclared label: "+instruction[1]+" as operand.")
sys.exit()
if(code=='SAC' or code=='INP'):
if(instruction[1] in literalTable):
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: "+code, "can only have address/variable as operand.")
sys.exit()
if(code=='DIV'):
if(instruction[1] in symbolTable):
if(symbolTable[instruction[1]].status=='undefined'):
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: "+code, "cannot have undeclared variable as operand.")
sys.exit()
elif(instruction[1] in literalTable):
pass
elif(dataTable[int(instruction[1])]=='undefined'):
exceptionFlag=True
print("Error in instruction",*instruction)
print("Exception: "+code, "should have first operand as address/variable or constant. "+instruction[1]+" is an undefined address.")
sys.exit()
def convertOpcodes():
'''
Operation: Convert opcodes in instruction table to machine language.
'''
for i in range(0,len(instructionTable)):
instruction = instructionTable[i][1]
code = instructionTable[i][1][0]
instructionTable[i][1][0] = opcodes[code]
def convertOperands():
'''
Operation: Convert operands to the physical adresses they are bound to.
'''
for i in range(0,len(instructionTable)):
instruction = instructionTable[i][1]
for k in range(1,len(instruction)):
if(instruction[k] in labelTable):
instructionTable[i][1][k] = labelTable[instruction[k]].physicalAdd
elif(instruction[k] in literalTable):
instructionTable[i][1][k] = bin8(literalTable[instruction[k]].physicalAdd[0])
elif(instruction[k] in symbolTable):
instructionTable[i][1][k] = bin8(symbolTable[instruction[k]].physicalAdd)
elif(int(instruction[k]) in dataTable):
instructionTable[i][1][k] = bin8(int(instruction[k]))
def writeToFile():
'''
Operation: Write generated machine code to text file named:
<sample_file>_output.txt
Splits machine code into blocks of four bits for readability.
'''
f = open(path+"_output.txt","w+")
for i in range(0,len(instructionTable)):
instruction = instructionTable[i][1]
s = ''
s+=instructionTable[i][0]
for k in range(0,len(instruction)):
s+=instruction[k]
l = (len(s))
if(len(s)==12):
s +='00000000'
l = len(s)
block = 0
machine_ins = ''
machine_ins+=s[block:block+8]+" "
block+=8
machine_ins+=s[block:block+4]+" "
block+=4
machine_ins+=s[block:]
machine_ins+="\n"
f.write(machine_ins)
print(machine_ins)
f.close()
############MAIN CODE##############
literalPoolAdd = 0
variablePoolAdd = 0
nextAdd = 0
offset = getOffset(num_ins)
addOffset(offset)
if(len(literalTable)!=0):
literalPoolAdd = getLiteralPool(offset,num_ins)
nextAdd = assignLiteralPool(literalPoolAdd)
if(len(symbolTable)!=0):
variablePoolAdd = getSymbolPool(offset,literalPoolAdd,nextAdd,num_ins)
assignSymbolPool(variablePoolAdd)
removeLabelDefinitions()
checkOperands()
if exceptionFlag==False:
print('######## SUCCESS: Second pass ended successfully ########')
convertOpcodes()
convertOperands()
writeToFile()
printTables()
#print(LoadAddress)