OSDN Git Service

Fix BNF nits in TableGen language reference.
authorSimon Tatham <simon.tatham@arm.com>
Mon, 23 Apr 2018 09:15:47 +0000 (09:15 +0000)
committerSimon Tatham <simon.tatham@arm.com>
Mon, 23 Apr 2018 09:15:47 +0000 (09:15 +0000)
commit0a556c8c152a380287e2fa5534ae7640debf091e
treeda1c2ad03ddea37b7e7d2d506b3bb9fe8ac656ce
parent1b68b2eca5b5513d2cedb55f4c39e6a81e8a9f91
Fix BNF nits in TableGen language reference.

Summary:
In the course of writing an experimental ANTLR grammar based on this
document, I found three errors in the documented BNF:

SimpleValues of dag type are allowed to have no operands at all after
the initial DagArg specifying the operator. For example, the value
(outs) is extremely common in backends; an example in the test suite
is test/TableGen/AsmVariant.td line 30. But the BNF doesn't allow
DagArgList to expand to the empty string (it must contain at least one
DagArg), and therefore the DagArgList specifying the operands in the
dag-shaped production for SimpleValue should be optional.

In the production for BodyItem with a 'let' and an optional RangeList,
the RangeList should have braces around it if it's present, matching
code such as "let E{7-0} = ..." on test/TableGen/BitsInit.td line 42.
Those braces aren't included in the RangeList nonterminal itself, so
instead they need to be part of the optional segment of the BodyItem
production.

Finally, the identifier after 'defm' should be optional. Again, this
is very common in the real back end .td files; an example in the test
suite is in test/TableGen/defmclass.td line 49.

Reviewers: rengolin, nhaehnle, stoklund

Reviewed By: nhaehnle

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D45818

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@330570 91177308-0d34-0410-b5e6-96231b3b80d8
docs/TableGen/LangRef.rst