514 views
1 votes
1 votes
Will there be any stall in the code for instruction I1 and I2 as there exits WAW

I-1   AddI R3,R1,R2;

I-2   SW R3,0(R4);

I-3    Sub R4,R4,#4;

Actually I want to ask is does WAW cause stall if there is dependency between a load&store instruction to a arithmetic instructions.

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
1
Neha Sisodiya asked Sep 25, 2015
731 views
Consider the following pseudo code. What is the total number of multiplications to be performed?D = 2 for i = 1 to n do for j = i to n do for k = j + 1 to n do D = D * 3�...
0 votes
0 votes
1 answer
4
someshawasthi asked Oct 27, 2022
547 views
Assume an instruction set that uses a fixed 31 bit instruction length. Operand specifies are 4 bits in length. If there are m-three operand instructions in total, then ho...