Home » Computer Organization and Architecture » Computer organization and architecture miscellaneous » Question

Computer organization and architecture miscellaneous

Computer Organization and Architecture

  1. For all delayed conditional branch instructions, irrespective of whether the condition evaluations to true or false.
    1. the instruction following the conditional branch instruction in memory is executed
    2. the first instruction in the fall through path is executed
    3. the first instruction in the taken path is executed
    4. the branch taken longer to execute than any other instruction
Correct Option: D

In order to avoid the pipeline delay due to conditional branch instruction, a suitable instruction is placed below the conditional branch instruction such that the instruction will be executed irrespective of whether branch is taken or not and won't affect the program behaviour.



Your comments will be displayed only after manual approval.