Lec 1Systems Architecture1 Systems Architecture Lecture 1: Random Access Machines Jeremy R. Johnson Anatole D. Ruslanov William M. Mongan Some material.

Slides:



Advertisements
Similar presentations
Code Optimization and Performance Chapter 5 CS 105 Tour of the Black Holes of Computing.
Advertisements

INSTRUCTION SET ARCHITECTURES
Carnegie Mellon Course Overview Computer Systems Organization (Fall 2014) Section 001 (Honors) and Section 002 (Regular) Professor Andrew Case Teaching.
CSCE 3121 Computer Organization Lecture 1. CSCE 3122 Course Overview Topics: –Theme –Five great realities of computer systems –Computer System Overview.
Computer Systems & Programming (CS 367) Section 002: Prof. Elizabeth White Spring 2010.
Fall 2011SYSC 5704: Elements of Computer Systems 1 SYSC 5704 Elements of Computer Systems Optimization to take advantage of hardware.
1 Carnegie Mellon The course that gives CMU its “Zip”! Course Overview : Introduction to Computer Systems 1 st Lecture, Aug. 24, 2010 Instructors:
University of Washington The Hardware/Software Interface CSE351 Spring st Lecture, March 28 Instructor: Luis Ceze Teaching Assistants: Aaron Miller,
Introduction to Computer Systems Topics: Theme Five great realities of computer systems How this fits within CS curriculum S ‘08 class01a.ppt
CSCE 3121 Computer Organization Lecture 1 Bryant’s Book Chapter 1.
Introduction to Computer Systems Topics: Theme Five great realities of computer systems How this fits within CS curriculum CS 213 F ’03 class01a.ppt
Introduction to Computer Systems* Topics: Theme Five great realities of computer systems How this fits within CS curriculum F ’07 class01a.ppt
Chapters 4 & 5: LC-3 Computer Architecture Machine Instructions Assembly language Programming in Machine and Assembly Language.
Introduction to Computer Systems Topics: Theme Five great realities of computer systems How this fits within CS curriculum F ’04 class01a.ppt
1 CS Programming Languages Random Access Machines Jeremy R. Johnson.
An Introduction Chapter Chapter 1 Introduction2 Computer Systems  Programmable machines  Hardware + Software (program) HardwareProgram.
Lecture#14. Last Lecture Summary Memory Address, size What memory stores OS, Application programs, Data, Instructions Types of Memory Non Volatile and.
CS 270 CS 270: Computer Organization Course Overview Instructor: Professor Stephen P. Carl.
COURSE OVERVIEW COMPUTER ARCHITECTURE AND ORGANIZATION Instructor: Professor Emmett Witchel.
IT253: Computer Organization Lecture 4: Instruction Set Architecture Tonga Institute of Higher Education.
Lecture 0: Introduction EEN 312: Processors: Hardware, Software, and Interfacing Department of Electrical and Computer Engineering Fall 2012, Dr. Rozier.
Introduction to Computer Systems Topics: Theme Four great realities of computer systems Chap 1 in “Computer Systems” book “The Class That Gives.
CHAPTER 2: COMPUTER-SYSTEM STRUCTURES Computer system operation Computer system operation I/O structure I/O structure Storage structure Storage structure.
Carnegie Mellon Course Overview Computer Systems Organization (Fall 2015) Instructor: Jinyang Li.
Cosc 2150: Computer Organization
1 Carnegie Mellon The course that gives CMU its “Zip”! Course Overview (18-213): Introduction to Computer Systems 1 st Lecture, Aug. 26, 2014 Instructors:
Assembly Language and Computer Organization Topics: Theme Programming in C Great realities of computer systems How this fits within CS curriculum Logistical.
Introduction to Computer Systems Topics: Theme Five great realities of computer systems How this fits within CS curriculum Logistics intro.ppt CS 105 “Tour.
Assembly Language and Computer Organization Topics: Theme Programming in C Great realities of computer systems How this fits within CS curriculum Logistical.
Introduction to Computer Systems Topics: Theme Five great realities of computer systems How this fits within CS curriculum Logistical issues F ‘08.
Introduction to Computer Systems Topics: Theme Five great realities of computer systems (continued) “The class that bytes”
Computer Systems Overview Topics: Staff, text, and policies Lecture topics and assignments Lab rationale CS 105 “Tour of the Black Holes of Computing!”
1 Carnegie Mellon The course that gives CMU its “Zip”! Course Overview (18-213): Introduction to Computer Systems 1 st Lecture, Aug. 28, 2012 Instructors:
Kirk Scott Computer Science The University of Alaska Anchorage 1.
Introduction to Computer Systems Topics: Theme Five great realities of computer systems How this fits within CS curriculum F ’06 class01a.ppt
Computer Organization II Topics: Theme Five great realities of computer systems How this fits within CS curriculum CS 2733.
September 26, 2001Systems Architecture I1 Systems Architecture I (CS ) Lecture 2: Implementation of a Simplified Computer Jeremy R. Johnson Wednesday,
Assembly Language and Computer Organization Topics: Theme Programming in C Great realities of computer systems How this fits within CS curriculum Logistical.
Course Overview CENG331 - Computer Organization
Processor Structure and Function Chapter8:. CPU Structure  CPU must:  Fetch instructions –Read instruction from memory  Interpret instructions –Instruction.
1 Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition Carnegie Mellon Overview Course theme Five realities How the course.
Instruction Sets. Instruction set It is a list of all instructions that a processor can execute. It is a list of all instructions that a processor can.
Introduction to Computer Systems Class “The Class That Gives CMU Its Zip!” Randal E. Bryant August 30, 2005.
Jeremy R. Johnson William M. Mongan
1 Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition Carnegie Mellon Course Overview Introduction to Computer Systems 1.
Chapter 2: Computer-System Structures
Course Overview CSE 238/2038/2138: Systems Programming
The course that gives CMU its “Zip”!
William Stallings Computer Organization and Architecture 8th Edition
Computer Systems & Programming (CS 367)
Course Overview CSCI 2400/ ECE 3217: Computer Architecture
Course Overview CENG331 - Computer Organization
Computer Systems: A Programmer’s Perspective aka: CS:APP
William Stallings Computer Organization and Architecture 8th Edition
Assembly Language and Computer Organization
Assembly Language and Computer Organization
Introduction to Computer Systems
Programming Languages (CS 550) Mini Language Compiler
Systems Architecture I (CS ) Lecture 1: Random Access Machines
Introduction to Computer Systems
Systems Architecture I (CS ) Lecture 2: A Simplified Computer
Introduction to Computer Systems
Introduction to Computer Systems
Overview Course theme Five realities
Introduction to Computer Systems
Introduction to Computer Systems
CS-2011 — Machine Organization and Assembly Language
Systems Architecture I (CS ) Lecture 1: Random Access Machines
Programming Languages (CS 360) Mini Language Compiler
Presentation transcript:

