Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - compiler design
Search - compiler design - List
本程序集是Allen I. Holub所写的《Compiler Design in C》一书的附随软件,其中有作者自己编写的词法分析和语法分析工具LeX,occs和LLama,该软件包还包括一个显示C语言分析过程的程序-This set of program is the attached software in 《Compiler Design in C》 writed by Allen I. Holub, it contains the Lex, occs and Llama which are phraseing analysis tools writed by Allen, it also contains a program which can display the analysis procedure of C
Date : 2025-12-19 Size : 980kb User : 站长

一个小型c compiler的设计与实现-a small c compiler Design and Implementation
Date : 2025-12-19 Size : 874kb User : 张晶

由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 8086/8088 directive to the knowledge of the system itself, this compilation can do to code meaning entirely faithful to the source, but not running. For the support of local variables, in the time constraints, all local variables were all handled in the static variable. So recursive function will not get the right results.
Date : 2025-12-19 Size : 254kb User : 周杰

DL : 0
这是个编译原理的课程设计,是一个DO-WHILE循环语句的翻译程序设计,包括词法分析,语法分析,生成中间代码四元式。-This is a compiler theory of curriculum design, is a DO-WHILE loop is the translation program design, including lexical analysis, grammar analysis, code generation middle-4 yuan.
Date : 2025-12-19 Size : 8kb User : 冷清雪

c语言编译器,跨平台,4.2版本 lcc version 3.x is described in the book "A Retargetable C Compiler: Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/~drh/pubs/interface4.pdf. -c compiler, cross-platform, version 4.2 LCC version 3.x is described in the book "A Retargetable C Compiler : Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/ ~ drh/pubs/interface4.pdf.
Date : 2025-12-19 Size : 624kb User : 王陈

c语言编译器,3.6版本 lcc version 3.x is described in the book "A Retargetable C Compiler: Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/~drh/pubs/interface4.pdf. -c language compiler, version 3.6 LCC version 3.x is described in the book "A Retargetable C Compiler : Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/ ~ drh/pubs/interface4.pdf.
Date : 2025-12-19 Size : 225kb User : 王陈

一个完整的编译器设计,包含词法语法,编译输出三地址码,很不错!-a complete compiler design, including lexical syntax, compiler output code addresses three very good!
Date : 2025-12-19 Size : 238kb User : xy

(1) 将此番分析程序设计成独立一遍扫描源程序的结构。词法分析的输出结果采用如下的二元组表示: (单词种别,单词自身的值) 对表识符,采用下列的二元组表示: (表识符,指向标识符表项的指针) 单词种别建议采用一个关键字一个整数值、一个算符一个整数值等形式,每个整数值是不重复的,设计中应考虑好编码的方案(要跟语法分析连贯)。 (2) 测试用例: 应该建立至少两个测试用例:一个词法上正确的PL/0源程序和词法上部正确的源程序。 -(1) This analysis program will be designed as an independent source to scan the structure again. Lexical Analysis of the output of the dual use of the following group, said: (the word of other species, the value of their own words) on the table knowledge Fu, using the following binary group, said: (Table numeracy Fu, point identifier table entry pointer) word other species suggested an integer value of a keyword, an operator the form of an integer value, each integer value is not repeated, the design should be considered a good encoding program (with grammar analysis of coherence). (2) test case: It should be the establishment of at least two test cases: a lexical correct PL/0 source and the upper part of the correct morphology of the source.
Date : 2025-12-19 Size : 2kb User : dong

一个c语言写做的编译器的源码,可以供编译器开发的人员学习之用-A c language compiler to do the source, the compiler can be developed for staff learning
Date : 2025-12-19 Size : 506kb User : 张孟

DL : 0
编译原理实验:设计并实现一个Simple语言的编译器-Compiler Principle Experiment: Design and realization of a Simple Language compiler
Date : 2025-12-19 Size : 691kb User : 陈飞

DL : 0
编译原理中间代码生成器的设计,输出四元表达式-The principle of intermediate code generation compiler design, the output quaternion expression
Date : 2025-12-19 Size : 8kb User : 项阳

first集 与 follow集 编译原理-first set and follow the principle set compiler
Date : 2025-12-19 Size : 2kb User : yiminhui

DL : 0
编译器设计的编译程序涉及到编译五个阶段中的三个,即词法分析器、语法分析器和中间代码生成器。编译程序的输出结果包括词法分析后的二元式序列、变量名表、状态栈分析过程显示及四元式序列程序。整个编译程序分为三部分:词法分析部分、语法分析处理及四元式生成部分、输出显示部分。-Compiler design compiler compiler involved in three of five stages, namely, lexical analyzer, syntax analyzer and intermediate code generator. Compiler output results include lexical analysis of binary sequence, variable watch, state stack analysis shows and quaternion sequence procedures. The entire compiler is divided into three parts: part of lexical analysis, grammar analysis and to generate part of quaternion type, the output display.
Date : 2025-12-19 Size : 173kb User : 佚星

C语言实现的小编译器,挺有意思的,希望对大家有帮助。-C language compiler to achieve a small, very interesting, would like to help everyone.
Date : 2025-12-19 Size : 680kb User : Shellbird

this sa compiler design proj-this is sa compiler design proj
Date : 2025-12-19 Size : 117kb User : cnu

this is a compiler design project
Date : 2025-12-19 Size : 30kb User : cnu

Compiler design programs
Date : 2025-12-19 Size : 98kb User : Nitin

一个超级牛B的人设计的c编译器,包含全部源码!-A super cow who designed B c compiler, contains all the source code!
Date : 2025-12-19 Size : 342kb User : 李杰龙

编译原理本科资料课件,作者,Alfred V.Aho, Monica S.Lam,英文第二版(Compiler design, undergraduate course materials)
Date : 2025-12-19 Size : 2.65mb User : 沐兰

编译器设计,C语言实现,完整的编译器结构和语言及概念介绍。(Compiler design in C)
Date : 2025-12-19 Size : 14.95mb User : darvei
« 12 3 4 5 6 7 8 9 10 ... 24 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.