登录
首页 » Compiler program » 为一个很好地语法解析内核程序

为一个很好地语法解析内核程序

于 2022-02-03 发布 文件大小:119.73 kB
0 119
下载积分: 2 下载次数: 1

代码说明:

为一个很好地语法解析内核程序- For a well grammar analysis essence procedure

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 正则式到有穷自动机 最近刚学了编译原理 搞出来得这个东西
    正则式到有穷自动机 最近刚学了编译原理 搞出来得这个东西-to DFA has recently compiled a study of the principles of producing more things
    2022-06-15 14:07:55下载
    积分:1
  • 前些天写了个小语言的词法分析程序,因为前些天在VC知识库看到一个pascal词法分析的程序,觉得写得挺复杂的。其实词法分析程序的原理都是一样的,所以我想只要搞明...
    前些天写了个小语言的词法分析程序,因为前些天在VC知识库看到一个pascal词法分析的程序,觉得写得挺复杂的。其实词法分析程序的原理都是一样的,所以我想只要搞明白了简单的词法分析程序,再写复杂的就不难了,无非是多加几个关键字,多写几个条件判断语句而已。词法分析是编译程序的基础,也是最简单的。好,现在让我们看程序吧。 先让我们看看这个小语言的文法吧-few days ago wrote a small language lexical analysis procedures, because the other day in the knowledge base to see a VC pascal lexical analysis procedures, find that quite complex. In fact, lexical analysis procedure is the same principle, I think if you understood a simple lexical analysis procedure to write complex it is not difficult, is nothing but add a few keywords and writing several conditions judgment statement it. Lexical analysis is the basis of compilers, as well as the most simple. Well, now let us look at the procedures it. Let us look at this small language grammar it
    2022-08-08 01:17:36下载
    积分:1
  • commonly used programming language syntax and grammar forms to the public. Among...
    现将本人搜集常用的程序设计语言的词法和形式文法提供给大家。其中,词法是按LEX格式编辑,形式文法是按YACC格式书写,大家可直接用LEX和YACC工具编译生成各类程序设计语言的分析器。-commonly used programming language syntax and grammar forms to the public. Among them, morphology is based on LEX format editing, grammar form is written by YACC format, we can use the LEX and YACC tools various compiler generation programming language analyzer.
    2022-01-24 17:36:45下载
    积分:1
  • 完美反编译各种版本的CHM文件 把所有内容以完整结构(目录路径)反编译出来,100 还原,详细计算各种文件的数量:图片、网页、多媒体等; 支持所有版...
    完美反编译各种版本的CHM文件 把所有内容以完整结构(目录路径)反编译出来,100 还原,详细计算各种文件的数量:图片、网页、多媒体等; 支持所有版本的CHM,支持所有编码; 允许有选择性地导出不同类型的文件,包括仅导出所有图片、仅导出所有网页文件、仅导出所有多媒体文件、仅导出列表等; 特有树形结构预览; 支持快速批量反编译,如果导出目标文件夹存在,则会自动生成新的序列文件夹; 智能操作,无所不在的快捷方式与体贴的操作与提示; 自动识别文件类型,判断有潜在威胁的文件类型自动提示! -Perfect Anti-compiled versions of CHM files Put all the contents of a complete structure (directory path) anti-compiled, 100 reduction, detailed calculation of the number of various documents: images, web pages, multimedia, etc. Supports all versions of the CHM, to support all coding Allow selective export of different types of documents, including the only export all the pictures, only to export all pages of documents, only to export all the multimedia files, only to export the list and so on Special preview of tree structure Support for fast batch decompile, if the export destination folder exists, it will automatically generate a new sequence of folders Intelligence operation, the ubiquitous shortcu
    2023-01-31 18:45:03下载
    积分:1
  • 单片机与PC机通信的程序,pc机程序用c语言来编写,单片机程序用汇编语言来编写...
    单片机与PC机通信的程序,pc机程序用c语言来编写,单片机程序用汇编语言来编写-dfafdfa
    2022-06-02 14:26:14下载
    积分:1
  • 这是我们学校平时实习的四个内容:词法分析、递归下降子程序、ll1语法分析、lr0语法分析 是我用c++编写的。...
    这是我们学校平时实习的四个内容:词法分析、递归下降子程序、ll1语法分析、lr0语法分析 是我用c++编写的。-This our peacetime training schools of the four elements : lexical analysis, recursive decline subroutine, ll1 syntax analysis, lr0 syntax analysis is used c prepared.
    2023-07-15 19:55:03下载
    积分:1
  • 词法分析器实现简单的词法分析词法分析 器实现简单的词法分析...
    词法分析器实现简单的词法分析词法分析 器实现简单的词法分析-Realize a simple lexical analyzer Lexical analyzer Lexical Analysis realize a simple lexical analysis
    2022-04-06 18:54:13下载
    积分:1
  • 在本编译程序中,源语言为PL/0语言,目标语言为假想栈式计算机的汇编语言.PL/0语言是Pascal语言的一个子集,PL/0的编译程序包括了对PL/0语言源程序...
    在本编译程序中,源语言为PL/0语言,目标语言为假想栈式计算机的汇编语言.PL/0语言是Pascal语言的一个子集,PL/0的编译程序包括了对PL/0语言源程序进行分析处理、编译生成类PCODE代码,并在虚拟机上解释运行生成的类PCODE代码的功能。   PL/0语言编译程序采用以语法分析为核心、一遍扫描的编译方法。词法分析和代码生成作为独立的子程序供语法分析程序调用。语法分析的同时,提供了出错报告功能。在源程序没有错误编译通过的情况下,调用类PCODE解释程序解释执行生成的类PCODE代码。 该软件为PL/0语言编译程序,所实现的扩充功能如下: 1.增加单词:保留字 ELSE,FOR,TO, DOWNTO 2.增加运算 +=,-=,++,-- 3.不等号# 改为 4.增加条件语句的ELSE子句 5.扩充语句: ①FOR := TO DO ②FOR := DOWNTO DO 其中,语句①的循环变量的步长为1, 语句②的循环变量的步长为-1。 概述 源文件: *.plo 目标文件: *.COD 实现平台:C++ Builder6.0 -the compiler, the source language of PL/0 language, target language of the imaginary stack of computer assembly language. PL/0 language Pascal language is a subset of, PL/0 compilers including the right PL/0 language source analysis, category PCODE compiler code generation and the virtual machine running on to explain the formation PCODE category code functions. PL/0 language compiler
    2022-07-12 21:52:18下载
    积分:1
  • 编译原理的词法分析器!
    编译原理的词法分析器!-Compilation Principle of lexical analyzer!
    2022-03-26 00:18:30下载
    积分:1
  • 类pascal的词法分析设计,内容详细。 这是我老师的教案,我看内容较全,希望对您也有帮助!...
    类pascal的词法分析设计,内容详细。 这是我老师的教案,我看内容较全,希望对您也有帮助!- The kind of pascal lexical analysis design, the content is detailed. This is my teacher teaches the document, I looked content comparatively entire, hoped also has the help to you!
    2022-01-22 07:51:57下载
    积分:1
  • 696518资源总数
  • 105732会员总数
  • 0今日下载