Chapter 4: Arithmetic

Similar documents
Binary Division. Decimal Division. Hardware for Binary Division. Simple 16-bit Divider Circuit

A single register, called the accumulator, stores the. operand before the operation, and stores the result. Add y # add y from memory to the acc

This Unit: Floating Point Arithmetic. CIS 371 Computer Organization and Design. Readings. Floating Point (FP) Numbers

Binary Adders: Half Adders and Full Adders

Divide: Paper & Pencil. Computer Architecture ALU Design : Division and Floating Point. Divide algorithm. DIVIDE HARDWARE Version 1

Lecture 8: Binary Multiplication & Division

ECE 0142 Computer Organization. Lecture 3 Floating Point Representations

Understanding Logic Design

1. Give the 16 bit signed (twos complement) representation of the following decimal numbers, and convert to hexadecimal:

To convert an arbitrary power of 2 into its English equivalent, remember the rules of exponential arithmetic:

Computer Science 281 Binary and Hexadecimal Review

The string of digits in the binary number system represents the quantity

CSE140 Homework #7 - Solution

Oct: 50 8 = 6 (r = 2) 6 8 = 0 (r = 6) Writing the remainders in reverse order we get: (50) 10 = (62) 8

EE 261 Introduction to Logic Circuits. Module #2 Number Systems

DNA Data and Program Representation. Alexandre David

CHAPTER 5 Round-off errors

Today. Binary addition Representing negative numbers. Andrew H. Fagg: Embedded Real- Time Systems: Binary Arithmetic

HOMEWORK # 2 SOLUTIO

COMP 303 MIPS Processor Design Project 4: MIPS Processor Due Date: 11 December :59

Let s put together a Manual Processor

Binary Number System. 16. Binary Numbers. Base 10 digits: Base 2 digits: 0 1

Digital Logic Design. Basics Combinational Circuits Sequential Circuits. Pu-Jen Cheng

Chapter 2 Logic Gates and Introduction to Computer Architecture

Systems I: Computer Organization and Architecture

This 3-digit ASCII string could also be calculated as n = (Data[2]-0x30) +10*((Data[1]-0x30)+10*(Data[0]-0x30));

Attention: This material is copyright Chris Hecker. All rights reserved.

Floating Point Fused Add-Subtract and Fused Dot-Product Units

1. True or False? A voltage level in the range 0 to 2 volts is interpreted as a binary 1.

2010/9/19. Binary number system. Binary numbers. Outline. Binary to decimal

Solution for Homework 2

Reduced Instruction Set Computer (RISC)

Assembly Language Programming

Binary Numbering Systems

Levent EREN A-306 Office Phone: INTRODUCTION TO DIGITAL LOGIC

CS201: Architecture and Assembly Language

Implementation of Modified Booth Algorithm (Radix 4) and its Comparison with Booth Algorithm (Radix-2)

CHAPTER 3 Boolean Algebra and Digital Logic

Measures of Error: for exact x and approximation x Absolute error e = x x. Relative error r = (x x )/x.

Instruction Set Architecture. or How to talk to computers if you aren t in Star Trek

CSI 333 Lecture 1 Number Systems

Numbering Systems. InThisAppendix...

Correctly Rounded Floating-point Binary-to-Decimal and Decimal-to-Binary Conversion Routines in Standard ML. By Prashanth Tilleti

CS 61C: Great Ideas in Computer Architecture Finite State Machines. Machine Interpreta4on

Counters and Decoders

8 Square matrices continued: Determinants

Instruction Set Design

United States Naval Academy Electrical and Computer Engineering Department. EC262 Exam 1

CS101 Lecture 26: Low Level Programming. John Magee 30 July 2013 Some material copyright Jones and Bartlett. Overview/Questions

Lab 1: Full Adder 0.0

1. Convert the following base 10 numbers into 8-bit 2 s complement notation 0, -1, -12

Data Storage 3.1. Foundations of Computer Science Cengage Learning

CS321. Introduction to Numerical Methods

