Integers Sep 3, 2002

Similar documents
Systems 1. Integers. Unsigned & Twoʼs complement. Addition, negation, multiplication

Integers. Dr. Steve Goddard Giving credit where credit is due

Topics of this Slideset. CS429: Computer Organization and Architecture. Encoding Integers: Unsigned. C Puzzles. Integers

CS429: Computer Organization and Architecture

Integers. Today. Next time. ! Numeric Encodings! Programming Implications! Basic operations. ! Floats

Integer Arithmetic. CS 347 Lecture 03. January 20, 1998

Bits, Bytes, and Integers August 26, 2009

Page # CISC360. Integers Sep 11, Encoding Integers Unsigned. Encoding Example (Cont.) Topics. Twoʼs Complement. Sign Bit

Systems Programming and Computer Architecture ( )

CS 33. Data Representation, Part 2. CS33 Intro to Computer Systems VII 1 Copyright 2018 Thomas W. Doeppner. All rights reserved.

CS 33. Data Representation, Part 2. CS33 Intro to Computer Systems VIII 1 Copyright 2017 Thomas W. Doeppner. All rights reserved.

Computer Systems CEN591(502) Fall 2011

C Puzzles! Taken from old exams. Integers Sep 3, Encoding Integers Unsigned. Encoding Example (Cont.) The course that gives CMU its Zip!

Bits, Bytes, and Integers

Representa7on of integers: unsigned and signed Conversion, cas7ng Expanding, trunca7ng Addi7on, nega7on, mul7plica7on, shiaing

Bits, Bytes, and Integers Part 2

CS140 Lecture 08: Data Representation: Bits and Ints. John Magee 13 February 2017

Representing and Manipulating Integers. Jo, Heeseung

Carnegie Mellon. Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

Page 1 CISC360. Encoding Integers Unsigned. Integers Sep 8, Numeric Ranges. Encoding Example (Cont.)

CS 270: Computer Organization. Integer Arithmetic Operations

But first, encode deck of cards. Integer Representation. Two possible representations. Two better representations WELLESLEY CS 240 9/8/15

Integer Encoding and Manipulation

Jin-Soo Kim Systems Software & Architecture Lab. Seoul National University. Integers. Spring 2019

Bits, Bytes and Integers Part 1

Lecture 5-6: Bits, Bytes, and Integers

Foundations of Computer Systems

Manipulating Integers

Arithmetic and Bitwise Operations on Binary Data

C Puzzles The course that gives CMU its Zip! Integer Arithmetic Operations Jan. 25, Unsigned Addition. Visualizing Integer Addition

Arithmetic and Bitwise Operations on Binary Data

Computer Organization: A Programmer's Perspective

Representing Integers. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

ICS Instructor: Aleksandar Kuzmanovic TA: Ionut Trestian Recitation 2

Representing and Manipulating Integers Part I

Bits, Bytes, and Integers

Representing Integers

Bits, Bytes, and Integers

Integers II. CSE 351 Autumn Instructor: Justin Hsia

BITS, BYTES, AND INTEGERS

Integers II. CSE 351 Autumn Instructor: Justin Hsia

Integers II. CSE 351 Autumn 2018

Bits, Bytes and Integers

Bits, Bytes, and Integers. Bits, Bytes, and Integers. The Decimal System and Bases. Everything is bits. Converting from Decimal to Binary

Floating Point Puzzles The course that gives CMU its Zip! Floating Point Jan 22, IEEE Floating Point. Fractional Binary Numbers.

Floating Point January 24, 2008

Integer Representation

Systems I. Floating Point. Topics IEEE Floating Point Standard Rounding Floating Point Operations Mathematical properties

Floating Point Puzzles. Lecture 3B Floating Point. IEEE Floating Point. Fractional Binary Numbers. Topics. IEEE Standard 754

Chapter 2 Float Point Arithmetic. Real Numbers in Decimal Notation. Real Numbers in Decimal Notation

Bits, Bytes, and Integer

System Programming CISC 360. Floating Point September 16, 2008

