Computer Lab I index
Jul 13, 2013 by Prashant Gunjal
1) Write a programm to recgnize static words from english 2 ) Lex programm to recgnize static...
read moreWAP to generate the target code by using labelling algorithm.
Jul 13, 2013 by Prashant Gunjal
/* 2) WAP to generate the target code by using labelling algorithm. Input: Labelled tree Output: Target...
read moreWAP to label the tree for code generation
Jul 13, 2013 by Prashant Gunjal
/* 1) WAP to label the tree for code generation. Input: Syntax Tree Output: Labelled syntax...
read morecode optimization techniques: a)strength reduction b) constant folding
Jul 13, 2013 by Prashant Gunjal
### tac.txt ##### 1 sq b - c 2 * 2 c c 3 := c -...
read morecode optimization techniques: a)dead code elimination b) constant propagation
Jul 13, 2013 by Prashant Gunjal
### tac.txt ### 1 := b - c 2 * b c c 3 + b a...
read moreoptimization techniques: a)common sub-expression elimination b)variable propagation
Jul 13, 2013 by Prashant Gunjal
###### tac.txt ####### 1 + b a rep 2 * 2 c a 3 := c -...
read moregrammar to recognize declarations of variables, assignment statement & if- else statement as per syntax of C and generate equivalent three address code
Jul 13, 2013 by Prashant Gunjal
##### pr.h ######## struct holder { char name[8]; char type[6]; }st[30]; ##### pr_8.l ###### %{ #include<stdio.h> #include...
read moregrammar to recognize declarations of variables, assignment statement & “while” statement as per syntax of C and generate equivalent three address code
Jul 13, 2013 by Prashant Gunjal
##### pr.h ###### struct holder { char name[8]; char type[6]; }st[30]; ####### pr_7.l ####### %{ #include<stdio.h> #include...
read more