Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I pass one aditional parameter (not the token minor of type YYSTYPE) to the yypush_parse() function?

The parser is indeed reentrant, but this one aditional variable is crucial for the thread-safety of the application I need to integrate my parser in (it's a PHP extension, so we're talking about TSRM).

I cannot just get rid of that parameter because inside the action code I'm going to call functions which will generate an AST in a userland-accessible form.

I've tried to hack around YYPUSH_DECLS and it works as far as declaring the function is concerned, BUT a few thousand LOCs down comes the implementation of yypush_parse, and I can't see any way to overwrite the function signature where the implementation of yypush_parse starts.

YYPARSE_PARAM is only used when the parser is not a push one (as far as I can tell), but in my case I NEED it be push because of the things I have to do in the processing loop, after lexing and prior to adding a new token to the parsing stack.

So I am wondering if there's a %directive or something that may help.

On the other side, I really think YYPARSE_PARAM should be used as far as it's defined, no matter what type of parser it is. It's a pity it's not.

share|improve this question

1 Answer

up vote 0 down vote accepted

%parse-param. YYPARSE_PARAM is deprecated and shouldn't be used.

share|improve this answer
Sadly, %parse-param is for the yyparse() function, not yypush_parse(). – Jonathan Leffler Apr 17 '11 at 13:55
What are you talking about? It works for me, bison 2.4.3 – Flavius Apr 17 '11 at 15:21
OK: let's revise my comment - sadly, the documentation does not mention that %parse-param can be used with yypush_parse(), AFAICS. Your empirical evidence suggests that it can be used; we should perhaps get a note to the Bison team that this bit is missing from the documentation. – Jonathan Leffler Apr 17 '11 at 17:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.