Tiny语言编译器开发之语法分析

本文介绍了如何使用递归下降分析法手工编写Tiny语言的语法分析器。详细展示了从stmt_sequence到factor的各种语法规则函数,并通过示例解释了语法树的结构。在处理语法错误时,程序设计确保了不会出现无限循环,从而保证了编译器的正常运行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  采用自顶向下的分析方法中的递归下降分析法,手工编写语法分析器,源代码如下:


#include "globals.h"
#include "util.h"
#include "scan.h"
#include "parse.h"
static TokenType token; //当前获取的token

static TreeNode* stmt_sequence();
static TreeNode* stmt();
static TreeNode* if_stmt();
static TreeNode* repeat_stmt();
static TreeNode* assign_stmt();
static TreeNode* read_stmt();
static TreeNode* write_stmt();
static TreeNode* exp();
static TreeNode* simple_exp();
static TreeNode* term();
static TreeNode* factor();

static void syntaxError(char* message)
{
 fprintf(listing, "\n>>> ");
 fprintf(listing, "Syntax error at line %d: %s", lineno, message);
}

static void match(TokenType expected)
{
 if(token==expected) token = getToken();
 else{
   syntaxError("unexpected token -> ");
   printToken(token, tokenString);
   fprintf(listing,"        ");
 }
}


static TreeNode* stmt_sequence()
{
   TreeNode*  t=stmt();
   TreeNode* p=t;
   while((token!=ENDFILE)
    &&(token!=END) &&(token!=ELSE) && (token!=UNTIL))
   {
    TreeNode* q;
   

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值