DOC PREVIEW
U of I CS 421 - Lecture

This preview shows page 1-2-20-21 out of 21 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 21 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 21 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 21 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 21 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 21 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Programming Languages and Compilers (CS 421)Classes of Control FlowSlide 3Slide 4What is an exception?Slide 6Why do we need exceptions?Poor Program to Multiply a ListSuboptimal SolutionBetter SolutionWhat Gets Skipped?Slide 12Slide 13Slide 14Structured Exception PropagationException DataCurrent ContinuationscallccThrowControl Flow through callccList Multiplication ExampleProgramming Languages and Compilers (CS 421)Elsa L Gunter2112 SC, UIUChttp://www.cs.uiuc.edu/class/sp07/cs421/Based in part on slides by Mattox Beckman, as updated by Vikram Adve and Gul AghaElsa L. Gunter Classes of Control FlowSelection •Structured: if/then/else,continue,switch,case•Unstructured: GOTO, computed GOTO, labelled entryIteration •Precomputed iteration space: do,foreach (range)•Dynamic iteration space: for,while, recursionElsa L. Gunter Classes of Control FlowInvocation •Direct calls: function,subroutine•Indirect calls: func. pointer, methods of a class, closureTermination of scope•Structured: break, break label, exceptions, CPS•Unstructured: GOTO, setjmp/longjmp, exitElsa L. Gunter Classes of Control FlowConcurrency•Manual: processes, threads, futures, (coroutines)•Automatic: doall, doacross, directives (e.g., OpenMP)•Communication and synchronization techniques are critical.•You should be familiar with if/then/else, switch/case, do, for, while, foreach (range), GOTO, break, exit.Elsa L. Gunter What is an exception?Exception :•A runtime event that causes control to be transferred from the current program point to a separate code fragment that does not follow the current point in the program’s control flow.Exception handler :•Code fragment that receives control when exception occurs.Elsa L. Gunter What is an exception?Internal exception :•An exception generated explicitly by the program.External exception :•An exception generated by the runtime system.Elsa L. Gunter Why do we need exceptions?•What can cause an external exception?•Why would you use an internal exception?Elsa L. Gunter Poor Program to Multiply a Listlet rec list_mult list = match list with [ ] -> 1 | x::xs -> x * list_mult xsProblem: Want to avoid all the multiplications in list containing 0Elsa L. Gunter Suboptimal Solutionlet rec list_mult list = match list with [ ] -> 1 | x::xs -> if x = 0 then 0 else x * list_mult xsOnce it sees 0, it ignores the tail of the listProblem: Still multiplies each element in the list by 0 before it returnsEg: list = [7;4;0] then still multiply 4, 7 by 0Elsa L. Gunter Better Solutionexception Zero;;let rec list_mult_aux list = match list with [ ] -> 1 | x :: xs -> if x = 0 then raise Zero else x * list_mult_aux xs;;let list_mult list = try list_mult list with Zero -> 0;;Elsa L. Gunter What Gets Skipped?•Let list = [7; 4; 0; 5]•First function:list_mult [7; 4; 0; 5] => (7 * result) <- list_mult [4; 0; 5] => (7 * result) <- (4 * result) <- list_mult [0; 5] =>(7 * result) <- (4 * result) <- (0 * result) <- list_mult [5] =>(7 * result) <- (4 * result) <- (0 * result) <- (5 * result) <- list_mult [ ]Elsa L. Gunter What Gets Skipped? =>(7 * result) <- (4 * result) <- (0 * result) <- (5 * 1) =>(7 * result) <- (4 * result) <- (0 * 5) =>(7 * result) <- (4 * 0) =>(7 * 0) => 0Elsa L. Gunter What Gets Skipped?•Second function:list_mult [7; 4; 0; 5] => (7 * result) <- list_mult [4; 0; 5] => (7 * result) <- (4 * result) <- list_mult [0; 5] =>(7 * result) <- (4 * 0) =>(7 * 0) => 0Elsa L. Gunter What Gets Skipped?•Third function:list_mult [7; 4; 0; 5] => list_mult_aux [7; 4; 0; 5] => (7 * result) <- list_mult_aux [4; 0; 5] => (7 * result) <- (4 * result) <- list_mult_aux [0; 5] => 0•Could be big win if * were expensiveElsa L. Gunter Structured Exception PropagationOn exception e:•Unwind stack to innermost call that handles exception e•In each stack frame, perform cleanups:–call local object destructors in C++–release locks in Java•In stack frame with handler, execute handler•Handler may rethrow the exception, throw a different exception,or continueElsa L. Gunter Exception Data•Exception data (values) are needed to communicate what exception occurred, state of computation when it occurred, and perhaps where.•OCAML, Ada: exception is a built-in type•Java, C++: subclasses of an “exception class”•C: int argument to longjmp()Elsa L. Gunter Current Continuations•Idea: remaining computation to be done when given result of most local expression•Example: if (x && y) then s( ) else t( )•Intuitively: the current continuation of x && y is s( ) if x && y evaluates to true, and is t ( ) it it evaluates to false insteadElsa L. Gunter callcc•(Will use SML/NJ version, but with Ocaml syntax)•Built-in type of ‘a cont (SMLofNJ.Cont.callcc)•callcc : (‘a cont -> ‘a) -> ‘a if (callcc (fun k -> not x)) then 5 else 3• k represents the function that will either return 3 or 5•As given, since k is not used, callcc has no effectElsa L. Gunter Throw•The way to use a continuation “captured” by callcc is with throw:•throw: ‘a cont -> 'a -> 'b•if (callcc (fun k -> (throw k false))) || true then 3 else 5 = 3•if (callcc (fun k -> (throw k false) || true)) then 3 else 5 = 5Elsa L. Gunter Control Flow through callcc•Callcc is a powerful control construct•Can implement–Exceptions–Concurrency (done in Concurrent ML)–Other non-local control mechanismsElsa L. Gunter List Multiplication Examplelet list_mult list =callcc( fun zerok -> let rec list_mult_aux list = match list with [ ] -> 1 | x :: xs -> if x = 0 then throw zerok 0 else x * list_mult_aux xs in list_mult_aux


View Full Document

U of I CS 421 - Lecture

Documents in this Course
Lecture 2

Lecture 2

12 pages

Exams

Exams

20 pages

Lecture

Lecture

32 pages

Lecture

Lecture

15 pages

Lecture

Lecture

4 pages

Lecture

Lecture

68 pages

Lecture

Lecture

68 pages

Lecture

Lecture

84 pages

s

s

32 pages

Parsing

Parsing

52 pages

Lecture 2

Lecture 2

45 pages

Midterm

Midterm

13 pages

LECTURE

LECTURE

10 pages

Lecture

Lecture

5 pages

Lecture

Lecture

39 pages

Load more
Download Lecture
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Lecture and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Lecture 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?