Useful Number Systems

MEP Y9 Practice Book A

An Efficient RNS to Binary Converter Using the Moduli Set {2n + 1, 2n, 2n 1}

Chapter 4 Register Transfer and Microoperations. Section 4.1 Register Transfer Language

Part 1 Expressions, Equations, and Inequalities: Simplifying and Solving

COMP 250 Fall 2012 lecture 2 binary representations Sept. 11, 2012

Lecture 2. Binary and Hexadecimal Numbers

LSN 2 Number Systems. ECT 224 Digital Computer Fundamentals. Department of Engineering Technology

EE360: Digital Design I Course Syllabus

Integer Operations. Overview. Grade 7 Mathematics, Quarter 1, Unit 1.1. Number of Instructional Days: 15 (1 day = 45 minutes) Essential Questions

Digital Design. Assoc. Prof. Dr. Berna Örs Yalçın

(Refer Slide Time: 00:01:16 min)

5 Combinatorial Components. 5.0 Full adder. Full subtractor

Adder.PPT(10/1/2009) 5.1. Lecture 13. Adder Circuits

FORDHAM UNIVERSITY CISC Dept. of Computer and Info. Science Spring, Lab 2. The Full-Adder

Two's Complement Adder/Subtractor Lab L03

Binary Representation. Number Systems. Base 10, Base 2, Base 16. Positional Notation. Conversion of Any Base to Decimal.

Introduction to Xilinx System Generator Part II. Evan Everett and Michael Wu ELEC Spring 2013

Chapter 1. Computation theory

Numerical Matrix Analysis

Lecture 5: Gate Logic Logic Optimization

CSE140: Components and Design Techniques for Digital Systems

DEPARTMENT OF INFORMATION TECHNLOGY

2011, The McGraw-Hill Companies, Inc. Chapter 3

PREPARATION FOR MATH TESTING at CityLab Academy

2.6 Exponents and Order of Operations

0.8 Rational Expressions and Equations

Sistemas Digitais I LESI - 2º ano

Solution Guide Chapter 14 Mixing Fractions, Decimals, and Percents Together

Tom wants to find two real numbers, a and b, that have a sum of 10 and have a product of 10. He makes this table.

Binary Numbers. Binary Octal Hexadecimal

CPU Organization and Assembly Language

Unit 1 Number Sense. In this unit, students will study repeating decimals, percents, fractions, decimals, and proportions.

Chapter 5 Instructor's Manual

Lecture 4: Binary. CS442: Great Insights in Computer Science Michael L. Littman, Spring I-Before-E, Continued

Monday January 19th 2015 Title: "Transmathematics - a survey of recent results on division by zero" Facilitator: TheNumberNullity / James Anderson, UK

Precision & Performance: Floating Point and IEEE 754 Compliance for NVIDIA GPUs

Addition Methods. Methods Jottings Expanded Compact Examples = 15

Chapter 1: Digital Systems and Binary Numbers

NEW adder cells are useful for designing larger circuits despite increase in transistor count by four per cell.

SIM-PL: Software for teaching computer hardware at secondary schools in the Netherlands

Instruction Set Architecture

Gates, Circuits, and Boolean Algebra

Circuits and Boolean Expressions

Review: MIPS Addressing Modes/Instruction Formats

Transcription:

Chapter 4: Arithmetic Where we've been: Performance (seconds, cycles, instructions) Abstractions: Instruction Set Architecture Assembly Language and Machine Language What's up ahead: Implementing the Architecture operation a 32 ALU result 32 b 32 1

Numbers Bits are just bits (no inherent meaning) conventions define relationship between bits and numbers Binary numbers (base 2) 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001... decimal: 0...2 n -1 Of course it gets more complicated: numbers are finite (overflow) fractions and real numbers negative numbers e.g., no MIPS subi instruction; addi can add a negative number) How do we represent negative numbers? i.e., which bit patterns will represent which numbers? 2

