unit-1 1st part

49
Computer Architecture Unit-1

Upload: govind-upadhyay

Post on 12-Dec-2015

252 views

Category:

Documents


0 download

DESCRIPTION

Computer Architecture

TRANSCRIPT

Page 1: UNIT-1 1st part

Computer Architecture

Unit-1

Page 2: UNIT-1 1st part

REGISTER TRANSFER LANGUAGE• The symbolic notation used to describe the microoperation,

transfers register, transfer among registers is called a register transfer language.

• The term “registers transfer" implies the availability of hardware logic circuits that can perform a stated microoperation and transfer the result of the operation to the same or another register.

• For any function of the computer, the register transfer language can be used to describe the (sequence of) microoperations

• Register transfer language– A symbolic language– A convenient tool for describing the internal organization of

digital computers– Can also be used to facilitate the design process of digital

systems.

Page 3: UNIT-1 1st part

DESIGNATION OF REGISTERS

• Registers are designated by capital letters, sometimes followed by numbers (e.g., A, R13, IR)

• Often the names indicate function:– MAR - memory address register– PC - program counter– IR - instruction register

• Registers and their contents can be viewed and represented in various ways– A register can be viewed as a single entity:

– Registers may also be represented showing the bits of data they contain

MAR

Page 4: UNIT-1 1st part

DESIGNATION OF REGISTERS

R1 Register

Numbering of bits

Showing individual bits

SubfieldsPC(H) PC(L)

15 8 7 0

- a register - portion of a register - a bit of a register

• Common ways of drawing the block diagram of a register

7 6 5 4 3 2 1 0

R215 0

• Designation of a register

Page 5: UNIT-1 1st part

REGISTER TRANSFERRegister Transfer

• Copying the contents of one register to another is a register transfer

• A register transfer is indicated as

R2 R1

– In this case the contents of register R1 are copied (loaded) into register R2

– A simultaneous transfer of all bits from the source R1 to the destination register R2, during one clock pulse

– Note that this is a non-destructive; i.e. the contents of R1 are not altered by copying (loading) them to R2

Page 6: UNIT-1 1st part

REGISTER TRANSFERRegister Transfer

• A register transfer such as

R3 R5

Implies that the digital system has

– the data lines from the source register (R5) to the destination register (R3)

– Parallel load in the destination register (R3)– Control lines to perform the action

Page 7: UNIT-1 1st part

CONTROL FUNCTIONSRegister Transfer

• Often actions need to only occur if a certain condition is true• This is similar to an “if” statement in a programming

language• In digital systems, this is often done via a control signal,

called a control function– If the signal is 1, the action takes place

• This is represented as:

P: R2 R1

Which means “if P = 1, then load the contents of register R1 into register R2”, i.e., if (P = 1) then (R2 R1)

Page 8: UNIT-1 1st part

HARDWARE IMPLEMENTATION OF CONTROLLED TRANSFERS

Implementation of controlled transfer P: R2 R1

Block diagram

Timing diagram

Clock

Register Transfer

Transfer occurs here

R2

R1

Control Circuit

LoadP

n

Clock

Load

t t+1

• The same clock controls the circuits that generate the control function and the destination register• Registers are assumed to use positive-edge-triggered flip-flops

Page 9: UNIT-1 1st part

SIMULTANEOUS OPERATIONSRegister Transfer

• If two or more operations are to occur simultaneously, they are separated with commas

P: R3 R5, MAR IR

• Here, if the control function P = 1, load the contents of R5 into R3, and at the same time (clock), load the contents of register IR into register MAR

Page 10: UNIT-1 1st part

BASIC SYMBOLS FOR REGISTER TRANSFERS

Capital letters Denotes a register MAR, R2 & numerals Parentheses () Denotes a part of a register R2(0-7), R2(L)

Arrow Denotes transfer of information R2 R1Colon : Denotes termination of control function P:Comma , Separates two micro-operations A B, B A

Symbols Description Examples

Register Transfer

Page 11: UNIT-1 1st part

CONNECTING REGISTRSRegister Transfer

• In a digital system with many registers, it is impractical to have data and control lines to directly allow each register to be loaded with the contents of every possible other registers

• To completely connect n registers n(n-1) lines• O(n2) cost

– This is not a realistic approach to use in a large digital system

• Instead, take a different approach• Have one centralized set of circuits for data transfer – the bus• Have control circuits to select which register is the source, and

which is the destination

Page 12: UNIT-1 1st part

BUS AND MEMORY TRANSFERBus is a path(of a group of wires) over which information is transferred, from any of several sources to any of several destinations.

