Vous êtes sur la page 1sur 47

Basic Computer Organization

Chapter 2
S. Dandamudi
Outline
 Flow control
 Branching
 Basic components  Procedure calls
 The processor  Memory
 Execution cycle  Basic operations
 System clock  Types of memory
 Number of addresses  Storing multibyte data
 3-address machines  Input/Output
 2-address machines  Performance: Data alignment
 1-address machines
 0-address machines
 Load/store
architecture

2005. S. Dandamudi Chapter 2: Page 2


Basic Components

 Basic components of a computer system


 Processor
 Memory
 I/O
 System bus
 Address bus
 Data bus
 Control bus

S. Dandamudi
Chapter 2: Page 3
Basic Components (cont’d)

Chap
2005 ter 2:
S. Dandamudi
Page
4
The Processor

 Processor can be thought of executing


 Fetch-decode-execute cycle forever
 Fetch an instruction from the memory
 Decode the instruction
 Find out what the operation is

 Execute the instruction


 Perform the specified operation

S. Dandamudi
Chapter 2: Page 5
Instruction Execute Cycle

Instruction
Fetch Obtain instruction from program storage
Instruction
Infinite Cycle

Decode Determine required actions and instruction size


Operand
Fetch Locate and obtain operand data

Execute Compute result value and status


Writeback
Result Deposit results in storage for later use
Instruction Execution Cycle – cont'd
PC program
 Instruction Fetch I1 I2 I3 I4 ...

 Instruction Decode memory read


fetch
op1
 Operand Fetch op2
registers registers
 Execute I1
instruction
register
 Result Writeback

decode
write

write
flags ALU

execute
(output)
The Processor (cont’d)

 System clock
 Provides timing signal 1
 Clock period =
Clock frequency

S. Dandamudi
Chapter 2: Page 8
Number of Addresses

 Four categories
 3-address machines
 2 for the source operands and one for the result
 2-address machines
 One address doubles as source and result
 1-address machine
 Accumulator machines
 Accumulator is used for one source and result
 0-address machines
 Stack machines
 Operands are taken from the stack
 Result goes onto the stack

S. Dandamudi
Chapter 2: Page 9
Number of Addresses (cont’d)

 Three-address machines
 Two for the source operands, one for the result
 RISC processors use three addresses
 Sample instructions
add dest,src1,src2
; M(dest)=[src1]+[src2]
sub dest,src1,src2
; M(dest)=[src1]-[src2]
mult dest,src1,src2
; M(dest)=[src1]*[src2]

S. Dandamudi Chapter 2: Page 10


Number of Addresses (cont’d)

 Example
 C statement

A = B + C * D – E + F + A
 Equivalent code:

mult T,C,D ;T = C*D


add T,T,B ;T = B+C*D
sub T,T,E ;T = B+C*D-E
add T,T,F ;T = B+C*D-E+F
add A,T,A ;A = B+C*D-
E+F+A
S. Dandamudi
Chapter 2: Page 11
Number of Addresses (cont’d)

 Two-address machines
 One address doubles (for source operand & result)
 Last example makes a case for it
 Address T is used twice

 Sample instructions
load dest,src ; M(dest)=[src]
add dest,src ; M(dest)=[dest]+[src]
sub dest,src ; M(dest)=[dest]-[src]
mult dest,src ; M(dest)=[dest]*[src]

S. Dandamudi Chapter 2: Page 12


Number of Addresses (cont’d)

 Example
 C statement

A = B + C * D – E + F + A
 Equivalent code:

load T,C ;T = C
mult T,D ;T = C*D
add T,B ;T = B+C*D
sub T,E ;T = B+C*D-E
add T,F ;T = B+C*D-E+F
add A,T ;A = B+C*D-E+F+A
S. Dandamudi Chapter 2: Page 13
Number of Addresses (cont’d)

 One-address machines
 Uses special set of registers called accumulators
 Specify one source operand & receive the result

 Called accumulator machines


 Sample instructions