Possible Representations Sign Magnitude: One's Complement Two's Complement 000 = +0 000 = +0 000 = +0 001 = +1 001 = +1 001 = +1 010 = +2 010 = +2 010 = +2 011 = +3 011 = +3 011 = +3 100 = -0 100 = -3 100 = -4 101 = -1 101 = -2 101 = -3 110 = -2 110 = -1 110 = -2 111 = -3 111 = -0 111 = -1 Issues: balance, number of zeros, ease of operations Which one is best? Why? 3

MIPS 32 bit signed numbers: 0000 0000 0000 0000 0000 0000 0000 0000 two = 0 ten 0000 0000 0000 0000 0000 0000 0000 0001 two = + 1 ten 0000 0000 0000 0000 0000 0000 0000 0010 two = + 2 ten... 0111 1111 1111 1111 1111 1111 1111 1110 two = + 2,147,483,646 ten 0111 1111 1111 1111 1111 1111 1111 1111 two = + 2,147,483,647 ten 1000 0000 0000 0000 0000 0000 0000 0000 two = 2,147,483,648 ten 1000 0000 0000 0000 0000 0000 0000 0001 two = 2,147,483,647 ten 1000 0000 0000 0000 0000 0000 0000 0010 two = 2,147,483,646 ten... 1111 1111 1111 1111 1111 1111 1111 1101 two = 3 ten 1111 1111 1111 1111 1111 1111 1111 1110 two = 2 ten 1111 1111 1111 1111 1111 1111 1111 1111 two = 1 ten maxint minint 4

Two's Complement Operations Negating a two's complement number: invert all bits and add 1 remember: negate and invert are quite different! Converting n bit numbers into numbers with more than n bits: MIPS 16 bit immediate gets converted to 32 bits for arithmetic copy the most significant bit (the sign bit) into the other bits 0010 -> 0000 0010 1010 -> 1111 1010 "sign extension" (lbu vs. lb) 5

Addition & Subtraction Just like in grade school (carry/borrow 1s) 0111 0111 0110 + 0110-0110 - 0101 Two's complement operations easy subtraction using addition of negative numbers 0111 +1010 Overflow (result too large for finite computer word): e.g., adding two n-bit numbers does not yield an n-bit number 0111 +0001 note that overflow term is somewhat misleading, 1000 it does not mean a carry overflowed 6

Detecting Overflow No overflow when adding a positive and a negative number No overflow when signs are the same for subtraction Overflow occurs when the value affects the sign: overflow when adding two positives yields a negative or, adding two negatives gives a positive or, subtract a negative from a positive and get a negative or, subtract a positive from a negative and get a positive Consider the operations A + B, and A B Can overflow occur if B is 0? Can overflow occur if A is 0? 7

Effects of Overflow An exception (interrupt) occurs Control jumps to predefined address for exception Interrupted address is saved for possible resumption Details based on software system / language example: flight control vs. homework assignment Don't always want to detect overflow new MIPS instructions: addu, addiu,subu note: addiu still sign-extends! note: sltu, sltiu for unsigned comparisons 8

Detecting overflow in software addu $t0, $t1, $t2 $t0=sum xor $t3, $t1, $t2 Check if signs differ slt $t3, $t3, $zero $t3=1 is signs differ bne $t3, $zero, No_overflow $t1, $t2 signs differ, can t be overflow xor $t3, $t0, $t1 Sign of sum match too? slt $t3, $t3, $zero $t3=1 if sum sign different bne $t3, $zero, Overflow Yup, overflow 9

Review: Boolean Algebra & Gates Problem: Consider a logic function with three inputs: A, B, and C. Output D is true if at least one input is true Output E is true if exactly two inputs are true Output F is true only if all three inputs are true Show the truth table for these three functions. Show the Boolean equations for these three functions. Show an implementation consisting of inverters, AND, and OR gates. 10

an ALU (arithmetic logic unit) Let's build an ALU to support the andi and ori instructions we'll just build a 1 bit ALU, and use 32 of them operation op a b res a result b Possible Implementation (sum-of-products): 11

