Language Evaluation Criteria. Evaluation Criteria: Readability. Evaluation Criteria: Writability. ICOM 4036 Programming Languages



Similar documents
Chapter 1. Dr. Chris Irwin Davis Phone: (972) Office: ECSS CS-4337 Organization of Programming Languages

1/20/2016 INTRODUCTION

Image credits:

COS 301 Programming Languages

What is a programming language?

CSE 130 Programming Language Principles & Paradigms

CSCI 3136 Principles of Programming Languages

CSC Software II: Principles of Programming Languages

Evolution of the Major Programming Languages

n Introduction n Art of programming language design n Programming language spectrum n Why study programming languages? n Overview of compilation

CSE 307: Principles of Programming Languages

Lecture 1: Introduction

Chapter 13 Computer Programs and Programming Languages. Discovering Computers Your Interactive Guide to the Digital World

Characteristics of Java (Optional) Y. Daniel Liang Supplement for Introduction to Java Programming

Programming Languages

Chapter 12 Programming Concepts and Languages

Chapter 5 Names, Bindings, Type Checking, and Scopes

Levels of Programming Languages. Gerald Penn CSC 324

Interpreters and virtual machines. Interpreters. Interpreters. Why interpreters? Tree-based interpreters. Text-based interpreters

How To Understand Programming Languages And Programming Languages

Chapter 13: Program Development and Programming Languages

Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives

Semester Review. CSC 301, Fall 2015

1. Overview of the Java Language

Instructor Özgür ZEYDAN BEU Dept. of Enve. Eng. CIV 112 Computer Programming Lecture Notes (1)

Programming Language Inter-conversion

Programming Languages

Chapter 13: Program Development and Programming Languages

Advanced compiler construction. General course information. Teacher & assistant. Course goals. Evaluation. Grading scheme. Michel Schinz