load addr ; accum = [addr]
store addr ; M[addr] = accum
add addr ; accum = accum + [addr]
sub addr ; accum = accum - [addr]
mult addr ; accum = accum * [addr]

S. Dandamudi Chapter 2: Page 14


Number of Addresses (cont’d)

 Example
 C statement
A = B + C * D – E + F + A

 Equivalent code:
load C ;load C into accum
mult D ;accum = C*D
add B ;accum = C*D+B
sub E ;accum = B+C*D-E
add F ;accum = B+C*D-E+F
add A ;accum = B+C*D-E+F+A
store A ;store accum contents in A

S. Dandamudi Chapter 2: Page 15


Number of Addresses (cont’d)

 Zero-address machines
 Stack supplies operands and receives the result
 Special instructions to load and store use an address

 Called stack machines (Ex: HP3000, Burroughs B5500)


 Sample instructions
push addr ; push([addr])
pop addr ; pop([addr])
add ; push(pop + pop)
sub ; push(pop - pop)
mult ; push(pop * pop)

S. Dandamudi Chapter 2: Page 16


Number of Addresses (cont’d)

 Example
 C statement
A = B + C * D – E + F + A
 Equivalent code:
push E sub
push C push F
push D add
Mult push A
push B add
add pop A
S. Dandamudi
Chapter 2: Page 17
Load/Store Architecture
 Instructions expect operands in internal processor registers
 Special LOAD and STORE instructions move data between registers and
memory
 RISC and vector processors use this architecture
 Reduces instruction length

S. Dandamudi Chapter 2: Page 18


Load/Store Architecture
(cont’d)
 Sample instructions
load Rd,addr ;Rd = [addr]
store addr,Rs ;(addr) = Rs
add Rd,Rs1,Rs2 ;Rd = Rs1 + Rs2
sub Rd,Rs1,Rs2 ;Rd = Rs1 - Rs2
mult Rd,Rs1,Rs2 ;Rd = Rs1 * Rs2

S. Dandamudi
Number of Addresses (cont’d)

 Example
 C statement

A = B + C * D – E + F + A
 Equivalent code:

load R1,B mult R2,R2,R3


load R2,C add R2,R2,R1
load R3,D sub R2,R2,R4
load R4,E add R2,R2,R5
load R5,F add R2,R2,R6
load R6,A store A,R2

S. Dandamudi Chapter 2: Page 20


Flow of Control

 Default is sequential flow


 Several instructions alter this default execution
 Branches
 Unconditional
 Conditional

 Procedure calls
 Parameter passing
 Register-based

 Stack-based

S. Dandamudi
Chapter 2: Page 21
Flow of Control (cont’d)

 Branches
 Unconditional

branch target
 Absolute address
 PC-relative
 Target address is specified relative to PC contents

 Example: MIPS
 Absolute address

j target
 PC-relative

b target
S. Dandamudi
Chapter 2: Page 22
Flow of Control (cont’d)

S. Dandamudi
Chapter 2: Page 23
Flow of Control (cont’d)

 Branches
 Conditional
 Jump is taken only if the condition is met
 Two types
 Set-Then-Jump
 Condition testing is separated from branching
 Condition code registers are used to convey the condition test
result

 Example: Pentium code

cmp AX,BX
je target
S. Dandamudi
Chapter 2: Page 24
Flow of Control (cont’d)

 Test-and-Jump
 Single instruction performs condition testing and branching

 Example: MIPS instruction

beq Rsrc1,Rsrc2,target
 Jumps to target if Rsrc1 = Rsrc2

S. Dandamudi Chapter 2: Page 25


Flow of Control (cont’d)

 Procedure calls
 Requires two pieces of information to return
 End of procedure
 Pentium
 uses ret instruction
 MIPS
 uses jr instruction

 Return address
 In a (special) register
 MIPS allows any general-purpose register
 On the stack
 Pentium

S. Dandamudi Chapter 2: Page 26


Flow of Control (cont’d)