Review: The Multiplexor Selects one of the inputs to be the output, based on a control input S A B 0 1 C note: we call this a 2-input mux even though it has 3 inputs! Lets build our ALU using a MUX: 12

Different Implementations Not easy to decide the best way to build something Don't want too many inputs to a single gate Don t want to have to go through too many gates for our purposes, ease of comprehension is important Let's look at a 1-bit ALU for addition: a b Sum c out = a b + a c in + b c in su m = a xor b xor c in CarryOut How could we build a 1-bit ALU for add, and, and or? How could we build a 32-bit ALU? 13

Building a 32 bit ALU Operation Operation a0 b0 ALU0 CarryOut Result0 a 0 1 Result a1 b1 ALU1 CarryOut Result1 b CarryOut 2 a2 b2 ALU2 CarryOut Result2 a31 b31 ALU31 Result31 14

What about subtraction (a b)? Two's complement approch: just negate b and add. How do we negate? A very clever solution: Binvert Operation a 0 1 Result b 0 1 2 CarryOut 15

Tailoring the ALU to the MIPS Need to support the set-on-less-than instruction (slt) remember: slt is an arithmetic instruction produces a 1 if rs < rt and 0 otherwise use subtraction: (a-b) < 0 implies a < b Need to support test for equality (beq $t5, $t6, $t7) use subtraction: (a-b) = 0 implies a = b 16

Supporting slt Can we figure out the idea? a Binvert Operation 0 Binvert Operation 1 b 0 2 1 Result a0 b0 ALU0 Less CarryOut Result0 Less 3 a. CarryOut a1 b1 0 ALU1 Less CarryOut Result1 a Binvert Operation 0 a2 b2 0 ALU2 Less CarryOut Result2 1 b 0 2 Result Less 1 3 Set a31 b31 0 ALU31 Less Set Result31 Overflow b. Overflow detection Overflow 17

Test for equality Notice control lines: Bnegate Operation 000 = and 001 = or 010 = add 110 = subtract 111 = slt a0 b0 a1 b1 0 ALU0 Less CarryOut ALU1 Less CarryOut Result0 Result1 Zero Note: zero is a 1 when the result is zero! a2 b2 0 ALU2 Less CarryOut Result2 a31 b31 0 ALU31 Less Result31 Set Overflow 18

Conclusion We can build an ALU to support the MIPS instruction set key idea: use multiplexor to select the output we want we can efficiently perform subtraction using two s complement we can replicate a 1-bit ALU to produce a 32-bit ALU Important points about hardware all of the gates are always working the speed of a gate is affected by the number of inputs to the gate the speed of a circuit is affected by the number of gates in series (on the critical path or the deepest level of logic ) Our primary focus: comprehension, however, Clever changes to organization can improve performance (similar to using better algorithms in software) we ll look at two examples for addition and multiplication 19

Problem: ripple carry adder is slow Is a 32-bit ALU as fast as a 1-bit ALU? Is there more than one way to do addition? two extremes: ripple carry and sum-of-products Can you see the ripple? How could you get rid of it? c 1 = b 0 c 0 + a 0 c 0 +a 0 b 0 c 2 = b 1 c 1 + a 1 c 1 +a 1 b 1 c 2 = c 3 = b 2 c 2 + a 2 c 2 +a 2 b 2 c 3 = c 4 = b 3 c 3 + a 3 c 3 +a 3 b 3 c 4 = Not feasible! Why? 20

Carry-lookahead adder An approach in-between our two extremes Motivation: If we didn't know the value of carry-in, what could we do? When would we always generate a carry? g i = a i b i When would we propagate the carry? p i = a i + b i Did we get rid of the ripple? c 1 = g 0 + p 0 c 0 c 2 = g 1 + p 1 c 1 c 2 = c 3 = g 2 + p 2 c 2 c 3 = c 4 = g 3 + p 3 c 3 c 4 = Feasible! Why? 21

