Why C++ cannot be parsed with a LR(1) parser? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T00:10:23Zhttp://stackoverflow.com/feeds/question/243383http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/243383/why-c-cannot-be-parsed-with-a-lr1-parser22Why C++ cannot be parsed with a LR(1) parser?Cheery2008-10-28T13:49:52Z2009-09-09T18:09:31Z
<p>I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page:</p>
<p>"Many programming languages can be parsed using some variation of an LR parser. One notable exception is C++."</p>
<p>Why is it so? What particular property in C++ causes it to be impossible to parse with LR parsers?</p>
<p>I first tried google and only found out that C can be perfectly parsed with LR(1) but C++ requires LR(∞). But then I think this is a good question. I understand that it must be very interesting reason why this is so.</p>
<p>(PS. wikipedia's parser articles make much more sense if you have already written couple of parsers yourself with parser generators or perhaps by hand, before that you do not really understand much about them. It's interesting how you need to use the tool to learn about how to build good one, but then.. so obvious)</p>
http://stackoverflow.com/questions/243383/why-c-cannot-be-parsed-with-a-lr1-parser/243447#24344723Answer by Rob Walker for Why C++ cannot be parsed with a LR(1) parser?Rob Walker2008-10-28T14:01:47Z2008-10-28T14:01:47Z<p>There is an interesting thread on <a href="http://lambda-the-ultimate.org/" rel="nofollow">Lambda the Ultimate</a> that discusses the <a href="http://lambda-the-ultimate.org/node/2158#comment-27800" rel="nofollow">LALR grammar for C++</a>. </p>
<p>It includes a link to a <a href="http://www.computing.surrey.ac.uk/research/dsrg/fog/FogThesis.pdf" rel="nofollow">PhD thesis</a> that includes a discussion of C++ parsing, which states that:</p>
<blockquote>
<p>"C++ grammar is ambiguous,
context-dependent and potentially
requires infinite lookahead to resolve
some ambiguities".</p>
</blockquote>
<p>It goes on to give a number of examples (see page 147 of the pdf).</p>
http://stackoverflow.com/questions/243383/why-c-cannot-be-parsed-with-a-lr1-parser/243456#2434564Answer by casademora for Why C++ cannot be parsed with a LR(1) parser?casademora2008-10-28T14:05:08Z2008-10-28T15:08:13Z<p>I think you are pretty close to the answer. </p>
<p>LR(1) means:</p>
<p>Parsing from left to right needs only one token to look-ahead for the context,</p>
<p>whereas LR(infinity) means an infinite look-ahead. That is, the parser would have to know everything that was coming in order to figure out where it is now.</p>
http://stackoverflow.com/questions/243383/why-c-cannot-be-parsed-with-a-lr1-parser/1004737#100473727Answer by Ira Baxter for Why C++ cannot be parsed with a LR(1) parser?Ira Baxter2009-06-17T02:01:10Z2009-09-09T18:09:31Z<p>LR parsers can't handle ambiguous grammar rules, by design. (Made the theory easier back in the 1970s when the ideas were being worked out).</p>
<p>C and C++ both allow the following statement:</p>
<pre><code>x * y ;
</code></pre>
<p>It has two different parses:
1) It can be the declaration of y, as pointer to type x;
2) it can be a multiply of x and y, throwing away the answer.
Now, you might think the latter is stupid and should be ignored.
Most would agree with you; however, there are cases where it might
have a side effect (e.g., if multiply is overloaded). but that isn't the point.
The point is there <em>are</em> two different parses.</p>
<p>The compiler must accept the appropriate one under the appropriate circumstances, and in the absence of any other information (e.g., knowledge of the type of x) must collect both in order to decide later what to do. Thus a grammar must allow this. And that makes the grammer ambiguous.</p>
<p>Thus LR can't handle this.</p>
<p>There are lots of more complicated cases, but only takes one to shoot down pure LR parsing.</p>
<p>Most real C/C++ parsers handle this by using some
kind of deterministic parser intertwined with symbol table
collection... so that by the time "x" is encountered,
the parser knows if x is a type or not, and can thus
choose between the two potential parses. But a parser
that does this isn't context free, and LR parsers
(the pure ones) are context free.</p>
<p>One can cheat, and add checks in the reduction proposal
to LR parsers to do this disambiguation.</p>
<p>And if you cheat enough, you can make LR parsers work for
C and C++. The GCC guys did for awhile, but gave it
up for hand-coded parsing, I think because they wanted
better error diagnostics.</p>
<p>There's another approach, though, which is nice and clean
and parses C and C++ just fine without any symbol table
hackery: GLR parsers. (<a href="http://en.wikipedia.org/wiki/GLR%5Fparser" rel="nofollow">http://en.wikipedia.org/wiki/GLR%5Fparser</a>).
These are full context free parsers (having effectively infinite
lookahead). GLR parsers simply accept <em>both</em> parses,
producing a "tree" (actually a directed acyclic graph that is mostly tree like)
that represents the ambiguous parse.
A post-parsing pass can resolve the ambiguities.</p>
<p>We use this technique in the C and C++ front ends for the
DMS Software Reengineering Tookit.
<a href="http://en.wikipedia.org/wiki/DMS%5FSoftware%5FReengineering%5FToolkit" rel="nofollow">http://en.wikipedia.org/wiki/DMS%5FSoftware%5FReengineering%5FToolkit</a>
They have been used to process millions of lines
of large C and C++ systems, as well as dozens of other languages.</p>
http://stackoverflow.com/questions/243383/why-c-cannot-be-parsed-with-a-lr1-parser/1365544#13655440Answer by 280Z28 for Why C++ cannot be parsed with a LR(1) parser?280Z282009-09-02T02:05:41Z2009-09-02T02:05:41Z<p>As you can see in my <a href="http://stackoverflow.com/questions/1172939/is-any-part-of-c-syntax-context-sensitive/1173038#1173038">answer here</a>, C++ contains syntax that cannot be deterministically parsed by an LL or LR parser due to the type resolution stage (typically post-parsing) changing the <em>order of operations</em>, and therefore the fundamental shape of the AST (typically expected to be provided by a first-stage parse).</p>