- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
编译原理与实践(中英双语版)上ppt325
zhangjing@ 编译原理与实践 Chapter 1 Introduction Compilers Compilers are computer programs that translate one language to another . . Its input is a program written in its source language. Usually, the source language is a high-level language (C, C++, etc). It produces an equivalent program written in its target language. The target language is object code (machine code) for the target machine. Simple example: The source program of a compiler is as follows. I := I0+ L* 2 (1.1) Target program: the output of compiler is an equivalent machine code of its source program. It looks like these. . MOVF id3, R2 (1.2) MULF #2.0, R2 MOVF id2, R1 ADDF R2, R1 MOVF R1, id1 Analysis of the source program Generally, the analysis of compiler includes Lexical Analyzer, Syntax Analyzer, Semantic Analyzer, Intermediate Code Generator, Code Optimizer and Code Generator. . In lexical analysis, characters are grouped into tokens; ; Syntax analyzer changes a group of token into grammatical phrases, it is often called parsing tree; In semantic analyzer, grammatical phrases are checked by semantic errors and type information are added; ; The intermediate code generator is a program which is easy to produce program from semantic analyzer and is easy to translate into the target program; ; Code optimization phase attempts to improve the intermediate code; ; A intermediate code instructions are each translated into a sequence of machine inst
原创力文档


文档评论(0)