Jump to content

Operand forwarding

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Debanjan sadhukhan (talk | contribs) at 13:17, 25 November 2009 (Created page with 'Operand forwarding refer to computer architecture.When concurrent execution in pipelining is stalled due to hazard(basically data hazard)then we actually use operan...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Operand forwarding refer to computer architecture.When concurrent execution in pipelining is stalled due to hazard(basically data hazard)then we actually use operand forwarding.

E.g. : r1=r2+r3

      r5=r4+r1

In this instructions a hazard occurred at line 2,to overcome this we use operand forwarding technique like

r1=r2+r3 r5=r4+(r2+r3)