Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Assume a five-stage single-pipeline microarchitecture (fetch, decode, execute, memory, write-back) and the code in figure below. All ops are one cycle except LW and SW,
Assume a five-stage single-pipeline microarchitecture (fetch, decode, execute, memory, write-back) and the code in figure below. All ops are one cycle except LW and SW, which are 1 + 2 cycles, and branches, which are 1 + 1 cycles. There is no forwarding. Show the phases of each instruction per clock cycle for one iteration of the loop. Assume a dynamic branch predictor. How many cycles are lost on a correct prediction?
Loop: LW R3, 0(R0)
LW R1, 0(R3)
ADDI R1, R1, #1
SUB R4, R3, R2
SW R1, 0(R3)
BNZ R4, Loop
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started