Organizing pipeline in MIPS -
i'm unsure how following properties affect pipeline execution 5 stage mips design (if, id, ex, mem, wb). need clearing up.
- only 1 memory port
- no data fowarding.
- branch stalls until end of * stage
does 1 memory port mean cannot fetch or write when read/write mem (i.e. mem stage on lw,sw can't enter if or mem)? no forwarding means instruction won't enter id stage until after or on wb stage previous instruction depends on? idk branch stall means
a common assumption can write in first half of cycle, , read in second half of cycle.
lets i1 first instruction , i2 second instruction, , i2 using register i1 modifying.
only 1 memory port. means cannot read or write memory @ same time in 2 different stages of pipelines. instance, if i1 @ mem stage, instruction cannot @ if stage @ same time, because both require memory access.
no data forwarding. data forwarding reflects fact @ end of ex stage i1, forward data id cycle of i2. consequently, no forwarding means pipeline has wait wb stage of i1 go id stage of i2. asumption, can go id stage @ same time wb stage of previous instruction, because wb write memory during first half of cycle, , id read memory during second half of cycle.
branch stalls until end of ex stage. common asumption, doesn't use branch prediction techniques. states instruction after branch has wait until end of ex stage start id stage. recall address of next instruction executed known @ ex stage of branch instruction.
Comments
Post a Comment