in Compiler Design edited by
2,036 views
8 votes
8 votes
The syntax of the repeat-until statement is given by the following grammar

$S \rightarrow\text{ repeat }S_1\text{ until }E$

where E stands for expressions, $S$ and $S_1$ stand for statements. The non-terminals $S$ and $S_1$ have an attribute code that represents generated code. The non-terminal E has two attributes. The attribute code represents generated code to evaluate the expression and store its value in a  distinct variable, and the attribute varName contains the name of the variable in which the truth value is stored. The truth-value stored in the variable is 1 if E is true, 0 if E is false.

Give a syntax-directed definition to generate three-address code for the repeat-until statement. Assume that you can call a function newlabel() that returns a distinct label for a statement. Use the operator '\\' to concatenate two strings and the function gen(s) to generate a line containing the string s.
in Compiler Design edited by
2.0k views

1 comment

No one was able to answer this question?
2
2

1 Answer

8 votes
8 votes
Best answer

The desired code sequence is 

S.begin:
    S1.code;
    E.code;
    if(E.varName = 1) goto S.next;
    goto S.begin;
S.next:

The following syntax-directed translation can achieve this (As mentioned in question "\\" is used to concatenate two strings)

  • S.begin := newlabel()
  • S.next := newlabel()
  • S.code := gen(S.begin:) \\ S1.code \\ E.code \\ gen(if(E.varName = 1 goto S.next)) \\ gen(goto S.begin) \\ gen(S.next:)
selected by
by

2 Comments

404 please update the link
0
0

@Arjun Sir,

if(E.varName = 1) goto S.next;

when this condition isTrue then it will repeat right?

Then why s.next? 

and what does s.next actually means here?

is it exit?

0
0

Related questions