I have 2 questions related to multiple load instructions. For example: ldm r1!, {r2, r3}.This instruction takes 2 cycle. So it is broken down to 2 single-cycle operations.1. Because write back is enabled, r1 is written in E2 stage. However, which single-cycle operation is r1 written? The first single-cycle operation or the second single-cycle operation?
2. When are r2, r3 available for other instructions? I can not find any scheduling information in specs.I assume this instruction is similar to LDR, that means, r2, r3 is available in E3. Because r3 is written by the second single-cycle operation, it is available in E3 of the second single-cycle operation.
If my assumption is correct, 2 below instructions should produce 2 cycle penalty:ldm r1, {r2, r3}ldr r4, [r3, #1]However, the result is different in http://pulsar.websha...sult.php?lng=frPlease explain for me.