Lec 1Systems Architecture1 Systems Architecture Lecture 1: Random Access Machines Jeremy R. Johnson Anatole D. Ruslanov William M. Mongan Some material drawn from CMU CSAPP Slides: Kesden and Puschel

Great Reality #1: Int’s are not Integers, Float’s are not Reals Example 1: Is x 2 ≥ 0? –Float’s: Yes! –Int’s: * > * > ?? Example 2: Is (x + y) + z = x + (y + z)? –Unsigned & Signed Int’s: Yes! –Float’s: (1e e20) > e20 + (-1e ) --> ?? Lec 1Systems Architecture2

Code Security Example Similar to code found in FreeBSD’s implementation of getpeername There are legions of smart people trying to find vulnerabilities in programs /* Kernel memory region holding user-accessible data */ #define KSIZE 1024 char kbuf[KSIZE]; /* Copy at most maxlen bytes from kernel region to user buffer */ int copy_from_kernel(void *user_dest, int maxlen) { /* Byte count len is minimum of buffer size and maxlen */ int len = KSIZE < maxlen ? KSIZE : maxlen; memcpy(user_dest, kbuf, len); return len; } Lec 1Systems Architecture3

Typical Usage /* Kernel memory region holding user-accessible data */ #define KSIZE 1024 char kbuf[KSIZE]; /* Copy at most maxlen bytes from kernel region to user buffer */ int copy_from_kernel(void *user_dest, int maxlen) { /* Byte count len is minimum of buffer size and maxlen */ int len = KSIZE < maxlen ? KSIZE : maxlen; memcpy(user_dest, kbuf, len); return len; } #define MSIZE 528 void getstuff() { char mybuf[MSIZE]; copy_from_kernel(mybuf, MSIZE); printf(“%s\n”, mybuf); } Lec 1Systems Architecture4

Malicious Usage /* Kernel memory region holding user-accessible data */ #define KSIZE 1024 char kbuf[KSIZE]; /* Copy at most maxlen bytes from kernel region to user buffer */ int copy_from_kernel(void *user_dest, int maxlen) { /* Byte count len is minimum of buffer size and maxlen */ int len = KSIZE < maxlen ? KSIZE : maxlen; memcpy(user_dest, kbuf, len); return len; } #define MSIZE 528 void getstuff() { char mybuf[MSIZE]; copy_from_kernel(mybuf, -MSIZE);... } Lec 1Systems Architecture5

Computer Arithmetic Does not generate random values –Arithmetic operations have important mathematical properties Cannot assume all “usual” mathematical properties –Due to finiteness of representations –Integer operations satisfy “ring” properties Commutativity, associativity, distributivity –Floating point operations satisfy “ordering” properties Monotonicity, values of signs Observation –Need to understand which abstractions apply in which contexts –Important issues for compiler writers and serious application programmers Lec 1Systems Architecture6

Great Reality #2: You’ve Got to Know Assembly Chances are, you’ll never write program in assembly –Compilers are much better & more patient than you are But: Understanding assembly key to machine-level execution model –Behavior of programs in presence of bugs High-level language model breaks down –Tuning program performance Understand optimizations done/not done by the compiler Understanding sources of program inefficiency –Implementing system software Compiler has machine code as target Operating systems must manage process state –Creating / fighting malware x86 assembly is the language of choice! Lec 1Systems Architecture7

Assembly Code Example Time Stamp Counter –Special 64-bit register in Intel-compatible machines –Incremented every clock cycle –Read with rdtsc instruction Application –Measure time (in clock cycles) required by procedure double t; start_counter(); P(); t = get_counter(); printf("P required %f clock cycles\n", t); Lec 1Systems Architecture8

Code to Read Counter Write small amount of assembly code using GCC’s asm facility Inserts assembly code into machine code generated by compiler static unsigned cyc_hi = 0; static unsigned cyc_lo = 0; /* Set *hi and *lo to the high and low order bits of the cycle counter. */ void access_counter(unsigned *hi, unsigned *lo) { asm("rdtsc; movl %edx,%0; movl %eax,%1" : "=r" (*hi), "=r" (*lo) : : "%edx", "%eax"); } Lec 1Systems Architecture9

Great Reality #3: Memory Matters Random Access Memory Is an Unphysical Abstraction Memory is not unbounded –It must be allocated and managed –Many applications are memory dominated Memory referencing bugs especially pernicious –Effects are distant in both time and space Memory performance is not uniform –Cache and virtual memory effects can greatly affect program performance –Adapting program to characteristics of memory system can lead to major speed improvements Lec 1Systems Architecture10

Memory Referencing Bug Example double fun(int i) { volatile double d[1] = {3.14}; volatile long int a[2]; a[i] = ; /* Possibly out of bounds */ return d[0]; } fun(0) –>3.14 fun(1) –>3.14 fun(2) –> fun(3) –> fun(4) –>3.14, then segmentation fault Lec 1Systems Architecture11

Systems Architecture Memory Referencing Bug Example double fun(int i) { volatile double d[1] = {3.14}; volatile long int a[2]; a[i] = ; /* Possibly out of bounds */ return d[0]; } fun(0) –>3.14 fun(1) –>3.14 fun(2) –> fun(3) –> fun(4) –>3.14, then segmentation fault Saved State d7 … d4 d3 … d0 a[1] a[0] Location accessed by fun(i) Explanation: Lec 112

Memory Referencing Errors C and C++ do not provide any memory protection –Out of bounds array references –Invalid pointer values –Abuses of malloc/free Can lead to nasty bugs –Whether or not bug has any effect depends on system and compiler –Action at a distance Corrupted object logically unrelated to one being accessed Effect of bug may be first observed long after it is generated How can I deal with this? –Program in Java or ML –Understand what possible interactions may occur –Use or develop tools to detect referencing errors Lec 1Systems Architecture13

Memory System Performance Example Hierarchical memory organization Performance depends on access patterns –Including how step through multi-dimensional array void copyji(int src[2048][2048], int dst[2048][2048]) { int i,j; for (j = 0; j < 2048; j++) for (i = 0; i < 2048; i++) dst[i][j] = src[i][j]; } void copyij(int src[2048][2048], int dst[2048][2048]) { int i,j; for (i = 0; i < 2048; i++) for (j = 0; j < 2048; j++) dst[i][j] = src[i][j]; } 21 times slower (Pentium 4) Lec 1Systems Architecture14

The Memory Mountain Read throughput (MB/s) Stride (words) Working set size (bytes) Pentium III Xeon 550 MHz 16 KB on-chip L1 d-cache 16 KB on-chip L1 i-cache 512 KB off-chip unified L2 cache L1L1 L2L2 Me m Lec 1Systems Architecture15

Great Reality #4: There’s more to performance than asymptotic complexity Constant factors matter too! And even exact op count does not predict performance –Easily see 10:1 performance range depending on how code written –Must optimize at multiple levels: algorithm, data representations, procedures, and loops Must understand system to optimize performance –How programs compiled and executed –How to measure program performance and identify bottlenecks –How to improve performance without destroying code modularity and generality Lec 1Systems Architecture16