Bits and Bytes: Data Presentation Mohamed Zahran (aka Z)

Giving credit where credit is due

Giving credit where credit is due

Bitwise Data Manipulation. Bitwise operations More on integers

Floating Point Puzzles. Lecture 3B Floating Point. IEEE Floating Point. Fractional Binary Numbers. Topics. IEEE Standard 754

The course that gives CMU its Zip! Floating Point Arithmetic Feb 17, 2000

Integer Representation Floating point Representation Other data types

CS429: Computer Organization and Architecture

CS367 Test 1 Review Guide

Simple Data Types in C. Alan L. Cox

Module 2: Computer Arithmetic

Floating-Point Data Representation and Manipulation 198:231 Introduction to Computer Organization Lecture 3

Floating Point. CSE 238/2038/2138: Systems Programming. Instructor: Fatma CORUT ERGİN. Slides adapted from Bryant & O Hallaron s slides

Programming in C++ 5. Integral data types

Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition. Carnegie Mellon

Floating point. Today. IEEE Floating Point Standard Rounding Floating Point Operations Mathematical properties Next time.

Floating Point : Introduction to Computer Systems 4 th Lecture, May 25, Instructor: Brian Railing. Carnegie Mellon

Foundations of Computer Systems

Chapter 4. Operations on Data

Today: Floating Point. Floating Point. Fractional Binary Numbers. Fractional binary numbers. bi bi 1 b2 b1 b0 b 1 b 2 b 3 b j

Kinds Of Data CHAPTER 3 DATA REPRESENTATION. Numbers Are Different! Positional Number Systems. Text. Numbers. Other

Arithmetic Processing

Lecture 8: Addition, Multiplication & Division

Module 2 - Part 2 DATA TYPES AND EXPRESSIONS 1/15/19 CSE 1321 MODULE 2 1

COMP 122/L Lecture 2. Kyle Dewey

Floating point. Today! IEEE Floating Point Standard! Rounding! Floating Point Operations! Mathematical properties. Next time. !

Semester Transition Point. EE 109 Unit 11 Binary Arithmetic. Binary Arithmetic ARITHMETIC

Bits, Bytes, and Integers. Data Representa+on: Base- 2 number representa+on. Binary Representa+ons. Encoding Byte Values. Example Data Representa+ons

COMP2611: Computer Organization. Data Representation

CS 261 Fall Mike Lam, Professor Integer Encodings

Floating Point Numbers

Floating Point Numbers

CS61B Lecture #14: Integers. Last modified: Wed Sep 27 15:44: CS61B: Lecture #14 1

CHW 261: Logic Design

REMEMBER TO REGISTER FOR THE EXAM.

Computer Architecture and System Software Lecture 02: Overview of Computer Systems & Start of Chapter 2

Computer Organization: A Programmer's Perspective

CS61B Lecture #14: Integers

Floating Point. CSE 351 Autumn Instructor: Justin Hsia

Le L c e t c ur u e e 2 To T p o i p c i s c t o o b e b e co c v o e v r e ed e Variables Operators

Arithmetic Operators. Portability: Printing Numbers

CS 107 Lecture 3: Integer Representations

Floating Point (with contributions from Dr. Bin Ren, William & Mary Computer Science)

CO212 Lecture 10: Arithmetic & Logical Unit

Chapter 2. Positional number systems. 2.1 Signed number representations Signed magnitude

Systems Programming and Computer Architecture ( )

EE 109 Unit 6 Binary Arithmetic

Overview of C. Basic Data Types Constants Variables Identifiers Keywords Basic I/O

Transcription:

15-213 The course that gives CMU its Zip! Topics Numeric Encodings Unsigned & Two s complement Programming Implications C promotion rules Basic operations Integers Sep 3, 2002 Addition, negation, multiplication Programming Implications Consequences of overflow Using shifts to perform power-of-2 multiply/divide class03.ppt 15-213 F 02

C Puzzles Taken from old exams Assume machine with 32 bit word size, two s complement integers For each of the following C expressions, either: Argue that is true for all argument values Give example where not true x < 0 ((x*2) < 0) Initialization int x = foo(); int y = bar(); unsigned ux = x; unsigned uy = y; ux >= 0 x & 7 == 7 (x<<30) < 0 ux > -1 x > y -x < -y x * x >= 0 x > 0 && y > 0 x + y > 0 x >= 0 -x <= 0 x <= 0 -x >= 0 2 15-213, F 02

Encoding Integers Unsigned w 1 B2U(X) = x i 2 i i=0 Two s Complement w 2 B2T(X) = x w 1 2 w 1 + x i 2 i i=0 short int x = 15213; short int y = -15213; C short 2 bytes long Sign Bit DecimalHexBinaryx Sign Bit For 2 s complement, most significant bit indicates sign 0 for nonnegative 1 for negative 3 15-213, F 02

Encoding Example (Cont.) x = 15213: 00111011 01101101 y = -15213: 11000100 10010011 Weight15213-15213 4 15-213, F 02

Numeric Ranges Unsigned Values UMin = 0 000 0 UMax = 2 w 1 111 1 Values for W = 16 DecimalHexBinaryUMax Two s s Complement Values TMin = 2 w 1 100 0 TMax = 2 w 1 1 011 1 Other Values Minus 1 111 1 5 15-213, F 02

Values for Different Word Sizes W8163264 Observations TMin = TMax + 1 Asymmetric range UMax = 2 * TMax + 1 C Programming #include <limits.h> K&R App. B11 Declares constants, e.g., ULONG_MAX LONG_MAX LONG_MIN Values platform-specific 6 15-213, F 02

Unsigned & Signed Numeric Values X B2U(X) B2T(X) 0000 0 0 0001 1 1 0010 2 2 0011 3 3 0100 4 4 0101 5 5 0110 6 6 0111 7 7 1000 8 8 1001 9 7 1010 10 6 1011 11 5 1100 12 4 1101 13 3 1110 14 2 1111 15 1 Equivalence Same encodings for nonnegative values Uniqueness Every bit pattern represents unique integer value Each representable integer has unique bit encoding Can Invert Mappings U2B(x) = B2U -1 (x) Bit pattern for unsigned integer T2B(x) = B2T -1 (x) Bit pattern for two s comp integer 7 15-213, F 02

Casting Signed to Unsigned C Allows Conversions from Signed to Unsigned short int x = 15213; unsigned short int ux = (unsigned short) x; short int y = -15213; unsigned short int uy = (unsigned short) y; Resulting Value No change in bit representation Nonnegative values unchanged ux = 15213 Negative values change into (large) positive values uy = 50323 8 15-213, F 02

Relation between Signed & Unsigned Two s Complement x T2B T2U X B2U Unsigned ux Maintain Same Bit Pattern - ux x w 1 0 + + + + + + - + + + + + +2 w 1 2 w 1 = 2*2 w 1 = 2 w ux = x x 0 x + 2 w x < 0 9 15-213, F 02

Relation Between Signed & Unsigned Weight-1521350323 uy = y + 2 * 32768 = y + 65536 10 15-213, F 02

Signed vs. Unsigned in C Constants By default are considered to be signed integers Unsigned if have U as suffix 0U, 4294967259U Casting Explicit casting between signed & unsigned same as U2T and T2U int tx, ty; unsigned ux, uy; tx = (int) ux; uy = (unsigned) ty; Implicit casting also occurs via assignments and procedure calls tx = ux; uy = ty; 11 15-213, F 02

Casting Surprises Expression Evaluation If mix unsigned and signed in single expression, signed values implicitly cast to unsigned Including comparison operations <, >, ==, <=, >= Examples for W = 32 Constant 1 Constant 2 Relation Evaluation 0 0U == unsigned -1 0 < signed -1 0U > unsigned 2147483647-2147483648 > signed 2147483647U -2147483648 < unsigned -1-2 > signed (unsigned) -1-2 > unsigned 2147483647 2147483648U < unsigned 2147483647 (int) 2147483648U > signed 12 15-213, F 02

