编译原理复习大纲lk.doc
《编译原理复习大纲lk.doc》由会员分享,可在线阅读,更多相关《编译原理复习大纲lk.doc(9页珍藏版)》请在咨信网上搜索。
Delegates, staff: Hello! in the run-up to the Spring Festival, we held one session of four staff representatives Conference 2013-workshop, full back in 2012, careful analysis of the current situation, discuss 2013 development plans. Here, on behalf of my company 2013 work reports to the General Assembly, for consideration. Pillar I, 2012 back in 2012, XX power companies adhere to the party's 17 great spirit for guidance, comprehensively implement the scientific concept of development, promoting cost-leadership strategy, standards, focus on implementation, lean management, continuously improve, smooth present safety situation of enterprise management, business management and control scientific and standardized, and the dedication of staff, manage a harmonious and democratic atmosphere of the good situation. Main indicators are as follows:-the battery indicator: power generation totaled 7.815 billion kWh, beyond the annual budget implementation capacity of 315 million kWh, an increase of 757 million kWh. Sales totaled 7.425 billion kWh, exceeding sales of 330 million kWh the annual Executive budget, an increase of 729 million kWh. --Security measures: unplanned outages 2.5 times. No personal injury accident occurred, no major accident and above, no major fire accidents without environmental pollution accidents, safety for three consecutive years to maintain stability to good posture. – Business financial indicators: total profits of 255 million Yuan, beyond the annual budget of 207 million Yuan, beyond the Datang company index 41.89 million Yuan, an increase of 1.76 million Yuan, FCM assessment at grade four. --Energy: power supply standard coal completing 312.25 g/kWh, down 0.1 g/kWh; integrated auxiliary power consumption ratio in 5.12%, down 0.26%; pollutant emissions performance greatly reduced compared to last year, carbon 0.09 g/kWh, sulfur dioxide 0.104 g/kWh NOx 0.512 g/kWh; dust removal efficiency of more than 99.8%. --Reliability index: equivalent availability factor in 93.47%, increased 7.95% from a year earlier. Equivalent forced outage rate 0.08%, 0.16% reduction over the same period a year earlier. Major achievements: first, we should adhere to the two "management system" basis, strengthening technological research, strengthen hidden hazards control and intrinsic safety Enterprise construction took new steps. -The two "management system" for improvement. Focus on promoting the power of the company management system and the application and implementation of the safety loop five-star management system, improve the safety management system, realize the system of safety control. Further regulate security routines, safety supervision and management network role to play to achieve closed-loop. Strengthening the supervision and management of habitual violation of, strengthening the safety supervision of outsourcing contractors. Carried out in spring and autumn of security inspections, flood control and inspection, safety production month, day supervision of production safety and the Olympic Games and other 1、 理解编译器的概念,掌握编译器的功能,熟练掌握编译器的主要翻译步骤。了解与编译器相关的程序及其功能 编译程序的工作过程一般可以划分为 词法分析,语法分析,语义分析,中间代码生成,代码优化 等几个基本阶段,同时还会伴有 表格处理 和 出错处理 . @@ 2、 扫描器功能,理论依据,它完成任务是什么? 扫描器的任务是从源程序中识别出一个个 单词符号 ,编译程序对源程序或中间代码程序从头到尾扫描一次,找到单词。 @@ 5. 符号表用法如、符号表中的信息栏中登记了每个名字的有关的性质,它有那些内容? 名字、符号种类、类型、地址、扩展属性指针。 @@ 6.能画出程序框图,了解其功能,能叙述编译的基本结构 @@ 2、 文法的集中类型和主要特点.如文法有几种类型 各自特点?一个文法组成部分? 0型文法:短语结构文法,任何0型文法都是递归和可枚举的。 1型文法:上下文有关文法,产生式左边至少有一个非终结符。 2型文法:上下文无关文法,产生式左边只能有一个非终结符,右边无限制。 3型文法:正则文法,右部可以有一个终结符和一个非终结符,或只有一个终结符。 四元组(V[非终结符],T[终结符],P[产生式],S[开始符号]); @@ 3. 何为最左推导?最右推导? 最左推导,在A的每次推导过程中,每一步都是对当前句型的最左变量进行替换,每一步所得为左句型,相应的归约称为最右归约;最右推导,在A的每次推导过程中,每一步都是对当前句型的最右变量进行替换,每一步所得为右句型,相应的归约称为最左归约。 @@ 4、 掌握正则表达式及其生成语言的定义,熟练掌握正则表达式的三种基本运算,会根据语言写出正则表达式,或者反过来写出指定的正则表达式生成的语言的特征。 1. 从各选择对象中选择,用元字符|表示。比如: a|b; 2. 连结,由并置表示。比如: ab; 3. 重复或“闭包”,由元字符*表示。比如: a*; @@ 例题:给出下面语言的相应文法: L1={an bn | n≥1} L2={anbm+nam | n≥1,m≥0} G1: S→AB A→aAb | ab B→bBa | ε G1: A→aAb |ab 5、 掌握DFA及其可接受的语言的定义,会根据语言画DFA图,或者反过来写出指定的DFA图可接受的语言的特征。 例子:为正规式(a|b)*a(a|b) 构造一个等价的确定的有限自动机。 a,b a a b Þ 0 1 2 解答: @@ 5、 掌握用代码实现DFA的两种算法,熟练掌握基于转换表的算法。 例子:给定下列自动机: 其中:开始状态:0 终止状态:2 a a Þ a 0 b b b 1 2 (1)把此自动机转换为确定自动机DFA。 (2)给出此DFA的正则表达式。 解答:(1): 有状态矩阵如图: a b Þ0 01 2 01 01 2 -2 1 2 1 2 a b Þ0 0,1 2 1 2 -2 1 2 Þ 从而可得DFA如图: - Þ 0 2 a a b a 1 01 b b b 极小化后: Þ 0 2 b a b b 1 a @@ (2)此DFA的正则表达式为: (aa*b½b)(b½ab)* 或 a*b(b½ab)*。 @@ 6、 掌握正则表达式和DFA图,了解词法分析程序。 例题:给定文法G[S]: S→aA|bQ; A→aA|bB|b;B→bD|aQ ;Q→aQ|bD|b;D→bB|aA ;E→aB|bF F→bD|aE|b 构造相应的最小的DFA 。 解:先构造其NFA: 用子集法将NFA确定化: a b S A Q A A BZ Q Q DZ BZ Q D DZ A B D A B B Q D 将S、A、Q、BZ、DZ、D、B重新命名,分别用0、1、2、3、4、5、6表示。因为3、4中含有z,所以它们为终态。 a b 0 1 2 1 1 3 2 2 4 3 2 5 4 1 6 5 1 6 6 2 5 令P0=({0,1,2,5,6},{3,4})用b进行分割: P1=({0,5, 6},{1,2},{3,4})再用b进行分割: P2=({0},{5, 6},{1,2},{3,4})再用a、b 进行分割,仍不变。 再令{0}为A,{1,2}为B,{3,4}为C,{5,6}为D。 最小化为右上图。 @@ 2、 掌握文法的二义性概念,会识别和消除文法的二义性。 例题:设有文法G[S]: S→S(S)S|ε,该文法是否为二义文法?说明理由。 答:是二义的,因为对于()()可以构造两棵不同的语法树。 S S S ( S ) S S ( S ) S ε ε S ( S ) S S ( S ) S ε ε ε ε ε ε ε ε @@消除下列文法G[E]的左递归。 E→E-T∣T T→T/F∣F F→( E )∣i 解答: 消除文法G[E]的左递归后得到: E→TE’ E’→ -TE’∣ε T→FT’ T’→/FT’∣ε F→( E )∣i @@ 说明下面文法G[S]是二义性文法:S→SaS|SbS|cSd|eS|f 例子:fafbf是文法G[S]的一个句子,并且有两个不同的最右推导。 (1)S => SaS => SaSbS => SaSbf=> Safbf=> fafbf (2)S => SbS => Sbf=> SaSbf => Safbf=> fafbf 因此说明此文法有二义性。 @@ 考虑文法 G[S]: S → (T) | a+S | a T → T,S | S 消除左递归公式: A→Aa|b A→bA' A'→aA'|ε 消除文法的左递归及提取公共左因子。 解:消除文法G[S]的左递归: S→(T) | a+S | a T→ST′ T′→,ST′| ε 提取公共左因子: S→(T) | aS′ S′→+S | ε T→ST′ T′→,ST′| ε @@ b) 计算First集合和Follow集合的算法; 例题:对文法G(S):S → a | ^ | (T); T → T,S | S S’->#S#; )<lastvt(T) (<firstvt(T) 答:(1) a ^ ( ) , # a > > > ^ > > > ( < < < = < ) > > > , < < < > > # < < < = (2) 是算符优先文法,因为任何两个终结符之间至多只有一种优先关系。 (3) 给出输入串(a,a)#的算符优先分析过程。 步骤 栈 当前输入字符 剩余输入串 动作 1 # ( a,a# #<( 移进 2 #( a ,a)# (<a 移进 3 #(a , a)# a>, 归约 4 #(T , a)# T<, 移进 5 #(T, a )# ,<a 移进 6 #(T,a ) # a>) 归约 7 #(T,T ) # ,>) 归约 8 #(T ) # (=) 移进 9 #(T) # )># 归约 10 #T # 接受 @@ d)LL(1)分析算法; 例子:设有文法G(S): S—>aBc|bAB A—>aAb|b B—>b|ε ①求各产生式的FIRST集,FOLLOW(A)和FOLLOW(B),以及各产生式的SELECT集。 ②构造LL(1)分析表,并分析符号串baabbb是否是。 解:(1)FIRST(aBc)={a}, FIRST(bAB)={b} FIRST(aAb)={a}, A→b: FIRST(A→b)={b}, B→b: FIRST(b) = {b}, FIRST(ε)={ε} FOLLOW(A)={b,#}, FOOLOW(B)={c,#} SELECT(S→aBc)={a}, SELECT(S→bAB) ={b}, SELECT(A→aAb)={a}, SELECT(A→b)={b}, SELECT(B→b)={b}, SELECT(B→)={c, #} 因此,所得的LL(1)分析表如表A-4所示。 表A-4 LL(1)分析表 输入 VN 输入符号 a b c # S S→aBc S→bAB A A→aAb A→b B B→b B→ B→ (2)分析符号串baabbb成功,baabbb是该文法的句子,如图A-16所示。 图A-16 识别串baabbb的过程 @@ 1、 掌握判断一个上下文无关文法是否为LL(1)文法的充分必要条件,并会对指定的文法进行判断。 例题:设将文法G改写成等价的LL(1)文法,并构造预测分析表。 G:S→S*aT|aT|*aT; T→+aT|+a 解:消除左递归后的文法G’: S→aTS’|*aTS’ S’→*aTS’|ε T→+aT|+a 提取左公因子得文法G’’: S→aTS’|*aTS’ S’→*aTS’|ε T→+aT’ T’→T|ε Select(S→aTS’)={a} Select(S→*aTS’)={*} Select(S→aTS’)∩Select(S→*aTS’)=Ф Select(S’→*aTS’)={*} Select(S’→ε)=Follow(s’)={#} Select(S’→*aTS’)∩Select(S’→ε)= Ф Select(T→+aT’)={+} Select(T’→T)=First(T) ={+} Select(T’→ ε)=Follow(T’)={*,#} Select(T’→T)∩Select(T’→ε)= Ф 所以该文法是LL(1)文法。 预测分析表: * + a # S →*aTS’ →aTS’ S’ →*aTS’ →ε T →+aT’ T’ → ε →T → ε @@ (五)语义分析 理解三元式,四元式,逆波兰式等中间代码表示方法 例题:写出表达式a=b*c+b*d对应的逆波兰式、四元式序列和三元式序列。 答:逆波兰式: abc*bd*+:= 四元式序列: 三元式序列: OP ARG1 ARG2 (1) (*, b, c, t1) (1) (* b, c ) (2) (*, b, d, t2) (2) (* b, d ) (3) (+, t1, t2,t3) (3) (+ (1), (2)) (4) (:=, t3, /, a) (4) (:= (3), a) 2. 掌握四种典型的参数传递机制,会针对指定的程序分析不同参数传递机制的程序运行结果。 传值,传地址,传值结果,传名; 3. 优化概念.按涉及范围可划分为那几级优化? 局部优化,全局优化,循环优化; 4.循环优化的方法有那些? 公共子表达式删除,复制传播,代码外提,强度削弱和归纳变量删除 @@ (七) 目标机器,运行存储管理,基本块和流图,下次 引用信息,一个简单的代码生成器,基本块的 dag表示法,从dag生成目标代码。 对于已知三地址代码,画出其基本块和流图; 对于一个基本块,画出其dag表示法。 例子:设有基本块如下: T1:=S+R T2:= 3 T3:= 12/T2 T4:=S/R A:=T1-T4 T5:=S+R B:=T5 T6:=T5*T3 B:=T6 (1)画出DAG图; () (2)设A,B是出基本块后的活跃变量,请给出优化后的四元式序列。 T1,T5, B 3 T2 4 S R + / * _ T3 T4 A T6,B n4 n5 n1 n2 n3 n6 n8 n7 答:(1) DAG如右图:(6分) (2) 四元式序列:(4分) T1:=S+R T4:=S/R A:=T1-T4 B:=T1*4 根据县防指办《关于开展第二轮防汛安全隐患集中排查工作的紧急通知》(**防指发〔2018〕**)文件的通知要求,为确保各项防汛措施落实,消除隐患,确保今年安全度汛activities, comprehensive and tamping Safety Foundation ... Troubleshooting, management mechanism, give full play to role of technical supervision and realization of troubleshooting, management, improved process management. This year completed the boiler lower header leakage, boiler pressure, a major risk management, completed 29 of great risks and 3 General problems of governance. Complete chemistry lab construction, thermal control, and complete the boiler scale integrated management, host shafting vibration of 10 scientific and technological projects, such as. Complete supercritical 630MW on-line simulation system development and application of circulating water MCC standby power transformation, the transformation of desulfurization waste water, the unit water supply system of comprehensive treatment and discharge valve modification of coal mill 5 key technological transformation projects, group health is improved. --Science and technology innovation is further increased. Strengthen the characteristics of supercritical unit major issues, gradually clearing the particularity of supercritical unit and regularity. Developed motor oil time management, switch action times, statistics, coal-aided measurement software, improves the production level of lean management. Increased investment in science and technology, reporting science and technology projects and 14 technical project total cost percentage of the total annual production output of 0.25%. "Large-scale coal-fired power plant flue gas desulfurization, denitrification complete development and application of key technologies" project, won the national science and technology progress second prize. 630MW supercritical units optimized control strategies and the 630MW development and application of on-line simulation system for supercritical units, supercritical 600MW units of turbine driven boiler feed pump set of comprehensive treatment of defects Datang technology respectively one or two and third. Meanwhile, information technology achievements, the company was named "China power information technology benchmarking enterprises." --Repair and maintenance has improved further. Modify the inspection standards and standards on a regular basis, standardizing work procedures, checking and inspection project. Deepening the BFS++ system, and implements maintenance information shared. Reorganizing RB logic again, and ensure the success of the RB. Innovating the mechanism of maintenance management, implemented a project manager system. Successful completion of two autonomous maintenance, reliability improved steadily. Implementing two c-level maintenance, project themselves 48.7% and 42.3%, respectively. Accomplish two circulating pumps repair and overhaul of four Mills, maintenance teams to get exercise. Promote the work of energy saving and consumption reducing, complete the unit energy consumption diagnosis, plant water balance test, 10 energy-saving projects. Second, we should adhere to "three" on the economic benefits of improving, outreach- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 编译 原理 复习 大纲 lk
咨信网温馨提示:
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【人****来】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【人****来】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【人****来】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【人****来】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
关于本文