收藏 分享(赏)

编译原理语义分析实验报告.doc

上传人:liyang3100 文档编号:1424845 上传时间:2018-07-15 格式:DOC 页数:11 大小:78KB
下载 相关 举报
编译原理语义分析实验报告.doc_第1页
第1页 / 共11页
编译原理语义分析实验报告.doc_第2页
第2页 / 共11页
编译原理语义分析实验报告.doc_第3页
第3页 / 共11页
编译原理语义分析实验报告.doc_第4页
第4页 / 共11页
编译原理语义分析实验报告.doc_第5页
第5页 / 共11页
点击查看更多>>
资源描述

1、语义分析实验报告一、 实验目的:通过上机实习,加深对语法制导翻译原理的理解,掌握将语法分析所识别的语法成分变换为中间代码的语义翻译方法。二、 实验要求:采用递归下降语法制导翻译法,对算术表达式、赋值语句进行语义分析并生成四元式序列。三、 算法思想:1、设置语义过程。(1)emit(char *result,char *ag1,char *op,char *ag2)该函数的功能是生成一个三地址语句送到四元式表中。四元式表的结构如下:struct char result8;char ag18;char op8;char ag28;quad20;(2) char *newtemp()该函数回送一个新

2、的临时变量名,临时变量名产生的顺序为T1, T2,char *newtemp(void) char *p;char m8;p=(char *)malloc(8);k+;itoa(k,m,10);strcpy(p+1,m);p0=t;return(p);2、函数 lrparser 在原来语法分析的基础上插入相应的语义动作:将输入串翻译成四元式序列。在实验中我们只对表达式、赋值语句进行翻译。四、 源程序代码:#include#include#include#includestructchar result12;char ag112;char op12;char ag212;quad;char pr

3、og80,token12;char ch;int syn,p,m=0,n,sum=0,kk; /p 是缓冲区 prog 的指针,m 是 token 的指针char *rwtab6=“begin“,“if“,“then“,“while“,“do“,“end“;void scaner();char *factor(void);char *term(void);char *expression(void);int yucu();void emit(char *result,char *ag1,char *op,char *ag2);char *newtemp();int statement();in

4、t k=0;void emit(char *result,char *ag1,char *op,char *ag2)strcpy(quad.result,result);strcpy(quad.ag1,ag1);strcpy(quad.op,op);strcpy(quad.ag2,ag2);cout=aelse switch(ch)case)syn=21;tokenm+=ch;else if(ch=)syn=22;tokenm+=ch;elsesyn=23;p-;break;case:m=0;tokenm+=ch;ch=progp+;if(ch=)syn=24;tokenm+=ch;elses

5、yn=20;p-;break;case:m=0;tokenm+=ch;ch=progp+;if(ch=)syn=18;tokenm+=ch;elsesyn=17;p-;break;case*:syn=13;token0=ch;break;case/:syn=14;token0=ch;break;case+:syn=15;token0=ch;break;case-:syn=16;token0=ch;break;case=:syn=25;token0=ch;break;case;:syn=26;token0=ch;break;case(:syn=27;token0=ch;break;case):s

6、yn=28;token0=ch;break;case#:syn=0;token0=ch;break;default: syn=-1;break;int lrparser()/cout“调用 lrparser“endl;int schain=0;kk=0;if(syn=1) scaner();schain=yucu();if(syn=6) scaner();if(syn=0 else if(kk!=1)cout“缺 end!“endl;kk=1; else cout“缺 begin!“endl;kk=1;return(schain);int yucu()/ cout“调用 yucu“endl;i

7、nt schain=0;schain=statement();while(syn=26)scaner();schain=statement();return(schain);int statement()/cout“调用 statement“endl;char *eplace,*tt;eplace=(char *)malloc(12);tt=(char *)malloc(12);int schain=0;switch(syn)case 10:strcpy(tt,token);scaner();if(syn=18)scaner();strcpy(eplace,expression();emit(

8、tt,eplace,“,“);schain=0;elsecout“缺少赋值符!“endl;kk=1;return(schain);break;return(schain);char *expression(void)char *tp,*ep2,*eplace,*tt;tp=(char *)malloc(12);ep2=(char *)malloc(12);eplace=(char *)malloc(12);tt =(char *)malloc(12);strcpy(eplace,term (); /调用 term 分析产生表达式计算的第一项 eplacewhile(syn=15)|(syn=1

9、6)if(syn=15)strcpy(tt,“+“);else strcpy(tt,“-“);scaner();strcpy(ep2,term(); /调用 term 分析产生表达式计算的第二项 ep2strcpy(tp,newtemp(); /调用 newtemp 产生临时变量 tp 存储计算结果emit(tp,eplace,tt,ep2); /生成四元式送入四元式表strcpy(eplace,tp);return(eplace);char *term(void)/ cout“调用 term“endl;char *tp,*ep2,*eplace,*tt;tp=(char *)malloc(1

10、2);ep2=(char *)malloc(12);eplace=(char *)malloc(12);tt=(char *)malloc(12);strcpy(eplace,factor();while(syn=13)|(syn=14)if(syn=13)strcpy(tt,“*“);else strcpy(tt,“/“);scaner();strcpy(ep2,factor(); /调用 factor 分析产生表达式计算的第二项 ep2strcpy(tp,newtemp(); /调用 newtemp 产生临时变量 tp 存储计算结果emit(tp,eplace,tt,ep2); /生成四元

11、式送入四元式表strcpy(eplace,tp);return(eplace); char *factor(void)char *fplace;fplace=(char *)malloc(12);strcpy(fplace,“);if(syn=10)strcpy(fplace,token); /将标识符 token 的值赋给 fplacescaner();else if(syn=11)itoa(sum,fplace,10);scaner();else if(syn=27)scaner();fplace=expression(); /调用 expression 分析返回表达式的值if(syn=28)scaner();elsecout“缺)错误 !“endl;kk=1;elsecout“缺(错误!“endl;kk=1;return(fplace);void main()p=0;cout“*语义分析程序*“endl;cout“Please input string:“endl;do

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 实用文档 > 往来文书

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报