retagged by
852 views
0 votes
0 votes
$I_1 :  MUL \ \ \ \ \   R_1,  R_2, R_3$        // $R_1 \leftarrow R_2 \times R_3$

$I_2 :  ADD \ \ \ \ \   R_4,  R_4, R_1$

$I_3 :  MUL \ \ \ \ \   R_1,  R_5, R_6$

$I_4 :  SUB \ \ \ \ \   R_4,  R_4, R_1$

 

Sum of RAW, WAR and WAW dependencies is  _____.
retagged by

2 Answers

Related questions

5.6k
views
3 answers
2 votes
sunil sarode asked Sep 28, 2017
5,608 views
Consider the following instructions.I 1 : R 1 = 100I 2 : R 1 = R 2 + R 4I 3 : R 2 = R 4 + 25I 4 : R 4 = R 1 + R ... 1 + 30Calculate sum of (WAR, RAW and WAW) dependencies the above instructions.(a) 10(c) 6(b) 12(d) 8
1.4k
views
4 answers
1 votes
Markzuck asked Jan 9, 2019
1,422 views
Please clarify along with the names.
2.3k
views
1 answers
2 votes
Mk Utkarsh asked Oct 23, 2018
2,317 views
Consider the below instructions executed on a 5 stage(IF,ID,EX,MA,WB) RISC pipeline with operand forwarding.I1: ADD R0,R1,R2 (R0=R1+R2)I2: SUB R3,R0,R2I3:MUL R4,R3,R0I4:DIV R5,R4,R0How many RAW dependencies?
1.2k
views
1 answers
7 votes
GO Classes asked Jan 21
1,198 views
Consider the following code fragment:Identify all data dependencies (potential data hazards) in the given code snippet within one loop iteration. Let the number of true data dependencies ... .What is $\mathrm{X}+2 \mathrm{Y}+3 \mathrm{Z}?$