COMPUTER ARCHITECURE INSTRUCTION SET ARCHITECTURE.

Slides:



Advertisements
Similar presentations
Instruction Set Design
Advertisements

Major components of CPU
INSTRUCTION SET ARCHITECTURES
There are two types of addressing schemes:
Instruction Set Architecture
Chapter 11 Instruction Sets
1 Registers and MAL - Part I. Motivation So far there are some details that we have ignored instructions can have different formats most computers have.
Execution of an instruction
CH11 Instruction Sets: Addressing Modes and Formats
Part II: Addressing Modes
Processor Organization and Architecture Module III.
Operand Addressing and Instruction Representation
Basic Operational Concepts of a Computer
8.3 Stack Organization Stack: A storage device that stores information in such a manner that the item stored last is the first item retrieved. Also called.
Instruction Set Architecture
Chap. 8 Central Processing Unit
COMPUTER ORGANIZATION AND ASSEMBLY LANGUAGE Lecture 15 & 16 Stacks, Endianness Addressing Modes Course Instructor: Engr. Aisha Danish.
Computer Architecture and the Fetch-Execute Cycle
December 8, 2003Other ISA's1 Other ISAs Next, we discuss some alternative instruction set designs. – Different ways of specifying memory addresses – Different.
Chap. 9 Instruction Set Architecture. Computer Architecture Concepts Instruction format –Opcode field Specify the operation to be performed –Address field.
Chapter 5 A Closer Look at Instruction Set Architectures.
Module 3 Instruction Set Architecture (ISA): ISA Level Elements of Instructions Instructions Types Number of Addresses Registers Types of Operands.
Computer Organization
Computer Architecture Lecture 03 Fasih ur Rehman.
ECEG-3202 Computer Architecture and Organization Chapter 6 Instruction Sets: Addressing Modes and Formats.
Chapter 11 Instruction Sets: Addressing Modes and Formats Gabriel Baron Sydney Chow.
Instruction Sets: Addressing modes and Formats Group #4  Eloy Reyes  Rafael Arevalo  Julio Hernandez  Humood Aljassar Computer Design EEL 4709c Prof:
COMPUTER ORGANIZATION AND ASSEMBLY LANGUAGE Lecture 21 & 22 Processor Organization Register Organization Course Instructor: Engr. Aisha Danish.
Addressing Modes and Formats
WEEK 3 I/O Port Programming ET2640 Microprocessors and Microcontrollers.
What is a program? A sequence of steps
Operand Addressing And Instruction Representation Tutorial 3.
CH-8 CENTRAL PROCESSING UNIT -BY ESHA S. SHAH 1.  CENTRAL PROCESSING UNIT Introduction General Register Organization Stack Organization Instruction Formats.
MicroProcessors Lec. 3 Dr. Tamer Samy Gaafar. Course Web Page
Instruction Formats Competency: C5 Lecture no. 24.
1 ADDRESSING MODES Addressing Modes: * Specifies a rule for interpreting or modifying the address field of the instruction (before the operand is actually.
Computer Architecture
Displacement (Indexed) Stack
William Stallings Computer Organization and Architecture 6th Edition
Overview Introduction General Register Organization Stack Organization
A Closer Look at Instruction Set Architectures
Architecture Review Instruction Set Architecture
A Closer Look at Instruction Set Architectures
A Closer Look at Instruction Set Architectures: Expanding Opcodes
William Stallings Computer Organization and Architecture 8th Edition
Overview Introduction General Register Organization Stack Organization
Computer Organization and Design
Processor Organization and Architecture
BIC 10503: COMPUTER ARCHITECTURE
Prepared By:- Parminder Mann
CENTRAL PROCESSING UNIT
Chapter 8 Central Processing Unit
Processor Organization and Architecture
ECEG-3202 Computer Architecture and Organization
Computer Architecture and the Fetch-Execute Cycle
CENTRAL PROCESSING UNIT
Computer Architecture
Classification of instructions
Other ISAs Next, we’ll first we look at a longer example program, starting with some C code and translating it into our assembly language. Then we discuss.
Central Processing Unit.
William Stallings Computer Organization and Architecture 8 th Edition Chapter 11 Instruction Sets: Addressing Modes and Formats.
COMPUTER ORGANIZATION AND ARCHITECTURE
Prepared By:- Bhim Singh
Computer Operation 6/22/2019.
Presentation transcript:

COMPUTER ARCHITECURE INSTRUCTION SET ARCHITECTURE

Computer Architecture = CO + ISA Instruction Set Architecture – Interface between all the software that runs on the machine and the hardware that executes it – Allows you to talk to the machine Instruction Set Architecture

Instruction Operand AddressOp code

OP-code field: specifies the operation to be performed Address field: designates memory address(es) or a processor register(s) Mode field : determines how the address field is to be interpreted (to get effective address or the operand) Instruction Fields Instruction Formats

In general, most processors are organized in one of 3 ways – Single register (Accumulator) organization Basic Computer is a good example Accumulator is the only general purpose register – General register organization Used by most modern computer processors Any of the registers can be used as the source or destination for computer operations – Stack organization All operations are done using the hardware stack For example, an OR instruction will pop the two top elements from the stack, do a logical OR on them, and push the result on the stack

Single accumulator organization: ADDX /* AC  AC + M[X] */ General register organization: ADDR1, R2, R3 /* R1  R2 + R3 */ ADDR1, R2 /* R1  R1 + R2 */ MOVR1, R2 /* R1  R2 */ ADDR1, X /* R1  R1 + M[X] */ Stack organization: PUSHX /* TOS  M[X] */ ADD Instruction Formats

Three-Address Instructions Program to evaluate X = (A + B) : ADDR1, A, B /* R1  M[A] + M[B]*/ MOVX, R1 /* M[X]  R1 */ Two-Address Instructions Program to evaluate X = (A + B) : MOV R1, A /* R1  M[A] */ ADD R1, B /* R1  R1 + M[B] */ MOV X, R1 /* M[X]  R1 */ THREE, AND TWO-ADDRESS INSTRUCTIONS 0P CODE A B R1 0P CODE A B

ONE, AND ZERO-ADDRESS INSTRUCTIONS One-Address Instructions - Use an implied AC register for all data manipulation - Program to evaluate X = (A + B) : LOAD A /* AC  M[A] */ ADD B /* AC  AC + M[B] */ STORE X /* M[X]  AC */ Zero-Address Instructions - Can be found in a stack-organized computer - Program to evaluate X = (A + B) ) : PUSHA/* TOS  A*/ PUSHB/* TOS  B*/ ADD/* TOS  (A + B)*/ POPX/* M[X]  TOS*/ 0P CODE A A B X

