gpt4 book ai didi

c - 为什么 yyparse() 会导致我的程序崩溃?

转载 作者:太空宇宙 更新时间:2023-11-04 07:47:28 25 4
gpt4 key购买 nike

我正在制作一个汇编程序。我正在使用 bison 和 flex 来这样做。我还有一个 C 文件,其中有我的主要功能。但是由于某种原因在调用 yyparse() 函数后程序崩溃了。

这是我的代码示例。但它有相同的结果。

我的 lexer.l (lex) 文件

%{
#include <stdio.h>
#include "y.tab.h"
%}
%option nounput yylineno
%%
"sub" return SUB;
";" return SEMICOLON;
. ;
[ \t]+ ;
%%
int yywrap()
{
return 0;
}

我的 grammar.y (yacc) 文件。

%{
#include <stdio.h>
#include <string.h>
void yyerror(const char *str)
{
fprintf(stderr,"error: %s\n",str);
}

%}
%token SUB SEMICOLON
%%
commands: /* empty */
| commands command
;

command:
sub
;
sub:
SUB SEMICOLON
{
printf("\tSub Detected\n");
}
;
%%

我的 main.c 文件。

#include <stdio.h>

extern int yyparse();
extern yy_scan_bytes ( const char *, int);
//My input buffer
char * memblock = "sub;\n";

int main()
{
yy_scan_bytes(memblock, strlen(memblock));
yyparse();
return 0;
}

最后是我如何编译它。

bison -y -d grammar.y
flex lexer.l
gcc y.tab.c lex.yy.c -c
gcc main.c y.tab.o lex.yy.o

这是结果。

    Sub Detected

Segmentation fault

我想知道如何修复 Segmentation fault 错误。谢谢。

最佳答案

问题是您的 yywrap 函数返回 0(false == 尚未结束,需要读取更多输入),但未设置输入,因此当扫描器尝试读取更多数据时,它会崩溃.

让 yywrap 返回 1(真),你会得到一个 EOF,yyparser 会返回,一切都会好起来的。

或者,使用 %option noyywrap 并摆脱它。

关于c - 为什么 yyparse() 会导致我的程序崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55994715/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com