Upgrade to Pro — share decks privately, control downloads, hide ads and more …

UP Lecture 13

UP Lecture 13

Compilers
Deriving Trees
(202503)

Javier Gonzalez-Sanchez

December 16, 2023
Tweet

More Decks by Javier Gonzalez-Sanchez

Other Decks in Programming

Transcript

  1. Dr. Javier Gonzalez-Sanchez | Compilers | 3 jgs Layering Rule

    1 Rule 2 Rule 3 Rule 4 Rule 5 . . . . . Leaf (Terminals, i.e., Tokens) Root Start symbol Layers
  2. Dr. Javier Gonzalez-Sanchez | Compilers | 9 jgs Exercise 4

    Provide a Grammar with Precedence of operators and Associativity for this: 10 + 20 > 15 & -10 != 1 | 20 / ( 10 + 1) < 5
  3. Dr. Javier Gonzalez-Sanchez | Compilers | 10 jgs Precedence Precedence

    of operators | & ! < > == != <= >= + - * / - ( )
  4. Dr. Javier Gonzalez-Sanchez | Compilers | 14 jgs Homework |

    Derivation Tree x = ((3 + 5) * 2 > 10) && (8 / (4 + 1) == 1 || 7 - 3 < 2)
  5. Dr. Javier Gonzalez-Sanchez | Compilers | 17 jgs Parser PROGRAM

    We have BODY. What about method definition? What about global variables? What about classes?
  6. Dr. Javier Gonzalez-Sanchez | Compilers | 21 jgs Assignment 2

    | Code VARIABLE What about int x = 2 + 2; ?
  7. Dr. Javier Gonzalez-Sanchez | Compilers | 26 jgs Assignment 2

    | Code RETURN What about return 2 + 2?
  8. Dr. Javier Gonzalez-Sanchez | Compilers | 28 jgs Assignment 2

    | Code PRINT What about calling a method (any method)?
  9. Dr. Javier Gonzalez-Sanchez | Compilers | 38 jgs Assignment 2

    | Code C What about 5 + calculate_xyz() ?
  10. jgs Compilers Javier Gonzalez-Sanchez, Ph.D. [email protected] Spring 2025 Copyright. These

    slides can only be used as study material for the Compilers course at Universidad Panamericana. They cannot be distributed or used for another purpose.