gpt4 book ai didi

c - 弹性 Action 在什么范围内执行?

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

我正在学习使用 flex,但我想出了一个我还没有找到答案的问题(甚至在 reference 中也找不到)。假设我有这段代码:

patt1   { do_foo(42); }
patt2 { do_bar(); }

这可能会正常工作。问题是,do_foo 可能需要通过引用接收一个参数(例如,一个 int)并用它做一些事情(实际上是 foo)。我能想到的 do_foo 到达该变量的唯一方法是将其声明为全局变量,但根据代码运行的范围,可能会有另一种(更清洁、更好)的解决方案。

有什么想法吗?任何帮助将不胜感激。

提前致谢。

最佳答案

实际上,生成的扫描器看起来像这样,遗漏了很多主要与缓冲区管理有关的细节:

int yylex() {
/* A bit of setup */
while (1) {
do {
yy_current_state = next_state(yy_current_state, get_next_char());
} while (has_no_action(yy_current_state));
yy_act = yy_accept[yy_current_state];
switch (yy_act) {
case 1: /* First action block */
break;
case 2: /* Second action block */
break;
/* etc. */
}
}
}

因此很容易看出操作的去向以及它们所处的范围。为了使该信息有用,您需要查看可以插入的 Hook ,所以让我们用一些明确的 Hook 再次写出来:

YY_DECL {
/* Some declarations */

/******** Prelude block *********/

/* A bit of setup */
while (1) {
do {
yy_current_state = next_state(yy_current_state, get_next_char());
} while (has_no_action(yy_current_state));
yy_act = yy_accept[yy_current_state];
switch (yy_act) {
case 1: YY_USER_ACTION /**** User defined macro ****/
/******** First action block *********/
YY_BREAK
case 2: YY_USER_ACTION
/******** Second action block *********/
YY_BREAK
/* etc. */
}
}
}

最有趣的功能之一是“序曲 block ”。在您的 (f)lex 输入文件中,它看起来像这样:

%option ...

%%
/* Prelude block: indented lines before the first pattern */
int locvar = 0;

patt1 { /* first action block */ }
patt2 { /* second action block */ }

宏都有合理的默认值:

/* The default definition of YY_DECL will be different if you've
* asked for a reentrant lexer
*/
#ifndef YY_DECL
extern int yylex(void);
#define YY_DECL int yylex(void);
#endif

/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif

/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif

为了您的目的,其中最有趣的是 YY_DECL .如果你想将参数传递给 yylex , 你可以通过定义这个宏来修改原型(prototype)。如果在 yylex 期间还需要局部变量调用,您可以在前奏 block 中声明它们。 (这对“推”词法分析器更有用,但它甚至对普通词法分析器也有它的用处。)

YY_USER_ACTIONYY_BREAK宏甚至更加专业。虽然它们看起来都可能对调试有用,但您通常最好使用 flex 的内置跟踪工具。 YY_USER_ACTION如果您想跟踪列位置而不仅仅是行号,则宏很有用;您可能会找到为此目的使用它的示例。 YY_BREAK对于编译器提示 break 的情况,宏可以设置为空(而不是 break)以下 return声明。

上面代码中没有指出的另一个宏是YY_USER_INIT ,这将合并到一次性初始化代码中(上面也没有显示,抱歉)。

这些功能中的大部分都记录在 flex 手册中。 YY_DECLSection 9 ("The Generated Scanner") ; YY_USER_ACTIONYY_USER_INITSection 13 ("Miscellaneous Macros") (以及其他一些功能)。 (YY_BREAK 在该部分的最后描述。)

prelude block 是一个 Posix 特性,因此它在 lex 中可用。以及,并记录在 Posix 中(以及 Section 5.2 of the Flex manual ):

Any such input (beginning with a <blank> or within %{ and %} delimiter lines) appearing at the beginning of the Rules section before any rules are specified shall be written to lex.yy.c after the declarations of variables for the yylex() function and before the first line of code in yylex(). Thus, user variables local to yylex() can be declared here, as well as application code to execute upon entry to yylex().

关于c - 弹性 Action 在什么范围内执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34146429/

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