blob: cab1c2b9b269fbb1c7cca0c256a84ca7b7e10fed [file] [log] [blame]
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +00001//===--- ClangCommentCommandInfoEmitter.cpp - Generate command lists -----====//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Dmitri Gribenko8f1fa252013-01-30 21:54:20 +000010// This tablegen backend emits command lists and efficient matchers for command
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +000011// names that are used in documentation comments.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/TableGen/Record.h"
16#include "llvm/TableGen/StringMatcher.h"
Dmitri Gribenko8f1fa252013-01-30 21:54:20 +000017#include "llvm/TableGen/TableGenBackend.h"
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +000018#include <vector>
19
20using namespace llvm;
21
22namespace clang {
23void EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) {
Dmitri Gribenko8f1fa252013-01-30 21:54:20 +000024 emitSourceFileHeader("A list of commands useable in documentation "
25 "comments", OS);
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +000026
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") << ", "
Dmitri Gribenko0bd98382012-09-22 21:47:50 +000043 << Tag.getValueAsBit("IsDeprecatedCommand") << ", "
Fariborz Jahanianf843a582013-01-31 23:12:39 +000044 << Tag.getValueAsBit("IsHeaderfileCommand") << ", "
Dmitri Gribenkoabcf0dc2012-09-13 20:36:01 +000045 << Tag.getValueAsBit("IsEmptyParagraphAllowed") << ", "
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +000046 << Tag.getValueAsBit("IsVerbatimBlockCommand") << ", "
47 << Tag.getValueAsBit("IsVerbatimBlockEndCommand") << ", "
48 << Tag.getValueAsBit("IsVerbatimLineCommand") << ", "
49 << Tag.getValueAsBit("IsDeclarationCommand") << ", "
Fariborz Jahanian2a268f22013-03-05 01:05:07 +000050 << Tag.getValueAsBit("IsFunctionDeclarationCommand") << ", "
Fariborz Jahanianb421b562013-03-08 23:59:23 +000051 << Tag.getValueAsBit("IsRecordLikeDetailCommand") << ", "
52 << Tag.getValueAsBit("IsRecordLikeDeclarationCommand") << ", "
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +000053 << /* IsUnknownCommand = */ "0"
54 << " }";
55 if (i + 1 != e)
56 OS << ",";
57 OS << "\n";
58 }
59 OS << "};\n"
60 "} // unnamed namespace\n\n";
61
62 std::vector<StringMatcher::StringPair> Matches;
63 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
64 Record &Tag = *Tags[i];
65 std::string Name = Tag.getValueAsString("Name");
66 std::string Return;
67 raw_string_ostream(Return) << "return &Commands[" << i << "];";
68 Matches.push_back(StringMatcher::StringPair(Name, Return));
69 }
70
71 OS << "const CommandInfo *CommandTraits::getBuiltinCommandInfo(\n"
72 << " StringRef Name) {\n";
73 StringMatcher("Name", Matches, OS).Emit();
74 OS << " return NULL;\n"
75 << "}\n\n";
76}
Dmitri Gribenkoaf01bed2013-02-01 20:23:57 +000077
78static std::string MangleName(StringRef Str) {
79 std::string Mangled;
80 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
81 switch (Str[i]) {
82 default:
83 Mangled += Str[i];
84 break;
85 case '[':
86 Mangled += "lsquare";
87 break;
88 case ']':
89 Mangled += "rsquare";
90 break;
91 case '{':
92 Mangled += "lbrace";
93 break;
94 case '}':
95 Mangled += "rbrace";
96 break;
97 case '$':
98 Mangled += "dollar";
99 break;
Fariborz Jahanian5238e402013-04-05 19:40:53 +0000100 case '/':
101 Mangled += "slash";
102 break;
Dmitri Gribenkoaf01bed2013-02-01 20:23:57 +0000103 }
104 }
105 return Mangled;
106}
107
108void EmitClangCommentCommandList(RecordKeeper &Records, raw_ostream &OS) {
109 emitSourceFileHeader("A list of commands useable in documentation "
110 "comments", OS);
111
112 OS << "#ifndef COMMENT_COMMAND\n"
113 << "# define COMMENT_COMMAND(NAME)\n"
114 << "#endif\n";
115
116 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
117 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
118 Record &Tag = *Tags[i];
119 std::string MangledName = MangleName(Tag.getValueAsString("Name"));
120
121 OS << "COMMENT_COMMAND(" << MangledName << ")\n";
122 }
123}
Dmitri Gribenkoe4330a32012-09-10 20:32:42 +0000124} // end namespace clang
125