Chapter 8 Statement-Level Control Structures. 2 Chapter 8 Topics  Introduction  Selection Statements  Iterative Statements  Unconditional Branching.

Slides:



Advertisements
Similar presentations
ICE1341 Programming Languages Spring 2005 Lecture #13 Lecture #13 In-Young Ko iko.AT. icu.ac.kr iko.AT. icu.ac.kr Information and Communications University.
Advertisements

Statement-Level Control Structures
Adapted from Scott, Chapter 6:: Control Flow Programming Language Pragmatics Michael L. Scott.
CSCI 330: Programming Language Concepts Instructor: Pranava K. Jha Control Flow-II: Execution Order.
ICE1341 Programming Languages Spring 2005 Lecture #12 Lecture #12 In-Young Ko iko.AT. icu.ac.kr iko.AT. icu.ac.kr Information and Communications University.
Chapter 8 Statement-Level Control Structures. 1-2 Chapter 8 Topics Introduction Selection Statements Iterative Statements Unconditional Branching Guarded.
CS 355 – PROGRAMMING LANGUAGES Dr. X. Copyright © 2012 Addison-Wesley. All rights reserved.1-2 Chapter 8 Topics Introduction Selection Statements Iterative.
(8.1) COEN Control Structures  Control structure general issues  Compound statements  Selectors (conditional structures) – single – two-way –
ISBN Chapter 8 Statement-Level Control Structures.
The Flow of Control Among Statements.  Selection Statements  Iterative Statements  Unconditional Branching  Guarded Commands.
ICE1341 Programming Languages Spring 2005 Lecture #14 Lecture #14 In-Young Ko iko.AT. icu.ac.kr iko.AT. icu.ac.kr Information and Communications University.
Chapter 8 Statement-Level Control Structure. Introduction Levels of Control Flow: 1. Within expressions 2. Among program units 3. Among program statements.
ISBN Chapter 8 Statement-Level Control Structures.
ISBN Chapter 8 Statement-Level Control Structures.
ISBN Chapter 8 Statement-Level Control Structures.
Controlling Program Flows
Chapter 8 (Control Structure) Slide 1 Control Structures Control structures are used by the programmer to incorporate the desired sequence of execution.
Chapter 8 . Sequence Control
Statement-Level Control Structures Sections 1-4
ISBN Chapter 8 Statement-Level Control Structures.
CSE 452: Programming Languages Expressions and Control Flow.
1 Chapter 8 Statement-Level Control Structures In Chapter 7, the flow of control within expressions, which is governed by operator associativity and precedence.
ISBN Lecture 08 Statement-Level Control Structures.
ISBN Chapter 8 Statement-Level Control Structures.
COMP4730/2002/lec8/H.Melikian Statement-Level Control Structures Introduction Compound Statements Selection Statements Iterative Statements Unconditional.
Statement-Level Control Structures
1 Statement-Level Control Structures Levels of flow control Control Statements 1. Sequence 2. Selection 3. Iteration Unconditional branching Guarded commands.
Structure of Programming Language
9/20/2015Assoc. Prof. Stoyan Bonev1 COS220 Concepts of PLs AUBG, COS dept Lecture 06 Components of Programming Languages, Part III Reference: R.Sebesta,
ISBN Chapter 8 Statement-Level Control Structures Sections 1-4.
PLLab, NTHU,Cs2403 Programming Languages Expression and control structure Kun-Yuan Hsieh Programming Language Lab., NTHU.
Control Structures Programs have 4 basic control structures:
ISBN Chapter 8 Statement-Level Control Structures.
Chapter 8 Chapter 8 Control Structures. Control Structures  A control structure is a control statement and the statements whose execution it controls.
ISBN Chapter 8 Statement-Level Control Structures.
1 CS Programming Languages Class 11 September 26, 2000.
sequence of execution of high-level statements
Expressions and Statements. Expressions Literals and identifiers are expressions More complex expressions are built from simple expressions by the application.
第八章 敘述層級的控制結構 (Statement-Level Control Structures)
CSI 3120, Control, page 1 Control statements Simple statements Basic structured statements Sequence Selection Iteration The jump statement.
Chapter 8: Statement-Level Control Structures
Control Structures sequence of execution of high-level statements.
8-1 Statement-Level Control Structures Introduction Selection Statements Iterative Statements Unconditional Branching Guarded Commands Conclusions.
C HAPTER 8 Statement-Level Control Structures. CCSB314 Programming Language C HAPTER 8 T OPICS Introduction Selection Statements Iterative Statements.
April 16, ICE 1341 – Programming Languages (Lecture #14) In-Young Ko Programming Languages (ICE 1341) Lecture #14 Programming Languages (ICE 1341)
Statement Level Flow of Control Iteration Structures Copyright © by Curt Hill.
Copyright © 1998 by Addison Wesley Longman, Inc. 1 Chapter 7 Levels of Control Flow: 1. Within expressions 2. Among program units 3. Among program statements.
1 Iterative Statements Repeated execution of a (compound) statement by iteration or recursion –Iteration is statement level –Recursion is unit-level control.
Statement-Level Control Structures
Chapter 8 © 2002 by Addison Wesley Longman, Inc Introduction - Levels of Control Flow: 1. Within expressions 2. Among program units 3. Among program.
W E E K F I V E Statement-Level Control Structures.
Structure of Programming Language Statements. Expression.
W E E K F I V E Control Flow. Copyright © 2006 Addison-Wesley. All rights reserved.1-2 Chapter 8 Topics Introduction Selection Statements Iterative Statements.
Chapter 8 Statement-Level Control Structures. Copyright © 2012 Addison-Wesley. All rights reserved.1-2 Chapter 8 Topics Introduction Selection Statements.
Def: A control structure is a control statement and
Structure of Programming Language
8.1 Introduction - Levels of Control Flow: 1. Within expressions
Dr. Vamsi Paruchuri University of Central Arkansas
Statement-Level Control Structures
Chapter 8: Control Structures
Statement-Level Control Structures
Statement-Level Control Structures
Control statements Simple statements Basic structured statements
Control Structures In Text: Chapter 8.
Control Structures Programs utilize 4 basic control structures
Statement-Level Control Structures
Chapter8: Statement-Level Control Structures April 9, 2019
Statement-Level Control Structures
Statement-Level Control Structures
Chapter 8: Statement Level Control Structures
Presentation transcript:

Chapter 8 Statement-Level Control Structures

2 Chapter 8 Topics  Introduction  Selection Statements  Iterative Statements  Unconditional Branching  Guarded Commands  Conclusions

3 Levels of Control Flow –Within expressions: x+y+z –Among program units: assignment statement –Among program statements: sequencing

4 Control Statements: Evolution  FORTRAN I control statements were based directly on IBM 704 hardware  Much research and argument in the 1960s about the issue One important result: It was proven that all algorithms represented by flowcharts can be coded with only two-way selection and pretest logical loops if..then… while (…) do

5 Control Structure  A control structure is a control statement and the statements whose execution it controls  Design question Should a control structure have multiple entries?

6 Selection Statements  A selection statement provides the means of choosing between two or more paths of execution  Two general categories: Two-way selectors Multiple-way selectors

7 Two-Way Selection Statements  General form: if control_expression then clause else clause  Design Issues: What is the form and type of the control expression? How are the then and else clauses specified? How should the meaning of nested selectors be specified?

8 Two-Way Selection: Examples  FORTRAN: IF (boolean_expr) statement  Problem: can select only a single statement; to select more, a GOTO must be used, as in the following example IF (.NOT. condition) GOTO CONTINUE  Negative logic is bad for readability  This problem was solved in FORTRAN 77  Most later languages allow compounds for the selectable segment of their single-way selectors In the past, we use goto.

9 Two-Way Selection: Examples  ALGOL 60: if (boolean_expr) then statement (then clause) else statement (else clause)  The statements could be single or compound

10 Nesting Selectors  Java example if (sum == 0) if (count == 0) result = 0; else result = 1;  Which if gets the else ?  Java's static semantics rule: else matches with the nearest if

11 Nesting Selectors (continued)  To force an alternative semantics, compound statements may be used: if (sum == 0) { if (count == 0) result = 0; } else result = 1;  The above solution is used in C, C++, and C#  Perl requires that all then and else clauses to be compound

12 Multiple-Way Selection Statements  Allow the selection of one of any number of statements or statement groups  Design Issues: 1. What is the form and type of the control expression? 2. How are the selectable segments specified? 3. Is execution flow through the structure restricted to include just a single selectable segment? 4. What is done about unrepresented expression values?

13 Multiple-Way Selection: Examples  Early multiple selectors: FORTRAN arithmetic IF (a three-way selector) IF (arithmetic expression) N1, N2, N3 Segments require GOTO s Not encapsulated (selectable segments could be anywhere)

14 Multiple-Way Selection: Examples  Modern multiple selectors C’s switch statement switch (expression) { case const_expr_1: stmt_1; … case const_expr_n: stmt_n; [default: stmt_n+1] }

15 Multiple-Way Selection: Examples  Design choices for C’s switch statement 1. Control expression can be only an integer type 2. Selectable segments can be statement sequences, blocks, or compound statements 3. Any number of segments can be executed in one execution of the construct (there is no implicit branch at the end of selectable segments) 4. default clause is for unrepresented values (if there is no default, the whole statement does nothing) int x; switch (x) { case 1: case 2:... break; default:... }

16 Multiple-Way Selection: Examples  The Ada case statement case expression is when choice list => stmt_sequence; … when choice list => stmt_sequence; when others => stmt_sequence;] end case;  More reliable than C’s switch (once a stmt_sequence execution is completed, control is passed to the first statement after the case statement

17 Multiple-Way Selection Using if  Multiple Selectors can appear as direct extensions to two-way selectors, using else-if clauses, for example in Ada: if... then... elsif... then... elsif... then... else... end if

18 Iterative Statements  The repeated execution of a statement or compound statement is accomplished either by iteration or recursion  General design issues for iteration control statements: 1. How is iteration controlled? 2. Where is the control mechanism in the loop?

19 Counter-Controlled Loops  A counting iterative statement has a loop variable, and a means of specifying the initial and terminal, and stepsize values  Design Issues: 1. What are the type and scope of the loop variable? 2. What is the value of the loop variable at loop termination? 3. Should it be legal for the loop variable or loop parameters to be changed in the loop body, and if so, does the change affect loop control? 4. Should the loop parameters be evaluated only once, or once for every iteration?

20 Counter-Controlled Loops  Consider the semantic of counter loops. for i:=1 to N do begin end move cnt, N-1 ; cnt is special reg. (CX) Loop: jeq cnt, 0, OUT dec cnt goto Loop for i:=1 to N do begin …. i:=N end Can it be done? What about the above issues? -loop parameter is evaluated once.

21 Counter-Controlled Loops  Consider the semantic of counter loops. for i:=1 to N do begin end move cnt, N-1 ; cnt is special reg. (CX) Loop: jeq cnt, 0, OUT dec cnt goto Loop -What is the last value of loop variable “i”? -Loop parameter is evaluated once? move i,0 load R1,i load R2, N Loop: sub R3,R2,R1 jeq R3, 0, OUT inc R1 store R1,i goto Loop

22 Iterative Statements: Examples  FORTRAN 90 syntax DO label var = start, finish [, stepsize ]  Stepsize can be any value but zero  Parameters can be expressions  Design choices: 1. Loop variable must be INTEGER 2. Loop variable always has its last value 3. The loop variable cannot be changed in the loop, but the parameters can; because they are evaluated only once, it does not affect loop control 4. Loop parameters are evaluated only once

23 Iterative Statements: Examples  FORTRAN 95 : a second form: [name:] DO variable = initial, terminal [,stepsize] … END DO [name] Loop variable must be an INTEGER

24 Iterative Statements  Pascal’s for statement for variable := initial (to|downto) final do statement  Design choices: 1. Loop variable must be an ordinal type of usual scope 2. After normal termination, loop variable is undefined 3. The loop variable cannot be changed in the loop; the loop parameters can be changed, but they are evaluated just once, so it does not affect loop control 4. Just once

25 Counter-Controlled Loops  Example for i:=1 to N do begin end move cnt, N-1 ; cnt is special reg. (CX) Loop: jeq cnt, 0, OUT dec cnt goto Loop for i:=1 to N do begin …. i:=i+2; end Cannot do -loop parameter is evaluated once. This will affect the counter reg. if i > 10 then.. Cannot guarantee the last value of i;

26 Iterative Statements: Examples  Ada for var in [reverse] discrete_range loop... end loop  A discrete range is a sub-range of an integer or enumeration type  Scope of the loop variable is the range of the loop  Loop variable is implicitly undeclared after loop termination

27 Iterative Statements: Examples  C’s for statement for ([expr_1] ; [expr_2] ; [expr_3]) statement  The expressions can be whole statements, or even statement sequences, with the statements separated by commas The value of a multiple-statement expression is the value of the last statement in the expression  There is no explicit loop variable  Everything can be changed in the loop  The first expression is evaluated once, but the other two are evaluated with each iteration for (i=0; i<N; i++)..

28 Iterative Statements: Examples  C++ differs from C in two ways: 1. The control expression can also be Boolean 2. The initial expression can include variable definitions (scope is from the definition to the end of the loop body)  Java and C# Differs from C++ in that the control expression must be Boolean

29 Iterative Statements: Logically- Controlled Loops  Repetition control is based on a Boolean  Design issues: Pre-test or post-test? Should the logically controlled loop be a special case of the counting loop statement ? expression rather than a counter  General forms: while (ctrl_expr)do loop body while (ctrl_expr)

30 Iterative Statements: Logically- Controlled Loops Top loop VS bottom loop mov R1,… Loop: cmp R1,R2 jz out …. jmp Loop Out: mov R1,… Loop: …. …… cmp R1,R2 jnz out jmp Loop Out: PRE-TESTPOST-TEST While-do Do-while

31 Iterative Statements: Logically- Controlled Loops Top loop VS bottom loop mov R1,… Loop: …. cmp R1,R2 jnz out jmp Loop Out: POST-TEST Do-whileRepeat-until mov R1,… Loop: …. cmp R1,R2 jz out jmp Loop Out:

32 Iterative Statements: Logically- Controlled Loops: Examples  Pascal has separate pre-test and post-test logical loop statements ( while-do and repeat-until )  C and C++ also have both, but the control expression for the post-test version is treated just like in the pre- test case ( while-do and do- while )  Java is like C, except the control expression must be Boolean (and the body can only be entered at the beginning -- Java has no goto

33 Iterative Statements: Logically- Controlled Loops: Examples  Ada has a pretest version, but no post-test  FORTRAN 77 and 90 have neither  Perl has two pre-test logical loops, while and until, but no post-test logical loop

34 Iterative Statements: User-Located Loop Control Mechanisms  Sometimes it is convenient for the programmers to decide a location for loop control (other than top or bottom of the loop)  Simple design for single loops (e.g., break )  Design issues for nested loops 1. Should the conditional be part of the exit? 2. Should control be transferable out of more than one loop?

35 Iterative Statements: User-Located Loop Control Mechanisms break and continue  C, C++, and Java: break statement  Unconditional; for any loop or switch ; one level only  Java and C# have a labeled break statement: control transfers to the label  An alternative: continue statement; it skips the remainder of this iteration, but does not exit the loop

36 Iterative Statements: Iteration Based on Data Structures  Number of elements of in a data structure control loop iteration  Control mechanism is a call to an iterator function that returns the next element in some chosen order, if there is one; else loop is terminate  C's for can be used to build a user-defined iterator: for (p=root; p!=NULL; traverse(p)){ }

37 Iterative Statements: Iteration Based on Data Structures (continued)  C#’s foreach statement iterates on the elements of arrays and other collections: Strings[] = strList = {“Bob”, “Carol”, “Ted”}; foreach (Strings name in strList) Console.WriteLine (“Name: {0}”, name);  The notation {0} indicates the position in the string to be displayed

38 Unconditional Branching  Transfers execution control to a specified place in the program  Represented one of the most heated debates in 1960’s and 1970’s  Well-known mechanism: goto statement  Major concern: Readability  Some languages do not support goto statement (e.g., Module-2 and Java)  C# offers goto statement (can be used in switch statements)  Loop exit statements are restricted and somewhat camouflaged goto ’s

39 Guarded Commands  Suggested by Dijkstra  Purpose: to support a new programming methodology that supported verification (correctness) during development  Basis for two linguistic mechanisms for concurrent programming (in CSP and Ada)  Basic Idea: if the order of evaluation is not important, the program should not specify one

40 Guarded Commands If and cases are based on sequence. This is not. Consider VHDL. when x is “1” when y is “1” Concurrent statements x y

41 Selection Guarded Command  Form if -> [] ->... [] -> fi  Semantics: when construct is reached, Evaluate all Boolean expressions If more than one are true, choose one non- deterministically If none are true, it is a runtime error

42 Selection Guarded Command: Illustrated

43 Loop Guarded Command  Form do -> [] ->... [] -> od  Semantics: for each iteration Evaluate all Boolean expressions If more than one are true, choose one non- deterministically; then start loop again If none are true, exit loop

44 Recursion  Recursion equally powerful to iteration mechanical transformations back and forth often more intuitive (sometimes less) naïve implementation less efficient no special syntax required fundamental to functional languages like Scheme

45 Recursion  Tail recursion No computation follows recursive call /* assume a, b > 0 */ int gcd (int a, int b) { if (a == b) return a; else if (a > b) return gcd (a - b, b); else return gcd (a, b – a); }

46 Conclusion  Variety of statement-level structures  Choice of control statements beyond selection and logical pretest loops is a trade- off between language size and writability  Functional and logic programming languages are quite different control structures

47 Practices

48 Practices

49 Practices

50 Practices

51 Practices