csci 3136 principles of programming languages
play

CSCI 3136 Principles of Programming Languages Summer 2013 Faculty - PowerPoint PPT Presentation

CSCI 3136 Principles of Programming Languages Summer 2013 Faculty of Computer Science Dalhousie University 1 / 62 Course Outline Introduction 2 / 62 Course Outline Introduction Programming language, History, Paradigms 3 / 62


  1. CSCI 3136 Principles of Programming Languages Summer 2013 Faculty of Computer Science Dalhousie University 1 / 62

  2. Course Outline • Introduction 2 / 62

  3. Course Outline • Introduction • Programming language, History, Paradigms 3 / 62

  4. Course Outline • Introduction • Programming language, History, Paradigms • Implementation 4 / 62

  5. Course Outline • Introduction • Programming language, History, Paradigms • Implementation • Lexical analysis and automata theory • Syntactic Analysis and Context-Free Grammars • Semantic analysis • Names, scopes, and binding • Control flow • Data types and object-oriented programming • Specialized topics 5 / 62

  6. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end.

  7. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end.

  8. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end.

  9. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end.

  10. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end.

  11. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end.

  12. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); Implementation end. 12 / 62

  13. { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin Compiler/ read(i, j); Interpreter while i <> j do if i > j then i := i - j else j := j - i; writeln(i); Implementation end. 13 / 62

  14. Compilation

  15. Compilation Compiler

  16. Compilation Source Program Compiler

  17. Compilation Source Program Compiler Target Program

  18. Compilation Source Program Compiler Target Program Target Program

  19. Compilation Source Program Compiler Target Program Input Target Program

  20. Compilation Source Program Compiler Target Program Input Target Program Output

  21. Compilation Source Program Compiler Target Program Input Target Program Output Interpretation

  22. Compilation Source Program Compiler Target Program Input Target Program Output Interpretation Interpreter

  23. Compilation Source Program Compiler Target Program Input Target Program Output Interpretation Source Program Interpreter

  24. Compilation Source Program Compiler Target Program Input Target Program Output Interpretation Source Program Interpreter Input

  25. Compilation Source Program Compiler Target Program Input Target Program Output Interpretation Source Program Interpreter Output Input 26 / 62

  26. Implementation Strategies: Example Virtual machine

  27. Implementation Strategies: Example Virtual machine Source Program Intermediate Program Translator Intermediate Program Output Virtual Machine Input 28 / 62

  28. Implementation Strategies: Example Linker

  29. Implementation Strategies: Example Linker Incomplete Machine Source Program Compiler Language Machine Language Incomplete Machine Language Linker Program Library Routines 30 / 62

  30. Implementation Strategies: Example The Preprocessor

  31. Implementation Strategies: Example The Preprocessor Modified Source Pro- Source Program Preprocessor gram Modified Source Program Compiler Assembly Language 32 / 62

  32. Implementation Strategies: Example Source-to-Source Translation (C++)

  33. Implementation Strategies: Example Source-to-Source Translation (C++) Modified Source Source Program Preprocessor Program Modified Source Program C++ compiler C code C compiler Assembly Language C code 34 / 62

  34. Phases of Compilation Character Stream Scanner (lexical analysis) Token Stream Parser (syntactic analysis) Parse Tree Symbol Table Semantic Analysis and Inter- mediate Code Generation Abstract Syntax Tree or Other Intermediate Form Machine-independent Code Improvement (Optional) Modified Intermediate Form Target Code Generation Target Language (e.g., assembly) Machine-specific Code Im- provement (Optional) Modified Target Language 35 / 62

  35. Phases of Compilation Character Stream Scanner (lexical analysis) Token Stream Parser (syntactic analysis) Parse Tree Symbol Table Semantic Analysis and Inter- mediate Code Generation Abstract Syntax Tree or Other Intermediate Form Machine-independent Code Improvement (Optional) Modified Intermediate Form Target Code Generation Target Language (e.g., assembly) Machine-specific Code Im- provement (Optional) Modified Target Language 36 / 62

  36. Phases of Compilation

  37. Phases of Compilation Scanner (lexical analysis) Parser (syntactic analysis) Semantic Analysis and Inter- mediate Code Generation

  38. Phases of Compilation Character Stream Scanner (lexical analysis) Parser (syntactic analysis) Semantic Analysis and Inter- mediate Code Generation

  39. Phases of Compilation Character Stream Scanner (lexical analysis) Token Stream Parser (syntactic analysis) Semantic Analysis and Inter- mediate Code Generation

  40. Phases of Compilation { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end. Scanner (lexical analysis) Parser (syntactic analysis) Semantic Analysis and Inter- mediate Code Generation

  41. Phases of Compilation { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end. Scanner (lexical analysis) Parser (syntactic analysis) Semantic Analysis and Inter- mediate Code Generation

  42. Phases of Compilation { calculate greatest common divisor } program gcd(input, output); var i, j : integer; begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end. Scanner (lexical analysis) { calculate greatest common divisor } Parser (syntactic analysis) program gcd ( input , output ) ; var i , j : integer ; begin read ( i , j ) ; while i <> Semantic Analysis and Inter- mediate Code Generation j do if i > j then i := i - j else j := j - i ; writeln ( i ) ; end .

  43. Phases of Compilation { calculate greatest common divisor } program gcd(input, output); var i, j : integer; - Remove comments begin read(i, j); while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end. Scanner (lexical analysis) { calculate greatest common divisor } Parser (syntactic analysis) program gcd ( input , output ) ; var i , j : integer ; begin read ( i , j ) ; while i <> Semantic Analysis and Inter- mediate Code Generation j do if i > j then i := i - j else j := j - i ; writeln ( i ) ; end .

  44. Phases of Compilation { calculate greatest common divisor } program gcd(input, output); var i, j : integer; - Remove comments begin - Remove extraneous read(i, j); characters while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end. Scanner (lexical analysis) { calculate greatest common divisor } Parser (syntactic analysis) program gcd ( input , output ) ; var i , j : integer ; begin read ( i , j ) ; while i <> Semantic Analysis and Inter- mediate Code Generation j do if i > j then i := i - j else j := j - i ; writeln ( i ) ; end .

  45. Phases of Compilation { calculate greatest common divisor } program gcd(input, output); var i, j : integer; - Remove comments begin - Remove extraneous read(i, j); characters while i <> j do if i > j then i := i - j else j := j - i; writeln(i); end. Scanner (lexical analysis) { calculate greatest common divisor } Parser (syntactic analysis) program gcd ( input , output ) ; var i , j : integer ; begin read ( i , j ) ; while i <> Semantic Analysis and Inter- mediate Code Generation j do if i > j then i := i - j else j := j - i ; writeln ( i ) ; end .

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