Chapter 8 :: Subroutines and Control Abstraction. Final Test. Final Test Review Tomorrow

Similar documents
Chap. 8 :: Subroutines and Control Abstraction

Programming Languages

Chapter 9 :: Subroutines and Control Abstraction

Control Abstraction. Hwansoo Han

Subroutines and Control Abstraction. CSE 307 Principles of Programming Languages Stony Brook University

CS A331 Programming Language Concepts

Chapter 3:: Names, Scopes, and Bindings

Chapter 8 ( ) Control Abstraction. Subprograms Issues related to subprograms How is control transferred to & from the subprogram?

LECTURE 19. Subroutines and Parameter Passing

Principles of Programming Languages

CA Compiler Construction

Runtime management. CS Compiler Design. The procedure abstraction. The procedure abstraction. Runtime management. V.

G Programming Languages - Fall 2012

Topic 3-a. Calling Convention 2/29/2008 1

CS 314 Principles of Programming Languages. Lecture 13

Chapter 7:: Data Types. Mid-Term Test. Mid-Term Test (cont.) Administrative Notes

G Programming Languages Spring 2010 Lecture 4. Robert Grimm, New York University

Lecture 7: Binding Time and Storage

Chapter 9 Subroutines and Control Abstraction. June 22, 2016

Separate compilation. Topic 6: Runtime Environments p.1/21. CS 526 Topic 6: Runtime Environments The linkage convention

Programming Languages Third Edition. Chapter 10 Control II Procedures and Environments

CS 314 Principles of Programming Languages

SPIM Procedure Calls

Code Generation. The Main Idea of Today s Lecture. We can emit stack-machine-style code for expressions via recursion. Lecture Outline.

We can emit stack-machine-style code for expressions via recursion

Calling Conventions. See P&H 2.8 and Hakim Weatherspoon CS 3410, Spring 2013 Computer Science Cornell University

Implementing Procedure Calls

CS 314 Principles of Programming Languages. Lecture 11

Names, Scopes, and Bindings. CSE 307 Principles of Programming Languages Stony Brook University

Chapter 8 :: Composite Types

Concepts Introduced in Chapter 7

Names, Scopes, and Bindings. CSE 307 Principles of Programming Languages Stony Brook University

Memory Management and Run-Time Systems

Runtime Support for Algol-Like Languages Comp 412

Code Generation & Parameter Passing

Run-time Environment

Programming Languages

Design Issues. Subroutines and Control Abstraction. Subroutines and Control Abstraction. CSC 4101: Programming Languages 1. Textbook, Chapter 8

Chapter 10. Implementing Subprograms

Run Time Environment. Procedure Abstraction. The Procedure as a Control Abstraction. The Procedure as a Control Abstraction

Run Time Environment. Activation Records Procedure Linkage Name Translation and Variable Access

COP4020 Programming Languages. Subroutines and Parameter Passing Prof. Robert van Engelen

Lecture 9: Parameter Passing, Generics and Polymorphism, Exceptions

Chapter 3:: Names, Scopes, and Bindings (cont.)

Chapter 3:: Names, Scopes, and Bindings (cont.)

System Software Assignment 1 Runtime Support for Procedures

MIPS Procedure Calls - Review

6. Names, Scopes, and Bindings

Language of the Machine Recursive functions

CS 330 Lecture 18. Symbol table. C scope rules. Declarations. Chapter 5 Louden Outline

Programmiersprachen (Programming Languages)

CS558 Programming Languages

CSc 520 Principles of Programming Languages

CSc 520 Principles of Programming Languages. ameter Passing Reference Parameter. Call-by-Value Parameters. 28 : Control Structures Parameters

Functions and Procedures

Principle of Complier Design Prof. Y. N. Srikant Department of Computer Science and Automation Indian Institute of Science, Bangalore

Compilation /15a Lecture 7. Activation Records Noam Rinetzky

Run-time Environments

Run-time Environments

Programming Languages: Lecture 12

Names and Abstractions: What s in a Name?

Subprograms. Copyright 2015 Pearson. All rights reserved. 1-1

CS558 Programming Languages Winter 2018 Lecture 4a. Andrew Tolmach Portland State University

ECE260: Fundamentals of Computer Engineering. Supporting Procedures in Computer Hardware

CSE 504. Expression evaluation. Expression Evaluation, Runtime Environments. One possible semantics: Problem:

ECE232: Hardware Organization and Design

One Ring to rule them all, One Ring to bring them all,

Principles of Programming Languages Topic: Scope and Memory Professor Louis Steinberg Fall 2004

CIT Week13 Lecture

CSc 520 Principles of Programming Languages

Calling Conventions. Hakim Weatherspoon CS 3410, Spring 2012 Computer Science Cornell University. See P&H 2.8 and 2.12

Memory Usage 0x7fffffff. stack. dynamic data. static data 0x Code Reserved 0x x A software convention

Procedure and Object- Oriented Abstraction

COP4020 Fall 2006 Final Exam

Code Generation. Lecture 19

CMSC 4023 Chapter 9. Fundamentals of Subprograms Introduction

CS 61c: Great Ideas in Computer Architecture

Implementing Subprograms

Short Notes of CS201

Review of the C Programming Language

Announcements. My office hours are today in Gates 160 from 1PM-3PM. Programming Project 3 checkpoint due tomorrow night at 11:59PM.

Imperative Programming

CS201 - Introduction to Programming Glossary By

Procedure and Function Calls, Part II. Comp 412 COMP 412 FALL Chapter 6 in EaC2e. target code. source code Front End Optimizer Back End

Binding and Storage. COMP 524: Programming Language Concepts Björn B. Brandenburg. The University of North Carolina at Chapel Hill

Programming Languages

COMP 303 Computer Architecture Lecture 3. Comp 303 Computer Architecture

CS 316: Procedure Calls/Pipelining

Example. program sort; var a : array[0..10] of integer; procedure readarray; : function partition (y, z :integer) :integer; var i, j,x, v :integer; :

Code Generation. Lecture 12

Course Administration

Binding and Variables

Run-time Environments -Part 1

Names, Scopes, and Bindings II. Hwansoo Han

Topic IV. Block-structured procedural languages Algol and Pascal. References:

NOTE: Answer ANY FOUR of the following 6 sections:

Functions in C. Memory Allocation in C. C to LC3 Code generation. Next.. Complete and submit C to LC3 code generation. How to handle function calls?

Subprograms. Bilkent University. CS315 Programming Languages Pinar Duygulu

References and pointers

CPS311 Lecture: Procedures Last revised 9/9/13. Objectives:

Transcription:

Chapter 8 :: Subroutines and Control Abstraction Programming Language Pragmatics Michael L. Scott Administrative Notes Final Test Thursday, August 3 2006 at 11:30am No lecture before or after the mid-term test You are responsible for material presented in the lectures not necessarily covered in the textbook Similar format (time) to the mid-term test Final Test Review Tomorrow We will go over the solutions of test 1 I will let you know what sections you are responsible for Administrative Notes Administrative Details Assignment Two Due date: Friday, August 4 2006 at 1:00pm Submit your assignment in the drop-box located at the Computer Science and Engineering undergraduate office Late assignments are subject to a penalty of 10% each day I may choose to mark only a subset of the assigned questions You must "show your work" where appropriate to obtain full marks Test 1 Will be returned to you tomorrow (Wednesday) Assignment Three Will be placed online one Wednesday Review Review What is type compatibility? What is type equivalence? What are the two major approaches for type checking? What is coercion? Name two languages where coercion is highly used How are records arranged in memory? Describe the issues with records/memory allocation What is an array and what is the relationship between arrays/pointers in C? What is an array slice? Does C support array slices? How can the elements of the array be accessed (two methods) What are the two layout strategies for array What is a String? What are pointers? What is garbage collection?

