You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 26, 2023. It is now read-only.
The byacc in the maglev source tree is a modified byacc .
See the README_maglev.txt , hich includes the following.
You would have to replicate this maglev-specific behavior in bison.
Allen
Maglev modifications include
Deleted struct YYSTACKDATA,
and changed the type of yystack cells , to allow integration with
garbage collector and so that state machine only has to maintain
one stack pointer. See YyStackElement and YyStackData in rubyom.hf .
Use a unified state table instead of multiple tables for better
C code generation in the state machine. C compiler should be able
to cache one pointer to start of the unified table.
Are there any sticking issues for using bison over the current byacc?
ETA: (or vice versa)
The text was updated successfully, but these errors were encountered: