15 213 The Class That Gives CMU Its Zip Bits and Bytes Aug 31 2000 Topics Why bits Representing information as bits Binary Hexadecimal Byte representations numbers characters and strings Instructions Bit level manipulations Boolean algebra Expressing in C class02 ppt CS 213 F 00 Wh y Base 10 Number Representation as digits That s why fingers are known Don Natural representation for financial transactions texactly represent 1 20 Floating point number cannot Even carries through in scientific notation Co 1 5213 X 10 mp Implementing Electronically Hard to store uter ENIAC First electronic computer used 10 vacuum tubes digit s Hard to transmit 10 signal levels on single wire Need high precision to encode Use Messy to implement digital logic functions Bas Addition multiplication etc e 10 4 class02 ppt 2 CS 213 F 00 Binary Representations Base 2 Number Representation Represent 1521310 as 111011011011012 Represent 1 2010 as 1 0011001100110011 0011 2 Represent 1 5213 X 104 as 1 11011011011012 X 213 Electronic Implementation Easy to store with bistable elements Reliably transmitted on noisy and inaccurate wires 0 1 0 3 3V 2 8V 0 5V 0 0V Straightforward implementation of arithmetic functions class02 ppt 3 CS 213 F 00 Byt ePrograms Refer to Virtual Addresses of bytes Conceptually very large array Orie Actually implemented with hierarchy of different memory types nte SRAM DRAM disk Only allocate for regions actually used by program d In Unix and Windows NT address space private to particular process Me Program being executed mor data but not that of others Program can clobber its own Compiler Run Time System y Control Allocation Where different program objects should be stored Org Multiple mechanisms static stack and heap single virtual address space In any case all allocation within aniz atio n class02 ppt 4 CS 213 F 00 Encoding Byte Values Byte 8 bits Binary Decimal 000000002 to 111111112 010 to 25510 to FF16 Hexadecimal 0016 Base 16 number representation Use characters 0 to 9 and A to F Write FA1D37B16 in C as 0xFA1D37B Or 0xfa1d37b class02 ppt 5 al y im ar c x n He De Bi 0 0 0000 1 1 0001 2 2 0010 3 3 0011 4 4 0100 5 5 0101 6 6 0110 7 7 0111 8 8 1000 9 9 1001 A 10 1010 B 11 1011 C 12 1100 D 13 1101 E 14 1110 F 15 1111 CS 213 F 00 Machine Words Machine Has Word Size Nominal size of integer valued data Including addresses Most current machines are 32 bits 4 bytes Limits addresses to 4GB Becoming too small for memory intensive applications High end systems are 64 bits 8 bytes Potentially address 1 8 X 1019 bytes Machines support multiple data formats Fractions or multiples of word size Always integral number of bytes class02 ppt 6 CS 213 F 00 Word Oriented Memory Organization 32 bit 64 bit Words Words Addr 0000 Addresses Specify Byte Locations Address of first byte in word Addresses of successive words differ by 4 32 bit or 8 64 bit Addr 0004 Addr 0008 Addr 0012 class02 ppt 7 Addr 0000 Addr 0008 Bytes Addr 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 0010 0011 0012 0013 0014 0015 CS 213 F 00 Data Representations Sizes of C Objects in Bytes C Data Type Compaq Alpha Typical 32 bit int 4 4 long int 8 4 char 1 1 short 2 2 float 4 4 double 8 8 long double 8 8 char 8 4 Or any other pointer class02 ppt 8 Intel IA32 4 4 1 2 4 8 10 12 4 CS 213 F 00 Byte Ordering Issue How should bytes within multi byte word be ordered in memory Conventions Alphas PC s are Little Endian machines Least significant byte has lowest address Sun s Mac s are Big Endian machines Least significant byte has highest address Example Variable x has 4 byte representation 0x01234567 Address given by x is 0x100 Big Endian 0x100 0x101 0x102 0x103 01 Little Endian 45 67 0x100 0x101 0x102 0x103 67 class02 ppt 23 45 9 23 01 CS 213 F 00 Examining Data Representations Code to Print Byte Representation of Data Casting pointer to unsigned char creates byte array typedef unsigned char pointer void show bytes pointer start int len int i for i 0 i len i printf 0x p t0x 2x n start i start i printf n Printf directives p Print pointer x Print Hexadecimal class02 ppt 10 CS 213 F 00 show bytes Execution Example int a 15213 printf int a 15213 n show bytes pointer a sizeof int Result int a 15213 class02 ppt 0x11ffffcb8 0x6d 0x11ffffcb9 0x3b 0x11ffffcba 0x00 0x11ffffcbb 0x00 11 CS 213 F 00 Representing Integers Decimal 15213 int A 15213 int B 15213 long int C 15213 Binary 0011 1011 0110 1101 Hex 3 B 6 Alpha A Sun A Alpha C Sun C 6D 3B 00 00 00 00 3B 6D 00 00 3B 6D Alpha B Sun B 93 C4 FF FF FF FF C4 93 6D 3B 00 00 00 00 00 00 class02 ppt D Two s complement representation Covered next lecture 12 CS 213 F 00 Representing Pointers Alpha P int B 15213 int P B Alpha Address Hex 1 Binary F F F F F C A 0 0001 1111 1111 1111 1111 1111 1100 1010 0000 A0 FC FF FF 01 00 00 00 Sun P EF FF FB 2C Sun Address Hex Binary 1100 E F F F F B 2 C 1110 1111 1111 1111 1111 1011 0010 Different compilers machines assign different locations to objects class02 ppt 13 CS 213 F 00 Representing Floats Float F 15213 0 Alpha F Sun F 00 B4 6D 46 46 6D B4 00 IEEE Single Precision Floating Point Representation Hex Binary 0000 15213 4 6 6 D B 4 0 0 0100 0110 0110 1101 1011 0100 0000 1110 1101 1011 01 Not same as integer representation but consistent across machines class02 ppt 14 CS 213 F 00 Strings in C Representing Strings char Represented by array of characters Each character encoded in ASCII format Standard 7 bit encoding of character set Other encodings exist but uncommon Character 0 has code 0x30 Digit i has code 0x30 i String should be null terminated Final character 0 Compatibility S 6 15213 Alpha S Sun S 31 35 32 31 33 00 31 35 32 31 33 00 Byte ordering not an issue Data are single byte quantities Text files generally platform independent Except for different conventions of line termination character class02 ppt 15 CS 213 F 00 Mac hineof Instructions Encode Program as Sequence Each simple operation Arithmetic operation Lev Read or write memory Conditional branch el Instructions encoded as bytes 4 byte instructions Alpha s Sun s Mac s useCod Reduced Instruction Set Computer RISC e PC s use variable length instructions Computer CISC Complex Instruction Set Rep Different instruction types and encodings for different machines res Most code not binary compatible ent Too Programs are Byte Sequences atio n class02 ppt 16 CS 213 F 00 Representing Instructions …
View Full Document