Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE) PDF Download

Instruction Pipelining

  • As computer systems evolve, greater performance can be achieved by taking advantage of improvements in technology, such as faster circuitry, use of multiple registers rather than a single accumulator, and the use of a cache memory
  • Another organizational approach is instruction pipelining in which new inputs are accepted at one end before previously accepted inputs appear as outputs at the other end.
    Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)
  • Above figure depicts this approach. The pipeline has two independent stages. The first stage fetches an instruction and buffers it. When the second stage is free, the first stage passes it the buffered instruction. 
  • While the second stage is executing the instruction, the first stage takes advantage of any unused memory cycles to fetch and buffer the next instruction. This is called instruction prefetch or fetch overlap.
  • This process will speed up instruction execution only if the fetch and execute stages were of equal duration, the instruction cycle time would be halved. 

However, if we look more closely at this pipeline, we will see that this doubling of execution rate is unlikely for 3 reasons:
(i) The execution time will generally be longer than the fetch time. Thus, the fetch stage may have to wait for some time before it can empty its buffer.
(ii) A conditional branch instruction makes the address of the next instruction to be fetched unknown. Thus, the fetch stage must wait until it receives the next instruction address from the execute stage. The execute stage may then have to wait while the next instruction is fetched.
(iii) When a conditional branch instruction is passed on from the fetch to the execute stage, the fetch stage fetches the next instruction in memory after the branch instruction. Then, if the branch is not taken, no time is lost. If the branch is taken, the fetched instruction must be discarded and a new instruction fetched.

To gain further speedup, the pipeline must have more stages. Let us consider the following decomposition of the instruction processing:

  1. Fetch instruction (FI): Read the next expected instruction into a buffer.
  2. Decode instruction (DI): Determine the opcode and the operand specifiers.
  3. Calculate operands (CO): Calculate the effective address of each source operand. This may involve displacement, register indirect, indirect, or other forms of address calculation.
  4. Fetch operands (FO): Fetch each operand from memory.
  5. Execute instruction (EI): Perform the indicated operation and store the result, if any, in the specified destination operand location.
  6. Write operand (WO): Store the result in memory.
  • The below figure shows that a six-stage pipeline can reduce the execution time for 9 instructions from 54 time units to 14 time units.Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)
  • FO and WO stages involve memory access. If the six stages are not of equal duration, there will be some waiting involved at various pipeline stages. Another difficulty is the conditional branch instruction, which can invalidate several instruction fetches. A similar unpredictable event is an interrupt. Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)
  • Figure 3.3 illustrates the effects of the conditional branch, using the same program as Figure 3.2. Assume that instruction 3 is a conditional branch to instruction 15. Until the instruction is executed, there is no way of knowing which instruction will come next. The pipeline, in this example, simply loads the next instruction in sequence (instruction 4) and proceeds. 
  • In Figure 3.2, the branch is not taken. In Figure 3.3, the branch is taken. This is not determined until the end of time unit 7.At this point, the pipeline must be cleared of instructions that are not useful. During time unit 8, instruction 15 enters the pipeline.
  • No instructions complete during time units 9 through 12; this is the performance penalty incurred because we could not anticipate the branch. Figure 3.4 indicates the logic needed for pipelining to account for branches and interrupts. Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)
  • Figure 3.5 shows same sequence of events, with time progressing vertically down the figure, and each row showing the state of the pipeline at a given point in time. 
  • In Figure 3.5a (which corresponds to Figure 3.2), the pipeline is full at time 6, with 6 different instructions in various stages of execution, and remains full through time 9; we assume that instruction I9 is the last instruction to be executed. 
  • In Figure 3.5b, (which corresponds to Figure 3.3), the pipeline is full at times 6 and 7. At time 7, instruction 3 is in the execute stage and executes a branch to instruction 15. At this point, instructions I4 through I7 are flushed from the pipeline, so that at time 8, only two instructions are in the pipeline, I3 and I15.

For high-performance in pipelining designer must still consider about:

  • At each stage of the pipeline, there is some overhead involved in moving data from buffer to buffer and in performing various preparation and delivery functions. This overhead can appreciably lengthen the total execution time of a single instruction.
  • The amount of control logic required to handle memory and register dependencies and to optimize the use of the pipeline increases enormously with the number of stages. This can lead to a situation where the logic controlling the gating between stages is more complex than the stages being controlled.
  • Latching delay: It takes time for pipeline buffers to operate and this adds to instruction cycle time.
    Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)