Explanation of Casting Surprises 2 s s Comp. Unsigned Ordering Inversion Negative Big Positive UMax UMax 1 TMax TMax + 1 TMax Unsigned Range 2 s Comp. Range 0 1 2 0 TMin 13 15-213, F 02

Sign Extension Task: Rule: Given w-bit signed integer x Convert it to w+k-bit integer with same value Make k copies of sign bit: X = x w 1,, x w 1, x w 1, x w 2,, x 0 k copies of MSB X w X k 14 15-213, F 02 w

Sign Extension Example short int x = 15213; int ix = (int) x; short int y = -15213; int iy = (int) y; Decimal Hex Binary x 15213 3B 6D 00111011 01101101 ix 15213 00 00 3B 6D 00000000 00000000 00111011 01101101 y -15213 C4 93 11000100 10010011 iy -15213 FF FF C4 93 11111111 11111111 11000100 10010011 Converting from smaller to larger integer data type C automatically performs sign extension 15 15-213, F 02

Justification For Sign Extension Prove Correctness by Induction on k Induction Step: extending by single bit maintains value w X - X - + w+1 Key observation: 2 w 1 = 2 w +2 w 1 Look at weight of upper bits: X 2 w 1 x w 1 X 2 w x w 1 + 2 w 1 x w 1 = 2 w 1 x w 1 16 15-213, F 02

Why Should I Use Unsigned? Don t Use Just Because Number Nonzero C compilers on some machines generate less efficient code unsigned i; for (i = 1; i < cnt; i++) a[i] += a[i-1]; Easy to make mistakes for (i = cnt-2; i >= 0; i--) a[i] += a[i+1]; Do Use When Performing Modular Arithmetic Multiprecision arithmetic Other esoteric stuff Do Use When Need Extra Bit s s Worth of Range Working right up to limit of word size 17 15-213, F 02

Negating with Complement & Increment Claim: Following Holds for 2 s 2 s Complement ~x + 1 == -x Complement Observation: ~x + x == 1111 11 2 == -1 + x ~x 1 0 0 1 1 1 0 1 0 1 1 0 0 0 1 0 Increment ~x + x + (-x + 1) == -1 + (-x + 1) ~x + 1 == -x Warning: Be cautious treating int s as integers 18 15-213, F 02 OK here -1 1 1 1 1 1 1 1 1

Comp. & Incr. Examples x = 15213 lhexbinaryx 0 DecimalHexBinary0 ~0 19 15-213, F 02

Unsigned Addition Operands: w bits True Sum: w+1 bits u + v u + v Discard Carry: w bits UAdd w (u, v) Standard Addition Function Ignores carry output Implements Modular Arithmetic s = UAdd w (u, v) = u + v mod 2 w UAdd w (u,v) = u + v u + v 2 w u + v < 2 w u + v 2 w 20 15-213, F 02

Visualizing Integer Addition Integer Addition Add 4 (u, v) 4-bit integers u, v Integer Addition Compute true sum Add 4 (u, v) Values increase linearly with u and v Forms planar surface 32 28 24 20 16 12 8 4 0 0 2 u 4 6 8 10 12 14 0 2 4 6 8 v 10 12 14 21 15-213, F 02

Visualizing Unsigned Addition Wraps Around If true sum 2 w At most once UAdd 4 (u, v) Overflow True Sum 2 w+1 Overflow 16 14 12 2 w 0 Modular Sum 10 8 6 4 2 0 0u 2 4 6 8 10 12 14 0 2 4 6 8 10 12 v 14 22 15-213, F 02

Mathematical Properties Modular Addition Forms an Abelian Group Closed under addition 0 UAdd w (u, v) 2 w 1 Commutative UAdd w (u, v) = UAdd w (v, u) Associative UAdd w (t, UAdd w (u, v)) = UAdd w (UAdd w (t, u ), v) 0 is additive identity UAdd w (u, 0) = u Every element has additive inverse Let UComp w (u ) = 2 w u UAdd w (u, UComp w (u )) = 0 23 15-213, F 02

