<div dir="ltr">It's great to see work on improving language support for TableGen in tools!<div><br></div><div>"include" is technically a preprocessing directive in TableGen. It is not a keyword of the TableGen grammar proper, just as "include" is not a keyword in the C/C++ grammar. E.g. "include" is not listed in section "2.11 Keywords [lex.key]" in the <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4296.pdf">C++ language standard</a>, but rather only mentioned in a highly specific way in "16 Preprocessing directives [cpp]".</div><div><br></div><div>We mention TableGen's include mechanism briefly in <a href="https://llvm.org/docs/TableGen/LangRef.html#syntax">https://llvm.org/docs/TableGen/LangRef.html#syntax</a></div><div><br></div><div>```</div><div>TableGen has an include mechanism. It does not play a role in the syntax per se, since it is lexically replaced with the contents of the included file.<br><br>IncludeDirective ::=  "include" TokString<br></div><div>```</div><div>Since that's the only "preprocessing" TableGen has, we don't have a while explicit section (analogous to "16 Preprocessing directives [cpp]" in the C++ standard) giving more details on the TableGen "preprocessor" in this sense. We maybe should, technically speaking.</div><div><br>TableGen's top-level grammar production is `TableGenFile ::=  Object*`, analogous to C++'s "translation-unit" production.</div><div><br></div><div>-- Sean Silva</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Oct 4, 2019 at 10:50 AM Codetector via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Was in the process of creating an TabelGen plugin for IntelliJ IDEs, <br>
wondering why in the documentation "include" is not listed as a keyword?<br>
<br>
<br>
Yaotia<br>
<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>