Example Matrix Multiplication Standard desktop computer, vendor compiler, using optimization flags Both implementations have exactly the same operations count (2n 3 ) What is going on? 160x Triple loop Best code (K. Goto) Lec 1Systems Architecture17

Reason for 20x: Blocking or tiling, loop unrolling, array scalarization, instruction scheduling, search to find best choice Effect: less register spills, less L1/L2 cache misses, less TLB misses MMM Plot: Analysis Memory hierarchy and other optimizations: 20x Vector instructions: 4x Multiple threads: 4x Lec 1Systems Architecture18

Great Reality #5: Computers do more than execute programs They need to get data in and out –I/O system critical to program reliability and performance They communicate with each other over networks –Many system-level issues arise in presence of network Concurrent operations by autonomous processes Coping with unreliable media Cross platform compatibility Complex performance issues Lec 1Systems Architecture19

Lec 1Systems Architecture20 Introduction Objective: To develop a simple model of computation that provides insight into how a program executes on a computer. A Random Access Machine (RAM) is an abstract model of computation that resembles a simple idealized computer. It is equivalent in computational power to a Turing machine, i.e., it can perform any computation. Despite its simplicity it provides some intuition as to how a program executes on a computer.

Lec 1Systems Architecture21 Definition of a RAM Defined by a set of instructions and a model of execution. A program for a RAM is a sequence of instructions. A RAM has an infinite memory. Instructions can read and write to memory. Items from memory are loaded into a register, where arithmetic can be performed. The state of a computation: program counter (to keep track of instruction to execute), register, and memory.

Lec 1Systems Architecture22 A Random Access Machine Control Unit AC Program Memory AC = accumulator register

Lec 1Systems Architecture23 Instruction Set LDA X; Load the AC with the contents of memory address X LDI X; Load the AC indirectly with the contents of address X STA X; Store the contents of the AC at memory address X STI X; Store the contents of the AC indirectly at address X ADD X; Add the contents of address X to the contents of the AC SUB X; Subtract the contents of address X from the AC JMP Y; Jump to the instruction labeled Y (unconditional jump) JMZ Y; Jump to the instruction labeled Y if the AC contains 0 JMN Y; Jump to the instruction labeled Y if the contents of the AC ; is negative HLT ; Halt execution

Lec 1Systems Architecture24 Sample Program STOR ; algorithm to detect duplicates in an array A of size n. ; preinitialize an infinite array B with all 0 (zeros). for i  1 to n do if B(A(i))  0 then output A(i); exit else B(A(i)) = 1

Lec 1Systems Architecture25 Sample RAM Program 1. LDI 3; get i-th entry from A 2. ADD 4; add offset to compute index j 3. STA 5; store index j 4. LDI 5; get j-th entry from B 5. JMZ 9; if entry 0, go to 9 6. LDA 3; if entry 1, get index i 7. STA 2; and store it at HLT ; stop execution 9. LDA 1; get constant STI 5; and store it in B 11. LDA 3; get index i 12. SUB 4; subtract limit 13. JMZ 8; if i = limit, stop 14. LDA 3; get index i again 15. ADD 1; increment i 16. STA 3; store new value of i 17. JMP 1; AC 1 Memory 1 constant 2 0answer 3 6Index i 4 9 Limit of A 5 0Index j A B

Lec 1Systems Architecture26 Exercises Modify STOR so that when a computation finishes and the input sequence contained a duplicate integer, we know what that integer was. Modify STOR so that it uses array indexing when accessing the array A instead of pointer arithmetic (i.e. the index into A should be an array index, starting with 1, rather than an address of a location in the array). Write a RAL program which takes two input integers at addresses 1 and 2 and multiplies them storing the result at address 4.

Lec 1Systems Architecture27 Sample Solution compute x*y, x,y >= 0 1. LDA 1; load x 2. JMZ 10; check if x = 0 3. LDA 4; load partial result 4. ADD 2; add y to partial result 5. STA 4; store partial result 6. LDA 1; load x 7. SUB 3; and decrement 8. STA 1; store decremented x 9. JMP 2; next iteration 10. HLT ; AC 1 Memory x value of x 2 yValue of y 3 1Constant result The program still works with y < 0; however, if x < 0, it will go into an infinite loop (x will never = 0). To allow x < 0, first check to see if x is negative with JMN, and if so we want to increment x rather than decrement it. prod = 0; for ( i = x; i > 0; i-- ) prod = prod + y;