-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstruction_queue.py
48 lines (33 loc) · 1.43 KB
/
instruction_queue.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
import system
import adder
issue_stall = 0
def exe():
global instruction, operand, dest, vj, vk, issue_stall
if system.stall["issue"] == 0 and system.stall["mem"] == 0 and system.stall["add"] == 0 and system.stall["mul"] == 0 and system.clock != 1 and len(system.inst_queue) != 0: # If there is no stall coming from any of the other blocks, instruction fetch and decode isn't stalled and it can remove the last instruction issued from the queue
system.inst_queue.pop(0)
system.stall["general"] = 0
if len(system.inst_queue) == 0: # When there is no more instruction to process
return 0, 0, 0, 0
## Decoding next instruction and removing it from the queue
instruction = system.inst_queue[0].split()
operand = instruction[0]
dest = instruction[1]
vj = instruction[2]
vk = instruction[3]
# print(instruction)
if system.busy_reg[int(dest[1])] == 1: #If the destination register is already being used, stall the issuing of the current instruction
system.stall["issue"] = 1
operand = 0
dest = 0
vj = 0
vk = 0
else:
system.stall["issue"] = 0
if system.stall["issue"] == 1 or system.stall["mem"] == 1 or system.stall["add"] == 1 or system.stall["mul"] == 1: ##Check if there is stalling coming from issuing or all the other blocks
system.stall["general"] = 1
else: ##If not, the instruction can be issued
system.instruction_issued = 0
return operand, dest, vj, vk
# else:
# print("return 0")
# return 0, 0, 0, 0