ADDRESSING MODES Addressing Modes * Specifies a rule for interpreting or modifying the address field of the instruction (before the operand is actually referenced) * Variety of addressing modes - to give programming flexibility to the user - to use the bits in the address field of the instruction efficiently

TYPES OF ADDRESSING MODES Immediate Mode Instead of specifying the address of the operand, operand itself is specified - No need to specify address in the instruction - However, operand itself needs to be specified - Sometimes, require more bits than the address - Fast to acquire an operand OperandOp code

TYPES OF ADDRESSING MODES Direct Address Mode Instruction specifies the memory address which can be used directly to access the memory - Faster than the other memory addressing modes - Too many bits are needed to specify the address for a large physical memory space - EA = IR(addr) (IR(addr): address field of IR)

Address AOp code Instruction Memory Operand Direct Address Mode

Indirect Addressing Mode The address field of an instruction specifies the address of a memory location that contains the address of the operand - When the abbreviated address is used large physical memory can be addressed with a relatively small number of bits - Slow to acquire an operand because of an additional memory access - EA = M[IR(address)] TYPES OF ADDRESSING MODES

Indirect Addressing Mode Address AOpcode Instruction Memory Operand Pointer to operand

TYPES OF ADDRESSING MODES Register Mode Address specified in the instruction is the register address - Designated operand need to be in a register - Shorter address than the memory address - Saving address field in the instruction - Faster to acquire an operand than the memory addressing - EA = IR(R), IR(R): (Register field of IR)

Register Address ROpcode Instruction Registers Operand Register Mode

Register Indirect Mode Instruction specifies a register which contains the memory address of the operand - Saving instruction bits since register address is shorter than the memory address - Slower to acquire an operand than both the register addressing or memory addressing - EA = [IR(R)] ([x]: Content of x) TYPES OF ADDRESSING MODES

Register Indirect Mode Register Address ROpcode Instruction Memory Operand Pointer to Operand Registers

Indexed Addressing TYPES OF ADDRESSING MODES A = base R =Index EA = A + (R) Good for accessing arrays – EA = A + (R) – R++

Addressing Diagram Register ROpcode Instruction Memory Pointer to Operand Registers Address A + Operand Indexed

Autoincrement or Autodecrement Mode - When the address in the register is used to access memory, the value in the register is incremented or decremented by 1 automatically TYPES OF ADDRESSING MODES

Relative Addressing Modes The Address fields of an instruction specifies the part of the address (abbreviated address) which can be used along with a designated register to calculate the address of the operand - Address field of the instruction is short - Large physical memory can be accessed with a small number of address bits - EA = f(IR(address), R), R is sometimes implied TYPES OF ADDRESSING MODES Address Register pc adder

ADDRESSING MODES, EXAMPLES Addressing Mode Effective Address Content of AC Direct address500/* AC  (500) */ 800 Immediate operand -/* AC  500 */ 500 Indirect address800/* AC  ((500)) */ 300 Relative address700/* AC  (PC+500) */ 325 Indexed address600/* AC  (RX+500) */ 900 Register -/* AC  R1 */ 400 Register indirect400 /* AC  (R1) */ 700 Autoincrement401 /* AC  (R1)+ */ 708 Autodecrement399 /* AC  -(R) */ 450 Address = 500 Next instruction MemoryAddress PC = 200 Next instruction 201 Address = 500 Next instruction Address PC = 200 R1 = 400 XR = 100 AC Memory PC = 200 Memory