Exceptional Control Flow

Slides:



Advertisements
Similar presentations
More on Processes Chapter 3. Process image _the physical representation of a process in the OS _an address space consisting of code, data and stack segments.
Advertisements

1 (Review of Prerequisite Material). Processes are an abstraction of the operation of computers. So, to understand operating systems, one must have a.
1 Exceptions, Interrupts & Traps Operating System Hebrew University Spring 2007.
Carnegie Mellon 1 Exceptional Control Flow: Exceptions and Processes /18-243: Introduction to Computer Systems 13 th Lecture, June 15, 2011 Instructors:
Exceptional Control Flow Processes Today. Control Flow Processors do only one thing: From startup to shutdown, a CPU simply reads and executes (interprets)
University of Washington Today Midterm grades posted  76. HW 3 due Lab 4 fun! 1.
CSCI 4717/5717 Computer Architecture
University of Washington Today Finish up cache-aware programming example Processes  So we can move on to virtual memory 1.
University of Washington Today Move on to … 1. University of Washington Hmm… Lets look at this again Disk Main Memory L2 unified cache L1 I-cache L1 D-cache.
CS 153 Design of Operating Systems Spring 2015 Lecture 3: Intro and Architectural Support for Operating Systems.
Architectural Support for OS March 29, 2000 Instructor: Gary Kimura Slides courtesy of Hank Levy.
Exceptional Control Flow Part I September 22, 2008 Topics Exceptions Process context switches Creating and destroying processes class11.ppt ,
OS Spring’03 Introduction Operating Systems Spring 2003.
Pipeline Exceptions & ControlCSCE430/830 Pipeline: Exceptions & Control CSCE430/830 Computer Architecture Lecturer: Prof. Hong Jiang Courtesy of Yifeng.
Exceptional Control Flow Part I Topics Exceptions Process context switches Creating and destroying processes class14.ppt CS 123.
Exceptional Control Flow Part I Topics Exceptions Process context switches Creating and destroying processes.
Introduction to Interrupts
Exceptions, Interrupts & Traps
Fabián E. Bustamante, Spring 2007 Exceptional Control Flow Part I Today Exceptions Process context switches Creating and destroying processes Next time.
Input/ Output By Mohit Sehgal. What is Input/Output of a Computer? Connection with Machine Every machine has I/O (Like a function) In computing, input/output,
Lecture 3 Process Concepts. What is a Process? A process is the dynamic execution context of an executing program. Several processes may run concurrently,
CSC 2405 Computer Systems II Exceptions Mini-Lecture Traps & Interrupts.
Exceptional Control Flow Topics Exceptions except1.ppt CS 105 “Tour of the Black Holes of Computing”
Operating Systems 1 K. Salah Module 1.2: Fundamental Concepts Interrupts System Calls.
Chapter 6: Computer Components Dr Mohamed Menacer Taibah University
University of Washington Exceptional Control Flow The Hardware/Software Interface CSE351 Winter 2013.
Exceptional Control Flow I March 12, 2002
Interrupts and Exception Handling. Execution We are quite aware of the Fetch, Execute process of the control unit of the CPU –Fetch and instruction as.
University of Washington Roadmap 1 car *c = malloc(sizeof(car)); c->miles = 100; c->gals = 17; float mpg = get_mpg(c); free(c); Car c = new Car(); c.setMiles(100);
Carnegie Mellon 1 CMSC os1: OS and Exceptions Chapter 8.1 Instructors: Haryadi Gunawi Henry Hoffmann Matthew Wachs.
Computer System Structures Interrupts
Exceptional Control Flow
CS 3214 Computer Systems Lecture 9 Godmar Back.
Interrupts and exceptions
Exceptional Control Flow & Processes
Exceptional Control Flow
Exceptions and Processes
Microprocessor Systems Design I
Exceptional Control Flow
Day 08 Processes.
Day 09 Processes.
Overview of today’s lecture
Exceptional Control Flow Part I
Exceptional Control Flow
Cache Wrap-up, System Control Flow CSE 410 Winter 2017
os1: OS and Exceptions Chapter 8.1
Instructors: Anthony Rowe, Seth Goldstein and Gregory Kesden
Chapter 3 Top Level View of Computer Function and Interconnection
Exceptional Control Flow: System Calls, Page Faults etc.
CSE 120 Principles of Operating
Exceptional Control Flow
Exceptional Control Flow I
Exceptional Control Flow Part I Mar. 11, 2003
Exceptional Control Flow
Exceptional Control Flow Part I
Exceptions Control Flow
Architectural Support for OS
Exceptions and Processes
Exceptional Control Flow
CS201 - Lecture 17 Exceptions
Architectural Support for OS
Exceptional Control Flow & Processes October 2, 2008
Interrupts and Interrupt Handling
Exceptional Control Flow
Interrupts and System Calls
Exceptional Control Flow
Presentation transcript:

