15 213 The Class That Gives CMU Its Zip Bits and Bytes Jan 18 2001 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 S 01 Why Don t Computers Use Base 10 Base 10 Number Representation That s why fingers are known as digits Natural representation for financial transactions Floating point number cannot exactly represent 1 20 Even carries through in scientific notation 1 5213 X 104 Implementing Electronically Hard to store ENIAC First electronic computer used 10 vacuum tubes digit Hard to transmit Need high precision to encode 10 signal levels on single wire Messy to implement digital logic functions Addition multiplication etc class02 ppt 2 CS 213 S 01 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 S 01 Byte Oriented Memory Organization Programs Refer to Virtual Addresses Conceptually very large array of bytes Actually implemented with hierarchy of different memory types SRAM DRAM disk Only allocate for regions actually used by program In Unix and Windows NT address space private to particular process Program being executed Program can clobber its own data but not that of others Compiler Run Time System Control Allocation Where different program objects should be stored Multiple mechanisms static stack and heap In any case all allocation within single virtual address space class02 ppt 4 CS 213 S 01 Encoding Byte Values Byte 8 bits Binary 000000002 to 111111112 to Decimal 010 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 x ecim inar e H D B 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 S 01 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 S 01 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 0000 Addr 0004 Addr 0008 Addr 0012 class02 ppt 7 Addr 0008 Bytes Addr 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 0010 0011 0012 0013 0014 0015 CS 213 S 01 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 char 8 4 Or any other pointer class02 ppt 8 CS 213 S 01 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 0x1234567 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 23 9 01 CS 213 S 01 Examining Data Representations Code to Print Byte Representation of Data Cast 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 S 01 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 S 01 Representing Integers int A 15213 int B 15213 long int C 15213 Decimal 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 S 01 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 E F F F F B 2 C 1110 1111 1111 1111 1111 1011 0010 1100 Different compilers machines assign different locations to objects class02 ppt 13 CS 213 S 01 Representing Floats Alpha F Sun F 00 B4 6D 46 46 6D B4 00 Float F 15213 0 IEEE Single Precision Floating Point Representation Hex Binary 4 6 6 D B 4 0 0 0100 0110 0110 1101 1011 0100 0000 0000 15213 1110 1101 1011 01 Not same as integer representation but consistent across machines class02 ppt 14 CS 213 S 01 Representing Strings char S 6 15213 Strings in C 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 Alpha S Sun S 31 35 32 31 33 00 31 35 32 31 33 00 Compatibility 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 S 01 Machine Level Code Representation Encode Program as Sequence of Instructions Each simple operation Arithmetic operation Read or write memory Conditional branch Instructions encoded as bytes Alpha s Sun s Mac s use 4 byte instructions Reduced Instruction Set Computer RISC PC s use variable length instructions Complex Instruction Set Computer CISC Different instruction types and encodings for different machines Most code not binary compatible Programs are Byte Sequences Too class02 ppt 16 CS 213 S 01 Representing Instructions Alpha sum int sum int x int y return x y 00 00 30 42 01 80 FA 6B For this example Alpha Sun use two 4 byte instructions Use differing numbers of …
View Full Document