Sei sulla pagina 1di 22

DESIGN OF 3 STAGE PIPELINING PROCESSOR USINGVHDL

GUIDED BY: sdm

Agenda:

Introduction of 3 stage pipelining


A pipeline is a set of data processing elements connected in series, so that the output of one element is the input of the next one. In most of the cases we create a pipeline by dividing a complex operation into simpler operations. we can also say that instead of taking a bulk thing and processing it at once, we break it into smaller pieces and process it one after another.

WHAT IS PIPELINING
A technique used in advanced microprocessors where the microprocessor begins executing a second instruction before the first has been completed.
Means on applying the concept of pipelining, when an instruction is fetched from memory, the previous instruction must have already decoded. A Pipeline is a series of stages, where some work is done at each stage. The work is not finished until it has passed through all stages.

HOW PIPELINES WORKS

The pipeline is divided into segments and each segment can execute it operation concurrently with the other segments.
Once a segment completes an operations, it passes the result to the next segment in the pipeline and fetches the next operations from the preceding segment.

EXAMPLE

Instruction 1

Instruction 2

X
Instruction 4

X
Instruction 3

X X Four sample instructions, executed linearly

5
IF ID IF EX ID M EX W M

1
W

1
W

IF

ID IF

EX

1
W

ID

EX

Four Pipelined Instructions

INSTRUCTIONS FETCH
The instruction Fetch (IF) stage is responsible for obtaining the requested instruction from memory. The instruction and the program counter (which is incremented to the next instruction) are stored in the IF/ID pipeline register as temporary storage so that may be used in the next stage at the start of the next clock cycle.

INSTRUCTION DECODE: The Instruction Decode (ID)


stage is responsible for decoding the instruction and sending out the various control lines to the other parts of the processor. The instruction is sent to the control unit where it is decoded and the registers are fetched from the register file.

EXECUTION: The Execution (EX) stage is where any


calculations are performed. The main component in this stage is the ALU. The ALU is made up of arithmetic, logic and capabilities.

MEMORY I/O :The Memory and IO (MEM) stage is responsible for storing and loading values to and from memory. It also responsible for input or output from the processor. If the current instruction is not of Memory or IO type than the result from the ALU is passed through to the write back stage. WRITE BACK : The Write Back (WB) stage is responsible for writing the result of a calculation, memory access or input into the register file.

OPERATION TIMINGS
Instruction 2ns Estimated timings for Fetch each of the stages: Instruction 1ns Decode Execution 2ns Memory 2ns and IO Write Back 1ns

ADVANTAGES/DISADVANTAGES
Advantages: More efficient use of processor Quicker time of execution of large number of instructions Disadvantages: Pipelining involves adding hardware to the chip Inability to continuously run the pipeline at full speed because of pipeline hazards which disrupt the smooth execution of the pipeline.

PIPELINE HAZARDS
Data Hazards an instruction uses the result of the previous instruction. A hazard occurs exactly when an instruction tries to read a register in its ID stage that an earlier instruction intends to write in its WB stage. Control Hazards the location of an instruction depends on previous instruction Structural Hazards two instructions need to access the same resource

DATA HAZARDS
Select R2 and R3 for ALU Operations ADD R2 and R3 STORE SUM IN R1

ADD R1, R2, R3

IF

ID

EX

WB

SUB R4, R1, R5

IF

ID

EX

WB

Select R1 and R5 for ALU Operations

TYPE OF PIPELINING
SOFTWARE PIPELINING 1) CAN HANDLE COMPLEX INSTRUCTIONS 2) ALLOWS PROGRAMS TO BE REUSED HARDWARE PIPELINING 1) HELP DESIGNER MANAGE COMPLEXITY A COMPLEX TASK CAN BE DIVIDED INTO SMALLER, MORE MANAGEABLE PIECES. 2) HARDWARE PIPELINING OFFERS HIGHER PERFORMANCE

TYPE OF HARDWARE PIPELINES


Instruction Pipeline - An instruction pipeline is very similar to a manufacturing assembly line. 1st stage receives some parts, performs its assembly task, and passes the results to the second stage; 2nd stage takes the partially assembled product from the first stage, performs its task, and passes its work to the third stage; 3rd stage does its work, passing the results to the last stage, which completes the task and outputs its results.

Data Pipeline data pipeline is designed to pass data from stage to stage.

INSTRUCTION PIPELINES CONFLICT


It divided into two categories. Data Conflicts Branch Conflicts When the current instruction changes a register that the next one needed, data conflicts happens. When the current instruction make a jump, branch conflicts happens.

---------------------------------PROGRAM------------------------------------------------library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; ---- Uncomment the following library declaration if instantiating ---- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity ALU is Port ( A : in STD_LOGIC_VECTOR (4 downto 0); S : in STD_LOGIC_VECTOR (2 downto 0); C0 : out STD_LOGIC_VECTOR (4 downto 0); B : in STD_LOGIC_VECTOR (4 downto 0)); end ALU;

architecture Behavioral of ALU is


begin process( a, b ,s) begin if s="000" then

c0<=a or b; elsif s="001" then c0<= a and b; elsif s="010" then c0<= a nand b; elsif s="011" then c0<= a nor b; elsif s="100" then c0<= a xor b; elsif s="101" then c0<= a xnor b; elsif s="110" then c0<= not b; else c0<=not a; end if; end process;

end Behavioral;

REFERENCES
http://www.cs.sjsu.edu/~lee/cs147/fall2003/23 147L25Pipelining.ppt http://murray.newcastle.edu.au/users/students/ 1999/c9311421/pipe.html#s5

THANK YOU

Potrebbero piacerti anche