Related articles |
---|
stop yyparse() at <<EOF>> jkallup@web.de (Jens Kallup) (2015-12-22) |
Re: stop yyparse() at <<EOF>> kaz@kylheku.com (Kaz Kylheku) (2015-12-27) |
From: | Kaz Kylheku <kaz@kylheku.com> |
Newsgroups: | comp.compilers |
Date: | Sun, 27 Dec 2015 10:59:48 -0500 (EST) |
Organization: | Aioe.org NNTP Server |
References: | 15-12-007 |
Injection-Info: | miucha.iecc.com; posting-host="news.iecc.com:2001:470:1f07:1126:0:676f:7373:6970"; logging-data="30871"; mail-complaints-to="abuse@iecc.com" |
Keywords: | lex, debug, comment |
Posted-Date: | 27 Dec 2015 10:59:48 EST |
On 2015-12-22, Jens Kallup <jkallup@web.de> wrote:
> (\"([a-zA-Z0-9_])*\")* {
> printf("1: %s\n",yytext); strcpy(yytext,"");
> BEGIN(STRINGER);
> strcpy(yytext,"");
[ snip ]
>
> Is that a Bug, or my mistakes?
Not saying this is the crash, but do not modify yytext; it is (or may
be) a pointer directly into the lexical analyzer's buffer, and not a
copy.
You might be confusing the flex scanner somehow by putting a null in
there.
> string_expr
> : _STRING_ { printf("---> %s\n",yylval.text); }
> ;
You haven't shown any lexer code which sets up yylval.text and returns
the _STRING_ token.
The lex rules you have surrounding your STRINGER state don't return
anything.
[Good points. In recent versoins of flex, yytext points into the
input buffer and chaning what it points to is asking for trouble.
If you need to change it, make a copy.
Also, there's no BEGIN(INITIAL) to reset the start states. -John]
Return to the
comp.compilers page.
Search the
comp.compilers archives again.