Lesson 06: Basics of Software Development (W02D2

System Structures. Services Interface Structure

Programming Languages

Software: Systems and. Application Software. Software and Hardware. Types of Software. Software can represent 75% or more of the total cost of an IS.

Chapter 2 System Structures

1.1 WHAT IS A PROGRAMMING LANGUAGE?

Efficiency Considerations of PERL and Python in Distributed Processing

COURSE CODE: CSC 411 Organization of Programming Languages

Computer Programming. Course Details An Introduction to Computational Tools. Prof. Mauro Gaspari:

General Introduction

Compilers. Introduction to Compilers. Lecture 1. Spring term. Mick O Donnell: michael.odonnell@uam.es Alfonso Ortega: alfonso.ortega@uam.

Jonathan Worthington Scarborough Linux User Group

McGraw-Hill The McGraw-Hill Companies, Inc.,

Programming Languages

CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler

Lexical analysis FORMAL LANGUAGES AND COMPILERS. Floriano Scioscia. Formal Languages and Compilers A.Y. 2015/2016

Ed. v1.0 PROGRAMMING LANGUAGES WORKING PAPER DRAFT PROGRAMMING LANGUAGES. Ed. v1.0

UNIT-I Preliminaries

Structure of Presentation. The Role of Programming in Informatics Curricula. Concepts of Informatics 2. Concepts of Informatics 1

Chapter 3: Operating-System Structures. Common System Components

Introduction to Software Paradigms & Procedural Programming Paradigm

Chapter 6: Programming Languages

1 Introduction. 2 An Interpreter. 2.1 Handling Source Code

CSE 373: Data Structure & Algorithms Lecture 25: Programming Languages. Nicki Dell Spring 2014

Division of Mathematical Sciences

The programming language C. sws1 1

Announcements FORTRAN ALGOL COBOL. Simula & Smalltalk. Programming Languages

The C Programming Language course syllabus associate level

Programming Language Pragmatics

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture

CS 51 Intro to CS. Art Lee. September 2, 2014

THE ROLE OF PROGRAMMING PARADIGMS IN THE FIRST PROGRAMMING COURSES. 1. Introduction

BEST WEB PROGRAMMING LANGUAGES TO LEARN ON YOUR OWN TIME

Efficiency of Web Based SAX XML Distributed Processing

OKLAHOMA SUBJECT AREA TESTS (OSAT )

USE OF PYTHON AS A SATELLITE OPERATIONS AND TESTING AUTOMATION LANGUAGE

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture

Asogwa Tochukwu Chijindu Department of Computer Engineering, Enugu State University of Science and Technology(ESUT), Enugu, Nigeria.

COURSE CSE1010: COMPUTER SCIENCE 1. Prerequisite:

MICHIGAN TEST FOR TEACHER CERTIFICATION (MTTC) TEST OBJECTIVES FIELD 050: COMPUTER SCIENCE

BCS Higher Education Qualifications. Professional Graduate Diploma in IT. Programming Paradigms Syllabus

ABET General Outcomes. Student Learning Outcomes for BS in Computing

Course MS10975A Introduction to Programming. Length: 5 Days

Lecture 9. Semantic Analysis Scoping and Symbol Table

Teaching Adaptability of Object-oriented Programming Language Curriculum

OAMulator. Online One Address Machine emulator and OAMPL compiler.

CA Compiler Construction

Client Overview. Engagement Situation. Key Requirements

Objectives. Chapter 2: Operating-System Structures. Operating System Services (Cont.) Operating System Services. Operating System Services (Cont.

The K 2 System: Lisp at the Core of the ISP Business

Organization of Programming Languages CS320/520N. Lecture 05. Razvan C. Bunescu School of Electrical Engineering and Computer Science

9/11/15. What is Programming? CSCI 209: Software Development. Discussion: What Is Good Software? Characteristics of Good Software?

CPU Organisation and Operation

EFFICIENCY CONSIDERATIONS BETWEEN COMMON WEB APPLICATIONS USING THE SOAP PROTOCOL

Effective Java Programming. efficient software development

KITES TECHNOLOGY COURSE MODULE (C, C++, DS)

Python Programming: An Introduction to Computer Science

The Design of the Inferno Virtual Machine. Introduction

Programming and Software Development CTAG Alignments

Fall 2012 Q530. Programming for Cognitive Science

Lesson 1 Introduction to Rapid Application Development using Visual Basic

Chapter 3 Operating-System Structures

Web Pages. Static Web Pages SHTML

Course Goal CMSC 330: Organization of Programming Languages. Studying Programming Languages. All Languages Are (Kind of) Equivalent.

Computer Information Systems (CIS)

ATSBA: Advanced Technologies Supporting Business Areas. Programming with Java. 1 Overview and Introduction

Computer Science. Requirements for the Major (updated 11/13/03)

Principles of Programming Languages Topic: Introduction Professor Louis Steinberg

Transcription:

ICOM 4036 Programming Languages Preliminaries Dr. Amirhossein Chinaei Dept. of Electrical & Computer Engineering UPRM Spring 2010 Language Evaluation Criteria Readability: the ease with which programs can be read and understood (as maintenance became the major part of the life cycle) Writability: the ease with which a language can be used to create programs Reliability: conformance to specifications (i.e., performs to its specifications) Cost: the ultimate total cost ICOM 4036. Ch. 1. Some slides are adapted from the Sebesta s textbook ICOM 4036. Ch. 1. Overview 10 Evaluation Criteria: Readability Overall simplicity A manageable set of features and constructs Minimal feature multiplicity Minimal operator overloading Orthogonality Functional A relatively small set of primitive constructs Lang. can be combined in a relatively small number of ways Every possible combination is legal Too much orthogonality can also cause problems Data types & control statements Adequate predefined data types Syntax considerations Identifier forms: flexible composition Special words and methods of forming compound statements Form and meaning: self-descriptive constructs, meaningful keywords Evaluation Criteria: Writability Simplicity and orthogonality Few constructs, a small number of primitives, a small set of rules for combining them Support for abstraction The ability to define and use complex structures or operations in ways that allow details to be ignored Expressivity A set of relatively convenient ways of specifying operations Strength and number of operators and predefined functions Examples: i++; In Ada: and then ICOM 4036. Ch. 1. Overview 11 ICOM 4036. Ch. 1. Overview 12 1

Evaluation Criteria: Reliability Type checking Testing for type errors (as early as possible) Exception handling Intercept run-time errors and take corrective measures, and then continue E.g. in Ada, C++, Java, etc. Aliasing Presence of two or more distinct referencing methods for the same memory location Readability and writability A language that does not support natural ways of expressing an algorithm will require the use of unnatural approaches, and hence reduced reliability ICOM 4036. Ch. 1. Overview 13 Evaluation Criteria: Cost Training programmers to use the language A function of simplicity & orthogonality Writing programs A function of closeness to particular applications Compiling programs 1 st generation Ada Impediment Executing programs A function of language design A trade-off: Optimization A concern in the design of early PL s Language implementation system availability of free compilers; less expensive hardware Reliability poor reliability leads to high costs Maintaining programs A function of readability Programming Environment ICOM 4036. Ch. 1. Overview 14 Evaluation Criteria: Others Portability The ease with which programs can be moved from one implementation to another A function of degree of standardization Generality The applicability to a wide range of applications Well-definedness The completeness and precision of the language s official definition Influences on Language Design Computer Architecture Languages are developed around the prevalent computer architecture: the von Neumann architecture Programming Methodologies New software development methodologies (e.g., object-oriented software development) led to new programming paradigms and by extension, new programming languages ICOM 4036. Ch. 1. Overview 15 ICOM 4036. Ch. 1. Overview 16 2

The von Neumann Architecture Imperative Lang. & von Neumann Architecture Imperative languages: Iteration variables assignments Imperative languages, most dominant, because of von Neumann computers Data and programs stored in memory Memory is separate from CPU Instructions and data are piped from memory to CPU Basis for imperative languages Variables model memory cells Assignment statements model piping Iteration is efficient ICOM 4036. Ch. 1. Overview 17 ICOM 4036. Ch. 1. Overview 18 The von Neumann Architecture Fetch-execute-cycle (on a von Neumann architecture computer) initialize the program counter repeat forever fetch the instruction pointed by the counter increment the counter decode the instruction execute the instruction end repeat Programming Methodologies Influences 1950s and early 1960s: Simple applications; worry about machine efficiency Late 1960s: People efficiency became important; readability, better control structures structured programming top-down design and step-wise refinement Late 1970s: Process-oriented to data-oriented data abstraction Middle 1980s: Object-oriented programming Data abstraction + inheritance + polymorphism ICOM 4036. Ch. 1. Overview 19 ICOM 4036. Ch. 1. Overview 20 3

Language Categories Imperative Central features are variables, assignment statements, and iteration Include languages that support object-oriented programming Include scripting languages Include the visual languages Examples: C, Java, Perl, JavaScript, Visual BASIC.NET, C++ Functional Main means of making computations is by applying functions to given parameters Examples: LISP, Scheme Logic Rule-based (rules are specified in no particular order) Example: Prolog Markup/programming hybrid Markup languages extended to support some programming Examples: JSTL, XSLT Language Design Trade-Offs Reliability vs. cost of execution Example: Java demands all references to array elements be checked for proper indexing, which leads to increased execution costs Readability vs. writability Example: APL provides many powerful operators (and a large number of new symbols), allowing complex computations to be written in a compact program but at the cost of poor readability Simple examples: X 5 8 10 15 X+6 X[ X4?100] Writability (flexibility) vs. reliability Example: C++ pointers are powerful and very flexible but are unreliable ICOM 4036. Ch. 1. Overview 21 ICOM 4036. Ch. 1. Overview 22 Implementation Methods Compilation Programs are translated into machine language Pure Interpretation Programs are interpreted by another program known as an interpreter Hybrid Implementation Systems A compromise between compilers and pure interpreters Layered View of Computer The operating system and language implementation are layered over machine interface of a computer ICOM 4036. Ch. 1. Overview 23 ICOM 4036. Ch. 1. 24 4

The Compilation Process Compilation Translate high-level program (source language) into machine code (machine language) Slow translation, fast execution Compilation process has several phases: lexical analysis: converts characters in the source program into lexical units e.g.: identifiers, keywords, operators, punctuation syntax analysis: transforms lexical units into parse trees which represent the syntactic structure of program Semantics analysis: generate intermediate code code generation: machine code is generated ICOM 4036. Ch. 1. 25 ICOM 4036. Ch. 1. Overview 26 Additional Compilation Terminologies Load module (executable image): the user and system code together Linking and loading: the process of collecting system program units and linking them to a user program As well as linking other user programs to it Von Neumann Bottleneck Connection speed between a computer s memory and its processor determines the speed of a computer Program instructions often can be executed much faster than the speed of the connection; the connection speed thus results in a bottleneck Known as the von Neumann bottleneck; it is the primary limiting factor in the speed of computers ICOM 4036. Ch. 1. Overview 27 ICOM 4036. Ch. 1. Overview 28 5

Pure Interpretation Pure Interpretation Process No translation Easier implementation of programs (run-time errors can easily and immediately be displayed) Slower execution (10 to 100 times slower than compiled programs) Often requires more space Now rare for traditional high-level languages Significant comeback with some Web scripting languages (e.g., JavaScript, PHP) ICOM 4036. Ch. 1. Overview 29 ICOM 4036. Ch. 1. 30 Hybrid Implementation Systems A compromise between compilers and pure interpreters A high-level language program is translated to an intermediate language that allows easy interpretation Faster than pure interpretation Examples Perl programs are partially compiled to detect errors before interpretation Initial implementations of Java were hybrid; the intermediate form, byte code, provides portability to any machine that has a byte code interpreter and a run-time system (together, these are called Java Virtual Machine) Hybrid Implementation Process ICOM 4036. Ch. 1. Overview 31 ICOM 4036. Ch. 1. 32 6

Just-in-Time Implementation Systems Initially translate programs to an intermediate language Then compile the intermediate language of the subprograms into machine code when they are called Machine code version is kept for subsequent calls JIT systems are widely used for Java programs.net languages are implemented with a JIT system Preprocessors Preprocessor macros (instructions) are commonly used to specify that code from another file is to be included A preprocessor processes a program immediately before the program is compiled to expand embedded preprocessor macros A well-known example: C preprocessor expands #include, #define, and similar macros ICOM 4036. Ch. 1. Overview 33 ICOM 4036. Ch. 1. Overview 34 Programming Environments A collection of tools used in software development UNIX An older operating system and tool collection Nowadays often used through a GUI (e.g., CDE, KDE, or GNOME) that runs on top of UNIX Microsoft Visual Studio.NET A large, complex visual environment Used to build Web (and non-web) applications in any.net language NetBeans An integrated development environment (IDE) Similar to Visual Studio.NET, except for Web applications in Java, ICOM 4036. Ch. 1. Overview 35 Summary The study of programming languages is valuable for a number of reasons: Increase our capacity to use different constructs Enable us to choose languages more intelligently Makes learning new languages easier Most important criteria for evaluating programming languages include: Readability, writability, reliability, cost Major influences on language design have been machine architecture and software development methodologies The major methods of implementing programming languages are: compilation, pure interpretation, and hybrid implementation ICOM 4036. Ch. 1. Overview 36 7