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

时间:2019-05-05 17:43:23

标签: c bison flex-lexer

我正在制作一个汇编程序。我使用野牛和屈曲这样做。 我也有一个C文件,其中有我的主要功能。但是由于某种原因,在yyparse()函数被称为progam崩溃之后。

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

我的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错误。谢谢。

1 个答案:

答案 0 :(得分:2)

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

让yywrap返回1(true),您将获得EOF,并且yyparser将返回,一切都会很好。

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