Two s Complement Addition Operands: w bits + u v True Sum: w+1 bits u + v Discard Carry: w bits TAdd w (u, v) TAdd and UAdd have Identical Bit-Level Behavior Signed vs. unsigned addition in C: int s, t, u, v; s = (int) ((unsigned) u + (unsigned) v); t = u + v Will give s == t 24 15-213, F 02

Characterizing TAdd Functionality True sum requires w+1 bits Drop off MSB Treat remaining bits as 2 s comp. integer 0 111 1 0 100 0 0 000 0 True Sum 2 w 1 2 w 1 0 PosOver TAdd Result 011 1 000 0 TAdd(u, v) PosOver 1 100 0 2 w 1 100 0 > 0 v < 0 < 0 > 0 u NegOver 1 000 0 2 w u + v + 2 w 1 TAdd w (u,v) = u + v u + v 2 w 1 NegOver u + v < TMin w (NegOver) TMin w u + v TMax w TMax w < u + v (PosOver) 25 15-213, F 02

Visualizing 2 s Comp. Addition NegOver Values 4-bit two s comp. -8-6 -4-2 0 2 4 6 TAdd 4 (u, v) Range from -8 to +7 Wraps Around If sum 2 w 1 Becomes negative At most once If sum < 2 w 1 Becomes positive At most once 8 6 4 2 0-2 -4-6 -8 u -8-6 -4-2 0 v 6 4 2 PosOver 26 15-213, F 02

Detecting 2 s Comp. Overflow Task Given s = TAdd w (u, v) Determine if s = Add w (u, v) Example int s, u, v; s = u + v; 2 w 1 2 w 1 0 PosOver Claim Overflow iff either: u, v < 0, s 0 (NegOver) u, v 0, s < 0 (PosOver) NegOver ovf = (u<0 == v<0) && (u<0!= s<0); 27 15-213, F 02

Mathematical Properties of TAdd Isomorphic Algebra to UAdd TAdd w (u, v) = U2T(UAdd w (T2U(u ), T2U(v))) Since both have identical bit patterns Two s s Complement Under TAdd Forms a Group Closed, Commutative, Associative, 0 is additive identity Every element has additive inverse Let TComp w (u ) = U2T(UComp w (T2U(u )) TAdd w (u, TComp w (u )) = 0 TComp w (u) = u TMin w u TMin w u = TMin w 28 15-213, F 02

Multiplication Computing Exact Product of w-bit numbers x, y Either signed or unsigned Ranges Unsigned: 0 x * y (2 w 1) 2 = 2 2w 2 w+1 + 1 Up to 2w bits Two s complement min: x * y ( 2 w 1 )*(2 w 1 1) = 2 2w 2 + 2 w 1 Up to 2w 1 bits Two s complement max: x * y ( 2 w 1 ) 2 = 2 2w 2 Up to 2w bits, but only for (TMin w ) 2 Maintaining Exact Results Would need to keep expanding word size with each product computed Done in software by arbitrary precision arithmetic packages 29 15-213, F 02

Unsigned Multiplication in C Operands: w bits * u v True Product: 2*w bits u v Discard w bits: w bits UMult w (u, v) Standard Multiplication Function Ignores high order w bits Implements Modular Arithmetic UMult w (u, v) = u v mod 2 w 30 15-213, F 02

Unsigned vs. Signed Multiplication Unsigned Multiplication unsigned ux = (unsigned) x; unsigned uy = (unsigned) y; unsigned up = ux * uy Truncates product to w-bit number up = UMult w (ux, uy) Modular arithmetic: up = ux uy mod 2 w Two s s Complement Multiplication int x, y; int p = x * y; Compute exact product of two w-bit numbers x, y Truncate result to w-bit number p = TMult w (x, y) 31 15-213, F 02

Unsigned vs. Signed Multiplication Unsigned Multiplication unsigned ux = (unsigned) x; unsigned uy = (unsigned) y; unsigned up = ux * uy Two s s Complement Multiplication Relation int x, y; int p = x * y; Signed multiplication gives same bit-level result as unsigned up == (unsigned) p 32 15-213, F 02

Power-of-2 Multiply with Shift Operation u << k gives u * 2 k Both signed and unsigned Operands: w bits * u 2 k k 0 0 1 0 0 0 True Product: w+k bits u 2 k 0 0 0 Discard k bits: w bits UMult w (u, 2 k ) Examples u << 3 == u * 8 TMult w (u, 2 k ) u << 5 - u << 3 == u * 24 Most machines shift and add much faster than multiply Compiler generates this code automatically 0 0 0 33 15-213, F 02

Unsigned Power-of-2 Divide with Shift Quotient of Unsigned by Power of 2 u >> k gives u / 2 k Uses logical shift Operands: / u 2 k k 0 0 1 0 0 0 Binary Point Division: u / 2 k 0. Result: u / 2 k 0 DivisionComputedHexBinaryx x > 34 15-213, F 02

Signed Power-of-2 Divide with Shift Quotient of Signed by Power of 2 x >> k gives x / 2 k Uses arithmetic shift Rounds wrong direction when u < 0 k x Operands: / 2 k 0 0 1 0 0 0 Binary Point Division: x / 2 k 0. Result: RoundDown(x / 2 k ) 0 DivisionComputedHexBinaryy y 35 15-213, F 02

Correct Power-of-2 Divide Quotient of Negative Number by Power of 2 Want x / 2 k (Round Toward 0) Compute as (x+2 k -1)/ 2 k In C: (x + (1<<k)-1) >> k Biases dividend toward 0 Case 1: No rounding Dividend: u k 1 0 0 0 +2 k + 1 0 0 0 1 1 1 1 1 1 1 Binary Point Divisor: / 2 k 0 0 1 0 0 0 u / 2 k 01 1 1 1. 1 1 1 Biasing has no effect 36 15-213, F 02

Correct Power-of-2 Divide (Cont.) Case 2: Rounding Dividend: x k 1 +2 k + 1 0 0 0 1 1 1 1 Incremented by 1 Binary Point Divisor: / 2 k 0 0 1 0 0 0 x / 2 k 01 1 1 1. Biasing adds 1 to final result Incremented by 1 37 15-213, F 02

Properties of Unsigned Arithmetic Unsigned Multiplication with Addition Forms Commutative Ring Addition is commutative group Closed under multiplication 0 UMult w (u, v) 2 w 1 Multiplication Commutative UMult w (u, v) = UMult w (v, u) Multiplication is Associative UMult w (t, UMult w (u, v)) = UMult w (UMult w (t, u ), v) 1 is multiplicative identity UMult w (u, 1) = u Multiplication distributes over addtion UMult w (t, UAdd w (u, v)) = UAdd w (UMult w (t, u ), UMult w (t, v)) 38 15-213, F 02

Properties of Two s Comp. Arithmetic Isomorphic Algebras Unsigned multiplication and addition Truncating to w bits Two s complement multiplication and addition Truncating to w bits Both Form Rings Isomorphic to ring of integers mod 2 w Comparison to Integer Arithmetic Both are rings Integers obey ordering properties, e.g., u > 0 u + v > v u > 0, v > 0 u v > 0 These properties are not obeyed by two s comp. arithmetic TMax + 1 == TMin 15213 * 30426 == -10030 (16-bit words) 39 15-213, F 02

C Puzzle Answers Assume machine with 32 bit word size, two s comp. integers TMin makes a good counterexample in many cases x < 0 ((x*2) < 0) False: TMin ux >= 0 True: 0 = UMin x & 7 == 7 (x<<30) < 0 True: x 1 = 1 ux > -1 False: 0 x > y -x < -y False: -1, TMin x * x >= 0 False: 30426 x > 0 && y > 0 x + y > 0 False: TMax, TMax x >= 0 -x <= 0 True: TMax < 0 x <= 0 -x >= 0 False: TMin 40 15-213, F 02