Where can I find standard BNF or YACC grammar for C++ language? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T10:43:26Zhttp://stackoverflow.com/feeds/question/613479http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language6Where can I find standard BNF or YACC grammar for C++ language?Kevin Yu2009-03-05T03:24:22Z2009-11-16T20:28:56Z
<p>I'm trying to work on a kind of code generator to help unit-testing an legacy C/C++ blended project. I don't find any kind of independent tool can generate stub code from declaration. So I decide to build one, it shouldn't be that hard. </p>
<p>Please, anybody can point me a standard grammar link, better described by yacc language.</p>
<p>Hope I'm not reinventing wheel, please help me out in that case.</p>
<p>Best Regards,
Kevin</p>
http://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language/613501#61350114Answer by Jared Oberhaus for Where can I find standard BNF or YACC grammar for C++ language?Jared Oberhaus2009-03-05T03:37:43Z2009-06-19T00:30:29Z<p>From the <a href="http://www.parashift.com/c%2B%2B-faq-lite/" rel="nofollow">C++ FAQ Lite</a>:</p>
<p><a href="http://www.parashift.com/c%2B%2B-faq-lite/compiler-dependencies.html#faq-38.11" rel="nofollow">38.11 Is there a yacc-able C++ grammar?</a></p>
<blockquote>
<p>The primary yacc grammar you'll want
is from Ed Willink. Ed believes his
grammar is fully compliant with <a href="http://www.parashift.com/c%2B%2B-faq-lite/big-picture.html#faq-6.13" rel="nofollow">the
ISO/ANSI C++ standard</a>, however he
doesn't warrant it: "the grammar has
not," he says, "been used in anger."
You can get <a href="http://www.computing.surrey.ac.uk/research/dsrg/fog/CxxGrammar.y" rel="nofollow">the grammar without
action routines</a> or <a href="http://www.computing.surrey.ac.uk/research/dsrg/fog/CxxTester.y" rel="nofollow">the grammar
with dummy action routines</a>. You
can also get <a href="http://www.computing.surrey.ac.uk/research/dsrg/fog/CxxLexer.l" rel="nofollow">the corresponding
lexer</a>. For those who are
interested in how he achieves a
context-free parser (by pushing all
the ambiguities plus a small number of
repairs to be done later after parsing
is complete), you might want to read
chapter 4 of <a href="http://www.computing.surrey.ac.uk/research/dsrg/fog/FogThesis.pdf" rel="nofollow">his thesis</a>.</p>
<p>There is also a very old yacc grammar
that doesn't support templates,
exceptions, nor namespaces; plus it
deviates from the core language in
some subtle ways. You can get that
grammar <a href="http://www.empathy.com/pccts/roskind.zip" rel="nofollow">here</a> or <a href="http://srawgw.sra.co.jp/.a/pub/cmd/c%2B%2Bgrammar2.0.tar.gz" rel="nofollow">here</a>.</p>
</blockquote>
http://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language/613505#6135051Answer by Dushara for Where can I find standard BNF or YACC grammar for C++ language?Dushara2009-03-05T03:41:35Z2009-03-05T03:41:35Z<p>I found <a href="http://www.sigala.it/sandro/software.php#grammars" rel="nofollow">this one</a> recently. I haven't tried it out, so am not sure if it works. Could you give more info on the tool you're trying to develop? I downloaded this grammar because I'm working on an instrumentation tool so I can add coverage info for my <a href="http://code.google.com/p/cunitwin32/" rel="nofollow">unit test framework</a>.</p>
http://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language/613722#6137222Answer by coppro for Where can I find standard BNF or YACC grammar for C++ language?coppro2009-03-05T06:00:01Z2009-11-16T20:28:56Z<p>Jared's link is the closest thing to a context-free grammar you can get. Certain things do need to be delayed for later, but that is by some arguments better than the context-sensitive grammar of C++.</p>
<p>To make things worse, C++1x will complexify the grammar significantly. To get as far as a perfect parse of C++, a parser will need to implement enough of the standard to correctly do overload resolution, including template argument deduction, which in turn will require the concepts mechanism, lambdas, and in effect almost all of the language, except for two-stage name lookup and exception specifications which, if I recall correctly, do not need actual implementation to parse a program successfully.</p>
<p>In effect, you are halfway to a compiler if you can parse C++.</p>
http://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language/1007675#10076750Answer by Ira Baxter for Where can I find standard BNF or YACC grammar for C++ language?Ira Baxter2009-06-17T15:13:38Z2009-06-17T15:13:38Z<p>The DMS Software Reengineering Toolkit can be obtained with a robust,
full featured C++ parser. See
<a href="http://www.semanticdesigns.com/Products/FrontEnds/CppFrontEnd.html" rel="nofollow">http://www.semanticdesigns.com/Products/FrontEnds/CppFrontEnd.html</a>
This builds ASTs and symbol tables, and can infer the type of any expression.
DMS enables one to carry out arbitrary analyses and transformations
on the C++ code.</p>
<p>One "simple" transformation is instrumenting the code to collect test coverage
data; we offer this as a COTS tool. See this paper to understand how DMS does it:
<a href="http://www.semanticdesigns.com/Company/Publications/TestCoverage.pdf" rel="nofollow">http://www.semanticdesigns.com/Company/Publications/TestCoverage.pdf</a></p>