Exceptional Control Flow

Control Flow Processors do only one thing: Physical control flow From startup to shutdown, a CPU simply reads and executes (interprets) a sequence of instructions, one at a time This sequence is the CPU’s control flow (or flow of control) Physical control flow <startup> inst1 inst2 inst3 … instn <shutdown> Time

Altering the Control Flow Up to now: two mechanisms for changing control flow: Jumps and branches Call and return Both react to changes in program state Insufficient for a useful system: Difficult to react to changes in system state page fault occurs data arrives from a disk or a network adapter instruction divides by zero System timer expires System needs mechanisms for “exceptional control flow”

Exceptional Control Flow Exists at all levels of a computer system Low level mechanisms Exceptions change in control flow in response to a system event (i.e., change in system state) Combination of hardware and OS software Higher level mechanisms (will be covered in the system software course) Process context switch Signals Nonlocal jumps: setjmp()/longjmp() Implemented by either: OS software (context switch and signals) C language runtime library (nonlocal jumps)

Exceptions An exception is a transfer of control to the OS in response to some event (i.e., change in processor state) Examples: div by 0, arithmetic overflow, page fault, I/O request completes User Process OS event exception I_current I_next exception processing by exception handler return to I_current return to I_next abort

Exception Tables Exception numbers Each type of event has a unique exception number k k = index into exception table Handler k is called each time exception k occurs code for exception handler 0 Exception Table code for exception handler 1 1 code for exception handler 2 2 ... n-1 ... code for exception handler n-1

Asynchronous Exceptions (Interrupts) Caused by events external to the processor Indicated by setting the processor’s interrupt pin Handler returns to “next” instruction Examples: I/O interrupts arrival of data from a disk arrival of a packet from a network Hard reset interrupt hitting the reset button Soft reset interrupt hitting Ctrl-Alt-Delete on a PC

Synchronous Exceptions Caused by events that occur as a result of executing an instruction: Traps Intentional Examples: system calls Returns control to “next” instruction Faults Unintentional but possibly recoverable Examples: page faults (recoverable), protection faults (unrecoverable), div by 0 Either re-executes faulting (“current”) instruction or aborts Aborts unintentional and unrecoverable Examples: parity error, machine check Aborts current program

Trap Example: Opening File User calls: open(filename, options) Function open executes system call instruction int OS must find or create file, get it ready for reading or writing Returns integer file descriptor 0804d070 <__libc_open>: . . . 804d082: cd 80 int $0x80 804d084: 5b pop %ebx User Process OS exception int pop open file returns

Fault Example: Page Fault int a[1000]; main () { a[500] = 13; } User writes to memory location That portion (page) of user’s memory is currently on disk Page handler must load page into physical memory Returns to faulting instruction Successful on second try 80483b7: c7 05 10 9d 04 08 0d movl $0xd,0x8049d10 User Process OS exception: page fault movl Create page and load into memory returns

Fault Example: Invalid Memory Reference int a[1000]; main () { a[5000] = 13; } 80483b7: c7 05 60 e3 04 08 0d movl $0xd,0x804e360 User Process OS exception: page fault movl detect invalid address signal process Page handler detects invalid address Sends SIGSEGV signal to user process User process exits with “segmentation fault”

Exception Table IA32 (Excerpt) Exception Number Description Exception Class Divide error Fault 13 General protection fault 14 Page fault 18 Machine check Abort 32-127 OS-defined Interrupt or trap 128 (0x80) System call Trap 129-255 Check Table 6-1: http://download.intel.com/design/processor/manuals/253665.pdf