I am confused.From the specs, ADD needs source registers at E2 and destination register is available at E2 too. So this 2 instructions can be dual issued:add r1, r2, r3add r4, r5, r1Because the second ADD requires r1 at E2 and the first ADD makes r1 available at E2 too.If ADD needs source registers at E1, I agree that 2 instructions above can't be dual issued.One explanation, I think, is that ADD needs source registers at the beginning of E2 and make destination register available at the end of E2. However, why doesn't specs say that destination register is available at E3?I know I 'm wrong, but I can't explain.