syntax semantics and language design criteria
play

Syntax, Semantics, and Language Design Criteria Prof. Tom Austin - PowerPoint PPT Presentation

CS 152: Programming Language Paradigms Syntax, Semantics, and Language Design Criteria Prof. Tom Austin San Jos State University Lab 1 solution (in class) Formally defining a language Two aspects of a language: Syntax structure of


  1. CS 152: Programming Language Paradigms Syntax, Semantics, and Language Design Criteria Prof. Tom Austin San José State University

  2. Lab 1 solution (in class)

  3. Formally defining a language Two aspects of a language: • Syntax – structure of a program • Semantics – meaning of a program

  4. The two parts of syntax • Lexemes or tokens – the "words" of the language • Grammar – the way that words can be ordered

  5. How a compiler works Lexer/ source tokens … code Tokenizer Tokens are the "words" of the language.

  6. How a compiler works if (x < 42) { y++; Lexer/ source tokens } else { code Tokenizer "if" "(" "x" "<" y = 42; "42" ")" "{" "y" } "++" ";" "}" "else" "{" "y" "=" "42" ";" "}" Tokens are the "words" of the language.

  7. How a compiler works if (x < 42) { y++; Lexer/ source tokens } else { code Tokenizer "if" "(" "x" "<" y = 42; "42" ")" "{" "y" } "++" ";" "}" "else" "{" "y" "=" "42" ";" "}" Types of tokens: • Identifiers • Numbers • Reserved words • Special characters

  8. How a compiler works Lexer/ source tokens Parser code Tokenizer The parser reads Abstract tokens to form an Syntax Tree abstract syntax tree. (AST)

  9. Parsing Example if "if" "(" "x" "<" "42" ")" "{" "y" Parser "++" ";" "}" < = = "else" "{" "y" "=" "42" ";" "}" 42 X y + y 42 y++ has disappeared in the AST. '++' is an example of 1 y syntactic sugar.

  10. Formally defining language syntax Context-free grammars define the structure of a language. Backas-Naur Form (BNF) is a common notation.

  11. Context-free grammar for math expressions (in BNF notation) <expr> -> <expr> + <term> | <expr> - <term> | <term> <term> -> <term> * <factor> | <term> / <factor> | <factor>

  12. How a compiler works Lexer/ source tokens Parser code Tokenizer Abstract Compiler Interpreter Syntax Tree (AST) Machine code Commands

  13. Compilers and interpreters derive meaning from ASTs to turn programs into actions. Covered another day Formally defining language meaning: • Operational semantics • Denotational semantics • Axiomatic semantics

  14. Judging a language

  15. Louden & Lambert's Design Criteria 1. Efficiency 2. Regularity 3. Security 4. Extensibility

  16. Efficiency • Machine efficiency – tips to the compiler • Programmer efficiency – ease of writing programs – expressiveness (conciseness helps) • Reliability – code maintenance

  17. Efficiency Java: Python: int i = 10; i = 10 String s = "hi"; s = "hi" • Machine efficiency: Java offers tips to the compiler • Programmer efficiency: Python reduces the amount of typing required

  18. Regularity • Generality: – avoid special cases – favor general constructs • Orthogonal design: – different constructs can be combined with no unexpected restrictions • Uniformity – similar things look similar – different things look different

  19. Bad uniformity example (PHP): Same things look different Inconsistent function naming: • isset() • is_null() • strip_tags() • stripslashes()

  20. Bad uniformity example (Pascal): Different things look the same function f : boolean; begin ... Return value is true f := true; end;

  21. Security • Stop programmer errors – or handle them gracefully • Strong typing prevents some run-time errors. • Semantically-safe languages – stop executing code violating language definition – Contrast array handling by Java and by C/C++

  22. Safety (Java vs. Scheme) Java: Scheme: int x = 4; (let ([x 4] boolean b = true; [b #t]) if (b) { (if b x++; (+ 1 x) } else { (/ x "2"))) x = x / "2"; }

  23. Extensibility Allows the programmer to add new language constructs easily. Macros in Scheme are an example.

  24. Before next class Read Chapter 6 of Teach Yourself Scheme .

  25. Lab 2: More Scheme practice • Download lab2.rkt from the course website – Implement reverse function – Implement add-two-lists – Implement positive-nums-only • Using Louden & Lambert's criteria, compare Java & Scheme (or two languages of your choice)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend