Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (23.05 KB, 1 trang )
COMPILER CONSTRUCTION
Week 11 Tutorial Questions
Symbol Tables, Type Checking and Jasmin Code
1. Write method insert(SymEntry sym) for a linear symbol table.
2. Write type expressions for the folowing types
a. An array of pointers to floats, where the array index ranges from 1 to 100
b. A two-dimensional array of integers whose rows are indexed from 0 to 9
and whose columns are indexed from -10 to 10
3. Given the following grammar:
P→DF
D → T id ; D | ∈
F → T id (T id) { D L } F | ∈
L→SL|∈
S → id = E ; | { D L }
T → int | float
E → INTLIT | FLOATLIT | id | id (E)
Write translation schemes:
a. to keep track of scope (using enterScope, exitScope).
b. to detect an undeclared variable.
c. to detect a redeclared variable.
d. to detect an undeclared function.
e. to detect a redeclared function.
f. to detect a reference to a variable as a function
g. to detect a reference to a function as a variable
h. to detect a type mismatch
4. Given the following grammar that generates a function:
F → T id (D) { S }
D → T id D | ∈
T → int | boolean
S → id (L)
L→EL|∈