help-bison
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Need Help on GLR Parser


From: John Levine
Subject: Re: Need Help on GLR Parser
Date: 6 Mar 2012 05:01:33 -0000

>I am new to Bison and trying to understand how GLR parser works.
>As per the documentation, GLR parser creates separate parallel parsers in
>case of conflicting actions found in action table.
>Does it use fork() or clone() or Pthread to create those parallel process?

No.  It just creates internal data structures to track all of the
currently active parse stacks.  All of the parallel parses read the
same stream of tokens.

R's,
John






reply via email to

[Prev in Thread] Current Thread [Next in Thread]