Pipelining Performance

  • Measures of pipeline performance and relative speedup: The cycle time t of an instruction pipeline is the time needed to advance a set of instructions one stage through the pipeline; each column in Figures 3.2 and 3.3 represents one cycle time.
  • The cycle time can be determined as
    t = max [ti] + d = tm + d 1 … i … k
    where
    ti = time delay of the circuitry in the ith stage of the pipeline
    tm = maximum stage delay (delay through stage which experiences the largest delay)
    k = number of stages in the instruction pipeline
    d = time delay of a latch, needed to advance signals and data from one stage to the next
  • In general, the time delay d is equivalent to a clock pulse and tm W d. Now suppose that n instructions are processed, with no branches. Let Tk,n be the total time required for a pipeline with k stages to execute n instructions. Then
    Tk,n = [k + (n -1)]t
  • A total of k cycles are required to complete the execution of the first instruction, and the remaining n -1 instructions require n -1 cycles.
  • This equation is easily verified from Figures 3.1. The ninth instruction completes at time cycle 14:
    14 = [6 + (9 -1)]
  • Now consider a processor with equivalent functions but no pipeline, and assume that the instruction cycle time is kt. The speedup factor for the instruction pipeline compared to execution without the pipeline is defined as
    sk = Tl,n/Tk,n = nkr/(k + (n -1)) * r = nk/(k + (n -1))
The document Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Computer Architecture & Organisation (CAO).
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
20 videos|86 docs|48 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Instruction Pipelining - Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

1. What is instruction pipelining in computer science engineering?
Ans. Instruction pipelining is a technique used in computer science engineering to improve the performance of processors. It allows multiple instructions to be executed simultaneously by dividing the execution process into smaller stages. Each stage of the pipeline performs a specific task on a different instruction, resulting in improved throughput and performance.
2. How does instruction pipelining improve performance?
Ans. Instruction pipelining improves performance by overlapping the execution of multiple instructions. Instead of waiting for one instruction to complete before starting the next, pipelining allows different stages of the processor to work on different instructions simultaneously. This reduces the overall execution time and increases the throughput of the processor.
3. What are the stages involved in instruction pipelining?
Ans. Instruction pipelining typically involves five stages: instruction fetch, instruction decode, execute, memory access, and writeback. In the instruction fetch stage, the next instruction is fetched from memory. In the decode stage, the instruction is decoded and the necessary resources are allocated. The execute stage performs the actual computation or operation. The memory access stage accesses any required data from memory. Finally, in the writeback stage, the results are written back to the appropriate registers or memory locations.
4. What are the challenges in implementing instruction pipelining?
Ans. Implementing instruction pipelining comes with several challenges. One challenge is handling dependencies between instructions, where the output of one instruction is required as an input for another. These dependencies can cause stalls or delays in the pipeline. Another challenge is dealing with branch instructions, which can change the flow of instructions and disrupt the pipeline. Additionally, pipeline hazards such as data hazards and control hazards need to be addressed to ensure correct execution and avoid errors.
5. Are there any limitations to instruction pipelining?
Ans. Yes, instruction pipelining has certain limitations. One limitation is the occurrence of pipeline stalls or bubbles, which happen when instructions cannot proceed due to dependencies or other issues. These stalls reduce the efficiency of pipelining. Another limitation is the overhead introduced by the pipeline itself. The pipeline requires additional hardware and control logic, which can increase the complexity and cost of the processor. Additionally, not all instructions can be effectively pipelined due to their inherent characteristics or dependencies, limiting the overall performance improvement.
20 videos|86 docs|48 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

,

Previous Year Questions with Solutions

,

Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

,

Semester Notes

,

video lectures

,

ppt

,

practice quizzes

,

shortcuts and tricks

,

Exam

,

Viva Questions

,

past year papers

,

Summary

,

Important questions

,

Extra Questions

,

Sample Paper

,

study material

,

Instruction Pipelining | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

,

Objective type Questions

,

MCQs

,

mock tests for examination

,

pdf

,

Free

;