symbol tables
play

Symbol Tables Syntax Analysis and Semantic Analysis IR Generation - PowerPoint PPT Presentation

Where We Are Source Lexical Analysis Code Symbol Tables Syntax Analysis and Semantic Analysis IR Generation Scope Checking IR Optimization Code Generation Machine Optimization Code Where We Are Beyond Syntax Errors Whats


  1. Where We Are Source Lexical Analysis Code Symbol Tables Syntax Analysis and Semantic Analysis IR Generation Scope Checking IR Optimization Code Generation Machine Optimization Code Where We Are Beyond Syntax Errors • What’s wrong with ● Program is lexically well-formed: foo(int a, char * s){...} this C code? ● Identifiers have valid names. (Note: it parses int bar() { correctly) int f[3]; ● Strings are properly terminated. int i, j, k; ● No stray characters. char q, *p; • Undeclared identifier • Multiply declared identifier float k; ● Program is syntactically well-formed: • Index out of bounds foo(f[6], 10, j); • Wrong number or types of ● Class declarations have the correct structure. break; arguments to function call i->val = 42; ● Expressions are syntactically valid. • Incompatible types for j = m + k; operation ● Does this mean that the program is legal ? printf("%s,%s.\n",p,q); • break statement outside switch/loop goto label42; • goto with no label } 5

  2. S emantic Analysis Challenges in Semantic Analysis ● Reject the largest number of incorrect ● Ensure that the program has a well-defined meaning. ● Verify properties of the program that aren't caught during programs. the earlier phases: ● Accept the largest number of correct programs. – Variables are declared before they're used. ● Do so quickly. – Expressions have the right types. – … ● Once we finish semantic analysis, we know that the user's input program is legal. Other Goals of Semantic Analysis ● Gather useful information about program for later phases: ● Determine what variables are meant by each Scope Checking identifier. ● Build an internal representation of inheritance hierarchies. ● Count how many variables are in scope at each point.

  3. What's in a Name? What's in a Name? ● The same name in a program may refer to ● The same name in a program may refer to fundamentally different things: fundamentally different things: ● This is perfectly legal Java code: ● This is perfectly legal Java code: public class Name { public class Name { int Name; int Name ; Name Name(Name Name) { Name Name ( Name Name ) { Name.Name = 137; Name . Name = 137; return Name((Name) Name); return Name (( Name ) Name ); } } } } What's in a Name? What's in a Name? ● The same name in a program may refer to ● The same name in a program may refer to completely different objects: completely different objects: ● This is perfectly legal C++ code: ● This is perfectly legal C++ code: int Awful() { int Awful() { int x = 137; int x = 137; { { string x = "Scope!" string x = "Scope!" if (float x = 0) if (float x = 0) double x = x; double x = x ; } } if (x == 137) cout << "Y"; if ( x == 137) cout << "Y"; } }

  4. Scope Symbol Tables ● The scope of an entity is the set of locations in ● A symbol table is a mapping from a name to a program where its name refers to itself. the thing that name refers to. ● The introduction of new variables into scope ● As we run our semantic analysis, continuously may hide older variables. update the symbol table with information about what is in scope. ● How do we keep track of what's visible? ● Questions: ● What does this look like in practice? ● What operations need to be defined on it? ● How do we implement it? Symbol Tables: The Intuition Symbol Tables: The Intuition 0: int x = 137; 0: int x = 137; Symbol Table 1: int z = 42; 1: int z = 42; 2: int MyFunction(int x, int y) { 2: int MyFunction(int x, int y) { 3: printf("%d,%d,%d\n", x, y, z); 3: printf("%d,%d,%d\n", x, y, z); 4: { 4: { 5: int x, z; 5: int x, z; 6: z = y; 6: z = y; 7: x = z; 7: x = z; 8: { 8: { 9: int y = x; 9: int y = x; 10: { 10: { 11: printf("%d,%d,%d\n", x, y, z); 11: printf("%d,%d,%d\n", x, y, z); 12: } 12: } 13: printf("%d,%d,%d\n", x, y, z); 13: printf("%d,%d,%d\n", x, y, z); 14: } 14: } 15: printf("%d,%d,%d\n", x, y, z); 15: printf("%d,%d,%d\n", x, y, z); 16: } 16: } 17: } 17: }

  5. Symbol Tables: The Intuition Symbol Tables: The Intuition 0: int x = 137; 0: int x = 137; Symbol Table Symbol Table 1: int z = 42; 1: int z = 42; 2: int MyFunction(int x, int y) { 2: int MyFunction(int x, int y) { x 0 3: printf("%d,%d,%d\n", x, y, z); 3: printf("%d,%d,%d\n", x, y, z); 4: { 4: { 5: int x, z; 5: int x, z; 6: z = y; 6: z = y; 7: x = z; 7: x = z; 8: { 8: { 9: int y = x; 9: int y = x; 10: { 10: { 11: printf("%d,%d,%d\n", x, y, z); 11: printf("%d,%d,%d\n", x, y, z); 12: } 12: } 13: printf("%d,%d,%d\n", x, y, z); 13: printf("%d,%d,%d\n", x, y, z); 14: } 14: } 15: printf("%d,%d,%d\n", x, y, z); 15: printf("%d,%d,%d\n", x, y, z); 16: } 16: } 17: } 17: } Symbol Tables: The Intuition Symbol Tables: The Intuition 0: int x = 137; 0: int x = 137; Symbol Table Symbol Table 1: int z = 42; 1: int z = 42; 2: int MyFunction(int x, int y) { 2: int MyFunction(int x, int y) { x x 0 0 3: printf("%d,%d,%d\n", x, y, z); 3: printf("%d,%d,%d\n", x, y, z); z 1 4: { 4: { 5: int x, z; 5: int x, z; 6: z = y; 6: z = y; 7: x = z; 7: x = z; 8: { 8: { 9: int y = x; 9: int y = x; 10: { 10: { 11: printf("%d,%d,%d\n", x, y, z); 11: printf("%d,%d,%d\n", x, y, z); 12: } 12: } 13: printf("%d,%d,%d\n", x, y, z); 13: printf("%d,%d,%d\n", x, y, z); 14: } 14: } 15: printf("%d,%d,%d\n", x, y, z); 15: printf("%d,%d,%d\n", x, y, z); 16: } 16: } 17: } 17: }

  6. Symbol Tables: The Intuition Symbol Tables: The Intuition 0: int x = 137; 0: int x = 137; Symbol Table Symbol Table 1: int z = 42; 1: int z = 42; 2: int MyFunction(int x, int y) { 2: int MyFunction(int x, int y) { x x 0 0 3: printf("%d,%d,%d\n", x, y, z); 3: printf("%d,%d,%d\n", x, y, z); z z 1 1 4: { 4: { 5: int x, z; 5: int x, z; 6: z = y; 6: z = y; 7: x = z; 7: x = z; 8: { 8: { 9: int y = x; 9: int y = x; 10: { 10: { 11: printf("%d,%d,%d\n", x, y, z); 11: printf("%d,%d,%d\n", x, y, z); 12: } 12: } 13: printf("%d,%d,%d\n", x, y, z); 13: printf("%d,%d,%d\n", x, y, z); 14: } 14: } 15: printf("%d,%d,%d\n", x, y, z); 15: printf("%d,%d,%d\n", x, y, z); 16: } 16: } 17: } 17: } Symbol Tables: The Intuition Symbol Tables: The Intuition 0: int x = 137; 0: int x = 137; Symbol Table Symbol Table 1: int z = 42; 1: int z = 42; 2: int MyFunction(int x, int y) { 2: int MyFunction(int x, int y) { x x 0 0 3: printf("%d,%d,%d\n", x, y, z); 3: printf("%d,%d,%d\n", x, y, z); z 1 z 1 4: { 4: { 5: int x, z; 5: int x, z; 6: z = y; 6: z = y; x 2 x 2 7: x = z; 7: x = z; y 2 y 2 8: { 8: { 9: int y = x; 9: int y = x; 10: { 10: { 11: printf("%d,%d,%d\n", x, y, z); 11: printf("%d,%d,%d\n", x, y, z); 12: } 12: } 13: printf("%d,%d,%d\n", x, y, z); 13: printf("%d,%d,%d\n", x, y, z); 14: } 14: } 15: printf("%d,%d,%d\n", x, y, z); 15: printf("%d,%d,%d\n", x, y, z); 16: } 16: } 17: } 17: }

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