S. Dandamudi
Chapter 2: Page 27
Flow of Control (cont’d)

 Parameter passing
 Register-based
 Internal registers are used
 Faster
 Limit the number of parameters
 Due to limited number of available registers

 Stack-based
 Stack is used
 Slower
 Requires memory access
 General-purpose
 Not limited by the number of registers

S. Dandamudi Chapter 2: Page 28


Memory

 Memory can be viewed as


an ordered sequence of
bytes
 Each byte of memory has
an address
 Memory address is
essentially the sequence
number of the byte
 Such memories are called
byte addressable
 Number of address lines
determine the memory
address space of a
processor

S. Dandamudi Chapter 2: Page 29


Memory (cont’d)

 Two basic memory operations


 Read operation (read from memory)
 Write operation (write into memory)
 Access time
 Time needed to retrieve data at addressed location
 Cycle time
 Minimum time between successive operations

2005
To be Chap
used with ter 2:
S. Dandamudi
S. Page
Dandamu 30
di, “
Memory (cont’d)

 Steps in a typical read cycle


 Place the address of the location to be read on the address
bus
 Activate the memory read control signal on the control bus
 Wait for the memory to retrieve the data from the addressed
memory location
 Read the data from the data bus
 Drop the memory read control signal to terminate the read
cycle 2005
To be
 A simple Pentium memory read cycle takes 3used
clocks
with
S.
 Steps 1&2 and 4&5 are done in one clock cycle each
Dandamu

 For slower memories, wait cycles will have to di,


be inserted
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 31
Programm
Typical read cycle

Cycle 1 Cycle 2 Cycle 3 Cycle 4

CLK

Address
ADDR

RD

Data
DATA
2005
To be
used with
S.
Dandamu
di,
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language
Programm 32
ing,”
Memory (cont’d)

 Steps in a typical write cycle


 Place the address of the location to be written on the address
bus
 Place the data to be written on the data bus
 Activate the memory write control signal on the control bus
 Wait for the memory to store the data at the addressed
location
 Drop the memory write control signal to terminate the write
cycle 2005
To be
 A simple Pentium memory write cycle takes 3usedclocks
with
S.
 Steps 1&3 and 4&5 are done in one clock cycle each
Dandamu

 For slower memories, wait cycles will have to di,


be inserted
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 33
Programm
Memory (cont’d)

 Some properties of memory


 Random access
 Accessing any memory location takes the same amount of
time
 Volatility
 Volatile memory
 Needs power to retain the contents

 Non-volatile memory
 Retains contents even in the absence of power 2005
To be
 Basic types of memory used with
S.
 Read-only memory (ROM) Dandamu
di,
 Read/write memory (RAM) “Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 34
Programm
Memory (cont’d)

 Read-only memory (ROM)


 Cannot be written into this type of memory
 Non-volatile memory
 Most are factory programmed (i.e., written)
 Programmable ROMs (PROMs)
 Can be written once by user
 A fuse is associated with each bit cell
 Special equipment is needed to write (to blow the fuse)
2005
 PROMS are useful To be

 During prototype development used with


S.
 If the required quantity is small Dandamu

 Does not justify the cost of factory programmed


di, ROM
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 35
Programm
Memory (cont’d)

 Erasable PROMs (EPROMs)


 Can be written several times
 Offers further flexibility during system prototyping
 Can be erased by exposing to ultraviolet light
 Cannot erase contents of selected locations

 All contents are lost

 Electrically erasable PROMs (EEPROMs)


 Contents are electrically erased 2005
To be
 No need to erase all contents used with
 Typically a subset of the locations are erased as a S.group
Dandamu
 Most EEPROMs do not provide the capability to individually
di, erase
contents of a single location “Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 36
Programm
Memory (cont’d)

 Read/write memory
 Commonly referred to as random access memory (RAM)
 Volatile memories

 Two basic types


 Static RAM (SRAM)
 Retains data with no further maintenance

 Typically used for CPU registers and cache memory

 Dynamic RAM (DRAM) 2005


To be
 A tiny capacitor is used to store a bit
used with
 Due to leakage of charge, DRAMs must be refreshed
