Control Flow 15 213 Processors do only one thing The course that gives CMU its Zip Exceptional Control Flow Processes October 10 2007 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 Topics Exceptions Process context switches Creating and destroying processes Time 15 213 F 07 2 lecture 13 ppt Altering the Control Flow Exceptional Control Flow Up to Now two mechanisms for changing control flow Jumps and branches Call and return Both react to changes in program state Mechanisms for exceptional control flow exists at all levels of a computer system Low level Mechanism exceptions z change in control flow in response to a system event i e Insufficient for a useful system startup inst1 inst2 inst3 instn shutdown change in system state Difficult for the CPU to react to changes in system state z data arrives from a disk or a network adapter Combination of hardware and OS software Higher Level Mechanisms z Instruction dereferences a NULL or otherwise invalid pointer z User hits ctl c at the keyboard z System timer expires System needs mechanisms for exceptional control flow flow Process context switch Signals Nonlocal jumps setjmp longjmp Implemented by either z OS software context switch and signals z C language runtime library nonlocal jumps 15 213 F 07 3 Interrupt Vectors Exceptions An exception is a transfer of control to the OS in response to some event i e change in processor state User Process 15 213 F 07 4 Exception numbers OS interrupt vector event current next exception 0 1 2 exception processing by exception handler exception return optional n 1 code codefor for exception exceptionhandler handler00 code codefor for exception exceptionhandler handler11 code codefor for exception exceptionhandler handler22 Each type of event has a unique exception number k Index into jump table a k a interrupt vector Jump table entry k points to a function exception handler Handler k is called each time exception k occurs code codefor for exception exceptionhandler handlern 1 n 1 5 15 213 F 07 6 Page 1 15 213 F 07 Asynchronous Exceptions Interrupts Synchronous Exceptions Caused by events external to the processor Caused by events that occur as a result of executing an instruction Indicated by setting the processor s interrupt pin handler returns to next instruction Traps z Intentional Examples z Examples system calls breakpoint traps special instructions I O interrupts z Returns control to next instruction z hitting ctl c at the keyboard Faults z arrival of a packet from a network z Unintentional but possibly recoverable z arrival of data from a disk z Examples page faults recoverable protection faults Hard reset interrupt unrecoverable floating point exceptions z Either re executes faulting current instruction or aborts z hitting the reset button Aborts z unintentional and unrecoverable z Examples parity error machine check z Aborts current program 15 213 F 07 7 15 213 F 07 8 Fault Example 1 Trap Example Memory Reference Opening a File User calls open filename options 0804d070 libc open 804d082 cd 80 804d084 5b int pop 0x80 ebx 80483b7 z Function open executes system call instruction int OS must find or create file get it ready for reading or writing Returns integer file descriptor User Process c7 05 10 9d 04 08 0d event return User writes to memory location Address is not valid c7 05 60 e3 04 08 0d movl Process provides each program with two key abstractions Logical control flow Private address space User process exits with segmentation fault z Each program seems to have exclusive use of main memory How are these Illusions maintained OS event movl One of the most profound ideas in computer science Not the same as program or processor z Each program seems to have exclusive use of the CPU User Process Definition A process is an instance of a running program 0xd 0x804e360 Page handler detects invalid address Sends SIGSEG signal to user process 15 213 F 07 10 int a 1000 main a 5000 13 Invalid Memory Reference 80483b7 Create page and load into memory Processes Fault Example 2 page fault movl return 15 213 F 07 0xd 0x8049d10 OS Open file 9 movl int a 1000 main a 500 13 Page handler must load page into physical memory Returns to faulting instruction Successful on second try User Process OS exception int pop User writes to memory location That portion page of user s memory is currently on disk page fault Process executions interleaved multitasking Address spaces managed by virtual memory system z topic for later in term Detect invalid address Signal process 11 15 213 F 07 12 Page 2 15 213 F 07 Concurrent Processes Logical Control Flows Two processes run concurrently are concurrent if their flows overlap in time Each process has its own logical control flow Otherwise they are sequential Examples Concurrent A B A C Sequential B C Process A Process B Process C Time 15 213 F 07 13 User View of Concurrent Processes Context Switching Processes are managed by a shared chunk of OS code called the kernel Control flows for concurrent processes are physically disjoint in time However we can think of concurrent processes are running in parallel with each other Process A Process B 15 213 F 07 14 Important the kernel is not a separate process but rather runs as part of some user process Control flow passes from one process to another via a context switch Process C Process A code Time Process B code user code Time kernel code context switch user code kernel code context switch user code 15 213 F 07 15 15 213 F 07 16 fork Creating New Processes Fork Example 1 Key Points int fork void creates a new process child process that is identical to the calling process parent process returns 0 to the child process returns child s pid to the parent process if fork 0 printf hello from child n else printf hello from parent n 17 Parent and child both run same code Start with same state but each has private copy z Distinguish parent from child by return value from fork z Including shared output file descriptor z Relative ordering of their print statements undefined void fork1 int x 1 pid t pid fork if pid 0 printf Child has x d n x else printf Parent has x d n x printf Bye from process d with x d n getpid x Fork is interesting and often confusing because it is called once but returns twice 15 213 F 07 18 Page 3 15 213 F 07 Fork Example 2 Fork Example 3 Key Points Key Points Both parent and
View Full Document