Allocation strategies Static Code Globals Own variables Explicit constants (including strings, sets, other aggregates) Small scalars may be stored in the instructions themselves Allocation strategies (2) Stack parameters local variables temporaries bookkeeping information Heap dynamic allocation Contents of a stack frame bookkeeping return PC (dynamic link) saved registers line number saved display entries static link arguments and returns local variables temporaries Maintenance of stack is responsibility of calling sequence and subroutine prolog and epilog discussed in Chapter 3 space is saved by putting as much in the prolog and epilog as possible time may be saved by putting stuff in the caller instead, where more information may be known e.g., there may be fewer registers IN USE at the point of call than are used SOMEWHERE in the callee Common strategy is to divide registers into caller-saves and callee-saves sets caller uses the "callee-saves" registers first "caller-saves" registers if necessary Local variables and arguments are assigned fixed OFFSETS from the stack pointer or frame pointer at compile time some storage layouts use a separate arguments pointer the VAX architecture encouraged this

Caller saves into the temporaries and locals area any caller-saves registers whose values will be needed after the call puts up to 4 small arguments into registers $4-$7 (a0-a3) it depends on the types of the parameters and the order in which they appear in the argument list puts the rest of the arguments into the arg build area at the top of the stack frame does jal, which puts return address into register ra and branches note that jal, like all branches, has a delay slot In prolog, Callee subtracts framesize from sp saves callee-saves registers used anywhere inside callee copies sp to fp In epilog, Callee puts return value into registers (mem if large) copies fp into sp (see below for rationale) restores saved registers using sp as base adds to sp to deallocate frame After call, Caller moves return value from register to wherever it's needed (if appropriate) restores caller-saves registers lazily over time, as their values are needed All arguments have space in the stack, whether passed in registers or not The subroutine just begins with some of the arguments already cached in registers, and 'stale' values in memory does jra This is a normal state of affairs; optimizing compilers keep things in registers whenever possible, flushing to memory only when they run out of registers, or when code may attempt to access the data through a pointer or from an inner scope Many parts of the calling sequence, prologue, and/or epilogue can be omitted in common cases particularly LEAF routines (those that don't call other routines) leaving things out saves time simple leaf routines don't use the stack - don't even use memory and are exceptionally fast

Parameter passing mechanisms have three basic implementations value value/result (copying) reference (aliasing) closure/name Many languages (e.g., Pascal) provide value and reference directly C/C++: functions parameters passed by value (C) parameters passed by reference can be simulated with pointers (C) void proc(int* x,int y){*x = *x+y } proc(&a,b); or directly passed by reference (C++) void proc(int& x, int y) {x = x + y } proc(a,b); Ada goes for semantics: who can do what In: callee reads only Out: callee writes and can then read (formal not initialized); actual modified In out: callee reads and writes; actual modified Ada in/out is always implemented as value/result for scalars, and either value/result or reference for structured objects In a language with a reference model of variables (Lisp, Clu), pass by reference (sharing) is the obvious approach It's also the only option in Fortran If you pass a constant, the compiler creates a temporary location to hold it If you modify the temporary, who cares? Call-by name is an old Algol technique Think of it as call by textual substitution (procedure with all name parameters works like macro) - what you pass are hidden procedures called THUNKS Generic Subroutines and Modules Generic modules or classes are particularly valuable for creating containers: data abstractions that hold a collection of objects Generic subroutines (methods) are needed in generic modules (classes), and may also be useful in their own right

Exception Handling What is an exception? a hardware-detected run-time error or unusual condition detected by software Examples arithmetic overflow end-of-file on input wrong type for input data user-defined conditions, not necessarily errors Exception Handling What is an exception handler? code executed when exception occurs may need a different handler for each type of exception Why design in exception handling facilities? allow user to explicitly handle errors in a uniform manner allow user to handle errors without having to check these conditions explicitly in the program everywhere they might occur Coroutines Coroutines Coroutines are execution contexts that exist concurrently, but that execute one at a time, and that transfer control to each other explicitly, by name Coroutines can be used to implement iterators (Section 6.5.3) threads (to be discussed in Chapter 12) Because they are concurrent (i.e., simultaneously started but not completed), coroutines cannot share a single stack