From a register to bus: BUS R

Register A Register B Register C Register D

Bus lines

Bus and Memory Transfers

Page 13: UNIT-1 1st part

Bus using three- state buffer

Three-State Bus Buffers

Bus line with three-state buffers

Output Y=A if C=1High-impedence if C=0

Normal input A

Control input C

Select

Enable

0123

S0S1

A0B0C0D0

Bus line for bit 0

Bus and Memory Transfers

2X4

Decoder

Page 14: UNIT-1 1st part

BUS TRANSFER IN RTLBus and Memory Transfers

• Depending on whether the bus is to be mentioned explicitly or not, register transfer can be indicated as either

or

• In the former case the bus is implicit, but in the latter, it is explicitly indicated

R2 R1

BUS R1, R2 BUS

Page 15: UNIT-1 1st part

MEMORY (RAM)Bus and Memory Transfers

• Memory (RAM) can be thought as a sequential circuits containing some number of registers

• These registers hold the words of memory• Each of the r registers is indicated by an address• These addresses range from 0 to r-1• Each register (word) can hold n bits of data• Assume the RAM contains r = 2k words. It needs the following

– n data input lines– n data output lines– k address lines– A Read control line– A Write control line

data input lines

data output lines

n

n

kaddress lines

Read

Write

RAMunit

Page 16: UNIT-1 1st part

MEMORY TRANSFERBus and Memory Transfers

• Collectively, the memory is viewed at the register level as a device, M.

• Since it contains multiple locations, we must specify which address in memory we will be using

• This is done by indexing memory references

• Memory is usually accessed in computer systems by putting the desired address in a special register, the Memory Address Register (MAR, or AR)

• When memory is accessed, the contents of the MAR get sent to the memory unit’s address lines

AR Memoryunit

Read

Write

Data inData out

M

Page 17: UNIT-1 1st part

MEMORY READBus and Memory Transfers

• To read a value from a location in memory and load it into a register, the register transfer language notation looks like this:

• This causes the following to occur– The contents of the MAR get sent to the memory address lines– A Read (= 1) gets sent to the memory unit– The contents of the specified address are put on the memory’s output data lines– These get sent over the bus to be loaded into register DR

DR M[AR]

Page 18: UNIT-1 1st part

MEMORY WRITEBus and Memory Transfers

• To write a value from a register to a location in memory looks like this in register transfer language:

• This causes the following to occur– The contents of the MAR get sent to the memory address lines– A Write (= 1) gets sent to the memory unit– The values in register R1 get sent over the bus to the data input lines of the

memory– The values get loaded into the specified address in the memory

M[AR] R1

Page 19: UNIT-1 1st part

SUMMARY OF REGISTER TRANSFER MICROOPERATIONSBus and Memory Transfers

A B Transfer content of reg. B into reg. A

AR DR(AD) Transfer content of AD portion of reg. DR into reg. AR

A constant Transfer a binary constant into reg. A

ABUS R1, Transfer content of R1 into bus A and, at the same time,

R2 ABUS transfer content of bus A into R2 AR Address registerDR Data registerM[R] Memory word specified by reg. RM Equivalent to M[AR]

DR M Memory read operation: transfers content of memory word specified by AR into DR

M DR Memory write operation: transfers content of DR into memory word specified by AR

Page 20: UNIT-1 1st part

MICROOPERATIONS

• Computer system microoperations are of four types:

- Register transfer microoperations- Arithmetic microoperations- Logic microoperations- Shift microoperations

Arithmetic Microoperations

Page 21: UNIT-1 1st part

ARITHMETIC MICROOPERATIONS

Summary of Typical Arithmetic Micro-Operations

Arithmetic Microoperations

R3 R1 + R2 Contents of R1 plus R2 transferred to R3R3 R1 - R2Contents of R1 minus R2 transferred to R3R2 R2’ Complement the contents of R2 R2 R2’+ 1 2's complement the contents of R2 (negate)R3 R1 + R2’+ 1 subtractionR1 R1 + 1 IncrementR1 R1 - 1 Decrement

• The basic arithmetic microoperations are– Addition– Subtraction– Increment– Decrement

• The additional arithmetic microoperations are– Add with carry– Subtract with borrow– Transfer/Load– etc. …

Page 22: UNIT-1 1st part

BINARY ADDER

FA

B0 A0

S0

C0FA

B1 A1

S1

C1FA

B2 A2

S2

C2FA

B3 A3

S3

C3

C4

Binary Adder

Arithmetic Microoperations