Use principle to build bigger adders a0 b0 a1 b1 a2 b2 a3 b3 ALU0 P0 G0 C1 pi gi ci + 1 Result0--3 Carry-lookahead unit a4 b4 a5 b5 a6 b6 a7 b7 ALU1 P1 G1 C2 pi + 1 gi + 1 ci + 2 Result4--7 Can t build a 16 bit adder this way... (too big) Could use ripple carry of 4-bit CLA adders Better: use the CLA principle again! a8 b8 a9 b9 a10 b10 a11 b11 ALU2 P2 G2 C3 pi + 2 gi + 2 ci + 3 Result8--11 a12 b12 a13 b13 a14 b14 a15 b15 ALU3 P3 G3 C4 pi + 3 gi + 3 ci + 4 Result12--15 CarryOut 22

Multiplication More complicated than addition accomplished via shifting and addition More time and more area Let's look at 3 versions based on gradeschool algorithm 0010 (multiplicand) x_1011 (multiplier) Negative numbers: convert and multiply there are better techniques, we won t look at them 23

Multiplication: Implementation Start Multiplicand Shift left Multiplier0 = 1 1. Test Multiplier0 Multiplier0 = 0 64 bits 64-bit ALU Multiplier Shift right 32 bits 1a. Add multiplicand to product and place the result in Product register Product 64 bits Write Control test 2. Shift the Multiplicand register left 1 bit 3. Shift the Multiplier register right 1 bit 32nd repetition? No: < 32 repetitions Yes: 32 repetitions Done 24

Second Version Start Multiplicand Multiplier0 = 1 1. Test Multiplier0 Multiplier0 = 0 32 bits 32-bit ALU Multiplier Shift right 32 bits 1a. Add multiplicand to the left half of the product and place the result in the left half of the Product register Product Shift right Write Control test 64 bits 2. Shift the Product register right 1 bit 3. Shift the Multiplier register right 1 bit 32nd repetition? No: < 32 repetitions Yes: 32 repetitions Done 25

Final Version Start Multiplicand Product0 = 1 1. Test Product0 Product0 = 0 32 bits 32-bit ALU 1a. Add multiplicand to the left half of the product and place the result in the left half of the Product register Product Shift right Write Control test 64 bits 2. Shift the Product register right 1 bit 32nd repetition? No: < 32 repetitions Yes: 32 repetitions Done 26

Floating Point (a brief look) We need a way to represent numbers with fractions, e.g., 3.1416 very small numbers, e.g.,.000000001 very large numbers, e.g., 3.15576 10 9 Representation: sign, exponent, significand: ( 1) sign significand 2 exponent more bits for significand gives more accuracy more bits for exponent increases range IEEE 754 floating point standard: single precision: 8 bit exponent, 23 bit significand double precision: 11 bit exponent, 52 bit significand 27

IEEE 754 floating-point standard Leading 1 bit of significand is implicit Exponent is biased to make sorting easier all 0s is smallest exponent all 1s is largest bias of 127 for single precision and 1023 for double precision summary: ( 1) sign (1+significand) 2exponent bias Example: decimal: -.75 = -3/4 = -3/2 2 binary: -.11 = -1.1 x 2-1 floating point: exponent = 126 = 01111110 IEEE single precision: 10111111010000000000000000000000 28

Floating Point Complexities Operations are somewhat more complicated (see text) In addition to overflow we can have underflow Accuracy can be a big problem IEEE 754 keeps two extra bits, guard and round four rounding modes positive divided by zero yields infinity zero divide by zero yields not a number other complexities Implementing the standard can be tricky Not using the standard can be even worse see text for description of 80x86 and Pentium bug! 29

Chapter Four Summary Computer arithmetic is constrained by limited precision Bit patterns have no inherent meaning but standards do exist two s complement IEEE 754 floating point Computer instructions determine meaning of the bit patterns Performance and accuracy are important so there are many complexities in real machines (i.e., algorithms and implementation). We are ready to move on (and implement the processor) you may want to look back (Section 4.12 is great reading!) 30