S. to retain
contents Dandamu
di,
 Read operation is destructive in DRAMs “Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 37
Programm
Memory (cont’d)

 DRAM types
 FPM DRAMs
 FPM = Fast Page Mode
 EDO DRAMs
 EDO = Extended Data Out
 Uses pipelining to speedup access
 SDRAMs
 Use an external clock to synchronize data output
 Also called SDR SDRAMs (Single Data Rate)
 DDR SDRAMs 2005
 DDR = Double Data Rate To be
used with
 Provides data on both falling and rising edges of theS.clock
 RDRAMs Dandamu
di,
 Rambus DRAM
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 38
Programm
Storing Multibyte Data

2005
To be
used with
S.
Dandamu
di,
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 39
Programm
Storing Multibyte Data
(cont’d)
 Little endian
 Used by Intel IA-32 processors
 Big endian
 Used most processors by default
 MIPS supports both byte orderings
 Big endian is the default
 Not a problem when working with same type of
machines
 Need to convert the format if working with a different
2005
machine To be

 Pentium provides two instructions for conversion


used with
S.
 xchg for 16-bit data Dandamu

 bswap for 32-bit data di,


“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 40
Programm
Input/Output

 I/O controller provides the necessary interface to I/O


devices
 Takes care of low-level, device-dependent details
 Provides necessary electrical signal interface

2005
To be
used with
S.
Dandamu
di,
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 41
Programm
Input/Output (cont’d)

 Processor and I/O interface points for exchanging data


are called I/O ports
 Two ways of mapping I/O ports
 Memory-mapped I/O
 I/O ports are mapped to the memory address space
 Reading/writing I/O is similar to reading/writing memory
 Can use memory read/write instructions

 Motorola 68000 uses memory-mapped I/O


2005
 Isolated I/O To be

 Separate I/O address space used with


S.
 Requires special I/O instructions (like in and out in Pentium)
Dandamu
di,
 Intel 80x86 processors support isolated I/O “Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 42
Programm
Input/Output (cont’d)

 Pentium I/O address space


 Provides 64 KB I/O address space
 Can be used for 8-, 16-, and 32-bit I/O ports
 Combination cannot exceed the total I/O address space
 can have 64 K 8-bit ports
 can have 32 K 16-bit ports
 can have 16 K 32-bit ports
 A combination of these for a total of 64 KB 2005
To be

 I/O instructions do not go through segmentation or paging


used with
S.

 I/O address refers to the physical I/O address Dandamu


di,
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 43
Programm
Performance: Data Alignment

2005
To be
used with
S.
Dandamu
di,
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 44
Programm
Performance: Data Alignment (cont’d)

Unaligned
Sort time (seconds)

Aligned
0
5000 10000 15000 20000 25000
Array size

2005
To be used with S. Dandamudi, “Introduction to Assembly Language Programming,” Second Edition, Chapter
Springer,2:2005.
S. Dandamudi Page 45
Performance: Data Alignment (cont’d)

 Data alignment
 Soft alignment
 Data is not required to be aligned
 Data alignment is optional

 Aligned data gives better performance

 Used in Intel IA-32 processors

 Hard alignment 2005


To be
 Data must be aligned used with
S.
 Used in Motorola 680X0 and Intel i860 processors
Dandamu
di,
“Introduct Chap
ion to ter 2:
S. Dandamudi
Assembly Page
Language 46
Programm
Performance: Data Alignment (cont’d)

 Data alignment requirements for byte addressable


memories
 1-byte data
 Always aligned
 2-byte data
 Aligned if the data is stored at an even address (i.e., at an
address that is a multiple of 2)
 4-byte data
 Aligned if the data is stored at an address that is 2005
a multiple of
4 To be
used with
 8-byte data S.
Dandamu
 Aligned if the data is stored at an address that isdi,a multiple of
8 “Introduct Chap
ion to
Last slide
ter 2:
S. Dandamudi
Assembly Page
Language 47
Programm

Vous aimerez peut-être aussi