[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / utils / TableGen / ClangCommentCommandInfoEmitter.cpp
bloba988a5631acabcec94516d5fe78d2aac608205bf
1 //===--- ClangCommentCommandInfoEmitter.cpp - Generate command lists -----====//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This tablegen backend emits command lists and efficient matchers for command
10 // names that are used in documentation comments.
12 //===----------------------------------------------------------------------===//
14 #include "TableGenBackends.h"
16 #include "llvm/TableGen/Record.h"
17 #include "llvm/TableGen/StringMatcher.h"
18 #include "llvm/TableGen/TableGenBackend.h"
19 #include <vector>
21 using namespace llvm;
23 void clang::EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) {
24 emitSourceFileHeader("A list of commands useable in documentation "
25 "comments", OS);
27 OS << "namespace {\n"
28 "const CommandInfo Commands[] = {\n";
29 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
30 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
31 Record &Tag = *Tags[i];
32 OS << " { "
33 << "\"" << Tag.getValueAsString("Name") << "\", "
34 << "\"" << Tag.getValueAsString("EndCommandName") << "\", "
35 << i << ", "
36 << Tag.getValueAsInt("NumArgs") << ", "
37 << Tag.getValueAsBit("IsInlineCommand") << ", "
38 << Tag.getValueAsBit("IsBlockCommand") << ", "
39 << Tag.getValueAsBit("IsBriefCommand") << ", "
40 << Tag.getValueAsBit("IsReturnsCommand") << ", "
41 << Tag.getValueAsBit("IsParamCommand") << ", "
42 << Tag.getValueAsBit("IsTParamCommand") << ", "
43 << Tag.getValueAsBit("IsThrowsCommand") << ", "
44 << Tag.getValueAsBit("IsDeprecatedCommand") << ", "
45 << Tag.getValueAsBit("IsHeaderfileCommand") << ", "
46 << Tag.getValueAsBit("IsEmptyParagraphAllowed") << ", "
47 << Tag.getValueAsBit("IsVerbatimBlockCommand") << ", "
48 << Tag.getValueAsBit("IsVerbatimBlockEndCommand") << ", "
49 << Tag.getValueAsBit("IsVerbatimLineCommand") << ", "
50 << Tag.getValueAsBit("IsDeclarationCommand") << ", "
51 << Tag.getValueAsBit("IsFunctionDeclarationCommand") << ", "
52 << Tag.getValueAsBit("IsRecordLikeDetailCommand") << ", "
53 << Tag.getValueAsBit("IsRecordLikeDeclarationCommand") << ", "
54 << /* IsUnknownCommand = */ "0"
55 << " }";
56 if (i + 1 != e)
57 OS << ",";
58 OS << "\n";
60 OS << "};\n"
61 "} // unnamed namespace\n\n";
63 std::vector<StringMatcher::StringPair> Matches;
64 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
65 Record &Tag = *Tags[i];
66 std::string Name = std::string(Tag.getValueAsString("Name"));
67 std::string Return;
68 raw_string_ostream(Return) << "return &Commands[" << i << "];";
69 Matches.emplace_back(std::move(Name), std::move(Return));
72 OS << "const CommandInfo *CommandTraits::getBuiltinCommandInfo(\n"
73 << " StringRef Name) {\n";
74 StringMatcher("Name", Matches, OS).Emit();
75 OS << " return nullptr;\n"
76 << "}\n\n";
79 static std::string MangleName(StringRef Str) {
80 std::string Mangled;
81 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
82 switch (Str[i]) {
83 default:
84 Mangled += Str[i];
85 break;
86 case '(':
87 Mangled += "lparen";
88 break;
89 case ')':
90 Mangled += "rparen";
91 break;
92 case '[':
93 Mangled += "lsquare";
94 break;
95 case ']':
96 Mangled += "rsquare";
97 break;
98 case '{':
99 Mangled += "lbrace";
100 break;
101 case '}':
102 Mangled += "rbrace";
103 break;
104 case '$':
105 Mangled += "dollar";
106 break;
107 case '/':
108 Mangled += "slash";
109 break;
112 return Mangled;
115 void clang::EmitClangCommentCommandList(RecordKeeper &Records, raw_ostream &OS) {
116 emitSourceFileHeader("A list of commands useable in documentation "
117 "comments", OS);
119 OS << "#ifndef COMMENT_COMMAND\n"
120 << "# define COMMENT_COMMAND(NAME)\n"
121 << "#endif\n";
123 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
124 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
125 Record &Tag = *Tags[i];
126 std::string MangledName = MangleName(Tag.getValueAsString("Name"));
128 OS << "COMMENT_COMMAND(" << MangledName << ")\n";