instruction set principles

29
INSTRUCTION SET PRINCIPLES

Upload: jonah-henson

Post on 03-Jan-2016

28 views

Category:

Documents


0 download

DESCRIPTION

INSTRUCTION SET PRINCIPLES. Computer Architecture’s Changing Definition. 1950s to 1960s: Computer Architecture Course = Computer Arithmetic 1970s to mid 1980s: Computer Architecture Course = Instruction Set Design, especially ISA appropriate for compilers - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: INSTRUCTION SET PRINCIPLES

INSTRUCTION SET PRINCIPLES

Page 2: INSTRUCTION SET PRINCIPLES

Computer Architecture’s Changing Definition

1950s to 1960s: Computer Architecture Course = Computer Arithmetic

1970s to mid 1980s: Computer Architecture Course = Instruction Set Design, especially ISA appropriate for compilers

1990s: Computer Architecture Course = Design of CPU, memory system, I/O system, Multiprocessors

Page 3: INSTRUCTION SET PRINCIPLES

Instruction Set Architecture (ISA)

instruction set

software

hardware

Page 4: INSTRUCTION SET PRINCIPLES

Instruction Set Architecture

Instruction set architecture is the structure of a computer that a machine language programmer must understand to write a correct (timing independent) program for that machine.

The instruction set architecture is also the machine description that a hardware designer must understand to design a correct implementation of the computer.

Page 5: INSTRUCTION SET PRINCIPLES

Interface Design

A good interface:• Lasts through many implementations (portability,

compatibility)• Is used in many different ways (generality)• Provides convenient functionality to higher levels• Permits an efficient implementation at lower levels

Interfaceimp 1

imp 2

imp 3

use

use

use

time

Page 6: INSTRUCTION SET PRINCIPLES

Evolution of Instruction Sets

Single Accumulator (EDSAC 1950)

Accumulator + Index Registers(Manchester Mark I, IBM 700 series 1953)

Separation of Programming Model from Implementation

High-level Language Based Concept of a Family(B5000 1963) (IBM 360 1964)

General Purpose Register Machines

Complex Instruction Sets Load/Store Architecture

RISC

(Vax, Intel 432 1977-80) (CDC 6600, Cray 1 1963-76)

(Mips,Sparc,HP-PA,IBM RS6000,PowerPC . . .1987)

LIW/”EPIC”? (IA-64. . .1999)

Page 7: INSTRUCTION SET PRINCIPLES

Evolution of Instruction Sets

Major advances in computer architecture are typically associated with landmark instruction set designsEx: Stack vs GPR (System 360)

Design decisions must take into account:technologymachine organizationprogramming languagescompiler technologyoperating systems

And they in turn influence these

Page 8: INSTRUCTION SET PRINCIPLES

What Are the Components of an ISA?

Sometimes known as The Programmer’s Model of the machine

Storage cellsGeneral and special purpose registers in the CPUMany general purpose cells of same size in memoryStorage associated with I/O devices

The machine instruction setThe instruction set is the entire repertoire of machine operationsMakes use of storage cells, formats, and results of the

fetch/execute cyclei.e., register transfers

Page 9: INSTRUCTION SET PRINCIPLES

The instruction format

Size and meaning of fields within the instruction

The nature of the fetch-execute cycle

Things that are done before the operation code is known

What Are the Components of an ISA?

Page 10: INSTRUCTION SET PRINCIPLES

Computer ArithmeticTaxonomy of integers

Page 11: INSTRUCTION SET PRINCIPLES

Range of sign-and-magnitude integers

# of Bits

----------81632

-127 -0-32767 -0-2,147,483,647 -0

+0 +127 +0 +32767 +0 +2,147,483,647

Range---------------------------------------------

----------

Page 12: INSTRUCTION SET PRINCIPLES

In sign-and-magnitude representation, the leftmost bit defines the sign of the

number. If it is 0, the number is positive.If it is 1, the number is negative.

Note:

Page 13: INSTRUCTION SET PRINCIPLES

Example of storing sign-and-magnitude integers in two computers

Decimal-----------

-+7

-124+258

-24,760

8-bit allocation------------

0000011111111100overflowoverflow

16-bit allocation-----------------------------

-0000000000000111100000000111110000000001000000101110000010111000

Page 14: INSTRUCTION SET PRINCIPLES

Example 8

Interpret 10111011 in decimal if the number was stored as a sign-and-magnitude integer.

Solution

Ignoring the leftmost bit, the remaining bits are 0111011. This number in decimal is 59. The leftmost bit is 1, so the number is –59.

