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 (21.48 KB, 1 trang )
COMPILER CONSTRUCTION
Week 13 Tutorial Questions
Code Generation
1. Write the equivalent Java program for the following MC program:
int main() {
int a,b[3];
int e[3],f;
float c[4],d;
for (f = 1; f < 3; f = f +1)
int foo(boolean e,int f[]) {
e[f] = 0;
if (e && (f[1]==0))
foo(true,e);
a = 1;
repeat
else
b[0] = a + b[0];
b[1] = a = 2;
until (b[0] > 10);
return a;
return 0;
}
}
Compile and translate to Jasmin code. Write the Jasmin code of the above program
2. Given the following grammar:
S’ → P
P → T id ; P | F
F → T id (T id) { D L } F | ∈
D → T id ; D | ∈
L→SL|∈
S→E;|{DL}