Page 23: UNIT-1 1st part

Binary Adder-Subtractor

FA

B0 A0

S0

C0C1FA

B1 A1

S1

C2FA

B2 A2

S2

C3FA

B3 A3

S3C4

M

Page 24: UNIT-1 1st part

Binary Adder-Subtractor• The mode bit M controls the operations.• When M=0 the circuit is adder and when M=1 circuit

becomes a subtractor.• Each X-OR gate receives input M and one of the input B.• When M=0, we have B(X-OR) 0=B. the full adders

receive the value of B, the input carry 0 and circuit performs A+B.

• When M=1 we have B (X-OR)1=B’ and carry=1. the B input all are complemented a 1 is added through the input carry.

• The circuit performs the operation A+2’s complement of B.

Page 25: UNIT-1 1st part

Binary Incrementer

HAx y

C S

A0 1

S0

HAx y

C S

A1

S1

HAx y

C S

A2

S2

HAx y

C S

A3

S3C4

Page 26: UNIT-1 1st part

ARITHMETIC CIRCUITArithmetic Microoperations

Page 27: UNIT-1 1st part

ARITHMETIC CIRCUIT

Page 28: UNIT-1 1st part

ARITHMETIC CIRCUIT

• In a first case we have a direct transfer from input A to output D. in the second case, the value of A is incremented by 1.

Case 1 : When S1 S0 =11 all the one’s are inserted into the Y inputs.

If Cin = 0 then output D= A+ all 1’sD= A+ ( 2’s Complement of 1) = A - 1

Cin= 1 then output D = A- 1- 1 = A Which causes a direct transfer from input A to output D.

Page 29: UNIT-1 1st part

LOGIC MICROOPERATIONSLogic Microoperations

• Specify binary operations on the strings of bits in registers– Logic microoperations are bit-wise operations, i.e., they work on the

individual bits of data– useful for bit manipulations on binary data – useful for making logical decisions based on the bit valueThe X-OR micropertion with the content of two registers R1 and R2 is

symbolized by the statement:P: R1<- R1 R2

• P+Q: R1<-R2 +R3, R4 <-R5˅ R6• However, most systems only implement four of these

– AND (), OR (), XOR (), Complement/NOT

Page 30: UNIT-1 1st part

There are, in principle, 16 different logic functions that can be defined over two binary input variables

Page 31: UNIT-1 1st part

LIST OF LOGIC MICROOPERATIONS• List of Logic Microoperations - 16 different logic operations with 2 binary variables. • Truth tables for 16 functions of 2 variables and the corresponding 16 logic micro-operations

Logic Microoperations

Page 32: UNIT-1 1st part

HARDWARE IMPLEMENTATION OF LOGIC MICROOPERATIONS

0 0 F = A B AND0 1 F = AB OR1 0 F = A B XOR1 1 F = A’ Complement

S1 S0 Output -operation Function table

Logic Microoperations

BA

SS

F

10

i

i

i 0

1

2

3

4 X 1MUX

Select

Page 33: UNIT-1 1st part

APPLICATIONS OF LOGIC MICROOPERATIONSLogic Microoperations

• Logic microoperations can be used to manipulate individual bits or a portions of a word in a register

• Consider the data in a register A. In another register, B, is bit data that will be used to modify the contents of A

– Selective-set A A + B– Selective-complement A A B– Selective-clear A A • B’– Mask (Delete) A A • B– Clear A A B– Insert A (A • B) + C– Compare A A B

Page 34: UNIT-1 1st part

SELECTIVE SETLogic Microoperations

• In a selective set operation, the bit pattern in B is used to set certain bits in A

1 1 0 0 At

1 0 1 0 B1 1 1 0 At+1 (A A + B)

• If a bit in B is set to 1, that same position in A gets set to 1, otherwise that bit in A keeps its previous value

Page 35: UNIT-1 1st part

SELECTIVE COMPLEMENTLogic Microoperations

• In a selective complement operation, the bit pattern in B is used to complement certain bits in A

1 1 0 0 At

1 0 1 0 B

0 1 1 0 At+1 (A A B)

• If a bit in B is set to 1, that same position in A gets complemented from its original value, otherwise it is unchanged

Page 36: UNIT-1 1st part

SELECTIVE CLEARLogic Microoperations

• In a selective clear operation, the bit pattern in B is used to clear certain bits in A

1 1 0 0 At

1 0 1 0 B

0 1 0 0 At+1 (A A B’)

• If a bit in B is set to 1, that same position in A gets set to 0, otherwise it is unchanged

Page 37: UNIT-1 1st part

MASK OPERATIONLogic Microoperations

• In a mask operation, the bit pattern in B is used to clear certain bits in A

1 1 0 0 At

1 0 1 0 B

1 0 0 0 At+1 (A A B)

• If a bit in B is set to 0, that same position in A gets set to 0, otherwise it is unchanged

Page 38: UNIT-1 1st part

CLEAR OPERATIONLogic Microoperations

• In a clear operation, if the bits in the same position in A and B are the same, they are cleared in A, otherwise they are set in A

1 1 0 0 At

1 0 1 0 B

0 1 1 0 At+1 (A A B)

Page 39: UNIT-1 1st part

Shift Microoperations• Shift Microoperations are used for serial

transfer of data.• They are also used for conjunction with

arithmetic, logic and other data-processing operations.

• Shift operations can be done on registers.• The content of registers can be shifted to the

left or to the right.• A logical shift is one that transfers 0 through

the serial inputs.

Page 40: UNIT-1 1st part

Shift Microoperations• In shift left operation the serial input transfers a bit Contents of register

into the right most position.• In shift right operation the serial input transfers a bit Contents of register

into the left most position.Shift Microoperations

Symbolic Descriptive

R = shl R Shift-left logical register R

R = shr R Shift-right logical register R

R = cil R Circular shift-left register R

R = cir R Circular shift-right register R

R = ashl R Shift-left arithmetic register R

R = ashr R Shift-right arithmetic register R

Page 41: UNIT-1 1st part

Shift Microoperations

Shift Microoperations

Symbolic Descriptive

R = shl R Shift-left logical register R

R = shr R Shift-right logical register R

R = cil R Circular shift-left register R

R = cir R Circular shift-right register R

R = ashl R Shift-left arithmetic register R

R = ashr R Shift-right arithmetic register R

High orderInput 0

Shift right

Low OrderBit Loss

High orderBit Loss

Shift left

Low OrderInput 0

Page 42: UNIT-1 1st part

Shift Microoperations

• In circular shift circulate the bit of register around the two ends without loss of information.

Shift Microoperations

Symbolic Descriptive

R = shl R Shift-left logical register R

R = shr R Shift-right logical register R

R = cil R Circular shift-left register R

R = cir R Circular shift-right register R

R = ashl R Shift-left arithmetic register R

R = ashr R Shift-right arithmetic register R

High orderFrom Low order

Circular shift right

Low orderto High order

High orderto Low order

Circular shift left

Low orderfrom High order

Page 43: UNIT-1 1st part

Shift Microoperations• An arithmetic shift is a microoperation that shifts a signed binary number to the

left or right.• An arithmetic shift left multiplies a signed number by 2.• An arithmetic shift right divides a signed number by 2.

Shift Microoperations

Symbolic Descriptive

R = shl R Shift-left logical register R

R = shr R Shift-right logical register R

R = cil R Circular shift-left register R

R = cir R Circular shift-right register R

R = ashl R Shift-left arithmetic register R

R = ashr R Shift-right arithmetic register R

High orderBit Loss

Arithmetic shift left

Low OrderInput 0

High orderInput High order

Arithmetic shift right

Low orderBit Loss

Page 44: UNIT-1 1st part

Shift Microoperations• The arithmetic shift right leaves the sign bit

unchanged and shift the number(including the sign bit) to the right.

• The Rn-1 remains the same, Rn-2 receives the bit from Rn-1 and so on for the other bits of the register. The bit in R0 is lost.

• The arithmetic shift-left inserts a 0 in R0, and shift all other bits to the left.

• The initial bit Rn-1 is lost and replace by Rn-2. A sign reversal occurs if the bit in Rn-1 changes in value after the shift.

Page 45: UNIT-1 1st part

Shift Microoperations

• If the bits Rn-1 and Rn-2 are not same then overflow will occur.

• An overflow flip-flop Vs can be used to detect an arithmetic shift-left overflow

Vs = Rn-1 Rn-2

Rn-2

Vs=Rn-1 1 overflow

0 no overflow

Page 46: UNIT-1 1st part

Hardware Implementation of logic microoperations

Page 47: UNIT-1 1st part

Arithmetic Logic Shift Unit• Instead of having individual registers

performing the microoperations directly, computer systems employ a number of storage registers connected to a common operational unit called an Arithmetic Logic Unit (ALU)

Page 48: UNIT-1 1st part

Arithmetic Logic Shift Unit

Page 49: UNIT-1 1st part

Arithmetic Logic Shift Unit