Page 15: INSTRUCTION SET PRINCIPLES

There are two 0s in one’s complement

representation: positive and negative.

In an 8-bit allocation:

+0 00000000-0 11111111

Note:

Page 16: INSTRUCTION SET PRINCIPLES

Range of one’s complement integers

# of Bits

---------81632

-127 -0-32767 -0-2,147,483,647 -0

+0 +127+0 +32767+0 +2,147,483,647

Range---------------------------------------------

----------

Page 17: INSTRUCTION SET PRINCIPLES

In one’s complement representation, the leftmost bit defines the sign of the

number. If it is 0, the number is positive.If it is 1, the number is negative.

Note:

Page 18: INSTRUCTION SET PRINCIPLES

Example of storing one’s complement integers in two different computers

Decimal-----------

-+7-7

+124-124

+24,760-24,760

8-bit allocation------------

00000111111110000111110010000011overflowoverflow

16-bit allocation-----------------------------

-000000000000011111111111111110000000000001111100111111111000001101100000101110001001111101000111

Page 19: INSTRUCTION SET PRINCIPLES

One’s complement means reversing all bits. If you one’s complement a positive

number, you get the corresponding negative number. If you one’s

complement a negative number, you get the corresponding positive number. If you

one’s complement a number twice, you get the original number.

Note:

Page 20: INSTRUCTION SET PRINCIPLES

Two’s complement is the most common, the most important, and the most widely

used representation of integers today.

Note:

Page 21: INSTRUCTION SET PRINCIPLES

Range of two’s complement integers

# of Bits

---------81632

-128 -32,768 -2,147,483,648

0 +1270 +32,7670 +2,147,483,647

Range---------------------------------------------

----------

Page 22: INSTRUCTION SET PRINCIPLES

In two’s complement representation, the leftmost bit defines the sign of the

number. If it is 0, the number is positive.If it is 1, the number is negative.

Note:

Page 23: INSTRUCTION SET PRINCIPLES

Example of storing two’s complement integers in two different computers

Decimal-----------

-+7-7

+124-124

+24,760-24,760

8-bit allocation------------

00000111111110010111110010000100overflowoverflow

16-bit allocation-----------------------------

-000000000000011111111111111110010000000001111100111111111000010001100000101110001001111101001000

Page 24: INSTRUCTION SET PRINCIPLES

Memory Addressing How is a memory address interpreted?

Byte addressed: Provide access for bytes, half words, words, and double words (64 bits)

Conventions for ordering the bytes within a word:

Little Endian: put byte whose address xxxx00 at LSB position.

Word address Data

0 3 2 1 0

4 7 6 5 4

Big Endian: Put byte whose address xxxx00 at MSB position.

Word address Data

0 0 1 2 3

4 4 5 6 7

Page 25: INSTRUCTION SET PRINCIPLES

Address Alignment Access to objects larger than a byte must be aligned. An access to an object of size S bytes at byte address A is aligned if A

mod S =0.

Fig. 2.5 aligned and misaligned access

Object Aligned at Misaligned at

addressed byte offsets byte offsets

------------------------------------------------------------

Byte 0,1,2,3,4,5,6,7 Never

Half word 0,2,4,6 1,3,5,7

Word 0,4 1,2,3,5,6,7,

Double word 0 1,2,3,4,5,6,7

A misaligned memory access will take multiple aligned memory references

Page 26: INSTRUCTION SET PRINCIPLES

Addressing Mode How architectures specify the address of an object they will access?

In a GPR, an addressing mode can specify

a constant,

a register,

a location in memory (used to compute effective address).

Immediate or literals are usually considered as memory addressing mode.

Addressing modes that depend on the program counter is called PC-relative addressing.

Addressing modes can significantly reduce instruction counts, but may add to the complexity of building a machine and increase the average CPI.

Page 27: INSTRUCTION SET PRINCIPLES

Karnaugh map

The Karnaugh map, also known as the K-map, is a method to simplify boolean algebra expressions. .

The Karnaugh map reduces the need for extensive calculations by taking advantage of humans' pattern-recognition capability. It also permits the rapid identification and elimination of potential race conditions.

Page 28: INSTRUCTION SET PRINCIPLES

Diagram showing K-map for f(A, B, C, D). 

Page 29: INSTRUCTION SET PRINCIPLES

Exercise

Consider the following expression, by using the K-Map method, create

1- truth table

2- draw K-Map

3-Draw implicand

4-Find equation